I find the build_all.sh
in torch/lib
(version 0.2.0) is changed to build_libs.sh
.
But the “new” build_libs.sh
can not build the lib/* dependence ?
Is this due to the not build this lib/* files before? (I see there is not build xxx in build_libs.sh
)
build TH
build THS
build THNN
if [[ $WITH_CUDA -eq 1 ]]; then
build THC
build THCS
build THCUNN
fi
if [[ $WITH_NCCL -eq 1 ]]; then
build_nccl
fi
# THPP has dependencies on both CPU and CUDA, so build it
# after those libraries have been completed
build THPP
# The shared memory manager depends on TH
CPP_FLAGS=" -std=c++11 "
build libshm
build ATen