Skip to content

Resolve scopes before flattening Network#4235

Open
timon-schelling wants to merge 5 commits into
masterfrom
resolve-scopes
Open

Resolve scopes before flattening Network#4235
timon-schelling wants to merge 5 commits into
masterfrom
resolve-scopes

Conversation

@timon-schelling

Copy link
Copy Markdown
Member

Followup for #4221 that resolves issues with scope resolution when using it #4210
Also clean up accidentally committed test nodes

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request refactors scope input resolution in the node graph to occur recursively before flattening, utilizing a new ScopeChain helper. It also ensures networks are wrapped in scope prior to expansion. Feedback points out a critical compilation error in graphene-cli/src/main.rs where wrapped_network is referenced without being declared, as well as an opportunity to simplify resolve_scope_inputs by removing dead code and an unreachable assertion.

Important

The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.

Comment on lines 245 to 249
let preprocessor = preprocessor::Preprocessor::new();
preprocessor.expand_network(&mut network, &ResourceRegistry::default()).expect("Failed to expand network"); // TODO: actually load the resources from the document

let wrapped_network = wrap_network_in_scope(network.clone(), editor_api);
preprocessor.expand_network(&mut wrapped_network, &ResourceRegistry::default()).expect("Failed to expand network"); // TODO: actually load the resources from the document

let compiler = Compiler {};
compiler.compile_single(wrapped_network).map_err(|x| x.into())

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

critical

The variable wrapped_network is used on lines 246 and 249 but is never declared in this scope, which will cause a compilation error. You need to wrap network in the scope using wrap_network_in_scope before expanding it, similar to the changes made in runtime.rs and benchmark_util.rs.

	let mut wrapped_network = wrap_network_in_scope(network, editor_api);
	let preprocessor = preprocessor::Preprocessor::new();
	preprocessor.expand_network(&mut wrapped_network, &ResourceRegistry::default()).expect("Failed to expand network"); // TODO: actually load the resources from the document

	let compiler = Compiler {};
	compiler.compile_single(wrapped_network).map_err(|x| x.into())

Comment on lines +660 to +664
pub fn resolve_scope_inputs(&mut self) {
let mut leftover = Vec::new();
self.resolve_scope_inputs_with(None, &mut leftover);
assert!(leftover.is_empty(), "Unresolved scope keys at top level: {leftover:?}");
}

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The leftover vector and the subsequent assertion are dead code. Because resolve_scope_inputs_with panics immediately on line 688 if a scope key is not found in any ancestor, an unresolved key at the top level will never be pushed to leftover. If a key is successfully resolved at the top level, it is handled by the scope_injections check and also not pushed to leftover. Thus, leftover is guaranteed to always be empty, making the assertion unreachable. We can simplify this by removing the assertion and passing a temporary vector.

	pub fn resolve_scope_inputs(&mut self) {
		self.resolve_scope_inputs_with(None, &mut Vec::new());
	}

@cubic-dev-ai cubic-dev-ai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

2 issues found across 6 files

Confidence score: 3/5

  • In node-graph/graphene-cli/src/main.rs, using expect on preprocess failure can panic the CLI instead of propagating an error from compile_graph, so users may see abrupt crashes rather than a handled failure path — replace the expect with error return/propagation before merging.
  • In node-graph/graph-craft/src/document.rs, the leftover vector and follow-up assertion appear to be dead code while missing top-level scope keys still lead to an unwrap-style failure path, which can hide intent and make future regressions harder to catch — remove or refactor the dead path and handle the missing-scope case explicitly.
Prompt for AI agents (unresolved issues)

Check if these issues are valid — if so, understand the root cause of each and fix them. If appropriate, use sub-agents to investigate and fix each issue separately.


<file name="node-graph/graphene-cli/src/main.rs">

<violation number="1" location="node-graph/graphene-cli/src/main.rs:246">
P2: `expect` here panics the CLI on preprocess failure instead of returning an error from `compile_graph`.

