Difference between revisions of "GPU621/DPS921 Student Resources"
(→TBB) |
|||
Line 9: | Line 9: | ||
* [https://www.threadingbuildingblocks.org/download TBB Download Page] | * [https://www.threadingbuildingblocks.org/download TBB Download Page] | ||
* [http://www.inf.ed.ac.uk/teaching/courses/ppls/TBBtutorial.pdf Intel's tutorial] | * [http://www.inf.ed.ac.uk/teaching/courses/ppls/TBBtutorial.pdf Intel's tutorial] | ||
+ | === Configuration === | ||
+ | ==== Linux ==== | ||
+ | * add to LD_LIBRARY_PATH /usr/local/gcc/tbb41_20130613oss/lib/ia32/gcc4.1 | ||
+ | * needed for dynamic loaded libraries | ||
+ | * use ldd <binary> to check | ||
+ | * -v option sends intermediate commands to cerr | ||
+ | |||
== OpenMP == | == OpenMP == | ||
* [http://openmp.org/wp/ OpenMP Home Page] | * [http://openmp.org/wp/ OpenMP Home Page] |
Revision as of 08:21, 14 January 2014
GPU621/DPS921 | Participants | Groups and Projects | Resources | Glossary
The purpose of this page is to share useful information that can help groups with their projects.
Contents
Installation Notes
Cilk Plus
TBB
Configuration
Linux
- add to LD_LIBRARY_PATH /usr/local/gcc/tbb41_20130613oss/lib/ia32/gcc4.1
- needed for dynamic loaded libraries
- use ldd <binary> to check
- -v option sends intermediate commands to cerr
OpenMP
OpenCL
CUDA
- Visual Studio 2012 Ultimate | Select Software Downloads | Go To Visual Studio 2012 Ultimate 1.49GB | Download iso | Burn, if error burn again | Finally, install
- CUDA Downloads
- Installation add the following environment variables
- CUDA_PATH - points to the default version
- CUDA_PATH_INC
- CUDA_PATH_LIB
- Visual Studio IDE Settings for .cu files
- Project -> Build Customizations -> Select CUDA 5.5
- Source file -> Properites -> Item Type -> CUDA C/C++
- Project -> Properties -> Configuration -> VC++ Directories -> $(CUDA_PATH_INC); $(CUDA_PATH_LIB);
- Project -> Properties -> Configuration -> Linker -> Input -> cudart.lib
MPI
Compilation Notes
Cilk Plus
TBB
OpenCL
- AMD
- cl opencl.cpp "%AMDAPPSDKROOT%"lib/x86/OpenCL.lib
- Environmental Variables
- INCLUDE add "C:\Program Files\AMD_APP_SDK\2.9\include";
- LIB add "C:\Program Files\AMD APP SDK\2.9\lib\x86";
CUDA
- compiling with nvcc
- Fermi cards - nvcc -code=sm_20 _arch=compute_20
- nvcc opencl.cpp -lOpenCL