Top "Multicore" questions

Multicore programming covers techniques for making programs run in parallel, by exploiting hardware with multiple processing cores.

How do I measure separate CPU core usage for a process?

Is there any way to measure a specific process CPU usage by cores? I know top is good for measuring …

linux multicore measurement performance
Compiling with g++ using multiple cores

Quick question: what is the compiler flag to allow g++ to spawn multiple instances of itself in order to compile …

c++ compiler-construction makefile g++ multicore
R package that automatically uses several cores?

I have noticed that R only uses one core while executing one of my programs which requires lots of calculations. …

r multicore
Forcing multiple threads to use multiple CPUs when they are available

I'm writing a Java program which uses a lot of CPU because of the nature of what it does. However, …

java concurrency multithreading multicore
Parallel execution of shell processes

Is there a tool available to execute several process in parallel in a Windows batch file? I have found some …

windows batch-file shell parallel-processing multicore
Does python support multiprocessor/multicore programming?

What is the difference between multiprocessor programming and multicore programming? preferably show examples in python how to write a small …

python multicore
view multi-core or mlti-cpu utlization on linux

I have a program running on Linux and I need to determine how it is utilizing all the CPUs/cores. …

linux multicore
How do you make good use of multicore CPUs in your PHP/MySQL applications?

I maintain a custom built CMS-like application. Whenever a document is submitted, several tasks are performed that can be roughly …

php mysql multicore
Threads & Processes Vs MultiThreading & Multi-Core/MultiProcessor : How they are mapped?

I was very confused but the following thread cleared my doubts: Multiprocessing, Multithreading,HyperThreading, Multi-core But it addresses the queries …

multithreading process multicore
Python multicore programming

Please consider a class as follow: class Foo: def __init__(self, data): self.data = data def do_task(self): #do …

python multicore multiprocess