Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 720 Bytes

File metadata and controls

38 lines (26 loc) · 720 Bytes

GPU PROGRAMMING

Sessions and Examples for Faster Computational processing

$./bin/nvc-wrapper --help

Compile the program

$./bin/nvc-wrapper --compile progname:NAME_OF_SOURCE

Clean and Remove build sessions

$./bin/nvc-wrapper --flush-all

Alternative calls

$./bin/nvc-wrapper --action=compile progname:NAME_OF_SOURCE

Making changes to the NVC Wrapper

  1. Open the nvc_wrapper script and edit the following line to match the actual location of you nvcc (Nvidia CUDA Compiler).
export PATH=$PATH:/usr/local/cuda-12.2/bin
  1. Below is an example of how we update to cuda-12.4.
export PATH=$PATH:/usr/local/cuda-12.4/bin