Intel® oneAPI Threading Building Blocks
Ask questions and share information about adding parallelism to your applications when using this threading library.

Develop application visual studio2010

mohan_arumugam
Beginner
297 Views
hi friends,
can anyone help me how to start an application in intel-tbb by using visual studio-2010 with configuration settings also too..??
0 Kudos
2 Replies
Kirill_R_Intel
Employee
297 Views

Mohan,

I assume youre using standalone TBB, without Intel Composer or Intel Composer XE. Some information on installation can be found in INSTALL.txt in TBB archive and Tutorial.pdf here:

http://threadingbuildingblocks.org/documentation.php

Once you have installed Intel TBB, create a new project in VS2010. Then go to Project->Properties->Configuration Properties

In VC++ Directories, go to Include Directories and add TBB include path: /tbb/include. Please refer to the picture below:

Then you should do the same with library directories. In VC++ Directories, go to Library Directories and add TBB library path. For 32-bit version this should be \tbb\lib\ia32\vc10, for 64-bit: \tbb\lib\intel64\vc10.

After this your environment will be ready for creating TBB applications.

Regards,
Kirill
0 Kudos
Alexey-Kukanov
Employee
297 Views
You may also try the plugin we developed for Visual Studio integration of TBB in case the integration provided with Intel Composer is unavailable. The plugin can be downloaded from here: http://threadingbuildingblocks.org/ver.php?fid=129.
0 Kudos
Reply