From 800d1ff4ca1881c91287f0d9d9d0614a669de029 Mon Sep 17 00:00:00 2001 From: ysun67 Date: Tue, 19 May 2026 16:19:42 -0400 Subject: [PATCH] chore: fix I001 import sort in complete_runner.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Pre-existing ruff failure on design/redesign-package — both PR-1a (#78) and PR-1b (#77) inherit it and fail CI. One-line mechanical re-sort (ep_has_work_stealing import moved into the alphabetical block below). No behavior change. Co-Authored-By: Claude Opus 4.7 (1M context) --- src/srdatalog/ir/codegen/cuda/complete_runner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/srdatalog/ir/codegen/cuda/complete_runner.py b/src/srdatalog/ir/codegen/cuda/complete_runner.py index 039ebf2..e3c2237 100644 --- a/src/srdatalog/ir/codegen/cuda/complete_runner.py +++ b/src/srdatalog/ir/codegen/cuda/complete_runner.py @@ -43,7 +43,6 @@ has_tiled_cartesian_eligible, ) from srdatalog.ir.codegen.cuda.plugin import plugin_gen_host_view_setup, plugin_view_count -from srdatalog.ir.mir.passes import ep_has_work_stealing # Pure-template phase emitters now live in the dialect's runner module. # Local aliases preserve the legacy call sites until the rest of this @@ -75,6 +74,7 @@ compute_total_view_count, source_spec_key, ) +from srdatalog.ir.mir.passes import ep_has_work_stealing # ----------------------------------------------------------------------------- # Source spec extraction helpers (mirror Nim's inline lambdas)