[v0.22] Small various fixes

This commit is contained in:
Dr-Noob
2021-12-28 16:43:11 +01:00
parent 98a70d5c9e
commit 6f555f1b47
5 changed files with 13 additions and 11 deletions

View File

@@ -18,13 +18,13 @@ fi
# - set CMAKE_CUDA_COMPILER to your nvcc binary:
# - set CMAKE_CUDA_COMPILER_TOOLKIT_ROOT to the CUDA root dir
# for example:
# cmake -DCMAKE_CUDA_COMPILER=/usr/local/cuda/bin/nvcc -DCMAKE_CUDA_COMPILER_TOOLKIT_ROOT=/usr/local/cuda/ ..
# cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCMAKE_CUDA_COMPILER=/usr/local/cuda/bin/nvcc -DCMAKE_CUDA_COMPILER_TOOLKIT_ROOT=/usr/local/cuda/ ..
# In case you want to explicitely disable a backend, you can:
# Disable CUDA backend:
# cmake -DENABLE_CUDA_BACKEND=OFF ..
# cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DENABLE_CUDA_BACKEND=OFF ..
# Disable Intel backend:
# cmake -DENABLE_INTEL_BACKEND=OFF ..
# cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DENABLE_INTEL_BACKEND=OFF ..
cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE ..
make -j$(nproc)