The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
15 views

How much cpu time per core?

Please help me understand this. I have an STA VB6 application. It is running on the same virtual server as a .net web application. There are two cores on that server. To measure performance of the ...
1
vote
3answers
95 views

How to detect if CPU is 32 or 64 bit

I want to detect the capabilities op CPU's (especially if it is an 32/64 bit CPU) The machines are running on a 32-bit OS (WinXP) and I want to detect if these machine are capable to get a 64 bit OS ...
4
votes
3answers
124 views

Setting Ideal size of Thread Pool [duplicate]

What is the difference between- newSingleThreadExecutor vs newFixedThreadPool(20) in terms of Operating System and Programming point of view. Whenever I am running my program using ...
1
vote
0answers
67 views

How many CPU cores has a heroku dyno?

I'm using Django with Celery 3.0.17 and now trying to figure out how many celery workers are run by default. From this link I understand that (not having modified this config) the number of workers ...
5
votes
2answers
139 views

python - what determines whether different processes are assigned to the same or different cores?

I am not sure whether this counts more as an OS issue, but I thought I would ask here in case anyone has some insight from the Python end of things. I've been trying to parallelise a CPU-heavy for ...
0
votes
1answer
74 views

Monitoring individual CPU Cores for multiple VM's

I have a lot of VMs that have multiple cores. Some apps that run in some VMs are not optimized however for multiple cores and a lot of time one CPU core will be running at a high percentage while the ...
1
vote
0answers
45 views

Is there a best practice to reduce latency for exchange between cores?

We know that in today's Intel's processors sharing between cores is via cache L3. Exchange between parts of L3 cache is on the ring bus (modified QPI), and thus latency the greater the farther the ...
1
vote
2answers
100 views

python : multiprocessing managament

with multiprocessing python library I can launch multiprocess, like import multiprocessing as mu def worker(n) print "worker:", n n = int(1e4) for i in range(n): ...
0
votes
2answers
44 views

Assigning a core to TCP polling

We have several Java applications that run on the same Linux machine and send messages back and forth via TCP. We use a ServerSocket and Socket to create the connections. I want to reduce the latency ...
1
vote
1answer
152 views

what is the difference between “gwan_1” and “gwan -w 1”?

In the gwan.ch/en_timeline.html stated that, renaming gwan to gwan_1 is to start gwan with one worker. what is the difference between gwan_1 and gwan -w 1 ?
1
vote
1answer
69 views

Multithreading & parallelism with regards to the number of CPU cores

I've read somewhere that real multi-threading is limited to the number of CPU cores you are running. Does that mean that all you get if you have, say, a dual core CPU, is real multi-threading with ...
2
votes
2answers
130 views

Change a thread's target core

What is the way of telling a thread to change the core that it is working on programmatically? Lets say i am using FX-8150 which has some cores but i want one of my threads to work in especially the ...
-2
votes
1answer
97 views

Number of cores in CPU [closed]

My laptop is equipped with following CPU details: processor 0 intel core 2 quad processor 1 intel core 2 quad processor 2 intel core 2 quad processor 3 intel core 2 quad As each processor is ...
1
vote
3answers
711 views

How do I tell if Python's Multiprocessing module is using all of my cores for calculations?

I have some simple code from a tutorial like this: from multiprocessing import Process, Lock import os def f(i): print 'hello world', i print 'parent process:', os.getppid() print ...
-2
votes
1answer
880 views

Find number of CPUs, CPU Cores and threads per Core (programmatically) [closed]

I am talking about the whole breakdown information (a subject rarely covered entirely): number of physical CPUs number of logical and physical CPU Cores number of threads per Core (hyperthreading) ...
0
votes
0answers
176 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 ...
2
votes
1answer
231 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
286 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 ...
4
votes
1answer
422 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 ...
1
vote
2answers
427 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
229 views

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

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 ...
2
votes
3answers
739 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# ?
4
votes
1answer
411 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. ...
0
votes
4answers
1k 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
1k 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?
13
votes
2answers
1k 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
2k 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 ...
2
votes
3answers
3k views

How to get number of cores in Win32?

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?
5
votes
4answers
2k 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. ...
28
votes
5answers
15k views

JAVA: How to scale threads according to cpu cores?

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 threads in java. my math problem can be ...
85
votes
4answers
30k 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! :-)
3
votes
4answers
852 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
0answers
6k views

Programmatically get CPU core count [duplicate]

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 ...