Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have created a vc++ windows form application (VS 2010) and when I tried to include ppl.h (Parallel Patterns Library) I got the following compile error.

Error: Concurrency Runtime is not supported when compiling /clr. c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\concrt.h 27"

I want to use "parallel_for" algorithm in my program which is provided by 'VS 2010 Parallel Patterns Library'.

Can anyone tell me how to overcome the above problem and how to use 'Parallel Patterns Library' inside a windows forms application?

share|improve this question
You can move the code to a cpp that is completely unmanaged. This can be part of the same dll. you can use ppl.h/parallel_for from there. It will also be slightly faster than c++/cli. – jdv-Jan de Vaan Nov 11 '12 at 14:12

1 Answer

up vote 0 down vote accepted

You appear to be writing a WinForms managed project in C++/CLI (why?...). In the managed world there is the the Task Parallel Library (TPL) and its System::Threading::Tasks::Parallel::For. You don't have to (can't) use PPL in a project targeting the clr, at least not in the managed part of it. Are you working on a mixed (managed/unmanaged) interoperability project? If so, separate managed and native parts properly. Then, use PPL inside native component and TPL inside managed components. Have a look at this blog entry, for example.

share|improve this answer
I'm really appreciate your answer. It worked me the way you said. I used TPL library inside managed components. Thank you. – user1815763 Nov 12 '12 at 10:37
You're welcome... – Paul Michalik Nov 12 '12 at 18:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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