17 lines
1.0 KiB
Plaintext
17 lines
1.0 KiB
Plaintext
|
#%Module
|
||
|
|
||
|
proc ModulesHelp { } {
|
||
|
puts stderr { CUDA (formerly Compute Unified Device Architecture) is a parallel computing platform and programming model created by NVIDIA and implemented by the graphics processing units (GPUs) that they produce. CUDA gives developers access to the virtual instruction set and memory of the parallel computational elements in CUDA GPUs. }
|
||
|
}
|
||
|
|
||
|
module-whatis { CUDA (formerly Compute Unified Device Architecture) is a parallel computing platform and programming model created by NVIDIA and implemented by the graphics processing units (GPUs) that they produce. CUDA gives developers access to the virtual instruction set and memory of the parallel computational elements in CUDA GPUs. }
|
||
|
|
||
|
set root /cluster/software/CUDA/5.5.22
|
||
|
|
||
|
prepend-path CPATH $root/include
|
||
|
prepend-path LD_LIBRARY_PATH $root/lib64
|
||
|
prepend-path PATH $root/bin
|
||
|
prepend-path PATH $root/open64/bin
|
||
|
prepend-path CUDA_HOME $root
|
||
|
prepend-path CUDA_PATH $root
|