Skip to content

Commit 4a0c5a0

Browse files
authored
Merge pull request #37 from sergeyvfx/fix_gpu_archs
Fix compilation error using SDK 6.3
2 parents 9452e5c + a513107 commit 4a0c5a0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scripts/bitcodes/compile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def compileAmd():
100100

101101

102102
if hip_sdk_version_num >= 63:
103-
gpus_archs.append('gfx1152')
103+
gpus.append('gfx1152')
104104

105105
if hip_sdk_version_num >= 62: # Navi4 supported from 6.2
106106
gpus.append('gfx1200')

scripts/bitcodes/precompile_bitcode.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def compileAmd():
107107

108108

109109
if hip_sdk_version_num >= 63:
110-
gpus_archs.append('gfx1152')
110+
gpus.append('gfx1152')
111111

112112
if hip_sdk_version_num >= 62: # Navi4 supported from 6.2
113113
gpus.append('gfx1200')

0 commit comments

Comments
 (0)