Index of /examples/gpu/examples/ex01-helloworld

[ICO]NameLast modifiedSizeDescription

[PARENTDIR]Parent Directory   -  
[TXT]Readme 2014-02-27 10:25 1.0K 
[TXT]helloCuda.cu 2014-06-06 12:00 652  

RCS "Introduction to GPU Programming" Tutorial Examples: Hello, Cuda!

This directory contains an example cuda program named "helloCuda.cu"

Program Compilation:

module load cuda/5.0
nvcc -o helloCuda helloCuda.cu -arch sm_20

Program Execution:

CUDA program should be executed on a GPU-enabled machine. To request a node with GPUs, execute the following commands at the SCC prompt:
qsh -V -l gpus=1
Users who are members of any Medical Campus projects must also include their project group name:
qsh -P groupname -V -l gpus=1
When the terminal window appears, to execute the program, type:
./helloCuda

Contact Information

Research Computing Services: help@scc.bu.edu

Operating System Requirements

The examples presented in this directory were written for Linux OS, but should work on any OS where
- c and nvcc compilers available
- NVIDIA's GPU(s) with compute capability 2.0 and higher

Updates

2013-06-01: The first version of Intro to GPU programming tutorial created