Top "Multicore" questions

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

Visual Studio 2010, how to build projects in parallel on multicore

I have a big solution with more than 40 projects. Almost half of them are test projects. In my project we …

visual-studio-2010 msbuild build-process multicore
MPI for multicore?

With the recent buzz on multicore programming is anyone exploring the possibilities of using MPI ?

parallel-processing distributed multicore multiprocessing mpi
How can I make my Perl script use multiple cores for child processes?

I'm working on a mathematical model that uses data generated from XFOIL, a popular aerospace tool used to find the …

perl multicore
Is volatile bool for thread control considered wrong?

As a result of my answer to this question, I started reading about the keyword volatile and what the consensus …

c++ multithreading multicore volatile
Programming for Multi core Processors

As far as I know, the multi-core architecture in a processor does not effect the program. The actual instruction execution …

programming-languages hardware parallel-processing multicore processor
InterlockedIncrement usage

While reading about the function InterlockedIncrement I saw the remark that the variable passed must be aligned on a 32-bit …

c++ multithreading winapi multicore interlocked
could not find function inside foreach loop

I'm trying to use foreach to do multicore computing in R. A <-function(....) { foreach(i=1:10) %dopar% { B() } } then I …

r foreach parallel-processing multicore scoping
Lua :: How to write simple program that will load multiple CPUs?

I haven't been able to write a program in Lua that will load more than one CPU. Since Lua supports …

multithreading lua multicore coroutine
Which CPU architectures support Compare And Swap (CAS)?

just curious to know which CPU architectures support compare and swap atomic primitives?

multithreading multicore atomic cpu-architecture
Why does this Java code not utilize all CPU cores?

The attached simple Java code should load all available cpu core when starting it with the right parameters. So for …

java scalability cpu multicore scaling