KPConv-PyTorch/cpp_wrappers/compile_wrappers.sh
2020-03-31 15:42:35 -04:00

11 lines
185 B
Bash

#!/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 ..