Skip to content
Deshan Perera edited this page Nov 26, 2022 · 20 revisions

In this section we will look at how to install CATE

To install CATE as is you will have to download the code from our GitHub repository and compile it on-site.

The recommended command line prompts are provided below.

Download the repository

Download the repository using the following command:
git clone "https://github.com/theLongLab/CATE/"

Navigate into the downloaded folder:
cd CATE/

Load the modules

In some instances you will have to have both the GCC and NVCC compilers loaded,
usually having the nvcc compiler loaded is sufficient.

Load the GCC compiler:
module load gcc/10.2.0

Load the NVCC compiler:
module load cuda/11.3.0

Compile the code

Compile the code using:
nvcc -std=c++17 *.cu *.cpp -o "CATE"

Test run

Try running the executable by typing, this will print the help menu:
./CATE -h

Clone this wiki locally