File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -9,11 +9,14 @@ build-backend = "setuptools.build_meta"
99[tool .cibuildwheel ]
1010environment-pass = [" CUDA_PATH" ]
1111environment.PATH = " ${PATH}:${CUDA_PATH}/bin"
12- environment.LD_LIBRARY_PATH =" $LD_LIBRARY_PATH:$ CUDA_PATH/lib:$CUDA_PATH/lib64"
12+ environment.LD_LIBRARY_PATH =" ${ LD_LIBRARY_PATH}:${ CUDA_PATH} /lib:${ CUDA_PATH} /lib64"
1313environment.cuda = " 12.9"
1414environment.temp = " /tmp/cuda-temp"
1515xbuild-tools = [" cmake" , " ninja" ]
1616
1717[tool .cibuildwheel .linux ]
18- before-all = " {package}/scripts/build-env/manylinux.sh"
18+ before-all = [
19+ " chmod +x {package}/scripts/build-env/manylinux.sh" ,
20+ " {package}/scripts/build-env/manylinux.sh"
21+ ]
1922xbuild-tools = [" cmake" , " ninja" , " nvcc" ]
Original file line number Diff line number Diff line change 1313cd ../..
1414
1515# Install dependencies for building Tensor-Array on manylinux
16+ echo " Installing dependencies for building Tensor-Array on manylinux..."
1617chmod +x tensor-array-repo/Tensor-Array/scripts/actions/install-cuda-rhel.sh
18+ echo " Installing required packages..."
1719$USE_SUDO dnf -y install redhat-lsb-core wget
20+ echo " Running CUDA installation script..."
1821tensor-array-repo/Tensor-Array/scripts/actions/install-cuda-rhel.sh
1922
2023# Check if nvcc is available
24+ echo " Checking for nvcc..."
2125if ! command -v nvcc & > /dev/null; then
2226 echo " nvcc could not be found. Please ensure CUDA is installed correctly."
2327 exit 1
2428fi
29+ echo " nvcc is available. Proceeding with the build environment setup."
You can’t perform that action at this time.
0 commit comments