✨ [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:
co-authored by
ronnie_zheng
github-actions[bot]
parent
7d397ad23d
commit
80a6014243
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user