Skip to content

Build and Install

Skyler Ruiter edited this page Jun 23, 2025 · 9 revisions

Build and Install

Basic CMake Build and Install

git clone https://github.com/skyler-ruiter/FZModules.git FZMod
cd FZMod
cmake -S . -B build -DCMAKE_CUDA_ARCHITECTURES="80;86;89;90;100;120"
cd build
make -j
make install

Additional CMake Options

  • -DCMAKE_BUILD_TYPE=<Debug/Release> Build a debug or release version of codebase
  • -DFZMOD_BUILD_EXAMPLES=<ON/OFF> Optionally compile the example codes
  • -DBUILD_CUDASTF=<OFF/ON> Build the CUDASTF pipeline
  • -DENABLE_COVERAGE=<OFF/ON> Enable testing coverage (through googletest)
  • -DUSE_SANITIZER=<Address/Thread/Undefined/Leak/Compute> Build for use of the compute-sanitizer

Clone this wiki locally