(Based on your team's feedback about avoiding panics in application code.) [FEEDBACK_USED].</violation>
</file>

<file name="node-graph/graph-craft/src/document.rs">

<violation number="1" location="node-graph/graph-craft/src/document.rs:663">
P3: The `leftover` vector and the subsequent assertion are dead code. At the top level, if a scope key is not found in `self.scope_injections`, `chain.get()` will also fail (since `parent` is `None`), causing the `unwrap_or_else` to panic before anything is pushed to `leftover`. The vector is guaranteed to always be empty.</violation>
</file>

Reply with feedback, questions, or to request a fix.

Re-trigger cubic

Comment thread node-graph/graphene-cli/src/main.rs Outdated
preprocessor.expand_network(&mut network, &ResourceRegistry::default()).expect("Failed to expand network"); // TODO: actually load the resources from the document

let wrapped_network = wrap_network_in_scope(network.clone(), editor_api);
preprocessor.expand_network(&mut wrapped_network, &ResourceRegistry::default()).expect("Failed to expand network"); // TODO: actually load the resources from the document

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2: expect here panics the CLI on preprocess failure instead of returning an error from compile_graph.

(Based on your team's feedback about avoiding panics in application code.) .

View Feedback: 1 2

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At node-graph/graphene-cli/src/main.rs, line 246:

<comment>`expect` here panics the CLI on preprocess failure instead of returning an error from `compile_graph`.

(Based on your team's feedback about avoiding panics in application code.) .</comment>

<file context>
@@ -243,9 +243,7 @@ fn compile_graph(document_string: String, editor_api: Arc<PlatformEditorApi>) ->
-	preprocessor.expand_network(&mut network, &ResourceRegistry::default()).expect("Failed to expand network"); // TODO: actually load the resources from the document
-
-	let wrapped_network = wrap_network_in_scope(network.clone(), editor_api);
+	preprocessor.expand_network(&mut wrapped_network, &ResourceRegistry::default()).expect("Failed to expand network"); // TODO: actually load the resources from the document
 
 	let compiler = Compiler {};
</file context>
Suggested change
preprocessor.expand_network(&mut wrapped_network, &ResourceRegistry::default()).expect("Failed to expand network"); // TODO: actually load the resources from the document
preprocessor.expand_network(&mut wrapped_network, &ResourceRegistry::default()).map_err(|err| std::io::Error::other(format!("Failed to expand network: {err}")))?; // TODO: actually load the resources from the document

pub fn resolve_scope_inputs(&mut self) {
let mut leftover = Vec::new();
self.resolve_scope_inputs_with(None, &mut leftover);
assert!(leftover.is_empty(), "Unresolved scope keys at top level: {leftover:?}");

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P3: The leftover vector and the subsequent assertion are dead code. At the top level, if a scope key is not found in self.scope_injections, chain.get() will also fail (since parent is None), causing the unwrap_or_else to panic before anything is pushed to leftover. The vector is guaranteed to always be empty.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At node-graph/graph-craft/src/document.rs, line 663:

<comment>The `leftover` vector and the subsequent assertion are dead code. At the top level, if a scope key is not found in `self.scope_injections`, `chain.get()` will also fail (since `parent` is `None`), causing the `unwrap_or_else` to panic before anything is pushed to `leftover`. The vector is guaranteed to always be empty.</comment>

<file context>
@@ -655,6 +655,59 @@ impl NodeNetwork {
+	pub fn resolve_scope_inputs(&mut self) {
+		let mut leftover = Vec::new();
+		self.resolve_scope_inputs_with(None, &mut leftover);
+		assert!(leftover.is_empty(), "Unresolved scope keys at top level: {leftover:?}");
+	}
+
</file context>

@github-actions

github-actions Bot commented Jun 14, 2026

Copy link
Copy Markdown
Performance Benchmark Results

🔧 Graph Compilation

compile_demo_art_gungraun::compile_group::compile_to_proto with_setup_0:(load_from_name(isometric-fountain))
Instructions: 29,780,029 (master) → 29,617,282 (HEAD) : $$\color{lime}-0.55\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     4|          4          -0.54%
D1mr                     390,979|    384,543          -1.65%
D1mw                     135,981|    138,548          +1.89%
DLmr                      31,590|     33,546          +6.19%
DLmw                      50,439|     57,361         +13.72%
Dr                     7,336,564|  7,313,693          -0.31%
Dw                     5,137,883|  5,135,894          -0.04%
EstimatedCycles       46,994,736| 47,048,303          +0.11%
I1MissRate                     0|          0          -6.20%
I1mr                      36,865|     34,390          -6.71%
ILmr                         803|        810          +0.87%
Ir                    29,780,029| 29,617,282          -0.55%
L1HitRate                     99|         99          +0.01%
L1hits                41,690,651| 41,509,388          -0.43%
LLHitRate                      1|          1          -2.73%
LLMissRate                     0|          0         +11.22%
LLdMissRate                    1|          1         +11.04%
LLhits                   480,993|    465,764          -3.17%
LLiMissRate                    0|          0          +1.43%
RamHitRate                     0|          0         +11.22%
RamHits                   82,832|     91,717         +10.73%
TotalRW               42,254,476| 42,066,869          -0.44%

compile_demo_art_gungraun::compile_group::compile_to_proto with_setup_1:(load_from_name(painted-dreams))
Instructions: 14,756,148 (master) → 14,775,764 (HEAD) : $$\color{red}+0.13\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     4|          4          +0.07%
D1mr                     186,165|    189,177          +1.62%
D1mw                      68,174|     66,026          -3.15%
DLmr                         755|        775          +2.65%
DLmw                      16,869|     19,202         +13.83%
Dr                     3,629,909|  3,637,346          +0.20%
Dw                     2,536,617|  2,545,757          +0.36%
EstimatedCycles       22,553,538| 22,657,759          +0.46%
I1MissRate                     0|          0          -9.77%
I1mr                      16,292|     14,720          -9.65%
ILmr                         654|        663          +1.38%
Ir                    14,756,148| 14,775,764          +0.13%
L1HitRate                     99|         99          +0.01%
L1hits                20,652,043| 20,688,944          +0.18%
LLHitRate                      1|          1          -1.39%
LLMissRate                     0|          0         +12.73%
LLdMissRate                    0|          0         +13.05%
LLhits                   252,353|    249,283          -1.22%
LLiMissRate                    0|          0          +1.24%
RamHitRate                     0|          0         +12.73%
RamHits                   18,278|     20,640         +12.92%
TotalRW               20,922,674| 20,958,867          +0.17%

compile_demo_art_gungraun::compile_group::compile_to_proto with_setup_2:(load_from_name(procedural-string-lights))
Instructions: 3,207,510 (master) → 3,208,675 (HEAD) : $$\color{red}+0.04\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     4|          4          -0.68%
D1mr                      38,800|     38,346          -1.17%
D1mw                      13,327|     13,533          +1.55%
DLmr                          13|         17         +30.77%
DLmw                       2,788|      2,774          -0.50%
Dr                       783,089|    784,204          +0.14%
Dw                       546,887|    548,497          +0.29%
EstimatedCycles        4,865,382|  4,867,390          +0.04%
I1MissRate                     0|          0          -5.07%
I1mr                       3,972|      3,772          -5.04%
ILmr                         649|        656          +1.08%
Ir                     3,207,510|  3,208,675          +0.04%
L1HitRate                     99|         99          +0.01%
L1hits                 4,481,387|  4,485,725          +0.10%
LLHitRate                      1|          1          -0.93%
LLMissRate                     0|          0          -0.17%
LLdMissRate                    0|          0          -0.56%
LLhits                    52,649|     52,204          -0.85%
LLiMissRate                    0|          0          +1.04%
RamHitRate                     0|          0          -0.17%
RamHits                    3,450|      3,447          -0.09%
TotalRW                4,537,486|  4,541,376          +0.09%

compile_demo_art_gungraun::compile_group::compile_to_proto with_setup_3:(load_from_name(parametric-dunescape))
Instructions: 11,638,389 (master) → 11,638,369 (HEAD) : $$\color{lime}-0.00\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     4|          4          -2.05%
D1mr                     154,037|    150,130          -2.54%
D1mw                      55,141|     55,125          -0.03%
DLmr                          35|         43         +22.86%
DLmw                      13,253|     13,244          -0.07%
Dr                     2,832,287|  2,835,801          +0.12%
Dw                     1,997,828|  2,002,960          +0.26%
EstimatedCycles       17,767,388| 17,759,174          -0.05%
I1MissRate                     0|          0          -3.58%
I1mr                      10,108|      9,746          -3.58%
ILmr                         770|        781          +1.43%
Ir                    11,638,389| 11,638,369          -0.00%
L1HitRate                     99|         99          +0.03%
L1hits                16,249,218| 16,262,129          +0.08%
LLHitRate                      1|          1          -2.14%
LLMissRate                     0|          0          +0.02%
LLdMissRate                    0|          0          -0.19%
LLhits                   205,228|    200,933          -2.09%
LLiMissRate                    0|          0          +1.43%
RamHitRate                     0|          0          +0.02%
RamHits                   14,058|     14,068          +0.07%
TotalRW               16,468,504| 16,477,130          +0.05%

compile_demo_art_gungraun::compile_group::compile_to_proto with_setup_4:(load_from_name(red-dress))
Instructions: 31,986,759 (master) → 32,140,634 (HEAD) : $$\color{red}+0.48\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     4|          4          -0.42%
D1mr                     426,413|    427,416          +0.24%
D1mw                     144,858|    144,478          -0.26%
DLmr                      34,909|     37,252          +6.71%
DLmw                      66,926|     76,601         +14.46%
Dr                     7,879,389|  7,918,425          +0.50%
Dw                     5,527,794|  5,559,716          +0.58%
EstimatedCycles       50,908,430| 51,482,227          +1.13%
I1MissRate                     0|          0          -9.84%
I1mr                      37,566|     34,034          -9.40%
ILmr                         803|        805          +0.25%
Ir                    31,986,759| 32,140,634          +0.48%
L1HitRate                     99|         99          +0.01%
L1hits                44,785,105| 45,012,847          +0.51%
LLHitRate                      1|          1          -3.43%
LLMissRate                     0|          0         +11.16%
LLdMissRate                    1|          1         +11.21%
LLhits                   506,199|    491,270          -2.95%
LLiMissRate                    0|          0          -0.23%
RamHitRate                     0|          0         +11.16%
RamHits                  102,638|    114,658         +11.71%
TotalRW               45,393,942| 45,618,775          +0.50%

compile_demo_art_gungraun::compile_group::compile_to_proto with_setup_5:(load_from_name(valley-of-spires))
Instructions: 23,229,545 (master) → 23,196,517 (HEAD) : $$\color{lime}-0.14\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     4|          4          -0.25%
D1mr                     289,813|    289,430          -0.13%
D1mw                      98,866|     98,650          -0.22%
DLmr                      16,481|     17,030          +3.33%
DLmw                      38,269|     40,252          +5.18%
Dr                     5,745,761|  5,746,846          +0.02%
Dw                     4,009,121|  4,016,987          +0.20%
EstimatedCycles       36,319,139| 36,356,960          +0.10%
I1MissRate                     0|          0         -10.05%
I1mr                      28,719|     25,795         -10.18%
ILmr                         754|        755          +0.13%
Ir                    23,229,545| 23,196,517          -0.14%
L1HitRate                     99|         99          +0.01%
L1hits                32,567,029| 32,546,475          -0.06%
LLHitRate                      1|          1          -1.60%
LLMissRate                     0|          0          +4.64%
LLdMissRate                    1|          1          +4.53%
LLhits                   361,894|    355,838          -1.67%
LLiMissRate                    0|          0          +0.28%
RamHitRate                     0|          0          +4.64%
RamHits                   55,504|     58,037          +4.56%
TotalRW               32,984,427| 32,960,350          -0.07%

🔄 Executor Update

update_executor_gungraun::update_group::update_executor with_setup_0:(setup_update_executor(isometric-fountain))
Instructions: 62,359,393 (master) → 56,843,530 (HEAD) : $$\color{lime}-8.85\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          +2.20%
D1mr                     683,099|    649,826          -4.87%
D1mw                     156,493|    135,123         -13.66%
DLmr                      17,654|     19,916         +12.81%
DLmw                      35,386|     39,415         +11.39%
Dr                    16,130,699| 14,735,458          -8.65%
Dw                    10,963,324| 10,050,821          -8.32%
EstimatedCycles       94,478,708| 86,709,639          -8.22%
I1MissRate                     0|          0        +163.84%
I1mr                      15,046|     36,186        +140.50%
ILmr                         518|        512          -1.16%
Ir                    62,359,393| 56,843,530          -8.85%
L1HitRate                     99|         99          -0.05%
L1hits                88,598,778| 80,808,674          -8.79%
LLHitRate                      1|          1          +4.14%
LLMissRate                     0|          0         +22.44%
LLdMissRate                    0|          0         +22.28%
LLhits                   801,080|    761,292          -4.97%
LLiMissRate                    0|          0          +8.43%
RamHitRate                     0|          0         +22.44%
RamHits                   53,558|     59,843         +11.73%
TotalRW               89,453,416| 81,629,809          -8.75%

update_executor_gungraun::update_group::update_executor with_setup_1:(setup_update_executor(painted-dreams))
Instructions: 31,783,690 (master) → 29,666,312 (HEAD) : $$\color{lime}-6.66\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          +1.29%
D1mr                     337,568|    324,677          -3.82%
D1mw                      76,071|     67,794         -10.88%
DLmr                         542|        936         +72.69%
DLmw                       6,032|     12,928        +114.32%
Dr                     8,204,740|  7,671,894          -6.49%
Dw                     5,584,141|  5,244,349          -6.08%
EstimatedCycles       47,460,555| 44,660,827          -5.90%
I1MissRate                     0|          0        +198.80%
I1mr                       7,837|     21,857        +178.89%
ILmr                         162|        168          +3.70%
Ir                    31,783,690| 29,666,312          -6.66%
L1HitRate                     99|         99          -0.05%
L1hits                45,151,095| 42,168,227          -6.61%
LLHitRate                      1|          1          +3.29%
LLMissRate                     0|          0        +122.94%
LLdMissRate                    0|          0        +125.14%
LLhits                   414,740|    400,296          -3.48%
LLiMissRate                    0|          0         +11.11%
RamHitRate                     0|          0        +122.94%
RamHits                    6,736|     14,032        +108.31%
TotalRW               45,572,571| 42,582,555          -6.56%

update_executor_gungraun::update_group::update_executor with_setup_2:(setup_update_executor(procedural-string-lights)...
Instructions: 7,636,990 (master) → 7,016,626 (HEAD) : $$\color{lime}-8.12\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          +0.99%
D1mr                      76,127|     72,011          -5.41%
D1mw                      19,446|     17,000         -12.58%
DLmr                           4|          3         -25.00%
DLmw                         587|        613          +4.43%
Dr                     1,947,256|  1,792,432          -7.95%
Dw                     1,328,533|  1,228,627          -7.52%
EstimatedCycles       11,332,279| 10,442,591          -7.85%
I1MissRate                     0|          0         +88.53%
I1mr                       3,662|      6,343         +73.21%
ILmr                         161|        167          +3.73%
Ir                     7,636,990|  7,016,626          -8.12%
L1HitRate                     99|         99          -0.04%
L1hits                10,813,544|  9,942,331          -8.06%
LLHitRate                      1|          1          +4.40%
LLMissRate                     0|          0         +13.20%
LLdMissRate                    0|          0         +13.02%
LLhits                    98,483|     94,571          -3.97%
LLiMissRate                    0|          0         +12.90%
RamHitRate                     0|          0         +13.20%
RamHits                      752|        783          +4.12%
TotalRW               10,912,779| 10,037,685          -8.02%

update_executor_gungraun::update_group::update_executor with_setup_3:(setup_update_executor(parametric-dunescape))
Instructions: 28,852,712 (master) → 26,223,606 (HEAD) : $$\color{lime}-9.11\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          +0.65%
D1mr                     291,477|    277,011          -4.96%
D1mw                      68,412|     60,935         -10.93%
DLmr                         102|        297        +191.18%
DLmw                       6,515|      8,544         +31.14%
Dr                     7,319,428|  6,786,229          -7.28%
Dw                     5,023,999|  4,729,300          -5.87%
EstimatedCycles       42,864,981| 39,419,099          -8.04%
I1MissRate                     0|          0        +146.30%
I1mr                       6,464|     14,470        +123.86%
ILmr                         164|        169          +3.05%
Ir                    28,852,712| 26,223,606          -9.11%
L1HitRate                     99|         99          -0.04%
L1hits                40,829,786| 37,386,719          -8.43%
LLHitRate                      1|          1          +4.25%
LLMissRate                     0|          0         +45.04%
LLdMissRate                    0|          0         +43.22%
LLhits                   359,572|    343,406          -4.50%
LLiMissRate                    0|          0         +13.38%
RamHitRate                     0|          0         +45.04%
RamHits                    6,781|      9,010         +32.87%
TotalRW               41,196,139| 37,739,135          -8.39%

update_executor_gungraun::update_group::update_executor with_setup_4:(setup_update_executor(red-dress))
Instructions: 73,404,393 (master) → 66,689,029 (HEAD) : $$\color{lime}-9.15\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          +0.50%
D1mr                     794,347|    740,376          -6.79%
D1mw                     180,413|    152,448         -15.50%
DLmr                      39,289|     31,833         -18.98%
DLmw                      63,677|     47,085         -26.06%
Dr                    18,972,482| 17,258,885          -9.03%
Dw                    12,901,860| 11,790,511          -8.61%
EstimatedCycles      112,341,705|101,864,969          -9.33%
I1MissRate                     0|          0        +229.08%
I1mr                      13,945|     41,692        +198.97%
ILmr                         639|        698          +9.23%
Ir                    73,404,393| 66,689,029          -9.15%
L1HitRate                     99|         99          -0.04%
L1hits               104,290,030| 94,803,909          -9.10%
LLHitRate                      1|          1          +6.21%
LLMissRate                     0|          0         -15.50%
LLdMissRate                    0|          0         -15.90%
LLhits                   885,100|    854,900          -3.41%
LLiMissRate                    0|          0         +20.23%
RamHitRate                     0|          0         -15.50%
RamHits                  103,605|     79,616         -23.15%
TotalRW              105,278,735| 95,738,425          -9.06%

update_executor_gungraun::update_group::update_executor with_setup_5:(setup_update_executor(valley-of-spires))
Instructions: 49,027,064 (master) → 44,861,328 (HEAD) : $$\color{lime}-8.50\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          +1.97%
D1mr                     526,954|    506,190          -3.94%
D1mw                     123,451|    105,871         -14.24%
DLmr                       3,230|      4,877         +50.99%
DLmw                      27,735|     28,902          +4.21%
Dr                    12,706,850| 11,718,405          -7.78%
Dw                     8,702,673|  8,039,405          -7.62%
EstimatedCycles       74,019,677| 68,211,918          -7.85%
I1MissRate                     0|          0        +191.34%
I1mr                      11,600|     30,924        +166.59%
ILmr                         204|        249         +22.06%
Ir                    49,027,064| 44,861,328          -8.50%
L1HitRate                     99|         99          -0.06%
L1hits                69,774,582| 63,976,153          -8.31%
LLHitRate                      1|          1          +5.22%
LLMissRate                     0|          0         +19.00%
LLdMissRate                    0|          0         +18.21%
LLhits                   630,836|    608,957          -3.47%
LLiMissRate                    0|          0         +33.39%
RamHitRate                     0|          0         +19.00%
RamHits                   31,169|     34,028          +9.17%
TotalRW               70,436,587| 64,619,138          -8.26%

🚀 Render: Cold Execution

run_once_gungraun::run_once_group::run_once with_setup_0:(setup_run_once(isometric-fountain))
Instructions: 33,541,948 (master) → 32,593,279 (HEAD) : $$\color{lime}-2.83\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          -0.83%
D1mr                     400,027|    383,203          -4.21%
D1mw                      79,030|     80,454          +1.80%
DLmr                      28,660|     28,069          -2.06%
DLmw                      15,210|     23,151         +52.21%
Dr                     8,805,315|  8,568,820          -2.69%
Dw                     5,956,314|  5,837,669          -1.99%
EstimatedCycles       52,717,635| 51,577,972          -2.16%
I1MissRate                     1|          1          +3.47%
I1mr                     236,745|    238,034          +0.54%
ILmr                       7,825|      7,828          +0.04%
Ir                    33,541,948| 32,593,279          -2.83%
L1HitRate                     99|         99          -0.01%
L1hits                47,587,775| 46,298,077          -2.71%
LLHitRate                      1|          1          -0.55%
LLMissRate                     0|          0         +17.39%
LLdMissRate                    0|          0         +19.63%
LLhits                   664,107|    642,643          -3.23%
LLiMissRate                    0|          0          +2.95%
RamHitRate                     0|          0         +17.39%
RamHits                   51,695|     59,048         +14.22%
TotalRW               48,303,577| 46,999,768          -2.70%

run_once_gungraun::run_once_group::run_once with_setup_1:(setup_run_once(painted-dreams))
Instructions: 304,124,988 (master) → 304,060,939 (HEAD) : $$\color{lime}-0.02\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     1|          1          +0.37%
D1mr                     962,353|    968,325          +0.62%
D1mw                     482,128|    490,388          +1.71%
DLmr                      29,847|     35,079         +17.53%
DLmw                      61,762|     94,106         +52.37%
Dr                    61,381,076| 61,653,302          +0.44%
Dw                    37,266,393| 37,598,382          +0.89%
EstimatedCycles      418,859,401|420,433,017          +0.38%
I1MissRate                     1|          1          -2.14%
I1mr                   1,814,970|  1,775,743          -2.16%
ILmr                      10,029|     10,234          +2.04%
Ir                   304,124,988|304,060,939          -0.02%
L1HitRate                     99|         99          +0.01%
L1hits               399,513,006|400,078,167          +0.14%
LLHitRate                      1|          1          -2.12%
LLMissRate                     0|          0         +36.99%
LLdMissRate                    0|          0         +40.16%
LLhits                 3,157,813|  3,095,037          -1.99%
LLiMissRate                    0|          0          +2.07%
RamHitRate                     0|          0         +36.99%
RamHits                  101,638|    139,419         +37.17%
TotalRW              402,772,457|403,312,623          +0.13%

run_once_gungraun::run_once_group::run_once with_setup_2:(setup_run_once(procedural-string-lights))
Instructions: 17,949,130 (master) → 17,867,926 (HEAD) : $$\color{lime}-0.45\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     2|          2          -0.75%
D1mr                     103,170|    101,717          -1.41%
D1mw                      37,524|     37,356          -0.45%
DLmr                         882|        875          -0.79%
DLmw                       1,414|      1,325          -6.29%
Dr                     4,524,014|  4,500,607          -0.52%
Dw                     3,196,796|  3,188,727          -0.25%
EstimatedCycles       26,856,798| 26,747,376          -0.41%
I1MissRate                     1|          1          +3.74%
I1mr                      92,623|     95,651          +3.27%
ILmr                       6,157|      6,174          +0.28%
Ir                    17,949,130| 17,867,926          -0.45%
L1HitRate                     99|         99          -0.01%
L1hits                25,436,623| 25,322,536          -0.45%
LLHitRate                      1|          1          +1.10%
LLMissRate                     0|          0          -0.50%
LLdMissRate                    0|          0          -3.79%
LLhits                   224,864|    226,350          +0.66%
LLiMissRate                    0|          0          +0.73%
RamHitRate                     0|          0          -0.50%
RamHits                    8,453|      8,374          -0.93%
TotalRW               25,669,940| 25,557,260          -0.44%

run_once_gungraun::run_once_group::run_once with_setup_3:(setup_run_once(parametric-dunescape))
Instructions: 25,707,801 (master) → 25,330,702 (HEAD) : $$\color{lime}-1.47\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     2|          2          -1.49%
D1mr                     177,250|    169,521          -4.36%
D1mw                      72,057|     75,020          +4.11%
DLmr                       3,974|      3,979          +0.13%
DLmw                       7,653|      9,339         +22.03%
Dr                     6,254,792|  6,201,322          -0.85%
Dw                     4,240,583|  4,248,716          +0.19%
EstimatedCycles       38,000,712| 37,613,748          -1.02%
I1MissRate                     0|          0          +2.72%
I1mr                      76,717|     77,646          +1.21%
ILmr                       4,821|      4,824          +0.06%
Ir                    25,707,801| 25,330,702          -1.47%
L1HitRate                     99|         99          +0.00%
L1hits                35,877,152| 35,458,553          -1.17%
LLHitRate                      1|          1          -0.63%
LLMissRate                     0|          0         +11.60%
LLdMissRate                    0|          0         +15.04%
LLhits                   309,576|    304,045          -1.79%
LLiMissRate                    0|          0          +1.55%
RamHitRate                     0|          0         +11.60%
RamHits                   16,448|     18,142         +10.30%
TotalRW               36,203,176| 35,780,740          -1.17%

run_once_gungraun::run_once_group::run_once with_setup_4:(setup_run_once(red-dress))
Instructions: 1,884,831,462 (master) → 1,884,701,596 (HEAD) : $$\color{lime}-0.01\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     1|          1          -1.00%
D1mr                   2,740,220|  2,703,871          -1.33%
D1mw                   1,270,373|  1,267,543          -0.22%
DLmr                     571,963|    568,065          -0.68%
DLmw                     708,958|    703,575          -0.76%
Dr                   451,361,289|451,386,948          +0.01%
Dw                   296,285,520|296,433,774          +0.05%
EstimatedCycles      2,695,589,985|2,694,831,734          -0.03%
I1MissRate                     0|          0          -4.43%
I1mr                   2,105,573|  2,012,090          -4.44%
ILmr                       7,314|      7,540          +3.09%
Ir                   1,884,831,462|1,884,701,596          -0.01%
L1HitRate                    100|        100          +0.01%
L1hits               2,626,362,105|2,626,538,814          +0.01%
LLHitRate                      0|          0          -2.56%
LLMissRate                     0|          0          -0.70%
LLdMissRate                    0|          0          -0.75%
LLhits                 4,827,931|  4,704,324          -2.56%
LLiMissRate                    0|          0          +3.10%
RamHitRate                     0|          0          -0.70%
RamHits                1,288,235|  1,279,180          -0.70%
TotalRW              2,632,478,271|2,632,522,318          +0.00%

run_once_gungraun::run_once_group::run_once with_setup_5:(setup_run_once(valley-of-spires))
Instructions: 31,126,699 (master) → 30,695,743 (HEAD) : $$\color{lime}-1.38\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          -0.30%
D1mr                     325,200|    318,409          -2.09%
D1mw                      71,041|     75,215          +5.88%
DLmr                       8,720|     10,754         +23.33%
DLmw                      14,173|     18,676         +31.77%
Dr                     7,955,661|  7,895,923          -0.75%
Dw                     5,338,493|  5,350,384          +0.22%
EstimatedCycles       47,635,711| 47,349,948          -0.60%
I1MissRate                     1|          1          +2.27%
I1mr                     195,276|    196,938          +0.85%
ILmr                       5,400|      5,425          +0.46%
Ir                    31,126,699| 30,695,743          -1.38%
L1HitRate                     99|         99          -0.01%
L1hits                43,829,336| 43,351,488          -1.09%
LLHitRate                      1|          1          -0.26%
LLMissRate                     0|          0         +24.54%
LLdMissRate                    0|          0         +29.02%
LLhits                   563,224|    555,707          -1.33%
LLiMissRate                    0|          0          +1.87%
RamHitRate                     0|          0         +24.54%
RamHits                   28,293|     34,855         +23.19%
TotalRW               44,420,853| 43,942,050          -1.08%

⚡ Render: Cached Execution

run_cached_gungraun::run_cached_group::run_cached with_setup_0:(setup_run_cached(isometric-fountain))
Instructions: 10,075,067 (master) → 9,151,532 (HEAD) : $$\color{lime}-9.17\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     6|          6          +0.40%
D1mr                     261,335|    239,178          -8.48%
D1mw                       3,710|      3,410          -8.09%
DLmr                      20,815|     19,883          -4.48%
DLmw                         284|        207         -27.11%
Dr                     2,899,315|  2,641,592          -8.89%
Dw                     1,607,146|  1,466,454          -8.75%
EstimatedCycles       16,282,864| 14,840,832          -8.86%
I1MissRate                     0|          0          +4.78%
I1mr                         539|        513          -4.82%
ILmr                         201|        205          +1.99%
Ir                    10,075,067|  9,151,532          -9.17%
L1HitRate                     98|         98          -0.01%
L1hits                14,315,944| 13,016,477          -9.08%
LLHitRate                      2|          2          +0.30%
LLMissRate                     0|          0          +4.78%
LLdMissRate                    0|          0          +4.45%
LLhits                   244,284|    222,806          -8.79%
LLiMissRate                    0|          0         +12.28%
RamHitRate                     0|          0          +4.78%
RamHits                   21,300|     20,295          -4.72%
TotalRW               14,581,528| 13,259,578          -9.07%

run_cached_gungraun::run_cached_group::run_cached with_setup_1:(setup_run_cached(painted-dreams))
Instructions: 10,648,472 (master) → 10,194,131 (HEAD) : $$\color{lime}-4.27\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     4|          5          +0.45%
D1mr                     212,954|    204,994          -3.74%
D1mw                       4,331|      4,295          -0.83%
DLmr                      26,750|     32,130         +20.11%
DLmw                         176|        188          +6.82%
Dr                     3,120,064|  2,991,409          -4.12%
Dw                     1,723,189|  1,652,544          -4.10%
EstimatedCycles       17,179,495| 16,656,532          -3.04%
I1MissRate                     0|          0          +0.35%
I1mr                         560|        538          -3.93%
ILmr                         287|        320         +11.50%
Ir                    10,648,472| 10,194,131          -4.27%
L1HitRate                     99|         99          -0.01%
L1hits                15,273,880| 14,628,257          -4.23%
LLHitRate                      1|          1          -2.96%
LLMissRate                     0|          0         +25.22%
LLdMissRate                    1|          1         +25.18%
LLhits                   190,632|    177,189          -7.05%
LLiMissRate                    0|          0         +16.47%
RamHitRate                     0|          0         +25.22%
RamHits                   27,213|     32,638         +19.94%
TotalRW               15,491,725| 14,838,084          -4.22%

run_cached_gungraun::run_cached_group::run_cached with_setup_2:(setup_run_cached(parametric-dunescape))
Instructions: 3,700,653 (master) → 3,212,026 (HEAD) : $$\color{lime}-13.20\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     6|          6          +0.62%
D1mr                      95,321|     84,262         -11.60%
D1mw                       2,692|      2,603          -3.31%
DLmr                          40|         59         +47.50%
DLmw                           1|          3        +200.00%
Dr                     1,120,090|    982,904         -12.25%
Dw                       654,208|    579,833         -11.37%
EstimatedCycles        5,876,003|  5,131,719         -12.67%
I1MissRate                     0|          0          +9.16%
I1mr                         495|        469          -5.25%
ILmr                         193|        192          -0.52%
Ir                     3,700,653|  3,212,026         -13.20%
L1HitRate                     98|         98          -0.03%
L1hits                 5,376,443|  4,687,429         -12.82%
LLHitRate                      2|          2          +1.60%
LLMissRate                     0|          0         +24.46%
LLdMissRate                    0|          0         +71.69%
LLhits                    98,274|     87,080         -11.39%
LLiMissRate                    0|          0         +14.62%
RamHitRate                     0|          0         +24.46%
RamHits                      234|        254          +8.55%
TotalRW                5,474,951|  4,774,763         -12.79%

run_cached_gungraun::run_cached_group::run_cached with_setup_3:(setup_run_cached(red-dress))
Instructions: 44,758,023 (master) → 43,719,202 (HEAD) : $$\color{lime}-2.32\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     4|          4          +0.26%
D1mr                     781,830|    765,567          -2.08%
D1mw                      33,736|     33,646          -0.27%
DLmr                     314,119|    306,930          -2.29%
DLmw                       2,754|      2,866          +4.07%
Dr                    12,951,954| 12,661,197          -2.24%
Dw                     6,885,562|  6,727,331          -2.30%
EstimatedCycles       77,379,537| 75,613,224          -2.28%
I1MissRate                     0|          0          -5.02%
I1mr                         526|        488          -7.22%
ILmr                         448|        427          -4.69%
Ir                    44,758,023| 43,719,202          -2.32%
L1HitRate                     99|         99          -0.00%
L1hits                63,779,447| 62,308,029          -2.31%
LLHitRate                      1|          1          +0.45%
LLMissRate                     0|          0          +0.07%
LLdMissRate                    2|          2          +0.03%
LLhits                   498,771|    489,478          -1.86%
LLiMissRate                    0|          0          -2.42%
RamHitRate                     0|          0          +0.07%
RamHits                  317,321|    310,223          -2.24%
TotalRW               64,595,539| 63,107,730          -2.30%

run_cached_gungraun::run_cached_group::run_cached with_setup_4:(setup_run_cached(valley-of-spires))
Instructions: 8,222,674 (master) → 7,545,706 (HEAD) : $$\color{lime}-8.23\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     6|          6          +0.45%
D1mr                     206,730|    191,129          -7.55%
D1mw                       3,427|      3,259          -4.90%
DLmr                       3,342|      4,146         +24.06%
DLmw                          84|        105         +25.00%
Dr                     2,376,363|  2,186,831          -7.98%
Dw                     1,323,481|  1,220,084          -7.81%
EstimatedCycles       12,873,620| 11,865,263          -7.83%
I1MissRate                     0|          0          +3.37%
I1mr                         506|        480          -5.14%
ILmr                         189|        188          -0.53%
Ir                     8,222,674|  7,545,706          -8.23%
L1HitRate                     98|         98          -0.01%
L1hits                11,711,855| 10,757,753          -8.15%
LLHitRate                      2|          2          +0.12%
LLMissRate                     0|          0         +33.67%
LLdMissRate                    0|          0         +34.75%
LLhits                   207,048|    190,429          -8.03%
LLiMissRate                    0|          0          +8.39%
RamHitRate                     0|          0         +33.67%
RamHits                    3,615|      4,439         +22.79%
TotalRW               11,922,518| 10,952,621          -8.14%

@github-actions

github-actions Bot commented Jun 14, 2026

Copy link
Copy Markdown
Performance Benchmark Results

🔧 Graph Compilation

compile_demo_art_gungraun::compile_group::compile_to_proto with_setup_0:(load_from_name(isometric-fountain))
Instructions: 29,784,877 (master) → 29,616,196 (HEAD) : $$\color{lime}-0.57\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     4|          4          -0.53%
D1mr                     391,024|    384,525          -1.66%
D1mw                     135,993|    138,612          +1.93%
DLmr                      31,590|     33,546          +6.19%
DLmw                      50,445|     57,356         +13.70%
Dr                     7,337,022|  7,313,622          -0.32%
Dw                     5,137,921|  5,135,915          -0.04%
EstimatedCycles       47,000,488| 47,047,201          +0.10%
I1MissRate                     0|          0          -6.18%
I1mr                      36,865|     34,390          -6.71%
ILmr                         803|        810          +0.87%
Ir                    29,784,877| 29,616,196          -0.57%
L1HitRate                     99|         99          +0.01%
L1hits                41,695,938| 41,508,206          -0.45%
LLHitRate                      1|          1          -2.72%
LLMissRate                     0|          0         +11.22%
LLdMissRate                    1|          1         +11.03%
LLhits                   481,044|    465,815          -3.17%
LLiMissRate                    0|          0          +1.45%
RamHitRate                     0|          0         +11.22%
RamHits                   82,838|     91,712         +10.71%
TotalRW               42,259,820| 42,065,733          -0.46%

compile_demo_art_gungraun::compile_group::compile_to_proto with_setup_1:(load_from_name(painted-dreams))
Instructions: 14,755,844 (master) → 14,775,928 (HEAD) : $$\color{red}+0.14\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     4|          4          +0.14%
D1mr                     186,024|    189,171          +1.69%
D1mw                      68,161|     66,066          -3.07%
DLmr                         756|        775          +2.51%
DLmw                      16,872|     19,204         +13.82%
Dr                     3,629,843|  3,637,291          +0.21%
Dw                     2,536,572|  2,545,684          +0.36%
EstimatedCycles       22,552,627| 22,657,991          +0.47%
I1MissRate                     0|          0          -9.77%
I1mr                      16,292|     14,720          -9.65%
ILmr                         654|        663          +1.38%
Ir                    14,755,844| 14,775,928          +0.14%
L1HitRate                     99|         99          +0.00%
L1hits                20,651,782| 20,688,946          +0.18%
LLHitRate                      1|          1          -1.31%
LLMissRate                     0|          0         +12.71%
LLdMissRate                    0|          0         +13.03%
LLhits                   252,195|    249,315          -1.14%
LLiMissRate                    0|          0          +1.24%
RamHitRate                     0|          0         +12.71%
RamHits                   18,282|     20,642         +12.91%
TotalRW               20,922,259| 20,958,903          +0.18%

compile_demo_art_gungraun::compile_group::compile_to_proto with_setup_2:(load_from_name(procedural-string-lights))
Instructions: 3,207,186 (master) → 3,208,967 (HEAD) : $$\color{red}+0.06\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     4|          4          -0.56%
D1mr                      38,794|     38,382          -1.06%
D1mw                      13,316|     13,540          +1.68%
DLmr                          13|         17         +30.77%
DLmw                       2,785|      2,775          -0.36%
Dr                       783,074|    784,203          +0.14%
Dw                       546,909|    548,467          +0.28%
EstimatedCycles        4,864,907|  4,867,853          +0.06%
I1MissRate                     0|          0          -5.09%
I1mr                       3,972|      3,772          -5.04%
ILmr                         649|        656          +1.08%
Ir                     3,207,186|  3,208,967          +0.06%
L1HitRate                     99|         99          +0.01%
L1hits                 4,481,087|  4,485,943          +0.11%
LLHitRate                      1|          1          -0.84%
LLMissRate                     0|          0          -0.07%
LLdMissRate                    0|          0          -0.42%
LLhits                    52,635|     52,246          -0.74%
LLiMissRate                    0|          0          +1.02%
RamHitRate                     0|          0          -0.07%
RamHits                    3,447|      3,448          +0.03%
TotalRW                4,537,169|  4,541,637          +0.10%

compile_demo_art_gungraun::compile_group::compile_to_proto with_setup_3:(load_from_name(parametric-dunescape))
Instructions: 11,639,706 (master) → 11,639,624 (HEAD) : $$\color{lime}-0.00\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     4|          4          -1.96%
D1mr                     154,008|    150,251          -2.44%
D1mw                      55,096|     55,125          +0.05%
DLmr                          35|         43         +22.86%
DLmw                      13,250|     13,248          -0.02%
Dr                     2,832,464|  2,835,913          +0.12%
Dw                     1,997,852|  2,002,941          +0.25%
EstimatedCycles       17,768,520| 17,761,126          -0.04%
I1MissRate                     0|          0          -3.58%
I1mr                      10,108|      9,746          -3.58%
ILmr                         770|        781          +1.43%
Ir                    11,639,706| 11,639,624          -0.00%
L1HitRate                     99|         99          +0.03%
L1hits                16,250,810| 16,263,356          +0.08%
LLHitRate                      1|          1          -2.05%
LLMissRate                     0|          0          +0.07%
LLdMissRate                    0|          0          -0.13%
LLhits                   205,157|    201,050          -2.00%
LLiMissRate                    0|          0          +1.43%
RamHitRate                     0|          0          +0.07%
RamHits                   14,055|     14,072          +0.12%
TotalRW               16,470,022| 16,478,478          +0.05%

compile_demo_art_gungraun::compile_group::compile_to_proto with_setup_4:(load_from_name(red-dress))
Instructions: 31,984,983 (master) → 32,139,923 (HEAD) : $$\color{red}+0.48\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     4|          4          -0.44%
D1mr                     426,537|    427,388          +0.20%
D1mw                     144,788|    144,435          -0.24%
DLmr                      34,908|     37,255          +6.72%
DLmw                      66,922|     76,599         +14.46%
Dr                     7,879,189|  7,918,349          +0.50%
Dw                     5,527,736|  5,559,707          +0.58%
EstimatedCycles       50,906,462| 51,481,177          +1.13%
I1MissRate                     0|          0          -9.84%
I1mr                      37,566|     34,034          -9.40%
ILmr                         803|        805          +0.25%
Ir                    31,984,983| 32,139,923          +0.48%
L1HitRate                     99|         99          +0.01%
L1hits                44,783,017| 45,012,122          +0.51%
LLHitRate                      1|          1          -3.46%
LLMissRate                     0|          0         +11.16%
LLdMissRate                    1|          1         +11.22%
LLhits                   506,258|    491,198          -2.97%
LLiMissRate                    0|          0          -0.23%
RamHitRate                     0|          0         +11.16%
RamHits                  102,633|    114,659         +11.72%
TotalRW               45,391,908| 45,617,979          +0.50%

compile_demo_art_gungraun::compile_group::compile_to_proto with_setup_5:(load_from_name(valley-of-spires))
Instructions: 23,230,132 (master) → 23,196,276 (HEAD) : $$\color{lime}-0.15\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     4|          4          -0.21%
D1mr                     289,638|    289,396          -0.08%
D1mw                      98,870|     98,650          -0.22%
DLmr                      16,481|     17,030          +3.33%
DLmw                      38,264|     40,255          +5.20%
Dr                     5,745,759|  5,746,920          +0.02%
Dw                     4,009,073|  4,017,064          +0.20%
EstimatedCycles       36,318,842| 36,356,824          +0.10%
I1MissRate                     0|          0         -10.05%
I1mr                      28,719|     25,795         -10.18%
ILmr                         754|        755          +0.13%
Ir                    23,230,132| 23,196,276          -0.15%
L1HitRate                     99|         99          +0.01%
L1hits                32,567,737| 32,546,419          -0.07%
LLHitRate                      1|          1          -1.56%
LLMissRate                     0|          0          +4.66%
LLdMissRate                    1|          1          +4.54%
LLhits                   361,728|    355,801          -1.64%
LLiMissRate                    0|          0          +0.28%
RamHitRate                     0|          0          +4.66%
RamHits                   55,499|     58,040          +4.58%
TotalRW               32,984,964| 32,960,260          -0.07%

🔄 Executor Update

update_executor_gungraun::update_group::update_executor with_setup_0:(setup_update_executor(isometric-fountain))
Instructions: 62,316,236 (master) → 56,845,686 (HEAD) : $$\color{lime}-8.78\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          +2.27%
D1mr                     679,900|    649,162          -4.52%
D1mw                     156,255|    133,431         -14.61%
DLmr                      17,981|     20,835         +15.87%
DLmw                      36,434|     38,490          +5.64%
Dr                    16,126,058| 14,739,822          -8.60%
Dw                    10,976,417| 10,063,189          -8.32%
EstimatedCycles       94,472,241| 86,717,947          -8.21%
I1MissRate                     0|          0        +159.88%
I1mr                      15,155|     35,927        +137.06%
ILmr                         528|        514          -2.65%
Ir                    62,316,236| 56,845,686          -8.78%
L1HitRate                     99|         99          -0.05%
L1hits                88,567,401| 80,830,177          -8.74%
LLHitRate                      1|          1          +4.33%
LLMissRate                     0|          0         +19.28%
LLdMissRate                    0|          0         +19.13%
LLhits                   796,367|    758,681          -4.73%
LLiMissRate                    0|          0          +6.72%
RamHitRate                     0|          0         +19.28%
RamHits                   54,943|     59,839          +8.91%
TotalRW               89,418,711| 81,648,697          -8.69%

update_executor_gungraun::update_group::update_executor with_setup_1:(setup_update_executor(painted-dreams))
Instructions: 31,779,880 (master) → 29,678,020 (HEAD) : $$\color{lime}-6.61\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          +2.84%
D1mr                     335,838|    328,834          -2.09%
D1mw                      75,190|     68,014          -9.54%
DLmr                         545|        937         +71.93%
DLmw                       5,602|     11,290        +101.54%
Dr                     8,188,795|  7,674,751          -6.28%
Dw                     5,573,116|  5,245,982          -5.87%
EstimatedCycles       47,406,593| 44,645,915          -5.82%
I1MissRate                     0|          0        +199.43%
I1mr                       7,855|     21,965        +179.63%
ILmr                         162|        170          +4.94%
Ir                    31,779,880| 29,678,020          -6.61%
L1HitRate                     99|         99          -0.06%
L1hits                45,122,908| 42,179,940          -6.52%
LLHitRate                      1|          1          +5.31%
LLMissRate                     0|          0        +110.07%
LLdMissRate                    0|          0        +111.86%
LLhits                   412,574|    406,416          -1.49%
LLiMissRate                    0|          0         +12.37%
RamHitRate                     0|          0        +110.07%
RamHits                    6,309|     12,397         +96.50%
TotalRW               45,541,791| 42,598,753          -6.46%

update_executor_gungraun::update_group::update_executor with_setup_2:(setup_update_executor(procedural-string-lights)...
Instructions: 7,643,261 (master) → 7,026,891 (HEAD) : $$\color{lime}-8.06\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          +1.11%
D1mr                      76,398|     71,946          -5.83%
D1mw                      19,167|     17,093         -10.82%
DLmr                           6|          4         -33.33%
DLmw                         966|        564         -41.61%
Dr                     1,949,721|  1,793,770          -8.00%
Dw                     1,329,669|  1,228,021          -7.64%
EstimatedCycles       11,353,929| 10,452,024          -7.94%
I1MissRate                     0|          0         +81.21%
I1mr                       3,772|      6,284         +66.60%
ILmr                         159|        167          +5.03%
Ir                     7,643,261|  7,026,891          -8.06%
L1HitRate                     99|         99          -0.04%
L1hits                10,823,314|  9,953,359          -8.04%
LLHitRate                      1|          1          +4.69%
LLMissRate                     0|          0         -29.36%
LLdMissRate                    0|          0         -36.58%
LLhits                    98,206|     94,588          -3.68%
LLiMissRate                    0|          0         +14.24%
RamHitRate                     0|          0         -29.36%
RamHits                    1,131|        735         -35.01%
TotalRW               10,922,651| 10,048,682          -8.00%

update_executor_gungraun::update_group::update_executor with_setup_3:(setup_update_executor(parametric-dunescape))
Instructions: 29,003,865 (master) → 26,199,116 (HEAD) : $$\color{lime}-9.67\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          +1.37%
D1mr                     295,369|    276,252          -6.47%
D1mw                      70,571|     61,250         -13.21%
DLmr                          98|        311        +217.35%
DLmw                       7,119|      8,473         +19.02%
Dr                     7,473,279|  6,781,158          -9.26%
Dw                     5,175,585|  4,726,746          -8.67%
EstimatedCycles       43,364,135| 39,382,726          -9.18%
I1MissRate                     0|          0        +141.46%
I1mr                       6,539|     14,262        +118.11%
ILmr                         166|        171          +3.01%
Ir                    29,003,865| 26,199,116          -9.67%
L1HitRate                     99|         99          -0.04%
L1hits                41,280,250| 37,355,256          -9.51%
LLHitRate                      1|          1          +3.72%
LLMissRate                     0|          0         +33.98%
LLdMissRate                    0|          0         +33.78%
LLhits                   365,096|    342,809          -6.10%
LLiMissRate                    0|          0         +14.04%
RamHitRate                     0|          0         +33.98%
RamHits                    7,383|      8,955         +21.29%
TotalRW               41,652,729| 37,707,020          -9.47%

update_executor_gungraun::update_group::update_executor with_setup_4:(setup_update_executor(red-dress))
Instructions: 73,395,385 (master) → 66,725,191 (HEAD) : $$\color{lime}-9.09\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          +0.64%
D1mr                     794,743|    742,925          -6.52%
D1mw                     179,422|    151,580         -15.52%
DLmr                      41,713|     33,002         -20.88%
DLmw                      59,442|     44,628         -24.92%
Dr                    18,969,414| 17,269,523          -8.96%
Dw                    12,896,038| 11,804,363          -8.47%
EstimatedCycles      112,267,557|101,891,783          -9.24%
I1MissRate                     0|          0        +226.43%
I1mr                      13,955|     41,414        +196.77%
ILmr                         653|        671          +2.76%
Ir                    73,395,385| 66,725,191          -9.09%
L1HitRate                     99|         99          -0.04%
L1hits               104,272,717| 94,863,158          -9.02%
LLHitRate                      1|          1          +6.32%
LLMissRate                     0|          0         -15.49%
LLdMissRate                    0|          0         -15.89%
LLhits                   886,312|    857,618          -3.24%
LLiMissRate                    0|          0         +13.03%
RamHitRate                     0|          0         -15.49%
RamHits                  101,808|     78,301         -23.09%
TotalRW              105,260,837| 95,799,077          -8.99%

update_executor_gungraun::update_group::update_executor with_setup_5:(setup_update_executor(valley-of-spires))
Instructions: 49,044,158 (master) → 44,910,849 (HEAD) : $$\color{lime}-8.43\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          +2.01%
D1mr                     528,720|    508,148          -3.89%
D1mw                     124,918|    107,002         -14.34%
DLmr                       2,973|      5,153         +73.33%
DLmw                      26,209|     30,152         +15.04%
Dr                    12,716,101| 11,730,338          -7.75%
Dw                     8,719,719|  8,045,950          -7.73%
EstimatedCycles       74,022,110| 68,334,243          -7.68%
I1MissRate                     0|          0        +186.19%
I1mr                      11,485|     30,099        +162.07%
ILmr                         206|        232         +12.62%
Ir                    49,044,158| 44,910,849          -8.43%
L1HitRate                     99|         99          -0.05%
L1hits                69,814,855| 64,041,888          -8.27%
LLHitRate                      1|          1          +4.50%
LLMissRate                     0|          0         +31.75%
LLdMissRate                    0|          0         +31.13%
LLhits                   635,735|    609,712          -4.09%
LLiMissRate                    0|          0         +22.99%
RamHitRate                     0|          0         +31.75%
RamHits                   29,388|     35,537         +20.92%
TotalRW               70,479,978| 64,687,137          -8.22%

🚀 Render: Cold Execution

run_once_gungraun::run_once_group::run_once with_setup_0:(setup_run_once(isometric-fountain))
Instructions: 33,520,758 (master) → 32,549,656 (HEAD) : $$\color{lime}-2.90\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          -0.69%
D1mr                     400,202|    382,525          -4.42%
D1mw                      79,524|     80,064          +0.68%
DLmr                      28,168|     27,572          -2.12%
DLmw                      13,977|     22,866         +63.60%
Dr                     8,812,679|  8,538,397          -3.11%
Dw                     5,965,409|  5,810,531          -2.60%
EstimatedCycles       52,662,832| 51,450,006          -2.30%
I1MissRate                     1|          1          +3.74%
I1mr                     236,533|    238,264          +0.73%
ILmr                       7,820|      7,829          +0.12%
Ir                    33,520,758| 32,549,656          -2.90%
L1HitRate                     99|         99          -0.01%
L1hits                47,582,587| 46,197,731          -2.91%
LLHitRate                      1|          1          -0.68%
LLMissRate                     0|          0         +20.10%
LLdMissRate                    0|          0         +23.26%
LLhits                   666,294|    642,586          -3.56%
LLiMissRate                    0|          0          +3.10%
RamHitRate                     0|          0         +20.10%
RamHits                   49,965|     58,267         +16.62%
TotalRW               48,298,846| 46,898,584          -2.90%

run_once_gungraun::run_once_group::run_once with_setup_1:(setup_run_once(painted-dreams))
Instructions: 304,114,626 (master) → 304,097,398 (HEAD) : $$\color{lime}-0.01\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     1|          1          +0.45%
D1mr                     963,522|    971,627          +0.84%
D1mw                     481,917|    491,300          +1.95%
DLmr                      30,843|     36,490         +18.31%
DLmw                      61,496|     94,711         +54.01%
Dr                    61,370,822| 61,713,326          +0.56%
Dw                    37,254,369| 37,660,207          +1.09%
EstimatedCycles      418,856,717|420,662,535          +0.43%
I1MissRate                     1|          1          -2.28%
I1mr                   1,816,101|  1,774,504          -2.29%
ILmr                      10,019|     10,195          +1.76%
Ir                   304,114,626|304,097,398          -0.01%
L1HitRate                     99|         99          +0.01%
L1hits               399,478,277|400,233,500          +0.19%
LLHitRate                      1|          1          -2.18%
LLMissRate                     0|          0         +37.89%
LLdMissRate                    0|          0         +41.02%
LLhits                 3,159,182|  3,096,035          -2.00%
LLiMissRate                    0|          0          +1.76%
RamHitRate                     0|          0         +37.89%
RamHits                  102,358|    141,396         +38.14%
TotalRW              402,739,817|403,470,931          +0.18%

run_once_gungraun::run_once_group::run_once with_setup_2:(setup_run_once(procedural-string-lights))
Instructions: 17,917,199 (master) → 17,839,026 (HEAD) : $$\color{lime}-0.44\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     2|          2          -0.23%
D1mr                     102,670|    101,541          -1.10%
D1mw                      36,868|     37,541          +1.83%
DLmr                         879|        870          -1.02%
DLmw                       1,376|      1,425          +3.56%
Dr                     4,501,616|  4,491,162          -0.23%
Dw                     3,176,174|  3,179,067          +0.09%
EstimatedCycles       26,777,155| 26,691,057          -0.32%
I1MissRate                     1|          1          +0.38%
I1mr                      92,921|     92,866          -0.06%
ILmr                       6,156|      6,172          +0.26%
Ir                    17,917,199| 17,839,026          -0.44%
L1HitRate                     99|         99          -0.00%
L1hits                25,362,530| 25,277,307          -0.34%
LLHitRate                      1|          1          +0.08%
LLMissRate                     0|          0          +1.00%
LLdMissRate                    0|          0          +1.87%
LLhits                   224,048|    223,481          -0.25%
LLiMissRate                    0|          0          +0.70%
RamHitRate                     0|          0          +1.00%
RamHits                    8,411|      8,467          +0.67%
TotalRW               25,594,989| 25,509,255          -0.33%

run_once_gungraun::run_once_group::run_once with_setup_3:(setup_run_once(parametric-dunescape))
Instructions: 25,630,678 (master) → 25,272,319 (HEAD) : $$\color{lime}-1.40\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     2|          2          -1.45%
D1mr                     175,930|    169,678          -3.55%
D1mw                      71,122|     74,462          +4.70%
DLmr                       3,956|      3,980          +0.61%
DLmw                       6,833|      8,523         +24.73%
Dr                     6,202,296|  6,184,388          -0.29%
Dw                     4,189,148|  4,235,644          +1.11%
EstimatedCycles       37,785,632| 37,498,733          -0.76%
I1MissRate                     0|          0          +2.36%
I1mr                      76,788|     77,503          +0.93%
ILmr                       4,816|      4,824          +0.17%
Ir                    25,630,678| 25,272,319          -1.40%
L1HitRate                     99|         99          -0.00%
L1hits                35,698,282| 35,370,708          -0.92%
LLHitRate                      1|          1          -0.36%
LLMissRate                     0|          0         +12.06%
LLdMissRate                    0|          0         +15.57%
LLhits                   308,235|    304,316          -1.27%
LLiMissRate                    0|          0          +1.59%
RamHitRate                     0|          0         +12.06%
RamHits                   15,605|     17,327         +11.03%
TotalRW               36,022,122| 35,692,351          -0.92%

run_once_gungraun::run_once_group::run_once with_setup_4:(setup_run_once(red-dress))
Instructions: 1,885,100,621 (master) → 1,884,693,222 (HEAD) : $$\color{lime}-0.02\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     1|          1          +0.46%
D1mr                   2,743,162|  2,737,805          -0.20%
D1mw                   1,256,964|  1,278,451          +1.71%
DLmr                     577,522|    567,873          -1.67%
DLmw                     710,338|    705,213          -0.72%
Dr                   451,639,891|451,365,316          -0.06%
Dw                   296,565,550|296,412,493          -0.05%
EstimatedCycles      2,696,587,258|2,694,999,659          -0.06%
I1MissRate                     0|          0          -4.42%
I1mr                   2,105,738|  2,012,241          -4.44%
ILmr                       7,398|      7,402          +0.05%
Ir                   1,885,100,621|1,884,693,222          -0.02%
L1HitRate                    100|        100          +0.00%
L1hits               2,627,200,198|2,626,442,534          -0.03%
LLHitRate                      0|          0          -1.27%
LLMissRate                     0|          0          -1.11%
LLdMissRate                    0|          0          -1.09%
LLhits                 4,810,606|  4,748,009          -1.30%
LLiMissRate                    0|          0          +0.08%
RamHitRate                     0|          0          -1.11%
RamHits                1,295,258|  1,280,488          -1.14%
TotalRW              2,633,306,062|2,632,471,031          -0.03%

run_once_gungraun::run_once_group::run_once with_setup_5:(setup_run_once(valley-of-spires))
Instructions: 31,126,487 (master) → 30,651,316 (HEAD) : $$\color{lime}-1.53\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          -0.53%
D1mr                     325,389|    317,591          -2.40%
D1mw                      70,656|     75,377          +6.68%
DLmr                       8,758|     10,382         +18.54%
DLmw                      14,785|     19,070         +28.98%
Dr                     7,935,027|  7,879,340          -0.70%
Dw                     5,315,947|  5,338,382          +0.42%
EstimatedCycles       47,612,543| 47,275,134          -0.71%
I1MissRate                     1|          1          +2.17%
I1mr                     195,728|    196,926          +0.61%
ILmr                       5,390|      5,432          +0.78%
Ir                    31,126,487| 30,651,316          -1.53%
L1HitRate                     99|         99          -0.01%
L1hits                43,785,688| 43,279,144          -1.16%
LLHitRate                      1|          1          -0.25%
LLMissRate                     0|          0         +21.97%
LLdMissRate                    0|          0         +25.41%
LLhits                   562,840|    555,010          -1.39%
LLiMissRate                    0|          0          +2.34%
RamHitRate                     0|          0         +21.97%
RamHits                   28,933|     34,884         +20.57%
TotalRW               44,377,461| 43,869,038          -1.15%

⚡ Render: Cached Execution

run_cached_gungraun::run_cached_group::run_cached with_setup_0:(setup_run_cached(isometric-fountain))
Instructions: 10,075,045 (master) → 9,148,979 (HEAD) : $$\color{lime}-9.19\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     6|          6          +0.85%
D1mr                     261,195|    239,996          -8.12%
D1mw                       3,719|      3,416          -8.15%
DLmr                      20,764|     20,459          -1.47%
DLmw                         220|        217          -1.36%
Dr                     2,899,691|  2,640,729          -8.93%
Dw                     1,607,702|  1,465,967          -8.82%
EstimatedCycles       16,279,766| 14,857,741          -8.73%
I1MissRate                     0|          0          +4.80%
I1mr                         538|        512          -4.83%
ILmr                         200|        203          +1.50%
Ir                    10,075,045|  9,148,979          -9.19%
L1HitRate                     98|         98          -0.02%
L1hits                14,316,986| 13,011,751          -9.12%
LLHitRate                      2|          2          +0.45%
LLMissRate                     0|          0          +8.43%
LLdMissRate                    0|          1          +8.15%
LLhits                   244,268|    223,045          -8.69%
LLiMissRate                    0|          0         +11.77%
RamHitRate                     0|          0          +8.43%
RamHits                   21,184|     20,879          -1.44%
TotalRW               14,582,438| 13,255,675          -9.10%

run_cached_gungraun::run_cached_group::run_cached with_setup_1:(setup_run_cached(painted-dreams))
Instructions: 10,647,124 (master) → 10,194,742 (HEAD) : $$\color{lime}-4.25\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     4|          4          +0.22%
D1mr                     212,438|    204,130          -3.91%
D1mw                       4,392|      4,355          -0.84%
DLmr                      26,145|     30,956         +18.40%
DLmw                         174|        199         +14.37%
Dr                     3,119,131|  2,991,673          -4.09%
Dw                     1,721,975|  1,652,883          -4.01%
EstimatedCycles       17,155,944| 16,619,436          -3.13%
I1MissRate                     0|          0          -0.96%
I1mr                         561|        532          -5.17%
ILmr                         286|        314          +9.79%
Ir                    10,647,124| 10,194,742          -4.25%
L1HitRate                     99|         99          -0.01%
L1hits                15,270,839| 14,630,281          -4.19%
LLHitRate                      1|          1          -2.87%
LLMissRate                     0|          0         +23.45%
LLdMissRate                    1|          1         +23.38%
LLhits                   190,786|    177,548          -6.94%
LLiMissRate                    0|          0         +14.66%
RamHitRate                     0|          0         +23.45%
RamHits                   26,605|     31,469         +18.28%
TotalRW               15,488,230| 14,839,298          -4.19%

run_cached_gungraun::run_cached_group::run_cached with_setup_2:(setup_run_cached(parametric-dunescape))
Instructions: 3,700,440 (master) → 3,213,717 (HEAD) : $$\color{lime}-13.15\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     6|          6          +0.38%
D1mr                      95,321|     84,108         -11.76%
D1mw                       2,761|      2,669          -3.33%
DLmr                          27|         52         +92.59%
DLmw                           1|          1          +0.00%
Dr                     1,119,945|    983,485         -12.18%
Dw                       654,080|    580,048         -11.32%
EstimatedCycles        5,875,391|  5,133,584         -12.63%
I1MissRate                     0|          0          +9.76%
I1mr                         492|        469          -4.67%
ILmr                         193|        192          -0.52%
Ir                     3,700,440|  3,213,717         -13.15%
L1HitRate                     98|         98          -0.03%
L1hits                 5,375,891|  4,690,004         -12.76%
LLHitRate                      2|          2          +1.37%
LLMissRate                     0|          0         +27.04%
LLdMissRate                    0|          0        +114.77%
LLhits                    98,353|     87,001         -11.54%
LLiMissRate                    0|          0         +14.55%
RamHitRate                     0|          0         +27.04%
RamHits                      221|        245         +10.86%
TotalRW                5,474,465|  4,777,250         -12.74%

run_cached_gungraun::run_cached_group::run_cached with_setup_3:(setup_run_cached(red-dress))
Instructions: 44,765,785 (master) → 43,727,497 (HEAD) : $$\color{lime}-2.32\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     4|          4          +0.64%
D1mr                     780,187|    767,026          -1.69%
D1mw                      33,901|     33,662          -0.70%
DLmr                     313,756|    307,312          -2.05%
DLmw                       3,063|      2,812          -8.19%
Dr                    12,953,129| 12,661,609          -2.25%
Dw                     6,885,869|  6,727,104          -2.31%
EstimatedCycles       77,381,143| 75,637,368          -2.25%
I1MissRate                     0|          0          -5.08%
I1mr                         522|        484          -7.28%
ILmr                         445|        425          -4.49%
Ir                    44,765,785| 43,727,497          -2.32%
L1HitRate                     99|         99          -0.01%
L1hits                63,790,173| 62,315,038          -2.31%
LLHitRate                      1|          1          +0.97%
LLMissRate                     0|          0          +0.19%
LLdMissRate                    2|          2          +0.16%
LLhits                   497,346|    490,623          -1.35%
LLiMissRate                    0|          0          -2.23%
RamHitRate                     0|          0          +0.19%
RamHits                  317,264|    310,549          -2.12%
TotalRW               64,604,783| 63,116,210          -2.30%

run_cached_gungraun::run_cached_group::run_cached with_setup_4:(setup_run_cached(valley-of-spires))
Instructions: 8,222,721 (master) → 7,546,988 (HEAD) : $$\color{lime}-8.22\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     6|          6          +0.86%
D1mr                     205,849|    191,154          -7.14%
D1mw                       3,342|      3,208          -4.01%
DLmr                       3,937|      5,216         +32.49%
DLmw                          72|        108         +50.00%
Dr                     2,376,142|  2,187,475          -7.94%
Dw                     1,323,148|  1,220,417          -7.76%
EstimatedCycles       12,886,731| 11,899,612          -7.66%
I1MissRate                     0|          0          +3.98%
I1mr                         504|        481          -4.56%
ILmr                         189|        188          -0.53%
Ir                     8,222,721|  7,546,988          -8.22%
L1HitRate                     98|         98          -0.02%
L1hits                11,712,316| 10,760,037          -8.13%
LLHitRate                      2|          2          +0.27%
LLMissRate                     0|          0         +42.89%
LLdMissRate                    0|          0         +44.16%
LLhits                   205,497|    189,331          -7.87%
LLiMissRate                    0|          0          +8.38%
RamHitRate                     0|          0         +42.89%
RamHits                    4,198|      5,512         +31.30%
TotalRW               11,922,011| 10,954,880          -8.11%

@github-actions

Copy link
Copy Markdown
Performance Benchmark Results

🔧 Graph Compilation

compile_demo_art_gungraun::compile_group::compile_to_proto with_setup_0:(load_from_name(isometric-fountain))
Instructions: 29,785,724 (master) → 32,869,507 (HEAD) : $$\color{red}+10.35\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     4|          4          +5.20%
D1mr                     391,005|    467,901         +19.67%
D1mw                     135,979|    138,491          +1.85%
DLmr                      31,590|     40,142         +27.07%
DLmw                      50,453|     59,975         +18.87%
Dr                     7,337,067|  8,045,043          +9.65%
Dw                     5,137,906|  5,599,818          +8.99%
EstimatedCycles       47,001,473| 52,104,674         +10.86%
I1MissRate                     0|          0         -17.00%
I1mr                      36,865|     33,767          -8.40%
ILmr                         803|        872          +8.59%
Ir                    29,785,724| 32,869,507         +10.35%
L1HitRate                     99|         99          -0.04%
L1hits                41,696,848| 45,874,209         +10.02%
LLHitRate                      1|          1          +1.84%
LLMissRate                     0|          0         +10.75%
LLdMissRate                    1|          1         +11.57%
LLhits                   481,003|    539,170         +12.09%
LLiMissRate                    0|          0          -1.60%
RamHitRate                     0|          0         +10.75%
RamHits                   82,846|    100,989         +21.90%
TotalRW               42,260,697| 46,514,368         +10.07%

compile_demo_art_gungraun::compile_group::compile_to_proto with_setup_1:(load_from_name(painted-dreams))
Instructions: 14,755,468 (master) → 16,298,439 (HEAD) : $$\color{red}+10.46\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     4|          4          +5.44%
D1mr                     186,129|    228,020         +22.51%
D1mw                      68,210|     65,527          -3.93%
DLmr                         756|        798          +5.56%
DLmw                      16,876|     19,392         +14.91%
Dr                     3,629,832|  3,982,297          +9.71%
Dw                     2,536,592|  2,767,295          +9.09%
EstimatedCycles       22,552,996| 24,908,285         +10.44%
I1MissRate                     0|          0         -17.40%
I1mr                      16,292|     14,864          -8.77%
ILmr                         654|        697          +6.57%
Ir                    14,755,468| 16,298,439         +10.46%
L1HitRate                     99|         99          -0.05%
L1hits                20,651,261| 22,739,620         +10.11%
LLHitRate                      1|          1          +3.43%
LLMissRate                     0|          0          +3.69%
LLdMissRate                    0|          0          +4.61%
LLhits                   252,345|    287,524         +13.94%
LLiMissRate                    0|          0          -3.51%
RamHitRate                     0|          0          +3.69%
RamHits                   18,286|     20,887         +14.22%
TotalRW               20,921,892| 23,048,031         +10.16%

compile_demo_art_gungraun::compile_group::compile_to_proto with_setup_2:(load_from_name(procedural-string-lights))
Instructions: 3,207,078 (master) → 3,354,557 (HEAD) : $$\color{red}+4.60\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     4|          4          -0.54%
D1mr                      38,822|     40,777          +5.04%
D1mw                      13,325|     13,472          +1.10%
DLmr                          13|         17         +30.77%
DLmw                       2,782|      2,697          -3.06%
Dr                       783,049|    821,169          +4.87%
Dw                       546,889|    569,909          +4.21%
EstimatedCycles        4,864,812|  5,079,475          +4.41%
I1MissRate                     0|          0         -10.68%
I1mr                       3,972|      3,711          -6.57%
ILmr                         649|        686          +5.70%
Ir                     3,207,078|  3,354,557          +4.60%
L1HitRate                     99|         99          +0.02%
L1hits                 4,480,897|  4,687,675          +4.61%
LLHitRate                      1|          1          -0.97%
LLMissRate                     0|          0          -5.62%
LLdMissRate                    0|          0          -7.17%
LLhits                    52,675|     54,560          +3.58%
LLiMissRate                    0|          0          +1.05%
RamHitRate                     0|          0          -5.62%
RamHits                    3,444|      3,400          -1.28%
TotalRW                4,537,016|  4,745,635          +4.60%

compile_demo_art_gungraun::compile_group::compile_to_proto with_setup_3:(load_from_name(parametric-dunescape))
Instructions: 11,638,460 (master) → 12,160,710 (HEAD) : $$\color{red}+4.49\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     4|          4          -1.75%
D1mr                     154,028|    160,515          +4.21%
D1mw                      55,102|     54,191          -1.65%
DLmr                          35|         39         +11.43%
DLmw                      13,249|     14,036          +5.94%
Dr                     2,832,282|  2,967,529          +4.78%
Dw                     1,997,794|  2,079,700          +4.10%
EstimatedCycles       17,767,108| 18,554,133          +4.43%
I1MissRate                     0|          0          -3.94%
I1mr                      10,108|     10,145          +0.37%
ILmr                         770|        818          +6.23%
Ir                    11,638,460| 12,160,710          +4.49%
L1HitRate                     99|         99          +0.02%
L1hits                16,249,298| 16,983,088          +4.52%
LLHitRate                      1|          1          -2.07%
LLMissRate                     0|          0          +1.42%
LLdMissRate                    0|          0          +1.40%
LLhits                   205,184|    209,958          +2.33%
LLiMissRate                    0|          0          +1.67%
RamHitRate                     0|          0          +1.42%
RamHits                   14,054|     14,893          +5.97%
TotalRW               16,468,536| 17,207,939          +4.49%

compile_demo_art_gungraun::compile_group::compile_to_proto with_setup_4:(load_from_name(red-dress))
Instructions: 31,986,212 (master) → 35,338,257 (HEAD) : $$\color{red}+10.48\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     4|          4          +5.27%
D1mr                     426,348|    512,451         +20.20%
D1mw                     144,798|    145,245          +0.31%
DLmr                      34,909|     45,820         +31.26%
DLmw                      66,908|     72,976          +9.07%
Dr                     7,879,272|  8,642,331          +9.68%
Dw                     5,527,732|  6,023,375          +8.97%
EstimatedCycles       50,906,664| 56,359,907         +10.71%
I1MissRate                     0|          0         -18.50%
I1mr                      37,566|     33,825          -9.96%
ILmr                         803|        866          +7.85%
Ir                    31,986,212| 35,338,257         +10.48%
L1HitRate                     99|         99          -0.04%
L1hits                44,784,504| 49,312,442         +10.11%
LLHitRate                      1|          1          +2.58%
LLMissRate                     0|          0          +5.85%
LLdMissRate                    1|          1          +6.66%
LLhits                   506,092|    571,859         +13.00%
LLiMissRate                    0|          0          -2.38%
RamHitRate                     0|          0          +5.85%
RamHits                  102,620|    119,662         +16.61%
TotalRW               45,393,216| 50,003,963         +10.16%

compile_demo_art_gungraun::compile_group::compile_to_proto with_setup_5:(load_from_name(valley-of-spires))
Instructions: 23,231,055 (master) → 25,698,294 (HEAD) : $$\color{red}+10.62\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     4|          4          +6.85%
D1mr                     289,870|    355,280         +22.57%
D1mw                      98,904|     99,894          +1.00%
DLmr                      16,481|     18,733         +13.66%
DLmw                      38,273|     44,683         +16.75%
Dr                     5,745,843|  6,311,784          +9.85%
Dw                     4,009,049|  4,376,689          +9.17%
EstimatedCycles       36,321,159| 40,237,099         +10.78%
I1MissRate                     0|          0         -18.82%
I1mr                      28,719|     25,789         -10.20%
ILmr                         754|        800          +6.10%
Ir                    23,231,055| 25,698,294         +10.62%
L1HitRate                     99|         99          -0.06%
L1hits                32,568,454| 35,905,804         +10.25%
LLHitRate                      1|          1          +4.37%
LLMissRate                     0|          0          +4.88%
LLdMissRate                    1|          1          +5.70%
LLhits                   361,985|    416,747         +15.13%
LLiMissRate                    0|          0          -4.09%
RamHitRate                     0|          0          +4.88%
RamHits                   55,508|     64,216         +15.69%
TotalRW               32,985,947| 36,386,767         +10.31%

🔄 Executor Update

update_executor_gungraun::update_group::update_executor with_setup_0:(setup_update_executor(isometric-fountain))
Instructions: 62,294,347 (master) → 62,316,412 (HEAD) : $$\color{red}+0.04\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          +0.39%
D1mr                     679,781|    682,501          +0.40%
D1mw                     155,149|    155,912          +0.49%
DLmr                      17,237|     17,567          +1.91%
DLmw                      34,059|     33,869          -0.56%
Dr                    16,113,624| 16,113,958          +0.00%
Dw                    10,948,428| 10,956,524          +0.07%
EstimatedCycles       94,309,547| 94,458,170          +0.16%
I1MissRate                     0|          0        +169.44%
I1mr                      14,887|     40,126        +169.54%
ILmr                         500|        468          -6.40%
Ir                    62,294,347| 62,316,412          +0.04%
L1HitRate                     99|         99          -0.03%
L1hits                88,506,582| 88,508,355          +0.00%
LLHitRate                      1|          1          +3.55%
LLMissRate                     0|          0          +0.17%
LLdMissRate                    0|          0          +0.24%
LLhits                   798,021|    826,635          +3.59%
LLiMissRate                    0|          0          -6.43%
RamHitRate                     0|          0          +0.17%
RamHits                   51,796|     51,904          +0.21%
TotalRW               89,356,399| 89,386,894          +0.03%

update_executor_gungraun::update_group::update_executor with_setup_1:(setup_update_executor(painted-dreams))
Instructions: 31,784,436 (master) → 31,849,685 (HEAD) : $$\color{red}+0.21\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          +0.29%
D1mr                     338,511|    339,635          +0.33%
D1mw                      76,151|     76,695          +0.71%
DLmr                         543|        548          +0.92%
DLmw                       5,704|      6,709         +17.62%
Dr                     8,208,055|  8,218,097          +0.12%
Dw                     5,592,727|  5,598,734          +0.11%
EstimatedCycles       47,467,682| 47,648,234          +0.38%
I1MissRate                     0|          0        +196.16%
I1mr                       7,879|     23,382        +196.76%
ILmr                         163|        172          +5.52%
Ir                    31,784,436| 31,849,685          +0.21%
L1HitRate                     99|         99          -0.04%
L1hits                45,162,677| 45,226,804          +0.14%
LLHitRate                      1|          1          +3.70%
LLMissRate                     0|          0         +15.69%
LLdMissRate                    0|          0         +16.03%
LLhits                   416,131|    432,283          +3.88%
LLiMissRate                    0|          0          +5.31%
RamHitRate                     0|          0         +15.69%
RamHits                    6,410|      7,429         +15.90%
TotalRW               45,585,218| 45,666,516          +0.18%

update_executor_gungraun::update_group::update_executor with_setup_2:(setup_update_executor(procedural-string-lights)...
Instructions: 7,624,185 (master) → 7,677,466 (HEAD) : $$\color{red}+0.70\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          +0.53%
D1mr                      75,403|     76,399          +1.32%
D1mw                      19,594|     19,643          +0.25%
DLmr                           3|          3          +0.00%
DLmw                         942|        905          -3.93%
Dr                     1,945,108|  1,956,887          +0.61%
Dw                     1,326,981|  1,333,859          +0.52%
EstimatedCycles       11,323,986| 11,410,906          +0.77%
I1MissRate                     0|          0         +78.67%
I1mr                       3,651|      6,569         +79.92%
ILmr                         159|        167          +5.03%
Ir                     7,624,185|  7,677,466          +0.70%
L1HitRate                     99|         99          -0.03%
L1hits                10,797,626| 10,865,601          +0.63%
LLHitRate                      1|          1          +3.41%
LLMissRate                     0|          0          -3.27%
LLdMissRate                    0|          0          -4.46%
LLhits                    97,544|    101,536          +4.09%
LLiMissRate                    0|          0          +4.30%
RamHitRate                     0|          0          -3.27%
RamHits                    1,104|      1,075          -2.63%
TotalRW               10,896,274| 10,968,212          +0.66%

update_executor_gungraun::update_group::update_executor with_setup_3:(setup_update_executor(parametric-dunescape))
Instructions: 28,866,372 (master) → 28,907,212 (HEAD) : $$\color{red}+0.14\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          +0.45%
D1mr                     290,836|    292,642          +0.62%
D1mw                      68,502|     68,841          +0.49%
DLmr                          97|         96          -1.03%
DLmw                       6,164|      6,868         +11.42%
Dr                     7,333,470|  7,341,634          +0.11%
Dw                     5,036,181|  5,045,877          +0.19%
EstimatedCycles       42,892,309| 43,014,691          +0.29%
I1MissRate                     0|          0        +128.20%
I1mr                       6,546|     14,959        +128.52%
ILmr                         164|        176          +7.32%
Ir                    28,866,372| 28,907,212          +0.14%
L1HitRate                     99|         99          -0.02%
L1hits                40,870,139| 40,918,281          +0.12%
LLHitRate                      1|          1          +2.59%
LLMissRate                     0|          0         +10.97%
LLdMissRate                    0|          0         +11.07%
LLhits                   359,459|    369,302          +2.74%
LLiMissRate                    0|          0          +7.17%
RamHitRate                     0|          0         +10.97%
RamHits                    6,425|      7,140         +11.13%
TotalRW               41,236,023| 41,294,723          +0.14%

update_executor_gungraun::update_group::update_executor with_setup_4:(setup_update_executor(red-dress))
Instructions: 73,356,285 (master) → 73,390,111 (HEAD) : $$\color{red}+0.05\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          +0.03%
D1mr                     794,869|    794,668          -0.03%
D1mw                     178,958|    178,752          -0.12%
DLmr                      38,502|     42,535         +10.47%
DLmw                      62,291|     54,223         -12.95%
Dr                    18,959,856| 18,945,380          -0.08%
Dw                    12,889,485| 12,879,568          -0.08%
EstimatedCycles      112,200,864|112,205,035          +0.00%
I1MissRate                     0|          0        +199.33%
I1mr                      14,385|     43,079        +199.47%
ILmr                         620|        708         +14.19%
Ir                    73,356,285| 73,390,111          +0.05%
L1HitRate                     99|         99          -0.03%
L1hits               104,217,414|104,198,560          -0.02%
LLHitRate                      1|          1          +3.63%
LLMissRate                     0|          0          -3.90%
LLdMissRate                    0|          0          -3.93%
LLhits                   886,799|    919,033          +3.63%
LLiMissRate                    0|          0         +14.14%
RamHitRate                     0|          0          -3.90%
RamHits                  101,413|     97,466          -3.89%
TotalRW              105,205,626|105,215,059          +0.01%

update_executor_gungraun::update_group::update_executor with_setup_5:(setup_update_executor(valley-of-spires))
Instructions: 49,027,969 (master) → 49,028,449 (HEAD) : $$\color{red}+0.00\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          +0.32%
D1mr                     529,106|    531,156          +0.39%
D1mw                     124,586|    124,886          +0.24%
DLmr                       3,202|      3,089          -3.53%
DLmw                      28,549|     28,260          -1.01%
Dr                    12,705,374| 12,705,471          +0.00%
Dw                     8,699,836|  8,708,100          +0.09%
EstimatedCycles       74,053,907| 74,145,886          +0.12%
I1MissRate                     0|          0        +184.14%
I1mr                      11,685|     33,202        +184.14%
ILmr                         223|        214          -4.04%
Ir                    49,027,969| 49,028,449          +0.00%
L1HitRate                     99|         99          -0.03%
L1hits                69,767,802| 69,752,776          -0.02%
LLHitRate                      1|          1          +3.82%
LLMissRate                     0|          0          -1.30%
LLdMissRate                    0|          0          -1.30%
LLhits                   633,403|    657,681          +3.83%
LLiMissRate                    0|          0          -4.04%
RamHitRate                     0|          0          -1.30%
RamHits                   31,974|     31,563          -1.29%
TotalRW               70,433,179| 70,442,020          +0.01%

🚀 Render: Cold Execution

run_once_gungraun::run_once_group::run_once with_setup_0:(setup_run_once(isometric-fountain))
Instructions: 33,353,653 (master) → 33,510,080 (HEAD) : $$\color{red}+0.47\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          -0.65%
D1mr                     397,650|    401,815          +1.05%
D1mw                      77,571|     79,756          +2.82%
DLmr                      28,093|     25,919          -7.74%
DLmw                      13,839|     14,404          +4.08%
Dr                     8,667,426|  8,814,015          +1.69%
Dw                     5,822,357|  5,965,445          +2.46%
EstimatedCycles       52,185,696| 52,615,390          +0.82%
I1MissRate                     1|          1          +0.24%
I1mr                     237,189|    238,864          +0.71%
ILmr                       7,822|      7,814          -0.10%
Ir                    33,353,653| 33,510,080          +0.47%
L1HitRate                     99|         99          -0.00%
L1hits                47,131,026| 47,569,105          +0.93%
LLHitRate                      1|          1          +0.52%
LLMissRate                     0|          0          -4.14%
LLdMissRate                    0|          0          -5.72%
LLhits                   662,656|    672,298          +1.46%
LLiMissRate                    0|          0          -0.57%
RamHitRate                     0|          0          -4.14%
RamHits                   49,754|     48,137          -3.25%
TotalRW               47,843,436| 48,289,540          +0.93%

run_once_gungraun::run_once_group::run_once with_setup_1:(setup_run_once(painted-dreams))
Instructions: 303,887,388 (master) → 303,933,271 (HEAD) : $$\color{red}+0.02\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     1|          1          -0.21%
D1mr                     960,550|    958,939          -0.17%
D1mw                     479,554|    480,111          +0.12%
DLmr                      30,172|     31,420          +4.14%
DLmw                      61,653|     64,108          +3.98%
Dr                    61,158,285| 61,225,145          +0.11%
Dw                    37,045,594| 37,110,634          +0.18%
EstimatedCycles      418,169,759|418,314,626          +0.03%
I1MissRate                     1|          1          -1.94%
I1mr                   1,815,689|  1,780,734          -1.93%
ILmr                      10,019|     10,020          +0.01%
Ir                   303,887,388|303,933,271          +0.02%
L1HitRate                     99|         99          +0.01%
L1hits               398,835,474|399,049,266          +0.05%
LLHitRate                      1|          1          -1.30%
LLMissRate                     0|          0          +3.59%
LLdMissRate                    0|          0          +3.89%
LLhits                 3,153,949|  3,114,236          -1.26%
LLiMissRate                    0|          0          -0.01%
RamHitRate                     0|          0          +3.59%
RamHits                  101,844|    105,548          +3.64%
TotalRW              402,091,267|402,269,050          +0.04%

run_once_gungraun::run_once_group::run_once with_setup_2:(setup_run_once(procedural-string-lights))
Instructions: 17,908,542 (master) → 18,000,032 (HEAD) : $$\color{red}+0.51\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     2|          2          -0.56%
D1mr                     102,202|    103,178          +0.95%
D1mw                      36,783|     37,472          +1.87%
DLmr                         883|        872          -1.25%
DLmw                       1,288|      1,429         +10.95%
Dr                     4,484,942|  4,552,872          +1.51%
Dw                     3,158,739|  3,226,211          +2.14%
EstimatedCycles       26,729,115| 26,974,483          +0.92%
I1MissRate                     1|          1          +1.44%
I1mr                      92,778|     94,592          +1.96%
ILmr                       6,157|      6,179          +0.36%
Ir                    17,908,542| 18,000,032          +0.51%
L1HitRate                     99|         99          -0.01%
L1hits                25,320,460| 25,543,873          +0.88%
LLHitRate                      1|          1          +0.60%
LLMissRate                     0|          0          +0.93%
LLdMissRate                    0|          0          +4.14%
LLhits                   223,435|    226,762          +1.49%
LLiMissRate                    0|          0          -0.15%
RamHitRate                     0|          0          +0.93%
RamHits                    8,328|      8,480          +1.83%
TotalRW               25,552,223| 25,779,115          +0.89%

run_once_gungraun::run_once_group::run_once with_setup_3:(setup_run_once(parametric-dunescape))
Instructions: 25,743,607 (master) → 25,665,711 (HEAD) : $$\color{lime}-0.30\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     2|          2          -1.46%
D1mr                     178,690|    177,708          -0.55%
D1mw                      72,530|     70,490          -2.81%
DLmr                       3,981|      3,941          -1.00%
DLmw                       5,871|      6,877         +17.14%
Dr                     6,242,022|  6,252,674          +0.17%
Dw                     4,224,466|  4,240,922          +0.39%
EstimatedCycles       37,961,809| 37,931,285          -0.08%
I1MissRate                     0|          0          +1.21%
I1mr                      76,691|     77,384          +0.90%
ILmr                       4,817|      4,837          +0.42%
Ir                    25,743,607| 25,665,711          -0.30%
L1HitRate                     99|         99          +0.01%
L1hits                35,882,184| 35,833,725          -0.14%
LLHitRate                      1|          1          -0.92%
LLMissRate                     0|          0          +6.87%
LLdMissRate                    0|          0          +9.52%
LLhits                   313,242|    309,927          -1.06%
LLiMissRate                    0|          0          +0.72%
RamHitRate                     0|          0          +6.87%
RamHits                   14,669|     15,655          +6.72%
TotalRW               36,210,095| 36,159,307          -0.14%

run_once_gungraun::run_once_group::run_once with_setup_4:(setup_run_once(red-dress))
Instructions: 1,884,828,022 (master) → 1,885,770,068 (HEAD) : $$\color{red}+0.05\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     1|          1          -2.04%
D1mr                   2,749,305|  2,686,842          -2.27%
D1mw                   1,271,123|  1,255,659          -1.22%
DLmr                     567,428|    564,499          -0.52%
DLmw                     709,484|    719,561          +1.42%
Dr                   451,384,040|451,801,925          +0.09%
Dw                   296,310,074|296,675,405          +0.12%
EstimatedCycles      2,695,551,726|2,696,576,652          +0.04%
I1MissRate                     0|          0          -7.22%
I1mr                   2,105,657|  1,954,500          -7.18%
ILmr                       7,263|      7,315          +0.72%
Ir                   1,884,828,022|1,885,770,068          +0.05%
L1HitRate                    100|        100          +0.01%
L1hits               2,626,396,051|2,628,350,397          +0.07%
LLHitRate                      0|          0          -4.94%
LLMissRate                     0|          0          +0.49%
LLdMissRate                    0|          0          +0.45%
LLhits                 4,841,910|  4,605,626          -4.88%
LLiMissRate                    0|          0          +0.67%
RamHitRate                     0|          0          +0.49%
RamHits                1,284,175|  1,291,375          +0.56%
TotalRW              2,632,522,136|2,634,247,398          +0.07%

run_once_gungraun::run_once_group::run_once with_setup_5:(setup_run_once(valley-of-spires))
Instructions: 31,137,208 (master) → 31,190,066 (HEAD) : $$\color{red}+0.17\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          -0.34%
D1mr                     324,409|    324,588          +0.06%
D1mw                      71,613|     72,057          +0.62%
DLmr                       8,582|      8,766          +2.14%
DLmw                      14,178|     14,339          +1.14%
Dr                     7,971,228|  8,006,141          +0.44%
Dw                     5,354,944|  5,386,339          +0.59%
EstimatedCycles       47,673,548| 47,800,510          +0.27%
I1MissRate                     1|          1          -0.93%
I1mr                     195,350|    193,871          -0.76%
ILmr                       5,396|      5,425          +0.54%
Ir                    31,137,208| 31,190,066          +0.17%
L1HitRate                     99|         99          +0.01%
L1hits                43,872,008| 43,992,030          +0.27%
LLHitRate                      1|          1          -0.49%
LLMissRate                     0|          0          +1.06%
LLdMissRate                    0|          0          +1.01%
LLhits                   563,216|    561,986          -0.22%
LLiMissRate                    0|          0          +0.37%
RamHitRate                     0|          0          +1.06%
RamHits                   28,156|     28,530          +1.33%
TotalRW               44,463,380| 44,582,546          +0.27%

⚡ Render: Cached Execution

run_cached_gungraun::run_cached_group::run_cached with_setup_0:(setup_run_cached(isometric-fountain))
Instructions: 10,076,377 (master) → 10,094,885 (HEAD) : $$\color{red}+0.18\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     6|          6          +0.06%
D1mr                     261,260|    262,006          +0.29%
D1mw                       3,727|      3,606          -3.25%
DLmr                      20,133|     18,607          -7.58%
DLmw                         305|      1,350        +342.62%
Dr                     2,900,171|  2,905,379          +0.18%
Dw                     1,608,291|  1,610,886          +0.16%
EstimatedCycles       16,266,071| 16,280,622          +0.09%
I1MissRate                     0|          0          -4.84%
I1mr                         536|        511          -4.66%
ILmr                         200|        209          +4.50%
Ir                    10,076,377| 10,094,885          +0.18%
L1HitRate                     98|         98          -0.00%
L1hits                14,319,316| 14,345,027          +0.18%
LLHitRate                      2|          2          +0.26%
LLMissRate                     0|          0          -2.46%
LLdMissRate                    0|          0          -2.52%
LLhits                   244,885|    245,957          +0.44%
LLiMissRate                    0|          0          +4.31%
RamHitRate                     0|          0          -2.46%
RamHits                   20,638|     20,166          -2.29%
TotalRW               14,584,839| 14,611,150          +0.18%

run_cached_gungraun::run_cached_group::run_cached with_setup_1:(setup_run_cached(painted-dreams))
Instructions: 10,647,428 (master) → 10,663,895 (HEAD) : $$\color{red}+0.15\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     4|          4          -0.09%
D1mr                     213,109|    213,222          +0.05%
D1mw                       4,417|      4,419          +0.05%
DLmr                      25,356|     25,613          +1.01%
DLmw                         169|        191         +13.02%
Dr                     3,119,297|  3,123,992          +0.15%
Dw                     1,722,350|  1,724,724          +0.14%
EstimatedCycles       17,135,907| 17,168,251          +0.19%
I1MissRate                     0|          0          -5.13%
I1mr                         562|        534          -4.98%
ILmr                         291|        294          +1.03%
Ir                    10,647,428| 10,663,895          +0.15%
L1HitRate                     99|         99          +0.00%
L1hits                15,270,987| 15,294,436          +0.15%
LLHitRate                      1|          1          -0.25%
LLMissRate                     0|          0          +0.94%
LLdMissRate                    1|          1          +0.95%
LLhits                   192,272|    192,077          -0.10%
LLiMissRate                    0|          0          +0.87%
RamHitRate                     0|          0          +0.94%
RamHits                   25,816|     26,098          +1.09%
TotalRW               15,489,075| 15,512,611          +0.15%

run_cached_gungraun::run_cached_group::run_cached with_setup_2:(setup_run_cached(parametric-dunescape))
Instructions: 3,700,365 (master) → 3,715,409 (HEAD) : $$\color{red}+0.41\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     6|          6          -0.67%
D1mr                      95,503|     95,311          -0.20%
D1mw                       2,753|      2,652          -3.67%
DLmr                          25|         41         +64.00%
DLmw                           3|          2         -33.33%
Dr                     1,120,063|  1,124,218          +0.37%
Dw                       654,159|    656,564          +0.37%
EstimatedCycles        5,876,145|  5,897,013          +0.36%
I1MissRate                     0|          0          -5.68%
I1mr                         491|        465          -5.30%
ILmr                         191|        194          +1.57%
Ir                     3,700,365|  3,715,409          +0.41%
L1HitRate                     98|         98          +0.01%
L1hits                 5,375,840|  5,397,763          +0.41%
LLHitRate                      2|          2          -0.73%
LLMissRate                     0|          0          +7.79%
LLdMissRate                    0|          0         +53.01%
LLhits                    98,528|     98,191          -0.34%
LLiMissRate                    0|          0          +1.16%
RamHitRate                     0|          0          +7.79%
RamHits                      219|        237          +8.22%
TotalRW                5,474,587|  5,496,191          +0.39%

run_cached_gungraun::run_cached_group::run_cached with_setup_3:(setup_run_cached(red-dress))
Instructions: 44,766,973 (master) → 44,771,648 (HEAD) : $$\color{red}+0.01\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     4|          4          +0.54%
D1mr                     777,968|    782,657          +0.60%
D1mw                      34,317|     34,049          -0.78%
DLmr                     314,205|    314,493          +0.09%
DLmw                       3,350|      3,152          -5.91%
Dr                    12,953,360| 12,954,582          +0.01%
Dw                     6,885,998|  6,886,494          +0.01%
EstimatedCycles       77,397,461| 77,423,740          +0.03%
I1MissRate                     0|          0          -5.20%
I1mr                         520|        493          -5.19%
ILmr                         442|        429          -2.94%
Ir                    44,766,973| 44,771,648          +0.01%
L1HitRate                     99|         99          -0.01%
L1hits                63,793,526| 63,795,525          +0.00%
LLHitRate                      1|          1          +0.86%
LLMissRate                     0|          0          +0.01%
LLdMissRate                    2|          2          +0.02%
LLhits                   494,808|    499,125          +0.87%
LLiMissRate                    0|          0          -2.95%
RamHitRate                     0|          0          +0.01%
RamHits                  317,997|    318,074          +0.02%
TotalRW               64,606,331| 64,612,724          +0.01%

run_cached_gungraun::run_cached_group::run_cached with_setup_4:(setup_run_cached(valley-of-spires))
Instructions: 8,222,803 (master) → 8,238,308 (HEAD) : $$\color{red}+0.19\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     6|          6          -0.75%
D1mr                     206,381|    205,172          -0.59%
D1mw                       3,446|      3,462          +0.46%
DLmr                       3,321|      3,707         +11.62%
DLmw                          84|      1,159       +1279.76%
Dr                     2,376,085|  2,380,370          +0.18%
Dw                     1,323,160|  1,325,500          +0.18%
EstimatedCycles       12,871,102| 12,932,480          +0.48%
I1MissRate                     0|          0          -4.15%
I1mr                         504|        484          -3.97%
ILmr                         186|        195          +4.84%
Ir                     8,222,803|  8,238,308          +0.19%
L1HitRate                     98|         98          +0.01%
L1hits                11,711,717| 11,735,060          +0.20%
LLHitRate                      2|          2          -1.48%
LLMissRate                     0|          0         +40.67%
LLdMissRate                    0|          0         +42.65%
LLhits                   206,740|    204,057          -1.30%
LLiMissRate                    0|          0          +4.64%
RamHitRate                     0|          0         +40.67%
RamHits                    3,591|      5,061         +40.94%
TotalRW               11,922,048| 11,944,178          +0.19%

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant