11 lines
185 B
Bash
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 ..
|