KPConv-PyTorch/cpp_wrappers/compile_wrappers.sh

11 lines
185 B
Bash
Raw Permalink Normal View History

2020-03-31 19:42:35 +00:00
#!/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 ..