Skip to content

Building the example code

Glen Hansen edited this page Jun 2, 2022 · 1 revision

This page describes how to build the code from this repository on Titan.

  • You need to add the PATH to the Nvidia GPU compiler. Please go to your home directory:
cd
  • Edit your .profile file and add the lines
if [ -d "/usr/local/cuda/bin" ] ; then
    PATH="/usr/local/cuda/bin:$PATH"
fi

This adds the location of the nvcc compiler to your PATH.

Clone this wiki locally