জাভা কোডের মধ্যে থেকে আমি কীভাবে আমার অ্যাপ্লিকেশনটিতে উপলব্ধ কোরগুলির সন্ধান করতে পারি?
জাভা কোডের মধ্যে থেকে আমি কীভাবে আমার অ্যাপ্লিকেশনটিতে উপলব্ধ কোরগুলির সন্ধান করতে পারি?
উত্তর:
int cores = Runtime.getRuntime().availableProcessors();
যদি cores
এটির চেয়ে কম হয়, হয় আপনার প্রসেসরটি মারা যাচ্ছেন, বা আপনার জেভিএম এর মধ্যে একটি মারাত্মক ত্রুটি রয়েছে, বা মহাবিশ্বটি ফুটিয়ে তুলতে চলেছে।
আপনি যদি শারীরিক কোরের সংখ্যা পেতে চান তবে আপনি সিএমডি এবং টার্মিনাল কমান্ড চালাতে পারেন এবং তারপরে আপনার প্রয়োজনীয় তথ্য পেতে আউটপুটটি বিশ্লেষণ করতে পারেন el নীচে ফাংশন প্রদর্শিত হবে যা শারীরিক কোরের সংখ্যা প্রদান করে।
private int getNumberOfCPUCores() {
OSValidator osValidator = new OSValidator();
String command = "";
if(osValidator.isMac()){
command = "sysctl -n machdep.cpu.core_count";
}else if(osValidator.isUnix()){
command = "lscpu";
}else if(osValidator.isWindows()){
command = "cmd /C WMIC CPU Get /Format:List";
}
Process process = null;
int numberOfCores = 0;
int sockets = 0;
try {
if(osValidator.isMac()){
String[] cmd = { "/bin/sh", "-c", command};
process = Runtime.getRuntime().exec(cmd);
}else{
process = Runtime.getRuntime().exec(command);
}
} catch (IOException e) {
e.printStackTrace();
}
BufferedReader reader = new BufferedReader(
new InputStreamReader(process.getInputStream()));
String line;
try {
while ((line = reader.readLine()) != null) {
if(osValidator.isMac()){
numberOfCores = line.length() > 0 ? Integer.parseInt(line) : 0;
}else if (osValidator.isUnix()) {
if (line.contains("Core(s) per socket:")) {
numberOfCores = Integer.parseInt(line.split("\\s+")[line.split("\\s+").length - 1]);
}
if(line.contains("Socket(s):")){
sockets = Integer.parseInt(line.split("\\s+")[line.split("\\s+").length - 1]);
}
} else if (osValidator.isWindows()) {
if (line.contains("NumberOfCores")) {
numberOfCores = Integer.parseInt(line.split("=")[1]);
}
}
}
} catch (IOException e) {
e.printStackTrace();
}
if(osValidator.isUnix()){
return numberOfCores * sockets;
}
return numberOfCores;
}
ওএসভালিডেটর শ্রেণি:
public class OSValidator {
private static String OS = System.getProperty("os.name").toLowerCase();
public static void main(String[] args) {
System.out.println(OS);
if (isWindows()) {
System.out.println("This is Windows");
} else if (isMac()) {
System.out.println("This is Mac");
} else if (isUnix()) {
System.out.println("This is Unix or Linux");
} else if (isSolaris()) {
System.out.println("This is Solaris");
} else {
System.out.println("Your OS is not support!!");
}
}
public static boolean isWindows() {
return (OS.indexOf("win") >= 0);
}
public static boolean isMac() {
return (OS.indexOf("mac") >= 0);
}
public static boolean isUnix() {
return (OS.indexOf("nix") >= 0 || OS.indexOf("nux") >= 0 || OS.indexOf("aix") > 0 );
}
public static boolean isSolaris() {
return (OS.indexOf("sunos") >= 0);
}
public static String getOS(){
if (isWindows()) {
return "win";
} else if (isMac()) {
return "osx";
} else if (isUnix()) {
return "uni";
} else if (isSolaris()) {
return "sol";
} else {
return "err";
}
}
}
সিপিইউ কোরগুলির সংখ্যা (এবং আরও অনেকগুলি তথ্য) বের করার এটি অতিরিক্ত উপায়, তবে এই কোডটির অতিরিক্ত অতিরিক্ত নির্ভরতা প্রয়োজন:
নেটিভ অপারেটিং সিস্টেম এবং হার্ডওয়্যার সম্পর্কিত তথ্য https://github.com/oshi/oshi
SystemInfo systemInfo = new SystemInfo();
HardwareAbstractionLayer hardwareAbstractionLayer = systemInfo.getHardware();
CentralProcessor centralProcessor = hardwareAbstractionLayer.getProcessor();
প্রক্রিয়াকরণের জন্য লজিক্যাল সিপিইউগুলির সংখ্যা পান:
centralProcessor.getLogicalProcessorCount();
এটি সাইগউইন ইনস্টল করে উইন্ডোজে কাজ করে:
System.getenv("NUMBER_OF_PROCESSORS")
groovy -e "println System.getenv('NUMBER_OF_PROCESSORS')"
set NUMBER_OF_PROCESSORS
উইন্ডোজ কমান্ড লাইনটি আমার জন্য কাজ করে।