mirror of
https://github.com/vladmandic/automatic
synced 2026-09-19 17:24:32 +02:00
Cleanup and update changelog
This commit is contained in:
+1
-1
@@ -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
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user