KPConv-PyTorch/cpp_wrappers/compile_wrappers.sh
HuguesTHOMAS 6793167fcd .
2021-07-29 08:53:48 -04:00

11 lines
185 B
Bash
Executable file

#!/bin/bash
# Compile cpp subsampling
cd cpp_subsampling
python3 setup.py build_ext --inplace
cd ..
# Compile cpp neighbors
cd cpp_neighbors
python3 setup.py build_ext --inplace
cd ..