Conversation
orizi
force-pushed
the
orizi/09-09-fix_run_hints_of_each_visited_pc_in_run_for_steps
branch
from
September 9, 2026 08:39
1c7d205 to
0b69496
Compare
|
Benchmark Results for unmodified programs 🚀
|
orizi
force-pushed
the
orizi/09-09-fix_run_hints_of_each_visited_pc_in_run_for_steps
branch
from
September 9, 2026 09:47
0b69496 to
681c028
Compare
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## claude/vm-execution-performance-32hi0c #2392 +/- ##
=======================================================================
Coverage 96.23% 96.23%
=======================================================================
Files 107 107
Lines 37985 38009 +24
=======================================================================
+ Hits 36555 36579 +24
Misses 1430 1430 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
orizi
force-pushed
the
orizi/09-09-fix_run_hints_of_each_visited_pc_in_run_for_steps
branch
from
September 9, 2026 10:06
681c028 to
258ef43
Compare
run_for_steps computed the hint slice for the entry pc once and reused it for every step, so hints at subsequent pcs never ran and the entry pc's hints re-ran on every step. Resolve the slice per step, as run_until_pc does. Only the non-extensive_hints path was affected. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
orizi
force-pushed
the
orizi/09-09-fix_run_hints_of_each_visited_pc_in_run_for_steps
branch
from
September 9, 2026 10:17
258ef43 to
1ebfbb4
Compare
|
Code quote: |
This branch has not been deployed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
run_for_stepscomputed the hint slice for the entry pc once and reused it for every step, so hints at subsequent pcs never ran and the entry pc's hints re-ran on every step. Resolve the slice per step, asrun_until_pcdoes. Only the non-extensive_hintspath was affected.Adds a regression test with a
vm_enter_scope()hint attached to a non-entry pc.Based on #2391.
🤖 Generated with Claude Code
This change is