vote up 1 vote down star

I want to start to write applications(C++) that will utilize the additional cores to execute portions of the code that have a need to perform lots of calculations and whose computations are independent of each other. I have the following processor : x64 Family 15 Model 104 Stepping 2 Authentic AMD ~1900 Mhz running on Windows Vista Home premium 32 bit and Opensuse 11.0 64 bit.

On the Intel platforms , I've used the following APIs Intel TBB, OpenMP. Do they work on AMD and does AMD have similar APIs.what has been your experience?

flag

63% accept rate

2 Answers

vote up 4 vote down check

OpenMP and TBB are both available also for AMD - it is also a compiler question. E.g. see linux TBB on AMD.
I think the latest development on this end is to use the graphic card via CUDA or similar APIs- but this depends on the nature of your calculations. If it fits, it is faster than the CPU anyway.

link|flag
CUDA is very specific business indeed, since the GPU are optimized for 1 operation applied to several 'datum' at once. – Matthieu M. Oct 26 at 15:37
My laptop has a Nvidia card (6150 Go)... how can i get started ? – iceman Oct 27 at 10:19
From my pov you can not. nvidia.com/object/cuda_learn_products.html/… – weismat Oct 27 at 11:14
Is there any link where someone has tried TBB on a AMD and discussed instrumentation results or given some performance benchmarks? Is there a AMD equivalent of the TBB library at developer.amd.com ? – iceman Oct 27 at 23:12
(shameless plug for my own technology) - Visual Studio 2010 Beta 2 released last week, so please be sure check out the Parallel Pattern Library and Asynchronous Agents Library which run great on x64 intel & amd. – Rick Oct 28 at 3:22
show 1 more comment
vote up 1 vote down

I personally like Qt's threads. Just subclass QThread, call start(), and communicate with signals.

link|flag
See doc.trolltech.com/4.5/threads.html – Sam Oct 26 at 10:30

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.