My question is, as the title says : On a general level (ease of usage, degree of control over what happens, etc) which one would you recommend for a small parallel program ? Microsoft's TPL or Intel's TBB ?
Thank you in advance
|
My question is, as the title says : On a general level (ease of usage, degree of control over what happens, etc) which one would you recommend for a small parallel program ? Microsoft's TPL or Intel's TBB ? Thank you in advance |
|||||||
|
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
Not really easy to answer this. TBB is a C++ template library, while TPL is a .NET library. Assuming you can choose whichever language you like, they both offer similar general-purpose parallel constructs, mainly:
But again, depending on the language you choose you don't really have a choice between the two. |
|||
|
|