Spaces:
Paused
Paused
File size: 465 Bytes
67b7e1c |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#!/bin/bash
# This script is used to install the remaining of the app requiring CUDA stuff
echo "Running post-install script (go take a coffee, this is gonna take a while)"
echo "cmake -B build"
# cmake -B build -D CMAKE_BUILD_TYPE=Release -D CUDA_TOOLKIT_ROOT_DIR=/usr/local/cuda-12.2/ -D CUDA_VERSION=12.2
cmake -B build -D CMAKE_BUILD_TYPE=Release -D CUDA_VERSION=12.2
echo "cmake --build build"
cmake --build build -- -j8
echo "dependency is finally built!" |