From b670c452764ef8a406af6cc120ee84647cead24b Mon Sep 17 00:00:00 2001 From: Dan Saunders Date: Mon, 22 Sep 2025 16:27:22 -0400 Subject: [PATCH] fix --- scripts/benchmarks/deepseek_v3_moe_sweep.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/benchmarks/deepseek_v3_moe_sweep.py b/scripts/benchmarks/deepseek_v3_moe_sweep.py index c6eac44ba..87124056f 100644 --- a/scripts/benchmarks/deepseek_v3_moe_sweep.py +++ b/scripts/benchmarks/deepseek_v3_moe_sweep.py @@ -11,9 +11,9 @@ from pathlib import Path from types import SimpleNamespace CURRENT_DIR = Path(__file__).resolve().parent -PACKAGE_ROOT = CURRENT_DIR.parent -if str(PACKAGE_ROOT) not in sys.path: - sys.path.insert(0, str(PACKAGE_ROOT)) +REPO_ROOT = CURRENT_DIR.parent.parent +if str(REPO_ROOT) not in sys.path: + sys.path.insert(0, str(REPO_ROOT)) from scripts.benchmarks.deepseek_v3_moe import ( DTYPE_MAP,