1 From 10f3d49aa6084d1b9b9624017cce7df106b9fb7e Mon Sep 17 00:00:00 2001
2 From: Yaroslav Bolyukin <iam@lach.pw>
3 Date: Tue, 6 Feb 2024 13:51:28 +0100
4 Subject: [PATCH] ptxas: disable version key for non-cuda targets
7 python/triton/runtime/jit.py | 4 ++--
8 1 file changed, 2 insertions(+), 2 deletions(-)
10 diff --git a/python/triton/runtime/jit.py b/python/triton/runtime/jit.py
11 index d55972b4b..bd875a701 100644
12 --- a/python/triton/runtime/jit.py
13 +++ b/python/triton/runtime/jit.py
14 @@ -117,8 +117,8 @@ def version_key():
15 with open(lib.module_finder.find_spec(lib.name).origin, "rb") as f:
16 contents += [hashlib.md5(f.read()).hexdigest()]
18 - ptxas = path_to_ptxas()[0]
19 - ptxas_version = hashlib.md5(subprocess.check_output([ptxas, "--version"])).hexdigest()
20 + # ptxas = path_to_ptxas()[0]
21 + ptxas_version = "noptxas"
22 return '-'.join(TRITON_VERSION) + '-' + ptxas_version + '-' + '-'.join(contents)