File tree 2 files changed +4
-11
lines changed
2 files changed +4
-11
lines changed Original file line number Diff line number Diff line change @@ -17,10 +17,6 @@ concurrency:
17
17
env :
18
18
HF_TOKEN : ${{ secrets.HF_TOKEN }}
19
19
20
- permissions :
21
- id-token : write
22
- contents : read
23
-
24
20
jobs :
25
21
test-nightly :
26
22
strategy :
@@ -37,16 +33,10 @@ jobs:
37
33
torch-spec : ' --pre torch --index-url https://download.pytorch.org/whl/nightly/cpu'
38
34
gpu-arch-type : " cpu"
39
35
gpu-arch-version : " "
40
- - name : ROCM Nightly
41
- runs-on : linux.rocm.gpu.2
42
- torch-spec : ' --pre torch --index-url https://download.pytorch.org/whl/nightly/rocm6.3'
43
- gpu-arch-type : " rocm"
44
- gpu-arch-version : " 6.3"
45
36
46
37
uses : pytorch/test-infra/.github/workflows/linux_job_v2.yml@main
47
38
with :
48
39
timeout : 120
49
- no-sudo : ${{ matrix.gpu-arch-type == 'rocm' }}
50
40
runner : ${{ matrix.runs-on }}
51
41
gpu-arch-type : ${{ matrix.gpu-arch-type }}
52
42
gpu-arch-version : ${{ matrix.gpu-arch-version }}
81
71
torch-spec : ' torch==2.5.1 --index-url https://download.pytorch.org/whl/cu121'
82
72
gpu-arch-type : " cuda"
83
73
gpu-arch-version : " 12.1"
74
+
84
75
- name : CPU 2.3
85
76
runs-on : linux.4xlarge
86
77
torch-spec : ' torch==2.3.0 --index-url https://download.pytorch.org/whl/cpu'
108
99
conda create -n venv python=3.9 -y
109
100
conda activate venv
110
101
echo "::group::Install newer objcopy that supports --set-section-alignment"
102
+ yum install -y devtoolset-10-binutils
103
+ export PATH=/opt/rh/devtoolset-10/root/usr/bin/:$PATH
111
104
python -m pip install --upgrade pip
112
105
pip install ${{ matrix.torch-spec }}
113
106
pip install -r dev-requirements.txt
Original file line number Diff line number Diff line change @@ -607,7 +607,7 @@ def _torch_version_at_least(min_version):
607
607
def is_MI300 ():
608
608
if torch .cuda .is_available () and torch .version .hip :
609
609
mxArchName = ["gfx940" , "gfx941" , "gfx942" ]
610
- archName = torch .cuda .get_device_properties (0 ).gcnArchName
610
+ archName = torch .cuda .get_device_properties ().gcnArchName
611
611
for arch in mxArchName :
612
612
if arch in archName :
613
613
return True
You can’t perform that action at this time.
0 commit comments