We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ceb2739 commit be3ae3cCopy full SHA for be3ae3c
1 file changed
third_party/nvidia/backend/compiler.py
@@ -80,12 +80,12 @@ def get_ptx_version_from_options(options, arch: int):
80
def get_features(options, arch: int):
81
ptx_version = get_ptx_version_from_options(options, arch)
82
83
- # PTX 8.6 is the max version supported by llvm c1188642.
+ # PTX 8.6 is the max version supported by llvm 979132a0.
84
#
85
# To check if a newer PTX version is supported, increase this value
86
# and run a test. If it's not supported, LLVM will print a warning
87
# like "+ptx8.4 is not a recognized feature for this target".
88
- llvm_ptx_version = min(86, ptx_version)
+ llvm_ptx_version = min(90, ptx_version)
89
features = f'+ptx{llvm_ptx_version}'
90
return features
91
0 commit comments