Files
composable_kernel/python/ck4inductor/__init__.py
Illia Silin 7582c9e73f Upgrade to ROCm7.1.1 as default compiler. (#3370)
* upgrade to rocm7.1.1 as new default compiler

* fix jenkinsfile
2025-12-09 07:35:32 -08:00

24 lines
667 B
Python

# Copyright (c) Advanced Micro Devices, Inc., or its affiliates.
# SPDX-License-Identifier: MIT
def __version__():
import subprocess
# needs to be manually updated
rocm_version = "7.1.1"
hash_width = 6
try:
hash = subprocess.check_output("git rev-parse HEAD", shell=True, text=True)[
:hash_width
]
except Exception:
hash = "0" * hash_width
try:
change_count = subprocess.check_output(
f"git rev-list rocm-{rocm_version}..HEAD --count", shell=True, text=True
).strip()
except Exception:
change_count = "0"
return f"{rocm_version}.dev{change_count}+g{hash}"