18 lines
298 B
Bash
Executable File
18 lines
298 B
Bash
Executable File
#!/bin/bash -e
|
|
###
|
|
# @Description:
|
|
# @Author: L LC @amov
|
|
# @Date: 2023-11-21 16:10:38
|
|
# @LastEditors: L LC @amov
|
|
# @LastEditTime: 2023-11-28 11:27:13
|
|
# @FilePath: /SpireCV/build_on_x86_cuda.sh
|
|
###
|
|
|
|
rm -rf build
|
|
mkdir build
|
|
cd build
|
|
cmake .. -DPLATFORM=X86_CUDA
|
|
make -j4
|
|
sudo make install
|
|
|