We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4a77c5 commit 2e79d28Copy full SHA for 2e79d28
python/mscclpp/__init__.py
@@ -291,9 +291,9 @@ def compile(
291
}
292
)
293
).hexdigest()
294
- plan_handel = _execution_plan_registry.get(plan_id)
295
- if plan_handel is not None:
296
- return plan_handel
+ plan_handle = _execution_plan_registry.get(plan_id)
+ if plan_handle is not None:
+ return plan_handle
297
298
plan_dir = os.environ.get("MSCCLPP_EXECUTION_PLAN_DIR", Path.home() / ".cache/mscclpp")
299
os.makedirs(plan_dir, exist_ok=True)
0 commit comments