From e47b66e26883005b32395f4ea1692f593a5e33d3 Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 15 Aug 2026 12:43:55 +0000 Subject: [PATCH] fix: module name in probe_moe_fused_breakdown.sh --- qwen3_6_scripts/probe_moe_fused_breakdown.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qwen3_6_scripts/probe_moe_fused_breakdown.sh b/qwen3_6_scripts/probe_moe_fused_breakdown.sh index aa5416ca..f1bd4dbb 100755 --- a/qwen3_6_scripts/probe_moe_fused_breakdown.sh +++ b/qwen3_6_scripts/probe_moe_fused_breakdown.sh @@ -6,7 +6,7 @@ import torch import time import importlib.util -spec = importlib.util.spec_from_file_location('m', +spec = importlib.util.spec_from_file_location('corex_batched_gemm', 'qwen3_6_scripts/prebuilt/corex-3.2.3-ivcore10/corex_batched_gemm.so') mod = importlib.util.module_from_spec(spec) spec.loader.exec_module(mod)