File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -16,11 +16,16 @@ jobs:
16
16
env :
17
17
CIBW_BUILD : " cp312-manylinux_x86_64"
18
18
CIBW_BEFORE_ALL : >
19
- apt-get install -y libopenblas-dev gcc-9 g++-9
19
+ yum install -y openblas-devel gtest wget yum-utils && \
20
+ wget https://developer.download.nvidia.com/compute/cuda/12.1.1/local_installers/cuda-repo-rhel7-12-1-local-12.1.1_530.30.02-1.x86_64.rpm && \
21
+ rpm -i cuda-repo-rhel7-12-1-local-12.1.1_530.30.02-1.x86_64.rpm && \
22
+ yum clean all && \
23
+ yum -y install nvidia-driver-latest-dkms && \
24
+ yum -y install cuda
20
25
CIBW_BEFORE_BUILD : >
21
26
pip install torch==2.3.1+cu121 torchvision -f https://download.pytorch.org/whl/torch_stable.html
22
27
&& pip install -r requirements.txt
23
- CIBW_MANYLINUX_X86_64_IMAGE : " aihwkit/manylinux2014_x86_64_aihwkit_cuda "
28
+ CIBW_MANYLINUX_X86_64_IMAGE : " quay.io/pypa/manylinux2014_x86_64 "
24
29
CIBW_REPAIR_WHEEL_COMMAND : >
25
30
auditwheel repair -w {dest_dir} {wheel} --exclude libtorch_python.so
26
31
steps :
You can’t perform that action at this time.
0 commit comments