Cleanup and update changelog

This commit is contained in:
Disty0
2025-06-11 16:03:33 +03:00
parent 71be3c7d45
commit 6aa5c08fb0
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -18,7 +18,7 @@
- **ROCm**
- Support ROCm 6.4 with `---use-nightly`
- Don't override user set gfx version
- Don't override gfx version with RX 9000
- Don't override gfx version with RX 9000 and gfx1101
- Fix flash-atten repo
- **SDNQ Quantization**
+3 -3
View File
@@ -81,13 +81,13 @@ class Agent:
self.blaslt_supported = os.path.exists(os.path.join(blaslt_tensile_libpath, f"Kernels.so-000-{name}.hsaco" if sys.platform == "win32" else f"extop_{name}.co"))
def get_gfx_version(self) -> Union[str, None]:
if self.gfx_version >= 0x1102 and self.gfx_version < 0x1200:
return "11.0.0"
elif self.gfx_version == 0x1101:
if self.gfx_version == 0x1101:
if version is None or float(version) < 6.4:
return "11.0.0" # gfx1101 requires rocm 6.4.1
else:
return None
elif self.gfx_version >= 0x1102 and self.gfx_version < 0x1200:
return "11.0.0"
elif self.gfx_version >= 0x1000 and self.gfx_version < 0x1100:
# gfx1010 users had to override gfx version to 10.3.0 in Linux
# it is unknown whether overriding is needed in ZLUDA