Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/hyperloom/inference_optimizer/cli/executors.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,8 +285,12 @@ def _register_executors(
)

# FRAMEWORK per-candidate executor — Coordinator-internal only.
# Key must match the kind the FRAMEWORK phase enqueues ("framework_agent",
# per action_surfaces.COORDINATOR_INTERNAL_ACTIONS and
# actions/_meta/framework_agent.yaml); registering it as "framework" left
# every discovered PR candidate stamped no_result_failed.
coordinator.sub.register_executor(
"framework",
"framework_agent",
FrameworkAgentExecutor(session_dir=session_dir),
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,10 @@ def test_register_executors_wires_full_set_and_kernel_noops():
assert kind in reg
assert "target_analysis" in reg
assert "integrate_patch" in reg
assert "framework" in reg
# Must match the kind the FRAMEWORK phase enqueues; a stale "framework"
# key silently drops every discovered PR candidate.
assert "framework_agent" in reg
assert "framework" not in reg
assert "roofline" in reg
assert any(fn is _noop_prep for fn in reg.values())

Expand Down
Loading