How to setup visual studio to run parallel programs using openmp in visual C++?
If you write a program to be run in parallel in multiple cores of a computer or multi-computer, then you should setup a configuration in visual studio before it actually runs in multiple cores (or computer).
Here are the steps.
1. Go to Project ->”Project Name” Properties.
2. Go to Configuration Properties.
3. Go to C/C++ -> Language
4. In the right window, look for OpenMP Support and set its value to Yes and you are done.
After this configuration, you will actually be able to run the program in parallel.
June 17th, 2009 in
Visual C++ | tags: OpenMP
http://software.intel.com/en-us/intel-parallel-studio-home/
When I set the compiler for openmp and add a #pragma omp parallel for
when it runs I get that it didn’t find vcomp90d.dll
I must need to change something else in the project to get it to run or something.