Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

32
votes
3answers
12k views

How to find the Number of CPU Cores via .NET/C#?

Is there a way via .NET/C# to find out the number of CPU cores? PS This is a straight code question, not a "Should I use multi-threading?" question! :-)
12
votes
5answers
4k views

JAVA: How to scale threads according to cpu cores?

I'm new to this site and glad to be here :). I'm not a good java programmer, it's just my hobby, but I'm eager to know more than average stuff. I want to solve a mathematical problem with multiple ...
5
votes
2answers
432 views

Get number of CPU cores in JavaScript?

Is there a way to determine the number of available CPU cores in JavaScript, so that you could adjust the number of web workers depending on that?
5
votes
4answers
1k views

tomcat multithreading problem

Hi all I'm writing a java application that runs in Tomcat, on a multi-core hardware. The application executes an algorithm and returns the answer to the user. The problem is that even when I run two ...
5
votes
4answers
674 views

Is there a way to reliably detect the total number of CPU cores?

I need a reliable way to detect how many CPU cores are on a computer. I am creating a numerically intense simulation C# application and want to create the maximum number of running threads as cores. ...
4
votes
1answer
177 views

Running on multiple cores using MPI

I use the present command to submit MPI jobs: mpirun -np no.of processors filename My understanding is that the above command lets me submit to 4 independent processors that communicate via MPI. ...
3
votes
1answer
134 views

cpu cores vs threads

My MacBookPro, running BootCamp, has an Intel i7-640M processor, which has 2 cores. Like all the other i7 chips, each core is hyperthreaded, so you can have up to 4 threads. Using Visual Studio 2010 ...
3
votes
3answers
1k views

How to get number of cores in C?

I'm writing a program in C on windows that needs to run as many threads as available cores. But I dont know how to get the number of cores. Any ideas?
3
votes
4answers
575 views

Cross-platform API for system information

I'm looking for a library that will provide this type of information: RAM Swap space Number of CPUs speed (CPU MHz) Number of cores Chip type Ultimately I'll be calling into it from Java, but a C ...
2
votes
1answer
78 views

Number of Processor not match with CPUZ

I want to know the number of cpu core so, I thy this code SYSTEM_INFO siSysInfo; DWORD getProcessorNum() { GetSystemInfo(&siSysInfo); return siSysInfo.dwNumberOfProcessors; } It return ...
2
votes
2answers
75 views

multiple cpu's , multiple cores, and thread count

System config: Win 7 64bit, visual Studio 2010 Premium, dell t7500 with 2 xeon 5690 chips, 48 gig of ram. Each xeon has 6 cores, so there are 12 physical cores. With hyperthreading, there should be ...
2
votes
3answers
143 views

How to start a Thread at Specific Core[Solved]

I have a Quad Core CPU and let say i want to List CPU Cores ,and always start a Thread at Second Core . Is that possible from C# ?
2
votes
0answers
5k views

Programmatically get CPU core count [closed]

I have some multi threaded code that makes one thread per core except I'm having troubles working out how to get the core count under windows. For linux i have: //from ...
1
vote
2answers
82 views

Android Threading with single core

Just wondering if threading with one processor improves things for me. I am building an application that performs data intensive calculations (fft on pcm data) while a UI is running and needs to run ...
1
vote
2answers
110 views

What is crossplatform code snippet for getting totall cores amount in C++? [closed]

Possible Duplicate: Programatically detect number of physical processors/cores or if hyper-threading is active on Windows, Mac and Linux I wonder if there is any crossplatform (std or boost ...
0
votes
0answers
47 views

how to arbitrarily choose the best number of threads

is there any way to choose the best number of threads from inside the program? for example, if i am running my program on a dual core machine, it will use 2 threads, on a 6 core machine, it will run ...
0
votes
4answers
440 views

cpuinfo in python 2.4 for windows

How can I get cpuinfo in python 2.4. I want to determine number of processors in a machine. (The code should be OS independent). I have written the code for Linux, but don't know how to make it work ...
0
votes
3answers
259 views

Assigning Multiple Cores to a Python Program

I notice when I run my heavily CPU dependant python programs, it only uses a single core. Is it possible to assign multiple cores to the program when I run it?