✨ [diffusion][npu][quant] Add MXFP8 quantization support for Wan2.2 Diffusion on Ascend NPU (#20922)

Co-authored-by: ronnie_zheng <zl19940307@163.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Junlin Wu
2026-05-07 21:30:56 +03:00
committed by GitHub
co-authored by ronnie_zheng github-actions[bot]
parent 7d397ad23d
commit 80a6014243
16 changed files with 706 additions and 144 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ def main() -> int:
files = sorted(
f
for f in glob.glob("test/registered/**/*.py", recursive=True)
if not f.endswith("/conftest.py") and not f.endswith("/__init__.py")
if os.path.basename(f) not in ("conftest.py", "__init__.py")
)
if not files:
return 0
+1 -1
View File
@@ -29,7 +29,7 @@ def main() -> int:
job_to_files: dict[str, list[str]] = defaultdict(list)
for wf in workflows:
with open(wf) as f:
with open(wf, encoding="utf-8") as f:
data = yaml.safe_load(f)
if not data or "jobs" not in data:
continue