Skip to content

Implement dynamic table attributes to generalize the graphic-specific Table type#4050

Open
Keavon wants to merge 7 commits intomasterfrom
attributes
Open

Implement dynamic table attributes to generalize the graphic-specific Table type#4050
Keavon wants to merge 7 commits intomasterfrom
attributes

Conversation

@Keavon
Copy link
Copy Markdown
Member

@Keavon Keavon commented Apr 25, 2026

Closes #1173, as well as its parent: closes #1832.

Copy link
Copy Markdown
Contributor

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

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 the Table and TableRow structures to utilize a dynamic, columnar attribute system instead of fixed fields. However, the review highlights several critical issues that must be addressed. The TableRowMut implementation and its iterator are currently unsound, as they allow for multiple mutable references to the same data and potential data races. There are also bugs regarding invariant maintenance in AttributeColumn::push and significant data loss during serialization because the new attributes are ignored. Additionally, the find_or_create_column method causes silent data loss and disrupts attribute ordering upon type mismatches.

Comment on lines 953 to +958
pub struct TableRowMut<'a, T> {
pub element: &'a mut T,
pub transform: &'a mut DAffine2,
pub alpha_blending: &'a mut AlphaBlending,
pub source_node_id: &'a mut Option<NodeId>,
element: &'a mut T,
index: usize,
columns: *mut AttributeColumns,
_marker: std::marker::PhantomData<&'a mut AttributeColumns>,
}
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 implementation of TableRowMut and its associated iterator TableRowIterMut is unsound. The iterator yields multiple TableRowMut instances that all share a raw mutable pointer to the same AttributeColumns store. This allows the creation of multiple overlapping mutable references (&mut AttributeColumns) to the same data, which is a violation of Rust's memory safety guarantees and leads to undefined behavior. Furthermore, the manual Send implementations (line 1117) allow these rows to be mutated concurrently from different threads without synchronization, causing data races.

Comment on lines +149 to +153
fn push(&mut self, value: Box<dyn AttributeValue>) {
if let Ok(value) = value.into_any().downcast::<T>() {
self.0.push(*value);
}
}
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

This implementation breaks the fundamental invariant of AttributeColumns that all columns must have the same length. If the downcast fails due to a type mismatch, no value is pushed to the column, causing it to become shorter than the others. This will lead to out-of-bounds access or panics in subsequent operations. A default value should be pushed if the type does not match. The same issue exists in the extend method on line 166.

Suggested change
fn push(&mut self, value: Box<dyn AttributeValue>) {
if let Ok(value) = value.into_any().downcast::<T>() {
self.0.push(*value);
}
}
fn push(&mut self, value: Box<dyn AttributeValue>) {
if let Ok(value) = value.into_any().downcast::<T>() {
self.0.push(*value);
} else {
self.0.push(T::default());
}
}

Comment thread node-graph/libraries/core-types/src/table.rs
Comment on lines +401 to +410
fn find_or_create_column<T: Clone + Send + Sync + Default + Debug + 'static>(&mut self, key: &str) -> usize {
match self.columns.iter().position(|(k, _)| k == key) {
Some(position) => {
if (*self.columns[position].1).as_any().downcast_ref::<Column<T>>().is_some() {
position
} else {
self.columns.remove(position);
self.columns.push((key.to_string(), Box::new(Column::<T>(vec![T::default(); self.len]))));
self.columns.len() - 1
}
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.

high

This method causes silent data loss and disrupts column ordering. If a column with the requested key exists but has a different type, the entire column is deleted and replaced with defaults. This destroys existing data for all rows without warning. Additionally, by removing and re-pushing the column, its relative order in the table is changed, which may affect UI presentation. Type mismatches should be handled more gracefully, perhaps by returning a Result.

@Keavon Keavon changed the title Attributes Implement dynamic table attributes to generalize the graphic-specific Table type Apr 25, 2026
Copy link
Copy Markdown
Contributor

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

Choose a reason for hiding this comment

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

8 issues found across 76 files

Confidence score: 1/5

  • node-graph/libraries/core-types/src/table.rs has a severity 10 issue with a manual Send impl on TableRowMut that appears unsound; shared unsynchronized raw pointers can allow concurrent mutation and undefined behavior, which is merge-blocking risk.
  • Two high-confidence invariant bugs in node-graph/libraries/core-types/src/table.rs (Column<T>::extend and Column<T>::push) silently skip type-mismatched writes while AttributeColumns::len still increments, creating concrete out-of-bounds/regression risk later.
  • There are additional user-impacting correctness/perf issues (Image to Bytes dropping alpha in node-graph/nodes/gstd/src/platform_application_io.rs, plus row-cloning overhead in raster/texture paths), so this is not just housekeeping.
  • Pay close attention to node-graph/libraries/core-types/src/table.rs, node-graph/nodes/gstd/src/platform_application_io.rs, node-graph/libraries/wgpu-executor/src/texture_conversion.rs, and node-graph/nodes/raster/src/std_nodes.rs - memory-safety, data-integrity, and output-format correctness are at risk.

Note: This PR contains a large number of files. cubic only reviews up to 75 files per PR, so some files may not have been reviewed. cubic prioritises the most important files to review.

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/nodes/gstd/src/platform_application_io.rs">

<violation number="1" location="node-graph/nodes/gstd/src/platform_application_io.rs:123">
P2: `Image to Bytes` currently serializes each pixel as RGB (3 bytes) instead of RGBA (4 bytes), so alpha is lost and output length is incorrect for RGBA consumers.</violation>
</file>

<file name="editor/src/messages/portfolio/document/overlays/utility_types_native.rs">

<violation number="1" location="editor/src/messages/portfolio/document/overlays/utility_types_native.rs:1178">
P2: Avoid repeated per-segment transform attribute cloning inside the inner loop; compute it once per row.</violation>
</file>

<file name="node-graph/nodes/raster/src/std_nodes.rs">

<violation number="1" location="node-graph/nodes/raster/src/std_nodes.rs:122">
P2: Avoid cloning the full raster row when only attributes are needed; this adds unnecessary image-buffer copies in `combine_channels`.</violation>
</file>

<file name="node-graph/libraries/wgpu-executor/src/texture_conversion.rs">

<violation number="1" location="node-graph/libraries/wgpu-executor/src/texture_conversion.rs:157">
P2: Avoid `row.into_cloned()` here; it clones the entire CPU raster just to copy attributes, causing unnecessary per-row image duplication and extra memory/CPU overhead.</violation>
</file>

<file name="node-graph/libraries/core-types/src/table.rs">

<violation number="1" location="node-graph/libraries/core-types/src/table.rs:149">
P1: Silent downcast failure in `Column<T>::push` breaks the column-length invariant. When the type doesn't match, no value is pushed but `AttributeColumns::len` still increments, causing later out-of-bounds accesses. Push a default on mismatch to maintain the invariant.</violation>

<violation number="2" location="node-graph/libraries/core-types/src/table.rs:166">
P1: Silent downcast failure in `Column<T>::extend` breaks the column-length invariant. When two tables have the same attribute key but different types, the column silently skips the extend while `AttributeColumns::len` still grows. Pad with defaults on mismatch.</violation>

<violation number="3" location="node-graph/libraries/core-types/src/table.rs:1117">
P0: The manual `Send` impl on `TableRowMut` is unsound because rows share an unsynchronized raw pointer to `AttributeColumns`, enabling concurrent mutation and undefined behavior.</violation>
</file>

<file name="node-graph/graph-craft/Cargo.toml">

<violation number="1" location="node-graph/graph-craft/Cargo.toml:25">
P3: Custom agent: **PR title enforcement**

PR title is not in the required imperative verb form.</violation>
</file>

Reply with feedback, questions, or to request a fix. Tag @cubic-dev-ai to re-run a review.

Comment thread node-graph/libraries/core-types/src/table.rs Outdated
Comment thread node-graph/libraries/core-types/src/table.rs
Comment thread node-graph/libraries/core-types/src/table.rs
fn image_to_bytes(_: impl Ctx, image: Table<Raster<CPU>>) -> Vec<u8> {
let Some(image) = image.iter().next() else { return vec![] };
image.element.data.iter().flat_map(|color| color.to_rgb8_srgb().into_iter()).collect::<Vec<u8>>()
image.element().data.iter().flat_map(|color| color.to_rgb8_srgb().into_iter()).collect::<Vec<u8>>()
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: Image to Bytes currently serializes each pixel as RGB (3 bytes) instead of RGBA (4 bytes), so alpha is lost and output length is incorrect for RGBA consumers.

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

<comment>`Image to Bytes` currently serializes each pixel as RGB (3 bytes) instead of RGBA (4 bytes), so alpha is lost and output length is incorrect for RGBA consumers.</comment>

<file context>
@@ -120,7 +120,7 @@ fn string_to_bytes(_: impl Ctx, string: String) -> Vec<u8> {
 fn image_to_bytes(_: impl Ctx, image: Table<Raster<CPU>>) -> Vec<u8> {
 	let Some(image) = image.iter().next() else { return vec![] };
-	image.element.data.iter().flat_map(|color| color.to_rgb8_srgb().into_iter()).collect::<Vec<u8>>()
+	image.element().data.iter().flat_map(|color| color.to_rgb8_srgb().into_iter()).collect::<Vec<u8>>()
 }
 
</file context>
Suggested change
image.element().data.iter().flat_map(|color| color.to_rgb8_srgb().into_iter()).collect::<Vec<u8>>()
image.element().data.iter().flat_map(|color| color.to_rgba8_srgb().into_iter()).collect::<Vec<u8>>()

Comment thread editor/src/messages/portfolio/document/overlays/utility_types_native.rs Outdated
Comment thread node-graph/nodes/raster/src/std_nodes.rs Outdated
Comment thread node-graph/libraries/wgpu-executor/src/texture_conversion.rs Outdated
Comment thread node-graph/graph-craft/Cargo.toml
@github-actions
Copy link
Copy Markdown

github-actions Bot commented Apr 25, 2026

Performance Benchmark Results

🔧 Graph Compilation

compile_demo_art_iai::compile_group::compile_to_proto with_setup_0:load_from_name(isometric-fountain)
Instructions: 27,457,298 (master) → 27,452,034 (HEAD) : $$\color{lime}-0.02\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     4|          4          +0.00%
D1mr                     361,792|    361,941          +0.04%
D1mw                     112,828|    112,871          +0.04%
DLmr                      31,899|     32,192          +0.92%
DLmw                      62,623|     47,017         -24.92%
Dr                     6,815,342|  6,816,574          +0.02%
Dw                     4,736,803|  4,739,827          +0.06%
EstimatedCycles       43,929,191| 43,471,929          -1.04%
I1MissRate                     0|          0          +1.23%
I1mr                      40,282|     40,769          +1.21%
ILmr                         816|        830          +1.72%
Ir                    27,457,298| 27,452,034          -0.02%
L1HitRate                     99|         99          -0.00%
L1hits                38,494,541| 38,492,854          -0.00%
LLHitRate                      1|          1          +3.81%
LLMissRate                     0|          0         -16.04%
LLdMissRate                    1|          1         -16.23%
LLhits                   419,564|    435,542          +3.81%
LLiMissRate                    0|          0          +1.74%
RamHitRate                     0|          0         -16.04%
RamHits                   95,338|     80,039         -16.05%
TotalRW               39,009,443| 39,008,435          -0.00%

compile_demo_art_iai::compile_group::compile_to_proto with_setup_1:load_from_name(painted-dreams)
Instructions: 13,874,041 (master) → 13,911,400 (HEAD) : $$\color{red}+0.27\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     4|          4          +2.13%
D1mr                     172,431|    178,040          +3.25%
D1mw                      54,639|     54,256          -0.70%
DLmr                         757|        974         +28.67%
DLmw                      15,459|     14,542          -5.93%
Dr                     3,446,329|  3,451,980          +0.16%
Dw                     2,384,512|  2,388,527          +0.17%
EstimatedCycles       21,200,478| 21,245,891          +0.21%
I1MissRate                     0|          0          -2.00%
I1mr                      20,064|     19,715          -1.74%
ILmr                         686|        682          -0.58%
Ir                    13,874,041| 13,911,400          +0.27%
L1HitRate                     99|         99          -0.02%
L1hits                19,457,748| 19,499,896          +0.22%
LLHitRate                      1|          1          +2.18%
LLMissRate                     0|          0          -4.39%
LLdMissRate                    0|          0          -4.48%
LLhits                   230,232|    235,813          +2.42%
LLiMissRate                    0|          0          -0.85%
RamHitRate                     0|          0          -4.39%
RamHits                   16,902|     16,198          -4.17%
TotalRW               19,704,882| 19,751,907          +0.24%

compile_demo_art_iai::compile_group::compile_to_proto with_setup_2:load_from_name(procedural-string-lights)
Instructions: 3,073,191 (master) → 3,080,112 (HEAD) : $$\color{red}+0.23\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     4|          4          +1.88%
D1mr                      36,781|     38,244          +3.98%
D1mw                      11,212|     10,741          -4.20%
DLmr                          15|         17         +13.33%
DLmw                       3,017|      2,909          -3.58%
Dr                       752,066|    753,659          +0.21%
Dw                       522,697|    523,408          +0.14%
EstimatedCycles        4,668,278|  4,678,973          +0.23%
I1MissRate                     0|          0          +3.96%
I1mr                       4,248|      4,426          +4.19%
ILmr                         680|        679          -0.15%
Ir                     3,073,191|  3,080,112          +0.23%
L1HitRate                     99|         99          -0.02%
L1hits                 4,295,713|  4,303,768          +0.19%
LLHitRate                      1|          1          +2.41%
LLMissRate                     0|          0          -3.09%
LLdMissRate                    0|          0          -3.67%
LLhits                    48,529|     49,806          +2.63%
LLiMissRate                    0|          0          -0.37%
RamHitRate                     0|          0          -3.09%
RamHits                    3,712|      3,605          -2.88%
TotalRW                4,347,954|  4,357,179          +0.21%

compile_demo_art_iai::compile_group::compile_to_proto with_setup_3:load_from_name(parametric-dunescape)
Instructions: 13,978,430 (master) → 13,891,127 (HEAD) : $$\color{lime}-0.62\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     4|          4          -1.00%
D1mr                     190,883|    185,974          -2.57%
D1mw                      56,983|     58,131          +2.01%
DLmr                          59|         90         +52.54%
DLmw                      14,081|     14,663          +4.13%
Dr                     3,425,729|  3,405,038          -0.60%
Dw                     2,404,688|  2,394,835          -0.41%
EstimatedCycles       21,312,399| 21,198,532          -0.53%
I1MissRate                     0|          0          +1.76%
I1mr                      16,062|     16,243          +1.13%
ILmr                         788|        785          -0.38%
Ir                    13,978,430| 13,891,127          -0.62%
L1HitRate                     99|         99          +0.01%
L1hits                19,544,919| 19,430,652          -0.58%
LLHitRate                      1|          1          -1.09%
LLMissRate                     0|          0          +4.71%
LLdMissRate                    0|          0          +4.88%
LLhits                   249,000|    244,810          -1.68%
LLiMissRate                    0|          0          +0.25%
RamHitRate                     0|          0          +4.71%
RamHits                   14,928|     15,538          +4.09%
TotalRW               19,808,847| 19,691,000          -0.59%

compile_demo_art_iai::compile_group::compile_to_proto with_setup_4:load_from_name(red-dress)
Instructions: 31,912,790 (master) → 32,042,975 (HEAD) : $$\color{red}+0.41\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     4|          4          +1.27%
D1mr                     416,495|    429,812          +3.20%
D1mw                     129,754|    125,461          -3.31%
DLmr                      43,493|     43,943          +1.03%
DLmw                      56,829|     57,964          +2.00%
Dr                     7,891,315|  7,923,094          +0.40%
Dw                     5,493,722|  5,512,999          +0.35%
EstimatedCycles       50,695,685| 50,963,942          +0.53%
I1MissRate                     0|          0          +1.19%
I1mr                      44,628|     45,343          +1.60%
ILmr                         823|        840          +2.07%
Ir                    31,912,790| 32,042,975          +0.41%
L1HitRate                     99|         99          -0.02%
L1hits                44,706,950| 44,878,452          +0.38%
LLHitRate                      1|          1          +1.26%
LLMissRate                     0|          0          +1.18%
LLdMissRate                    1|          1          +1.19%
LLhits                   489,732|    497,869          +1.66%
LLiMissRate                    0|          0          +1.65%
RamHitRate                     0|          0          +1.18%
RamHits                  101,145|    102,747          +1.58%
TotalRW               45,297,827| 45,479,068          +0.40%

compile_demo_art_iai::compile_group::compile_to_proto with_setup_5:load_from_name(valley-of-spires)
Instructions: 21,098,354 (master) → 21,183,253 (HEAD) : $$\color{red}+0.40\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     4|          4          +1.40%
D1mr                     268,525|    277,611          +3.38%
D1mw                      80,413|     77,329          -3.84%
DLmr                      15,500|     15,854          +2.28%
DLmw                      36,072|     37,771          +4.71%
Dr                     5,239,515|  5,256,559          +0.33%
Dw                     3,636,119|  3,647,274          +0.31%
EstimatedCycles       33,060,334| 33,260,462          +0.61%
I1MissRate                     0|          0          +0.84%
I1mr                      30,031|     30,404          +1.24%
ILmr                         777|        775          -0.26%
Ir                    21,098,354| 21,183,253          +0.40%
L1HitRate                     99|         99          -0.02%
L1hits                29,595,019| 29,701,742          +0.36%
LLHitRate                      1|          1          +0.94%
LLMissRate                     0|          0          +3.53%
LLdMissRate                    1|          1          +3.65%
LLhits                   326,620|    330,944          +1.32%
LLiMissRate                    0|          0          -0.66%
RamHitRate                     0|          0          +3.53%
RamHits                   52,349|     54,400          +3.92%
TotalRW               29,973,988| 30,087,086          +0.38%

🔄 Executor Update

update_executor_iai::update_group::update_executor with_setup_0:setup_update_executor(isometric-fountain)
Instructions: 50,839,868 (master) → 51,151,456 (HEAD) : $$\color{red}+0.61\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          -0.81%
D1mr                     561,715|    566,216          +0.80%
D1mw                     129,289|    130,082          +0.61%
DLmr                       4,243|      4,887         +15.18%
DLmw                      21,774|     24,024         +10.33%
Dr                    13,086,906| 13,266,037          +1.37%
Dw                     8,866,333|  9,035,760          +1.91%
EstimatedCycles       76,473,011| 77,306,405          +1.09%
I1MissRate                     0|          0         +49.56%
I1mr                      32,082|     48,275         +50.47%
ILmr                         235|        251          +6.81%
Ir                    50,839,868| 51,151,456          +0.61%
L1HitRate                     99|         99          -0.02%
L1hits                72,070,021| 72,708,680          +0.89%
LLHitRate                      1|          1          +1.74%
LLMissRate                     0|          0         +10.09%
LLdMissRate                    0|          0          +9.39%
LLhits                   696,834|    715,411          +2.67%
LLiMissRate                    0|          0          +6.16%
RamHitRate                     0|          0         +10.09%
RamHits                   26,252|     29,162         +11.08%
TotalRW               72,793,107| 73,453,253          +0.91%

update_executor_iai::update_group::update_executor with_setup_1:setup_update_executor(painted-dreams)
Instructions: 25,221,806 (master) → 25,288,490 (HEAD) : $$\color{red}+0.26\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          +0.39%
D1mr                     269,617|    271,564          +0.72%
D1mw                      61,460|     61,772          +0.51%
DLmr                         878|        925          +5.35%
DLmw                       4,270|      3,971          -7.00%
Dr                     6,526,393|  6,542,392          +0.25%
Dw                     4,438,050|  4,454,136          +0.36%
EstimatedCycles       37,746,929| 37,871,670          +0.33%
I1MissRate                     0|          0         +31.45%
I1mr                      19,163|     25,257         +31.80%
ILmr                         176|        180          +2.27%
Ir                    25,221,806| 25,288,490          +0.26%
L1HitRate                     99|         99          -0.02%
L1hits                35,836,009| 35,926,425          +0.25%
LLHitRate                      1|          1          +2.21%
LLMissRate                     0|          0          -4.92%
LLdMissRate                    0|          0          -5.17%
LLhits                   344,916|    353,517          +2.49%
LLiMissRate                    0|          0          +2.00%
RamHitRate                     0|          0          -4.92%
RamHits                    5,324|      5,076          -4.66%
TotalRW               36,186,249| 36,285,018          +0.27%

update_executor_iai::update_group::update_executor with_setup_2:setup_update_executor(procedural-string-lights)
Instructions: 6,393,605 (master) → 6,383,392 (HEAD) : $$\color{lime}-0.16\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          -1.47%
D1mr                      64,764|     63,593          -1.81%
D1mw                      16,042|     15,953          -0.55%
DLmr                           1|          3        +200.00%
DLmw                         521|        541          +3.84%
Dr                     1,638,518|  1,636,278          -0.14%
Dw                     1,116,956|  1,116,601          -0.03%
EstimatedCycles        9,515,889|  9,507,873          -0.08%
I1MissRate                     0|          0         +39.88%
I1mr                       5,669|      7,917         +39.65%
ILmr                         175|        181          +3.43%
Ir                     6,393,605|  6,383,392          -0.16%
L1HitRate                     99|         99          -0.01%
L1hits                 9,062,604|  9,048,808          -0.15%
LLHitRate                      1|          1          +1.26%
LLMissRate                     0|          0          +4.16%
LLdMissRate                    0|          0          +4.31%
LLhits                    85,778|     86,738          +1.12%
LLiMissRate                    0|          0          +3.59%
RamHitRate                     0|          0          +4.16%
RamHits                      697|        725          +4.02%
TotalRW                9,149,079|  9,136,271          -0.14%

update_executor_iai::update_group::update_executor with_setup_3:setup_update_executor(parametric-dunescape)
Instructions: 27,660,219 (master) → 27,751,391 (HEAD) : $$\color{red}+0.33\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          -0.34%
D1mr                     288,223|    287,826          -0.14%
D1mw                      71,848|     72,737          +1.24%
DLmr                         167|        114         -31.74%
DLmw                       5,474|      7,088         +29.48%
Dr                     7,127,242|  7,154,288          +0.38%
Dw                     4,909,937|  4,940,834          +0.63%
EstimatedCycles       41,372,512| 41,599,901          +0.55%
I1MissRate                     0|          0         +47.99%
I1mr                      15,140|     22,479         +48.47%
ILmr                         168|        172          +2.38%
Ir                    27,660,219| 27,751,391          +0.33%
L1HitRate                     99|         99          -0.02%
L1hits                39,322,187| 39,463,471          +0.36%
LLHitRate                      1|          1          +1.32%
LLMissRate                     0|          0         +26.47%
LLdMissRate                    0|          0         +27.06%
LLhits                   369,402|    375,668          +1.70%
LLiMissRate                    0|          0          +2.04%
RamHitRate                     0|          0         +26.47%
RamHits                    5,809|      7,374         +26.94%
TotalRW               39,697,398| 39,846,513          +0.38%

update_executor_iai::update_group::update_executor with_setup_4:setup_update_executor(red-dress)
Instructions: 60,022,800 (master) → 60,119,727 (HEAD) : $$\color{red}+0.16\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          +0.99%
D1mr                     655,129|    657,152          +0.31%
D1mw                     154,480|    149,561          -3.18%
DLmr                      11,938|     11,666          -2.28%
DLmw                      29,575|     27,533          -6.90%
Dr                    15,529,360| 15,360,625          -1.09%
Dw                    10,526,185| 10,346,037          -1.71%
EstimatedCycles       90,717,915| 90,445,023          -0.30%
I1MissRate                     0|          0         +40.17%
I1mr                      36,281|     50,938         +40.40%
ILmr                         354|        402         +13.56%
Ir                    60,022,800| 60,119,727          +0.16%
L1HitRate                     99|         99          -0.02%
L1hits                85,232,455| 84,968,738          -0.31%
LLHitRate                      1|          1          +2.04%
LLMissRate                     0|          0          -5.13%
LLdMissRate                    0|          0          -4.29%
LLhits                   804,023|    818,050          +1.74%
LLiMissRate                    0|          0         +13.38%
RamHitRate                     0|          0          -5.13%
RamHits                   41,867|     39,601          -5.41%
TotalRW               86,078,345| 85,826,389          -0.29%

update_executor_iai::update_group::update_executor with_setup_5:setup_update_executor(valley-of-spires)
Instructions: 37,081,542 (master) → 37,157,167 (HEAD) : $$\color{red}+0.20\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          -1.27%
D1mr                     410,403|    405,345          -1.23%
D1mw                      91,738|     92,206          +0.51%
DLmr                       2,533|      2,616          +3.28%
DLmw                      13,493|     10,211         -24.32%
Dr                     9,504,246|  9,530,459          +0.28%
Dw                     6,404,425|  6,435,223          +0.48%
EstimatedCycles       55,589,051| 55,649,155          +0.11%
I1MissRate                     0|          0         +40.07%
I1mr                      25,911|     36,368         +40.36%
ILmr                         195|        194          -0.51%
Ir                    37,081,542| 37,157,167          +0.20%
L1HitRate                     99|         99          -0.01%
L1hits                52,462,161| 52,588,930          +0.24%
LLHitRate                      1|          1          +1.52%
LLMissRate                     0|          0         -19.93%
LLdMissRate                    0|          0         -20.25%
LLhits                   511,831|    520,898          +1.77%
LLiMissRate                    0|          0          -0.72%
RamHitRate                     0|          0         -19.93%
RamHits                   16,221|     13,021         -19.73%
TotalRW               52,990,213| 53,122,849          +0.25%

🚀 Render: Cold Execution

run_once_iai::run_once_group::run_once with_setup_0:setup_run_once(isometric-fountain)
Instructions: 24,921,266 (master) → 26,910,446 (HEAD) : $$\color{red}+7.98\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          -2.44%
D1mr                     305,225|    317,767          +4.11%
D1mw                      67,252|     64,018          -4.81%
DLmr                      10,884|     12,368         +13.63%
DLmw                      10,751|     11,753          +9.32%
Dr                     6,563,600|  6,962,825          +6.08%
Dw                     4,488,663|  4,648,871          +3.57%
EstimatedCycles       38,916,337| 41,653,254          +7.03%
I1MissRate                     1|          1          +3.11%
I1mr                     151,575|    168,763         +11.34%
ILmr                       6,585|      6,843          +3.92%
Ir                    24,921,266| 26,910,446          +7.98%
L1HitRate                     99|         99          +0.03%
L1hits                35,449,477| 37,971,594          +7.11%
LLHitRate                      1|          1          -2.14%
LLMissRate                     0|          0          +2.46%
LLdMissRate                    0|          0          +6.12%
LLhits                   495,832|    519,584          +4.79%
LLiMissRate                    0|          0          -3.76%
RamHitRate                     0|          0          +2.46%
RamHits                   28,220|     30,964          +9.72%
TotalRW               35,973,529| 38,522,142          +7.08%

run_once_iai::run_once_group::run_once with_setup_1:setup_run_once(painted-dreams)
Instructions: 315,667,887 (master) → 319,587,905 (HEAD) : $$\color{red}+1.24\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     1|          1          -1.14%
D1mr                     788,716|    798,527          +1.24%
D1mw                     484,112|    475,426          -1.79%
DLmr                      13,070|     14,929         +14.22%
DLmw                      51,265|     54,566          +6.44%
Dr                    62,399,994| 63,242,967          +1.35%
Dw                    38,026,104| 38,429,814          +1.06%
EstimatedCycles      431,840,715|437,932,788          +1.41%
I1MissRate                     1|          1          +7.58%
I1mr                   2,113,602|  2,302,015          +8.91%
ILmr                       9,032|      9,446          +4.58%
Ir                   315,667,887|319,587,905          +1.24%
L1HitRate                     99|         99          -0.04%
L1hits               412,707,555|417,684,718          +1.21%
LLHitRate                      1|          1          +4.26%
LLMissRate                     0|          0          +6.28%
LLdMissRate                    0|          0          +6.70%
LLhits                 3,313,063|  3,497,027          +5.55%
LLiMissRate                    0|          0          +3.30%
RamHitRate                     0|          0          +6.28%
RamHits                   73,367|     78,941          +7.60%
TotalRW              416,093,985|421,260,686          +1.24%

run_once_iai::run_once_group::run_once with_setup_2:setup_run_once(procedural-string-lights)
Instructions: 11,103,333 (master) → 12,122,924 (HEAD) : $$\color{red}+9.18\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     2|          2          -1.58%
D1mr                      66,796|     72,367          +8.34%
D1mw                      24,958|     26,202          +4.98%
DLmr                         596|        691         +15.94%
DLmw                       1,063|      1,119          +5.27%
Dr                     2,784,212|  3,056,829          +9.79%
Dw                     2,025,015|  2,192,702          +8.28%
EstimatedCycles       16,698,838| 18,242,575          +9.24%
I1MissRate                     0|          1         +12.78%
I1mr                      53,658|     66,071         +23.13%
ILmr                       5,162|      5,242          +1.55%
Ir                    11,103,333| 12,122,924          +9.18%
L1HitRate                     99|         99          -0.03%
L1hits                15,767,148| 17,207,815          +9.14%
LLHitRate                      1|          1          +4.15%
LLMissRate                     0|          0          -5.30%
LLdMissRate                    0|          0          -0.05%
LLhits                   138,591|    157,588         +13.71%
LLiMissRate                    0|          0          -6.99%
RamHitRate                     0|          0          -5.30%
RamHits                    6,821|      7,052          +3.39%
TotalRW               15,912,560| 17,372,455          +9.17%

run_once_iai::run_once_group::run_once with_setup_3:setup_run_once(parametric-dunescape)
Instructions: 22,655,957 (master) → 22,565,545 (HEAD) : $$\color{lime}-0.40\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     2|          2          -2.29%
D1mr                     163,300|    159,992          -2.03%
D1mw                      65,339|     61,790          -5.43%
DLmr                       2,691|      2,629          -2.30%
DLmw                       6,118|      5,550          -9.28%
Dr                     5,490,088|  5,453,534          -0.67%
Dw                     3,748,915|  3,718,856          -0.80%
EstimatedCycles       33,487,544| 33,294,693          -0.58%
I1MissRate                     0|          0          +3.57%
I1mr                      71,587|     73,845          +3.15%
ILmr                       4,247|      4,296          +1.15%
Ir                    22,655,957| 22,565,545          -0.40%
L1HitRate                     99|         99          +0.01%
L1hits                31,594,734| 31,442,308          -0.48%
LLHitRate                      1|          1          -0.91%
LLMissRate                     0|          0          -3.98%
LLdMissRate                    0|          0          -6.48%
LLhits                   287,170|    283,152          -1.40%
LLiMissRate                    0|          0          +1.56%
RamHitRate                     0|          0          -3.98%
RamHits                   13,056|     12,475          -4.45%
TotalRW               31,894,960| 31,737,935          -0.49%

run_once_iai::run_once_group::run_once with_setup_4:setup_run_once(red-dress)
Instructions: 1,752,990,037 (master) → 1,766,533,879 (HEAD) : $$\color{red}+0.77\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     0|          0          +0.29%
D1mr                   1,930,968|  1,966,493          +1.84%
D1mw                     928,198|    922,950          -0.57%
DLmr                     450,157|    437,559          -2.80%
DLmw                     543,211|    526,641          -3.05%
Dr                   419,852,390|423,118,021          +0.78%
Dw                   275,127,836|277,163,232          +0.74%
EstimatedCycles      2,494,908,155|2,514,707,776          +0.79%
I1MissRate                     0|          0         +29.96%
I1mr                   1,378,877|  1,805,823         +30.96%
ILmr                       6,156|      6,186          +0.49%
Ir                   1,752,990,037|1,766,533,879          +0.77%
L1HitRate                    100|        100          -0.02%
L1hits               2,443,732,220|2,462,119,866          +0.75%
LLHitRate                      0|          0         +14.14%
LLMissRate                     0|          0          -3.66%
LLdMissRate                    0|          0          -3.67%
LLhits                 3,238,519|  3,724,880         +15.02%
LLiMissRate                    0|          0          -0.28%
RamHitRate                     0|          0          -3.66%
RamHits                  999,524|    970,386          -2.92%
TotalRW              2,447,970,263|2,466,815,132          +0.77%

run_once_iai::run_once_group::run_once with_setup_5:setup_run_once(valley-of-spires)
Instructions: 21,655,609 (master) → 23,353,351 (HEAD) : $$\color{red}+7.84\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          -3.47%
D1mr                     233,137|    245,369          +5.25%
D1mw                      56,763|     55,280          -2.61%
DLmr                       5,681|      5,681          +0.00%
DLmw                       8,146|      6,541         -19.70%
Dr                     5,476,706|  5,912,684          +7.96%
Dw                     3,717,845|  3,965,741          +6.67%
EstimatedCycles       33,017,190| 35,443,606          +7.35%
I1MissRate                     1|          1          +2.14%
I1mr                     117,675|    129,616         +10.15%
ILmr                       4,064|      4,137          +1.80%
Ir                    21,655,609| 23,353,351          +7.84%
L1HitRate                     99|         99          +0.03%
L1hits                30,442,585| 32,801,511          +7.75%
LLHitRate                      1|          1          -1.40%
LLMissRate                     0|          0         -15.12%
LLdMissRate                    0|          0         -17.73%
LLhits                   389,684|    413,906          +6.22%
LLiMissRate                    0|          0          -5.60%
RamHitRate                     0|          0         -15.12%
RamHits                   17,891|     16,359          -8.56%
TotalRW               30,850,160| 33,231,776          +7.72%

⚡ Render: Cached Execution

run_cached_iai::run_cached_group::run_cached with_setup_0:setup_run_cached(isometric-fountain)
Instructions: 8,245,964 (master) → 9,081,787 (HEAD) : $$\color{red}+10.14\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     6|          5          -5.69%
D1mr                     212,780|    219,754          +3.28%
D1mw                       3,381|      3,455          +2.19%
DLmr                       4,406|      5,229         +18.68%
DLmw                          81|        143         +76.54%
Dr                     2,387,014|  2,620,863          +9.80%
Dw                     1,327,492|  1,446,165          +8.94%
EstimatedCycles       12,968,506| 14,211,499          +9.58%
I1MissRate                     0|          0          -9.37%
I1mr                         538|        537          -0.19%
ILmr                         221|        218          -1.36%
Ir                     8,245,964|  9,081,787         +10.14%
L1HitRate                     98|         98          +0.11%
L1hits                11,743,771| 12,925,069         +10.06%
LLHitRate                      2|          2          -6.39%
LLMissRate                     0|          0          +8.00%
LLdMissRate                    0|          0          +9.35%
LLhits                   211,991|    218,156          +2.91%
LLiMissRate                    0|          0         -10.44%
RamHitRate                     0|          0          +8.00%
RamHits                    4,708|      5,590         +18.73%
TotalRW               11,960,470| 13,148,815          +9.94%

run_cached_iai::run_cached_group::run_cached with_setup_1:setup_run_cached(painted-dreams)
Instructions: 6,279,265 (master) → 6,964,759 (HEAD) : $$\color{red}+10.92\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     5|          4          -5.28%
D1mr                     133,000|    138,207          +3.92%
D1mw                       3,843|      3,928          +2.21%
DLmr                      10,785|     11,234          +4.16%
DLmw                         112|         95         -15.18%
Dr                     1,884,127|  2,074,297         +10.09%
Dw                     1,072,689|  1,168,193          +8.90%
EstimatedCycles       10,119,593| 11,125,971          +9.94%
I1MissRate                     0|          0         -10.97%
I1mr                         560|        553          -1.25%
ILmr                         233|        270         +15.88%
Ir                     6,279,265|  6,964,759         +10.92%
L1HitRate                     99|         99          +0.09%
L1hits                 9,098,678| 10,064,561         +10.62%
LLHitRate                      1|          1          -6.06%
LLMissRate                     0|          0          -5.70%
LLdMissRate                    0|          0          -5.20%
LLhits                   126,273|    131,089          +3.81%
LLiMissRate                    0|          0          +4.47%
RamHitRate                     0|          0          -5.70%
RamHits                   11,130|     11,599          +4.21%
TotalRW                9,236,081| 10,207,249         +10.51%

run_cached_iai::run_cached_group::run_cached with_setup_2:setup_run_cached(parametric-dunescape)
Instructions: 3,582,380 (master) → 3,562,461 (HEAD) : $$\color{lime}-0.56\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     5|          5          +0.05%
D1mr                      90,377|     89,951          -0.47%
D1mw                       2,689|      2,685          -0.15%
DLmr                          27|         31         +14.81%
DLmw                         NaN|        NaN          +0.00%
Dr                     1,086,044|  1,080,335          -0.53%
Dw                       635,223|    632,068          -0.50%
EstimatedCycles        5,684,169|  5,653,582          -0.54%
I1MissRate                     0|          0          -0.65%
I1mr                         497|        491          -1.21%
ILmr                         182|        176          -3.30%
Ir                     3,582,380|  3,562,461          -0.56%
L1HitRate                     98|         98          -0.00%
L1hits                 5,210,084|  5,181,737          -0.54%
LLHitRate                      2|          2          +0.08%
LLMissRate                     0|          0          -0.42%
LLdMissRate                    0|          0         +15.41%
LLhits                    93,354|     92,920          -0.46%
LLiMissRate                    0|          0          -2.76%
RamHitRate                     0|          0          -0.42%
RamHits                      209|        207          -0.96%
TotalRW                5,303,647|  5,274,864          -0.54%

run_cached_iai::run_cached_group::run_cached with_setup_3:setup_run_cached(red-dress)
Instructions: 34,413,626 (master) → 35,120,720 (HEAD) : $$\color{red}+2.05\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     4|          4          +2.76%
D1mr                     600,819|    630,523          +4.94%
D1mw                      30,940|     31,341          +1.30%
DLmr                     263,647|    264,146          +0.19%
DLmw                       1,173|      1,298         +10.66%
Dr                     9,842,224| 10,037,551          +1.98%
Dw                     5,219,444|  5,318,320          +1.89%
EstimatedCycles       59,962,412| 61,103,413          +1.90%
I1MissRate                     0|          0          -0.91%
I1mr                         533|        539          +1.13%
ILmr                         445|        463          +4.04%
Ir                    34,413,626| 35,120,720          +2.05%
L1HitRate                     99|         99          -0.03%
L1hits                48,843,002| 49,814,188          +1.99%
LLHitRate                      1|          1          +5.89%
LLMissRate                     1|          1          -1.75%
LLdMissRate                    2|          2          -1.68%
LLhits                   367,027|    396,496          +8.03%
LLiMissRate                    0|          0          +1.95%
RamHitRate                     1|          1          -1.75%
RamHits                  265,265|    265,907          +0.24%
TotalRW               49,475,294| 50,476,591          +2.02%

run_cached_iai::run_cached_group::run_cached with_setup_4:setup_run_cached(valley-of-spires)
Instructions: 6,438,753 (master) → 7,090,808 (HEAD) : $$\color{red}+10.13\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     6|          5          -4.75%
D1mr                     159,512|    166,274          +4.24%
D1mw                       2,981|      3,038          +1.91%
DLmr                         396|        212         -46.46%
DLmw                          12|         11          -8.33%
Dr                     1,875,017|  2,057,152          +9.71%
Dw                     1,049,526|  1,141,963          +8.81%
EstimatedCycles       10,033,356| 10,982,007          +9.45%
I1MissRate                     0|          0         -10.59%
I1mr                         522|        514          -1.53%
ILmr                         192|        203          +5.73%
Ir                     6,438,753|  7,090,808         +10.13%
L1HitRate                     98|         98          +0.09%
L1hits                 9,200,281| 10,120,097         +10.00%
LLHitRate                      2|          2          -5.09%
LLMissRate                     0|          0         -35.39%
LLdMissRate                    0|          0         -50.03%
LLhits                   162,415|    169,400          +4.30%
LLiMissRate                    0|          0          -3.99%
RamHitRate                     0|          0         -35.39%
RamHits                      600|        426         -29.00%
TotalRW                9,363,296| 10,289,923          +9.90%

Keavon and others added 2 commits April 25, 2026 04:15
Co-authored-by: Copilot <copilot@github.com>
@github-actions
Copy link
Copy Markdown

github-actions Bot commented Apr 25, 2026

Performance Benchmark Results

🔧 Graph Compilation

compile_demo_art_iai::compile_group::compile_to_proto with_setup_0:load_from_name(isometric-fountain)
Instructions: 27,456,136 (master) → 27,554,600 (HEAD) : $$\color{red}+0.36\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     4|          4          +0.53%
D1mr                     361,704|    367,051          +1.48%
D1mw                     112,811|    111,351          -1.29%
DLmr                      31,899|     32,196          +0.93%
DLmw                      62,610|     53,286         -14.89%
Dr                     6,815,191|  6,835,942          +0.30%
Dw                     4,736,785|  4,749,538          +0.27%
EstimatedCycles       43,927,050| 43,810,676          -0.26%
I1MissRate                     0|          0          +3.81%
I1mr                      40,282|     41,967          +4.18%
ILmr                         816|        822          +0.74%
Ir                    27,456,136| 27,554,600          +0.36%
L1HitRate                     99|         99          -0.01%
L1hits                38,493,315| 38,619,711          +0.33%
LLHitRate                      1|          1          +3.13%
LLMissRate                     0|          0          -9.77%
LLdMissRate                    1|          1          -9.81%
LLhits                   419,472|    434,065          +3.48%
LLiMissRate                    0|          0          +0.38%
RamHitRate                     0|          0          -9.77%
RamHits                   95,325|     86,304          -9.46%
TotalRW               39,008,112| 39,140,080          +0.34%

compile_demo_art_iai::compile_group::compile_to_proto with_setup_1:load_from_name(painted-dreams)
Instructions: 13,872,744 (master) → 13,909,073 (HEAD) : $$\color{red}+0.26\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     4|          4          +0.22%
D1mr                     172,482|    172,565          +0.05%
D1mw                      54,638|     55,404          +1.40%
DLmr                         757|        871         +15.06%
DLmw                      15,456|     14,420          -6.70%
Dr                     3,446,252|  3,451,314          +0.15%
Dw                     2,384,548|  2,388,270          +0.16%
EstimatedCycles       21,199,250| 21,222,825          +0.11%
I1MissRate                     0|          0          +3.16%
I1mr                      20,064|     20,753          +3.43%
ILmr                         686|        685          -0.15%
Ir                    13,872,744| 13,909,073          +0.26%
L1HitRate                     99|         99          -0.00%
L1hits                19,456,360| 19,499,935          +0.22%
LLHitRate                      1|          1          +0.84%
LLMissRate                     0|          0          -5.68%
LLdMissRate                    0|          0          -5.83%
LLhits                   230,285|    232,746          +1.07%
LLiMissRate                    0|          0          -0.41%
RamHitRate                     0|          0          -5.68%
RamHits                   16,899|     15,976          -5.46%
TotalRW               19,703,544| 19,748,657          +0.23%

compile_demo_art_iai::compile_group::compile_to_proto with_setup_2:load_from_name(procedural-string-lights)
Instructions: 3,073,209 (master) → 3,081,489 (HEAD) : $$\color{red}+0.27\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     4|          4          +1.86%
D1mr                      36,775|     37,613          +2.28%
D1mw                      11,208|     11,365          +1.40%
DLmr                          15|         14          -6.67%
DLmw                       3,019|      3,003          -0.53%
Dr                       752,024|    753,781          +0.23%
Dw                       522,666|    523,569          +0.17%
EstimatedCycles        4,668,243|  4,683,519          +0.33%
I1MissRate                     0|          0          +5.34%
I1mr                       4,248|      4,487          +5.63%
ILmr                         680|        677          -0.44%
Ir                     3,073,209|  3,081,489          +0.27%
L1HitRate                     99|         99          -0.03%
L1hits                 4,295,668|  4,305,374          +0.23%
LLHitRate                      1|          1          +2.33%
LLMissRate                     0|          0          -0.79%
LLdMissRate                    0|          0          -0.77%
LLhits                    48,517|     49,771          +2.58%
LLiMissRate                    0|          0          -0.71%
RamHitRate                     0|          0          -0.79%
RamHits                    3,714|      3,694          -0.54%
TotalRW                4,347,899|  4,358,839          +0.25%

compile_demo_art_iai::compile_group::compile_to_proto with_setup_3:load_from_name(parametric-dunescape)
Instructions: 13,977,523 (master) → 13,886,493 (HEAD) : $$\color{lime}-0.65\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     4|          4          -1.69%
D1mr                     190,945|    183,024          -4.15%
D1mw                      56,993|     59,349          +4.13%
DLmr                          59|         63          +6.78%
DLmw                      14,082|     14,266          +1.31%
Dr                     3,425,703|  3,403,695          -0.64%
Dw                     2,404,781|  2,393,764          -0.46%
EstimatedCycles       21,311,877| 21,170,418          -0.66%
I1MissRate                     0|          0          -0.29%
I1mr                      16,062|     15,911          -0.94%
ILmr                         788|        782          -0.76%
Ir                    13,977,523| 13,886,493          -0.65%
L1HitRate                     99|         99          +0.02%
L1hits                19,544,007| 19,425,668          -0.61%
LLHitRate                      1|          1          -1.75%
LLMissRate                     0|          0          +1.86%
LLdMissRate                    0|          0          +1.91%
LLhits                   249,071|    243,173          -2.37%
LLiMissRate                    0|          0          -0.11%
RamHitRate                     0|          0          +1.86%
RamHits                   14,929|     15,111          +1.22%
TotalRW               19,808,007| 19,683,952          -0.63%

compile_demo_art_iai::compile_group::compile_to_proto with_setup_4:load_from_name(red-dress)
Instructions: 31,912,960 (master) → 32,060,737 (HEAD) : $$\color{red}+0.46\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     4|          4          +0.11%
D1mr                     416,401|    420,342          +0.95%
D1mw                     129,769|    128,627          -0.88%
DLmr                      43,494|     44,038          +1.25%
DLmw                      56,840|     56,900          +0.11%
Dr                     7,891,278|  7,924,552          +0.42%
Dw                     5,493,685|  5,514,218          +0.37%
EstimatedCycles       50,695,825| 50,937,635          +0.48%
I1MissRate                     0|          0          +5.67%
I1mr                      44,628|     47,378          +6.16%
ILmr                         823|        820          -0.36%
Ir                    31,912,960| 32,060,737          +0.46%
L1HitRate                     99|         99          -0.01%
L1hits                44,707,125| 44,903,160          +0.44%
LLHitRate                      1|          1          +0.56%
LLMissRate                     0|          0          +0.15%
LLdMissRate                    1|          1          +0.20%
LLhits                   489,641|    494,589          +1.01%
LLiMissRate                    0|          0          -0.82%
RamHitRate                     0|          0          +0.15%
RamHits                  101,157|    101,758          +0.59%
TotalRW               45,297,923| 45,499,507          +0.45%

compile_demo_art_iai::compile_group::compile_to_proto with_setup_5:load_from_name(valley-of-spires)
Instructions: 21,098,648 (master) → 21,183,593 (HEAD) : $$\color{red}+0.40\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     4|          4          +0.91%
D1mr                     268,623|    276,405          +2.90%
D1mw                      80,408|     76,942          -4.31%
DLmr                      15,497|     15,903          +2.62%
DLmw                      36,074|     35,006          -2.96%
Dr                     5,239,637|  5,257,101          +0.33%
Dw                     3,636,200|  3,647,266          +0.30%
EstimatedCycles       33,061,203| 33,179,756          +0.36%
I1MissRate                     0|          0          +5.99%
I1mr                      30,031|     31,957          +6.41%
ILmr                         778|        777          -0.13%
Ir                    21,098,648| 21,183,593          +0.40%
L1HitRate                     99|         99          -0.02%
L1hits                29,595,423| 29,702,656          +0.36%
LLHitRate                      1|          1          +1.73%
LLMissRate                     0|          0          -1.64%
LLdMissRate                    1|          1          -1.60%
LLhits                   326,713|    333,618          +2.11%
LLiMissRate                    0|          0          -0.53%
RamHitRate                     0|          0          -1.64%
RamHits                   52,349|     51,686          -1.27%
TotalRW               29,974,485| 30,087,960          +0.38%

🔄 Executor Update

update_executor_iai::update_group::update_executor with_setup_0:setup_update_executor(isometric-fountain)
Instructions: 50,982,260 (master) → 51,037,252 (HEAD) : $$\color{red}+0.11\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          +1.22%
D1mr                     566,948|    571,914          +0.88%
D1mw                     131,827|    131,126          -0.53%
DLmr                       3,956|      4,771         +20.60%
DLmw                      21,349|     22,409          +4.97%
Dr                    13,214,536| 13,142,970          -0.54%
Dw                     8,984,725|  8,921,850          -0.70%
EstimatedCycles       76,871,061| 76,860,564          -0.01%
I1MissRate                     0|          0          -4.36%
I1mr                      32,150|     30,783          -4.25%
ILmr                         223|        260         +16.59%
Ir                    50,982,260| 51,037,252          +0.11%
L1HitRate                     99|         99          -0.01%
L1hits                72,450,596| 72,368,249          -0.11%
LLHitRate                      1|          1          +0.25%
LLMissRate                     0|          0          +7.61%
LLdMissRate                    0|          0          +8.06%
LLhits                   705,397|    706,383          +0.14%
LLiMissRate                    0|          0         +16.47%
RamHitRate                     0|          0          +7.61%
RamHits                   25,528|     27,440          +7.49%
TotalRW               73,181,521| 73,102,072          -0.11%

update_executor_iai::update_group::update_executor with_setup_1:setup_update_executor(painted-dreams)
Instructions: 25,235,112 (master) → 25,286,579 (HEAD) : $$\color{red}+0.20\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          +1.53%
D1mr                     268,706|    272,858          +1.55%
D1mw                      61,443|     63,325          +3.06%
DLmr                         881|        938          +6.47%
DLmw                       5,090|      4,172         -18.04%
Dr                     6,528,165|  6,543,048          +0.23%
Dw                     4,439,100|  4,455,987          +0.38%
EstimatedCycles       37,784,471| 37,857,894          +0.19%
I1MissRate                     0|          0         -10.94%
I1mr                      19,287|     17,212         -10.76%
ILmr                         174|        180          +3.45%
Ir                    25,235,112| 25,286,579          +0.20%
L1HitRate                     99|         99          -0.01%
L1hits                35,852,941| 35,932,219          +0.22%
LLHitRate                      1|          1          +1.17%
LLMissRate                     0|          0         -14.11%
LLdMissRate                    0|          0         -14.67%
LLhits                   343,291|    348,105          +1.40%
LLiMissRate                    0|          0          +3.24%
RamHitRate                     0|          0         -14.11%
RamHits                    6,145|      5,290         -13.91%
TotalRW               36,202,377| 36,285,614          +0.23%

update_executor_iai::update_group::update_executor with_setup_2:setup_update_executor(procedural-string-lights)
Instructions: 6,394,186 (master) → 6,403,651 (HEAD) : $$\color{red}+0.15\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          +1.11%
D1mr                      64,231|     64,906          +1.05%
D1mw                      16,151|     16,574          +2.62%
DLmr                           2|          3         +50.00%
DLmw                         424|        475         +12.03%
Dr                     1,638,966|  1,641,876          +0.18%
Dw                     1,116,857|  1,120,951          +0.37%
EstimatedCycles        9,512,239|  9,535,936          +0.25%
I1MissRate                     0|          0          +4.93%
I1mr                       5,683|      5,972          +5.09%
ILmr                         173|        177          +2.31%
Ir                     6,394,186|  6,403,651          +0.15%
L1HitRate                     99|         99          -0.01%
L1hits                 9,063,944|  9,079,026          +0.17%
LLHitRate                      1|          1          +1.37%
LLMissRate                     0|          0          +9.15%
LLdMissRate                    0|          0         +11.92%
LLhits                    85,466|     86,797          +1.56%
LLiMissRate                    0|          0          +2.16%
RamHitRate                     0|          0          +9.15%
RamHits                      599|        655          +9.35%
TotalRW                9,150,009|  9,166,478          +0.18%

update_executor_iai::update_group::update_executor with_setup_3:setup_update_executor(parametric-dunescape)
Instructions: 27,666,190 (master) → 27,731,242 (HEAD) : $$\color{red}+0.24\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          -0.23%
D1mr                     286,949|    286,807          -0.05%
D1mw                      71,593|     72,271          +0.95%
DLmr                         162|        104         -35.80%
DLmw                       5,295|      5,485          +3.59%
Dr                     7,129,178|  7,149,692          +0.29%
Dw                     4,912,205|  4,937,192          +0.51%
EstimatedCycles       41,371,569| 41,491,504          +0.29%
I1MissRate                     0|          0          +5.27%
I1mr                      15,247|     16,089          +5.52%
ILmr                         171|        168          -1.75%
Ir                    27,666,190| 27,731,242          +0.24%
L1HitRate                     99|         99          -0.00%
L1hits                39,333,784| 39,442,959          +0.28%
LLHitRate                      1|          1          +0.06%
LLMissRate                     0|          0          +2.01%
LLdMissRate                    0|          0          +2.03%
LLhits                   368,161|    369,410          +0.34%
LLiMissRate                    0|          0          -1.98%
RamHitRate                     0|          0          +2.01%
RamHits                    5,628|      5,757          +2.29%
TotalRW               39,707,573| 39,818,126          +0.28%

update_executor_iai::update_group::update_executor with_setup_4:setup_update_executor(red-dress)
Instructions: 59,775,365 (master) → 60,411,005 (HEAD) : $$\color{red}+1.06\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          -1.70%
D1mr                     656,233|    659,149          +0.44%
D1mw                     150,050|    155,598          +3.70%
DLmr                      11,738|     12,997         +10.73%
DLmw                      28,401|     30,093          +5.96%
Dr                    15,272,099| 15,636,252          +2.38%
Dw                    10,271,022| 10,622,377          +3.42%
EstimatedCycles       89,904,604| 91,367,652          +1.63%
I1MissRate                     0|          0          -7.63%
I1mr                      36,384|     33,965          -6.65%
ILmr                         376|        349          -7.18%
Ir                    59,775,365| 60,411,005          +1.06%
L1HitRate                     99|         99          +0.01%
L1hits                84,475,819| 85,820,922          +1.59%
LLHitRate                      1|          1          -1.18%
LLMissRate                     0|          0          +5.55%
LLdMissRate                    0|          0          +4.43%
LLhits                   802,152|    805,273          +0.39%
LLiMissRate                    0|          0          -8.16%
RamHitRate                     0|          0          +5.55%
RamHits                   40,515|     43,439          +7.22%
TotalRW               85,318,486| 86,669,634          +1.58%

update_executor_iai::update_group::update_executor with_setup_5:setup_update_executor(valley-of-spires)
Instructions: 37,069,772 (master) → 37,145,339 (HEAD) : $$\color{red}+0.20\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          +0.39%
D1mr                     411,121|    411,802          +0.17%
D1mw                      90,760|     93,004          +2.47%
DLmr                       2,454|      2,740         +11.65%
DLmw                      12,952|     11,159         -13.84%
Dr                     9,508,001|  9,527,572          +0.21%
Dw                     6,419,905|  6,430,973          +0.17%
EstimatedCycles       55,576,320| 55,642,746          +0.12%
I1MissRate                     0|          0          -6.69%
I1mr                      25,832|     24,152          -6.50%
ILmr                         187|        202          +8.02%
Ir                    37,069,772| 37,145,339          +0.20%
L1HitRate                     99|         99          -0.00%
L1hits                52,469,965| 52,574,926          +0.20%
LLHitRate                      1|          1          +0.33%
LLMissRate                     0|          0          -9.75%
LLdMissRate                    0|          0          -9.96%
LLhits                   512,120|    514,857          +0.53%
LLiMissRate                    0|          0          +7.80%
RamHitRate                     0|          0          -9.75%
RamHits                   15,593|     14,101          -9.57%
TotalRW               52,997,678| 53,103,884          +0.20%

🚀 Render: Cold Execution

run_once_iai::run_once_group::run_once with_setup_0:setup_run_once(isometric-fountain)
Instructions: 24,904,756 (master) → 27,084,233 (HEAD) : $$\color{red}+8.75\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          -3.94%
D1mr                     305,402|    320,435          +4.92%
D1mw                      66,717|     65,412          -1.96%
DLmr                      11,093|     13,403         +20.82%
DLmw                      11,981|     11,933          -0.40%
Dr                     6,539,487|  7,097,759          +8.54%
Dw                     4,464,958|  4,780,220          +7.06%
EstimatedCycles       38,894,529| 42,142,564          +8.35%
I1MissRate                     1|          1          +1.97%
I1mr                     151,658|    168,176         +10.89%
ILmr                       6,600|      6,806          +3.12%
Ir                    24,904,756| 27,084,233          +8.75%
L1HitRate                     99|         99          +0.04%
L1hits                35,385,424| 38,408,189          +8.54%
LLHitRate                      1|          1          -2.65%
LLMissRate                     0|          0          -0.17%
LLdMissRate                    0|          0          +1.73%
LLhits                   494,103|    521,881          +5.62%
LLiMissRate                    0|          0          -5.18%
RamHitRate                     0|          0          -0.17%
RamHits                   29,674|     32,142          +8.32%
TotalRW               35,909,201| 38,962,212          +8.50%

run_once_iai::run_once_group::run_once with_setup_1:setup_run_once(painted-dreams)
Instructions: 315,475,132 (master) → 319,590,948 (HEAD) : $$\color{red}+1.30\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     1|          1          -1.36%
D1mr                     787,781|    797,897          +1.28%
D1mw                     482,312|    476,709          -1.16%
DLmr                      13,198|     13,082          -0.88%
DLmw                      51,188|     50,350          -1.64%
Dr                    62,141,327| 63,226,937          +1.75%
Dw                    37,759,872| 38,407,547          +1.72%
EstimatedCycles      431,121,967|438,156,156          +1.63%
I1MissRate                     1|          1         +12.56%
I1mr                   2,115,456|  2,412,285         +14.03%
ILmr                       9,062|      9,340          +3.07%
Ir                   315,475,132|319,590,948          +1.30%
L1HitRate                     99|         99          -0.06%
L1hits               411,990,782|417,538,541          +1.35%
LLHitRate                      1|          1          +7.60%
LLMissRate                     0|          0          -2.30%
LLdMissRate                    0|          0          -3.16%
LLhits                 3,312,101|  3,614,119          +9.12%
LLiMissRate                    0|          0          +1.74%
RamHitRate                     0|          0          -2.30%
RamHits                   73,448|     72,772          -0.92%
TotalRW              415,376,331|421,225,432          +1.41%

run_once_iai::run_once_group::run_once with_setup_2:setup_run_once(procedural-string-lights)
Instructions: 11,106,688 (master) → 12,126,793 (HEAD) : $$\color{red}+9.18\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     2|          2          -2.88%
D1mr                      66,329|     71,083          +7.17%
D1mw                      25,098|     26,099          +3.99%
DLmr                         591|        621          +5.08%
DLmw                       1,041|      1,200         +15.27%
Dr                     2,784,202|  3,063,924         +10.05%
Dw                     2,024,890|  2,199,319          +8.61%
EstimatedCycles       16,700,144| 18,254,006          +9.30%
I1MissRate                     0|          1         +12.65%
I1mr                      53,709|     66,063         +23.00%
ILmr                       5,162|      5,212          +0.97%
Ir                    11,106,688| 12,126,793          +9.18%
L1HitRate                     99|         99          -0.03%
L1hits                15,770,644| 17,226,791          +9.23%
LLHitRate                      1|          1          +3.34%
LLMissRate                     0|          0          -5.26%
LLdMissRate                    0|          0          +1.95%
LLhits                   138,342|    156,212         +12.92%
LLiMissRate                    0|          0          -7.52%
RamHitRate                     0|          0          -5.26%
RamHits                    6,794|      7,033          +3.52%
TotalRW               15,915,780| 17,390,036          +9.26%

run_once_iai::run_once_group::run_once with_setup_3:setup_run_once(parametric-dunescape)
Instructions: 22,700,649 (master) → 22,613,610 (HEAD) : $$\color{lime}-0.38\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     2|          2          -2.15%
D1mr                     162,227|    159,818          -1.48%
D1mw                      64,511|     60,930          -5.55%
DLmr                       2,671|      2,663          -0.30%
DLmw                       7,648|      7,767          +1.56%
Dr                     5,509,640|  5,483,337          -0.48%
Dw                     3,767,205|  3,746,785          -0.54%
EstimatedCycles       33,608,058| 33,459,870          -0.44%
I1MissRate                     0|          0          +2.41%
I1mr                      71,643|     73,089          +2.02%
ILmr                       4,249|      4,263          +0.33%
Ir                    22,700,649| 22,613,610          -0.38%
L1HitRate                     99|         99          +0.01%
L1hits                31,679,113| 31,549,895          -0.41%
LLHitRate                      1|          1          -1.23%
LLMissRate                     0|          0          +1.28%
LLdMissRate                    0|          0          +1.59%
LLhits                   283,813|    279,144          -1.65%
LLiMissRate                    0|          0          +0.72%
RamHitRate                     0|          0          +1.28%
RamHits                   14,568|     14,693          +0.86%
TotalRW               31,977,494| 31,843,732          -0.42%

run_once_iai::run_once_group::run_once with_setup_4:setup_run_once(red-dress)
Instructions: 1,752,916,141 (master) → 1,766,387,341 (HEAD) : $$\color{red}+0.77\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     0|          0          -1.12%
D1mr                   1,941,807|  1,963,804          +1.13%
D1mw                     930,149|    902,853          -2.93%
DLmr                     449,534|    440,423          -2.03%
DLmw                     539,367|    517,571          -4.04%
Dr                   419,513,234|423,362,173          +0.92%
Dw                   274,761,680|277,458,672          +0.98%
EstimatedCycles      2,494,035,485|2,514,749,678          +0.83%
I1MissRate                     0|          0         +28.99%
I1mr                   1,375,414|  1,787,846         +29.99%
ILmr                       6,264|      6,122          -2.27%
Ir                   1,752,916,141|1,766,387,341          +0.77%
L1HitRate                    100|        100          -0.02%
L1hits               2,442,943,685|2,462,553,683          +0.80%
LLHitRate                      0|          0         +12.55%
LLMissRate                     0|          0          -3.91%
LLdMissRate                    0|          0          -4.03%
LLhits                 3,252,205|  3,690,387         +13.47%
LLiMissRate                    0|          0          -3.01%
RamHitRate                     0|          0          -3.91%
RamHits                  995,165|    964,116          -3.12%
TotalRW              2,447,191,055|2,467,208,186          +0.82%

run_once_iai::run_once_group::run_once with_setup_5:setup_run_once(valley-of-spires)
Instructions: 21,682,625 (master) → 23,307,126 (HEAD) : $$\color{red}+7.49\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          -3.12%
D1mr                     233,166|    244,220          +4.74%
D1mw                      56,963|     54,677          -4.01%
DLmr                       5,675|      5,700          +0.44%
DLmw                       7,992|      8,241          +3.12%
Dr                     5,491,712|  5,876,056          +7.00%
Dw                     3,730,002|  3,930,526          +5.38%
EstimatedCycles       33,067,105| 35,371,428          +6.97%
I1MissRate                     1|          1          +2.86%
I1mr                     117,595|    130,023         +10.57%
ILmr                       4,062|      4,127          +1.60%
Ir                    21,682,625| 23,307,126          +7.49%
L1HitRate                     99|         99          +0.02%
L1hits                30,496,615| 32,684,788          +7.18%
LLHitRate                      1|          1          -1.68%
LLMissRate                     0|          0          -4.89%
LLdMissRate                    0|          0          -4.08%
LLhits                   389,995|    410,852          +5.35%
LLiMissRate                    0|          0          -5.48%
RamHitRate                     0|          0          -4.89%
RamHits                   17,729|     18,068          +1.91%
TotalRW               30,904,339| 33,113,708          +7.15%

⚡ Render: Cached Execution

run_cached_iai::run_cached_group::run_cached with_setup_0:setup_run_cached(isometric-fountain)
Instructions: 8,250,743 (master) → 9,078,496 (HEAD) : $$\color{red}+10.03\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     6|          6          -5.31%
D1mr                     213,202|    220,790          +3.56%
D1mw                       3,314|      3,414          +3.02%
DLmr                       4,724|      5,147          +8.95%
DLmw                          75|         77          +2.67%
Dr                     2,388,801|  2,619,775          +9.67%
Dw                     1,328,806|  1,445,544          +8.79%
EstimatedCycles       12,987,162| 14,205,865          +9.38%
I1MissRate                     0|          0          -7.59%
I1mr                         537|        546          +1.68%
ILmr                         221|        211          -4.52%
Ir                     8,250,743|  9,078,496         +10.03%
L1HitRate                     98|         98          +0.11%
L1hits                11,751,297| 12,919,065          +9.94%
LLHitRate                      2|          2          -5.82%
LLMissRate                     0|          0          -1.42%
LLdMissRate                    0|          0          -0.45%
LLhits                   212,033|    219,315          +3.43%
LLiMissRate                    0|          0         -13.23%
RamHitRate                     0|          0          -1.42%
RamHits                    5,020|      5,435          +8.27%
TotalRW               11,968,350| 13,143,815          +9.82%

run_cached_iai::run_cached_group::run_cached with_setup_1:setup_run_cached(painted-dreams)
Instructions: 6,276,092 (master) → 6,965,557 (HEAD) : $$\color{red}+10.99\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     5|          4          -5.36%
D1mr                     133,748|    139,044          +3.96%
D1mw                       3,859|      3,886          +0.70%
DLmr                      10,425|      9,909          -4.95%
DLmw                          83|        108         +30.12%
Dr                     1,882,965|  2,074,654         +10.18%
Dw                     1,071,956|  1,168,406          +9.00%
EstimatedCycles       10,105,989| 11,090,361          +9.74%
I1MissRate                     0|          0          -7.63%
I1mr                         557|        571          +2.51%
ILmr                         236|        241          +2.12%
Ir                     6,276,092|  6,965,557         +10.99%
L1HitRate                     99|         99          +0.09%
L1hits                 9,092,849| 10,065,116         +10.69%
LLHitRate                      1|          1          -5.44%
LLMissRate                     0|          0         -13.67%
LLdMissRate                    0|          0         -13.14%
LLhits                   127,420|    133,243          +4.57%
LLiMissRate                    0|          0          -7.99%
RamHitRate                     0|          0         -13.67%
RamHits                   10,744|     10,258          -4.52%
TotalRW                9,231,013| 10,208,617         +10.59%

run_cached_iai::run_cached_group::run_cached with_setup_2:setup_run_cached(parametric-dunescape)
Instructions: 3,582,388 (master) → 3,562,736 (HEAD) : $$\color{lime}-0.55\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     5|          5          -0.51%
D1mr                      90,625|     89,759          -0.96%
D1mw                       2,692|      2,629          -2.34%
DLmr                          26|         25          -3.85%
DLmw                         NaN|        NaN          +0.00%
Dr                     1,086,019|  1,080,457          -0.51%
Dw                       635,107|    632,304          -0.44%
EstimatedCycles        5,684,980|  5,653,035          -0.56%
I1MissRate                     0|          0          +1.97%
I1mr                         497|        504          +1.41%
ILmr                         181|        174          -3.87%
Ir                     3,582,388|  3,562,736          -0.55%
L1HitRate                     98|         98          +0.01%
L1hits                 5,209,700|  5,182,605          -0.52%
LLHitRate                      2|          2          -0.45%
LLMissRate                     0|          0          -3.35%
LLdMissRate                    0|          0          -3.38%
LLhits                    93,607|     92,693          -0.98%
LLiMissRate                    0|          0          -3.34%
RamHitRate                     0|          0          -3.35%
RamHits                      207|        199          -3.86%
TotalRW                5,303,514|  5,275,497          -0.53%

run_cached_iai::run_cached_group::run_cached with_setup_3:setup_run_cached(red-dress)
Instructions: 34,409,903 (master) → 35,121,086 (HEAD) : $$\color{red}+2.07\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     4|          4          +2.19%
D1mr                     601,810|    627,995          +4.35%
D1mw                      30,933|     31,303          +1.20%
DLmr                     264,183|    263,794          -0.15%
DLmw                       1,188|      1,298          +9.26%
Dr                     9,840,749| 10,037,050          +1.99%
Dw                     5,218,520|  5,317,590          +1.90%
EstimatedCycles       59,976,756| 61,081,168          +1.84%
I1MissRate                     0|          0          -1.66%
I1mr                         533|        535          +0.38%
ILmr                         445|        445          +0.00%
Ir                    34,409,903| 35,121,086          +2.07%
L1HitRate                     99|         99          -0.03%
L1hits                48,835,896| 49,815,893          +2.01%
LLHitRate                      1|          1          +5.16%
LLMissRate                     1|          1          -2.10%
LLdMissRate                    2|          2          -2.03%
LLhits                   367,460|    394,296          +7.30%
LLiMissRate                    0|          0          -2.02%
RamHitRate                     1|          1          -2.10%
RamHits                  265,816|    265,537          -0.10%
TotalRW               49,469,172| 50,475,726          +2.03%

run_cached_iai::run_cached_group::run_cached with_setup_4:setup_run_cached(valley-of-spires)
Instructions: 6,437,503 (master) → 7,089,144 (HEAD) : $$\color{red}+10.12\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     6|          5          -4.40%
D1mr                     159,045|    166,462          +4.66%
D1mw                       3,039|      3,035          -0.13%
DLmr                         366|        403         +10.11%
DLmw                          11|         21         +90.91%
Dr                     1,874,472|  2,056,539          +9.71%
Dw                     1,049,122|  1,141,572          +8.81%
EstimatedCycles       10,028,617| 10,986,007          +9.55%
I1MissRate                     0|          0          -8.32%
I1mr                         521|        526          +0.96%
ILmr                         193|        198          +2.59%
Ir                     6,437,503|  7,089,144         +10.12%
L1HitRate                     98|         98          +0.09%
L1hits                 9,198,492| 10,117,232          +9.99%
LLHitRate                      2|          2          -4.87%
LLMissRate                     0|          0          -0.70%
LLdMissRate                    0|          0          +2.81%
LLhits                   162,035|    169,401          +4.55%
LLiMissRate                    0|          0          -6.84%
RamHitRate                     0|          0          -0.70%
RamHits                      570|        622          +9.12%
TotalRW                9,361,097| 10,287,255          +9.89%

@github-actions
Copy link
Copy Markdown

Performance Benchmark Results

🔧 Graph Compilation

compile_demo_art_iai::compile_group::compile_to_proto with_setup_0:load_from_name(isometric-fountain)
Instructions: 27,457,473 (master) → 27,554,899 (HEAD) : $$\color{red}+0.35\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     4|          4          +0.54%
D1mr                     361,733|    367,138          +1.49%
D1mw                     112,792|    111,324          -1.30%
DLmr                      31,898|     32,195          +0.93%
DLmw                      62,604|     53,287         -14.88%
Dr                     6,815,424|  6,835,858          +0.30%
Dw                     4,736,853|  4,749,455          +0.27%
EstimatedCycles       43,928,518| 43,811,048          -0.27%
I1MissRate                     0|          0          +3.81%
I1mr                      40,282|     41,967          +4.18%
ILmr                         816|        822          +0.74%
Ir                    27,457,473| 27,554,899          +0.35%
L1HitRate                     99|         99          -0.01%
L1hits                38,494,943| 38,619,783          +0.32%
LLHitRate                      1|          1          +3.14%
LLMissRate                     0|          0          -9.76%
LLdMissRate                    1|          1          -9.80%
LLhits                   419,489|    434,125          +3.49%
LLiMissRate                    0|          0          +0.38%
RamHitRate                     0|          0          -9.76%
RamHits                   95,318|     86,304          -9.46%
TotalRW               39,009,750| 39,140,212          +0.33%

compile_demo_art_iai::compile_group::compile_to_proto with_setup_1:load_from_name(painted-dreams)
Instructions: 13,874,735 (master) → 13,911,216 (HEAD) : $$\color{red}+0.26\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     4|          4          +0.17%
D1mr                     172,431|    172,424          -0.00%
D1mw                      54,625|     55,369          +1.36%
DLmr                         758|        872         +15.04%
DLmw                      15,455|     14,428          -6.65%
Dr                     3,446,481|  3,451,606          +0.15%
Dw                     2,384,580|  2,388,338          +0.16%
EstimatedCycles       21,201,246| 21,224,894          +0.11%
I1MissRate                     0|          0          +3.16%
I1mr                      20,064|     20,753          +3.43%
ILmr                         686|        685          -0.15%
Ir                    13,874,735| 13,911,216          +0.26%
L1HitRate                     99|         99          -0.00%
L1hits                19,458,676| 19,502,614          +0.23%
LLHitRate                      1|          1          +0.78%
LLMissRate                     0|          0          -5.63%
LLdMissRate                    0|          0          -5.77%
LLhits                   230,221|    232,561          +1.02%
LLiMissRate                    0|          0          -0.41%
RamHitRate                     0|          0          -5.63%
RamHits                   16,899|     15,985          -5.41%
TotalRW               19,705,796| 19,751,160          +0.23%

compile_demo_art_iai::compile_group::compile_to_proto with_setup_2:load_from_name(procedural-string-lights)
Instructions: 3,073,294 (master) → 3,081,410 (HEAD) : $$\color{red}+0.26\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     4|          4          +1.76%
D1mr                      36,779|     37,571          +2.15%
D1mw                      11,214|     11,365          +1.35%
DLmr                          15|         14          -6.67%
DLmw                       3,018|      3,007          -0.36%
Dr                       752,071|    753,777          +0.23%
Dw                       522,705|    523,576          +0.17%
EstimatedCycles        4,668,424|  4,683,361          +0.32%
I1MissRate                     0|          0          +5.32%
I1mr                       4,248|      4,486          +5.60%
ILmr                         680|        676          -0.59%
Ir                     3,073,294|  3,081,410          +0.26%
L1HitRate                     99|         99          -0.02%
L1hits                 4,295,829|  4,305,341          +0.22%
LLHitRate                      1|          1          +2.22%
LLMissRate                     0|          0          -0.68%
LLdMissRate                    0|          0          -0.60%
LLhits                    48,528|     49,725          +2.47%
LLiMissRate                    0|          0          -0.85%
RamHitRate                     0|          0          -0.68%
RamHits                    3,713|      3,697          -0.43%
TotalRW                4,348,070|  4,358,763          +0.25%

compile_demo_art_iai::compile_group::compile_to_proto with_setup_3:load_from_name(parametric-dunescape)
Instructions: 13,977,599 (master) → 13,885,999 (HEAD) : $$\color{lime}-0.66\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     4|          4          -1.69%
D1mr                     190,929|    183,007          -4.15%
D1mw                      56,969|     59,319          +4.13%
DLmr                          59|         63          +6.78%
DLmw                      14,082|     14,263          +1.29%
Dr                     3,425,639|  3,403,562          -0.64%
Dw                     2,404,725|  2,393,718          -0.46%
EstimatedCycles       21,311,673| 21,169,467          -0.67%
I1MissRate                     0|          0          -0.29%
I1mr                      16,062|     15,911          -0.94%
ILmr                         788|        782          -0.76%
Ir                    13,977,599| 13,885,999          -0.66%
L1HitRate                     99|         99          +0.02%
L1hits                19,544,003| 19,425,042          -0.61%
LLHitRate                      1|          1          -1.75%
LLMissRate                     0|          0          +1.84%
LLdMissRate                    0|          0          +1.89%
LLhits                   249,031|    243,129          -2.37%
LLiMissRate                    0|          0          -0.11%
RamHitRate                     0|          0          +1.84%
RamHits                   14,929|     15,108          +1.20%
TotalRW               19,807,963| 19,683,279          -0.63%

compile_demo_art_iai::compile_group::compile_to_proto with_setup_4:load_from_name(red-dress)
Instructions: 31,912,040 (master) → 32,058,578 (HEAD) : $$\color{red}+0.46\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     4|          4          +0.08%
D1mr                     416,536|    420,246          +0.89%
D1mw                     129,735|    128,668          -0.82%
DLmr                      43,495|     44,037          +1.25%
DLmw                      56,823|     56,926          +0.18%
Dr                     7,891,264|  7,924,400          +0.42%
Dw                     5,493,743|  5,514,240          +0.37%
EstimatedCycles       50,694,873| 50,935,876          +0.48%
I1MissRate                     0|          0          +5.68%
I1mr                      44,628|     47,378          +6.16%
ILmr                         823|        820          -0.36%
Ir                    31,912,040| 32,058,578          +0.46%
L1HitRate                     99|         99          -0.01%
L1hits                44,706,148| 44,900,926          +0.44%
LLHitRate                      1|          1          +0.53%
LLMissRate                     0|          0          +0.19%
LLdMissRate                    1|          1          +0.24%
LLhits                   489,758|    494,509          +0.97%
LLiMissRate                    0|          0          -0.82%
RamHitRate                     0|          0          +0.19%
RamHits                  101,141|    101,783          +0.63%
TotalRW               45,297,047| 45,497,218          +0.44%

compile_demo_art_iai::compile_group::compile_to_proto with_setup_5:load_from_name(valley-of-spires)
Instructions: 21,098,876 (master) → 21,183,786 (HEAD) : $$\color{red}+0.40\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     4|          4          +0.93%
D1mr                     268,557|    276,426          +2.93%
D1mw                      80,407|     76,933          -4.32%
DLmr                      15,500|     15,902          +2.59%
DLmw                      36,066|     35,007          -2.94%
Dr                     5,239,655|  5,257,163          +0.33%
Dw                     3,636,219|  3,647,300          +0.30%
EstimatedCycles       33,061,050| 33,180,093          +0.36%
I1MissRate                     0|          0          +5.99%
I1mr                      30,031|     31,957          +6.41%
ILmr                         778|        777          -0.13%
Ir                    21,098,876| 21,183,786          +0.40%
L1HitRate                     99|         99          -0.02%
L1hits                29,595,755| 29,702,933          +0.36%
LLHitRate                      1|          1          +1.75%
LLMissRate                     0|          0          -1.63%
LLdMissRate                    1|          1          -1.59%
LLhits                   326,651|    333,630          +2.14%
LLiMissRate                    0|          0          -0.53%
RamHitRate                     0|          0          -1.63%
RamHits                   52,344|     51,686          -1.26%
TotalRW               29,974,750| 30,088,249          +0.38%

🔄 Executor Update

update_executor_iai::update_group::update_executor with_setup_0:setup_update_executor(isometric-fountain)
Instructions: 50,882,379 (master) → 51,155,540 (HEAD) : $$\color{red}+0.54\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          -0.19%
D1mr                     564,210|    571,102          +1.22%
D1mw                     129,269|    132,868          +2.78%
DLmr                       4,114|      4,810         +16.92%
DLmw                      21,037|     23,138          +9.99%
Dr                    13,088,136| 13,270,768          +1.40%
Dw                     8,855,393|  9,046,026          +2.15%
EstimatedCycles       76,490,146| 77,257,254          +1.00%
I1MissRate                     0|          0          -5.06%
I1mr                      32,163|     30,700          -4.55%
ILmr                         238|        260          +9.24%
Ir                    50,882,379| 51,155,540          +0.54%
L1HitRate                     99|         99          -0.00%
L1hits                72,100,266| 72,737,664          +0.88%
LLHitRate                      1|          1          -0.00%
LLMissRate                     0|          0         +10.13%
LLdMissRate                    0|          0          +9.26%
LLhits                   700,253|    706,462          +0.89%
LLiMissRate                    0|          0          +8.66%
RamHitRate                     0|          0         +10.13%
RamHits                   25,389|     28,208         +11.10%
TotalRW               72,825,908| 73,472,334          +0.89%

update_executor_iai::update_group::update_executor with_setup_1:setup_update_executor(painted-dreams)
Instructions: 25,225,056 (master) → 25,295,963 (HEAD) : $$\color{red}+0.28\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          +1.50%
D1mr                     269,256|    272,216          +1.10%
D1mw                      60,801|     64,038          +5.32%
DLmr                         879|        937          +6.60%
DLmw                       3,972|      3,524         -11.28%
Dr                     6,526,872|  6,546,489          +0.30%
Dw                     4,439,333|  4,460,789          +0.48%
EstimatedCycles       37,739,125| 37,856,659          +0.31%
I1MissRate                     0|          0         -10.25%
I1mr                      19,214|     17,293         -10.00%
ILmr                         175|        180          +2.86%
Ir                    25,225,056| 25,295,963          +0.28%
L1HitRate                     99|         99          -0.01%
L1hits                35,841,990| 35,949,694          +0.30%
LLHitRate                      1|          1          +1.04%
LLMissRate                     0|          0          -7.94%
LLdMissRate                    0|          0          -8.38%
LLhits                   344,245|    348,906          +1.35%
LLiMissRate                    0|          0          +2.57%
RamHitRate                     0|          0          -7.94%
RamHits                    5,026|      4,641          -7.66%
TotalRW               36,191,261| 36,303,241          +0.31%

update_executor_iai::update_group::update_executor with_setup_2:setup_update_executor(procedural-string-lights)
Instructions: 6,390,815 (master) → 6,411,743 (HEAD) : $$\color{red}+0.33\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          +1.91%
D1mr                      64,300|     65,446          +1.78%
D1mw                      15,898|     16,575          +4.26%
DLmr                           1|          3        +200.00%
DLmw                         475|        430          -9.47%
Dr                     1,637,983|  1,642,971          +0.30%
Dw                     1,116,358|  1,121,148          +0.43%
EstimatedCycles        9,508,200|  9,545,980          +0.40%
I1MissRate                     0|          0          +3.84%
I1mr                       5,688|      5,926          +4.18%
ILmr                         174|        178          +2.30%
Ir                     6,390,815|  6,411,743          +0.33%
L1HitRate                     99|         99          -0.02%
L1hits                 9,059,270|  9,087,915          +0.32%
LLHitRate                      1|          1          +2.12%
LLMissRate                     0|          0          -6.31%
LLdMissRate                    0|          0          -9.36%
LLhits                    85,236|     87,336          +2.46%
LLiMissRate                    0|          0          +1.96%
RamHitRate                     0|          0          -6.31%
RamHits                      650|        611          -6.00%
TotalRW                9,145,156|  9,175,862          +0.34%

update_executor_iai::update_group::update_executor with_setup_3:setup_update_executor(parametric-dunescape)
Instructions: 27,673,011 (master) → 27,615,217 (HEAD) : $$\color{lime}-0.21\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          +1.24%
D1mr                     288,417|    287,386          -0.36%
D1mw                      72,261|     71,109          -1.59%
DLmr                         165|        111         -32.73%
DLmw                       5,826|      5,284          -9.30%
Dr                     7,132,695|  7,021,529          -1.56%
Dw                     4,915,629|  4,807,012          -2.21%
EstimatedCycles       41,409,691| 41,109,492          -0.72%
I1MissRate                     0|          0          +6.83%
I1mr                      15,211|     16,216          +6.61%
ILmr                         169|        168          -0.59%
Ir                    27,673,011| 27,615,217          -0.21%
L1HitRate                     99|         99          -0.00%
L1hits                39,345,446| 39,069,047          -0.70%
LLHitRate                      1|          1          +0.55%
LLMissRate                     0|          0          -9.06%
LLdMissRate                    0|          0          -8.28%
LLhits                   369,729|    369,148          -0.16%
LLiMissRate                    0|          0          -0.38%
RamHitRate                     0|          0          -9.06%
RamHits                    6,160|      5,563          -9.69%
TotalRW               39,721,335| 39,443,758          -0.70%

update_executor_iai::update_group::update_executor with_setup_4:setup_update_executor(red-dress)
Instructions: 60,036,313 (master) → 60,409,366 (HEAD) : $$\color{red}+0.62\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          +0.39%
D1mr                     659,958|    664,394          +0.67%
D1mw                     153,430|    158,158          +3.08%
DLmr                      11,859|     14,047         +18.45%
DLmw                      31,781|     34,162          +7.49%
Dr                    15,533,319| 15,636,506          +0.66%
Dw                    10,534,789| 10,623,328          +0.84%
EstimatedCycles       90,823,783| 91,552,990          +0.80%
I1MissRate                     0|          0          -6.80%
I1mr                      36,295|     34,038          -6.22%
ILmr                         381|        372          -2.36%
Ir                    60,036,313| 60,409,366          +0.62%
L1HitRate                     99|         99          -0.00%
L1hits                85,254,738| 85,812,610          +0.65%
LLHitRate                      1|          1          -0.36%
LLMissRate                     0|          0          +9.64%
LLdMissRate                    0|          0          +9.66%
LLhits                   805,662|    808,009          +0.29%
LLiMissRate                    0|          0          -2.97%
RamHitRate                     0|          0          +9.64%
RamHits                   44,021|     48,581         +10.36%
TotalRW               86,104,421| 86,669,200          +0.66%

update_executor_iai::update_group::update_executor with_setup_5:setup_update_executor(valley-of-spires)
Instructions: 36,929,327 (master) → 37,029,030 (HEAD) : $$\color{red}+0.27\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          +1.36%
D1mr                     405,500|    411,747          +1.54%
D1mw                      88,469|     91,271          +3.17%
DLmr                       2,556|      2,779          +8.72%
DLmw                      11,700|     11,542          -1.35%
Dr                     9,369,171|  9,402,770          +0.36%
Dw                     6,272,522|  6,311,264          +0.62%
EstimatedCycles       55,083,886| 55,287,090          +0.37%
I1MissRate                     0|          0          -7.26%
I1mr                      25,865|     24,051          -7.01%
ILmr                         195|        204          +4.62%
Ir                    36,929,327| 37,029,030          +0.27%
L1HitRate                     99|         99          -0.01%
L1hits                52,051,186| 52,215,995          +0.32%
LLHitRate                      1|          1          +1.09%
LLMissRate                     0|          0          +0.18%
LLdMissRate                    0|          0          -0.01%
LLhits                   505,383|    512,544          +1.42%
LLiMissRate                    0|          0          +4.33%
RamHitRate                     0|          0          +0.18%
RamHits                   14,451|     14,525          +0.51%
TotalRW               52,571,020| 52,743,064          +0.33%

🚀 Render: Cold Execution

run_once_iai::run_once_group::run_once with_setup_0:setup_run_once(isometric-fountain)
Instructions: 24,879,615 (master) → 27,049,910 (HEAD) : $$\color{red}+8.72\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          -4.21%
D1mr                     304,913|    319,217          +4.69%
D1mw                      66,665|     64,940          -2.59%
DLmr                      10,981|     13,666         +24.45%
DLmw                      10,921|     11,951          +9.43%
Dr                     6,522,780|  7,078,494          +8.52%
Dw                     4,448,952|  4,763,275          +7.07%
EstimatedCycles       38,798,871| 42,073,669          +8.44%
I1MissRate                     1|          1          +2.03%
I1mr                     151,568|    168,138         +10.93%
ILmr                       6,596|      6,810          +3.24%
Ir                    24,879,615| 27,049,910          +8.72%
L1HitRate                     99|         99          +0.04%
L1hits                35,328,201| 38,339,384          +8.52%
LLHitRate                      1|          1          -3.12%
LLMissRate                     0|          0          +4.89%
LLdMissRate                    0|          0          +8.37%
LLhits                   494,648|    519,868          +5.10%
LLiMissRate                    0|          0          -5.04%
RamHitRate                     0|          0          +4.89%
RamHits                   28,498|     32,427         +13.79%
TotalRW               35,851,347| 38,891,679          +8.48%

run_once_iai::run_once_group::run_once with_setup_1:setup_run_once(painted-dreams)
Instructions: 315,720,407 (master) → 319,610,137 (HEAD) : $$\color{red}+1.23\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     1|          1          -1.55%
D1mr                     792,302|    798,623          +0.80%
D1mw                     488,486|    479,601          -1.82%
DLmr                      12,919|     13,102          +1.42%
DLmw                      51,249|     51,130          -0.23%
Dr                    62,452,749| 63,358,879          +1.45%
Dw                    38,077,047| 38,552,073          +1.25%
EstimatedCycles      432,029,437|438,483,375          +1.49%
I1MissRate                     1|          1         +12.60%
I1mr                   2,114,803|  2,410,505         +13.98%
ILmr                       9,061|      9,347          +3.16%
Ir                   315,720,407|319,610,137          +1.23%
L1HitRate                     99|         99          -0.06%
L1hits               412,854,612|417,832,360          +1.21%
LLHitRate                      1|          1          +7.45%
LLMissRate                     0|          0          -0.78%
LLdMissRate                    0|          0          -1.26%
LLhits                 3,322,362|  3,615,150          +8.81%
LLiMissRate                    0|          0          +1.90%
RamHitRate                     0|          0          -0.78%
RamHits                   73,229|     73,579          +0.48%
TotalRW              416,250,203|421,521,089          +1.27%

run_once_iai::run_once_group::run_once with_setup_2:setup_run_once(procedural-string-lights)
Instructions: 11,132,250 (master) → 12,146,123 (HEAD) : $$\color{red}+9.11\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     2|          2          -1.69%
D1mr                      66,700|     72,031          +7.99%
D1mw                      25,079|     26,749          +6.66%
DLmr                         595|        614          +3.19%
DLmw                       1,061|      1,318         +24.22%
Dr                     2,797,191|  3,078,353         +10.05%
Dw                     2,036,256|  2,213,258          +8.69%
EstimatedCycles       16,752,613| 18,311,726          +9.31%
I1MissRate                     0|          1         +12.64%
I1mr                      53,815|     66,138         +22.90%
ILmr                       5,162|      5,212          +0.97%
Ir                    11,132,250| 12,146,123          +9.11%
L1HitRate                     99|         99          -0.03%
L1hits                15,820,103| 17,272,816          +9.18%
LLHitRate                      1|          1          +4.09%
LLMissRate                     0|          0          -4.06%
LLdMissRate                    0|          0          +6.57%
LLhits                   138,776|    157,774         +13.69%
LLiMissRate                    0|          0          -7.46%
RamHitRate                     0|          0          -4.06%
RamHits                    6,818|      7,144          +4.78%
TotalRW               15,965,697| 17,437,734          +9.22%

run_once_iai::run_once_group::run_once with_setup_3:setup_run_once(parametric-dunescape)
Instructions: 22,670,917 (master) → 22,584,537 (HEAD) : $$\color{lime}-0.38\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     2|          2          -1.54%
D1mr                     162,733|    160,519          -1.36%
D1mw                      65,163|     62,227          -4.51%
DLmr                       2,669|      2,638          -1.16%
DLmw                       7,354|      7,404          +0.68%
Dr                     5,483,679|  5,447,764          -0.65%
Dw                     3,742,213|  3,711,006          -0.83%
EstimatedCycles       33,522,911| 33,355,873          -0.50%
I1MissRate                     0|          0          +2.48%
I1mr                      71,612|     73,108          +2.09%
ILmr                       4,246|      4,263          +0.40%
Ir                    22,670,917| 22,584,537          -0.38%
L1HitRate                     99|         99          +0.01%
L1hits                31,597,301| 31,447,453          -0.47%
LLHitRate                      1|          1          -0.82%
LLMissRate                     0|          0          +0.74%
LLdMissRate                    0|          0          +0.92%
LLhits                   285,239|    281,549          -1.29%
LLiMissRate                    0|          0          +0.78%
RamHitRate                     0|          0          +0.74%
RamHits                   14,269|     14,305          +0.25%
TotalRW               31,896,809| 31,743,307          -0.48%

run_once_iai::run_once_group::run_once with_setup_4:setup_run_once(red-dress)
Instructions: 1,753,223,909 (master) → 1,766,407,972 (HEAD) : $$\color{red}+0.75\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     0|          0          -1.92%
D1mr                   1,944,160|  1,953,152          +0.46%
D1mw                     931,848|    890,226          -4.47%
DLmr                     446,661|    440,229          -1.44%
DLmw                     542,101|    520,128          -4.05%
Dr                   420,032,410|423,396,340          +0.80%
Dw                   275,303,580|277,494,479          +0.80%
EstimatedCycles      2,495,402,039|2,514,816,859          +0.78%
I1MissRate                     0|          0         +29.18%
I1mr                   1,373,422|  1,787,554         +30.15%
ILmr                       6,052|      6,121          +1.14%
Ir                   1,753,223,909|1,766,407,972          +0.75%
L1HitRate                    100|        100          -0.01%
L1hits               2,444,310,469|2,462,667,859          +0.75%
LLHitRate                      0|          0         +11.74%
LLMissRate                     0|          0          -3.59%
LLdMissRate                    0|          0          -3.64%
LLhits                 3,254,616|  3,664,454         +12.59%
LLiMissRate                    0|          0          +0.39%
RamHitRate                     0|          0          -3.59%
RamHits                  994,814|    966,478          -2.85%
TotalRW              2,448,559,899|2,467,298,791          +0.77%

run_once_iai::run_once_group::run_once with_setup_5:setup_run_once(valley-of-spires)
Instructions: 21,638,762 (master) → 23,307,304 (HEAD) : $$\color{red}+7.71\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     3|          3          -3.75%
D1mr                     233,880|    244,440          +4.52%
D1mw                      56,902|     54,413          -4.37%
DLmr                       5,703|      5,720          +0.30%
DLmw                       8,140|      8,305          +2.03%
Dr                     5,463,930|  5,867,624          +7.39%
Dw                     3,704,256|  3,922,097          +5.88%
EstimatedCycles       32,977,290| 35,358,185          +7.22%
I1MissRate                     1|          1          +2.96%
I1mr                     117,486|    130,297         +10.90%
ILmr                       4,066|      4,127          +1.50%
Ir                    21,638,762| 23,307,304          +7.71%
L1HitRate                     99|         99          +0.03%
L1hits                30,398,680| 32,667,875          +7.46%
LLHitRate                      1|          1          -2.00%
LLMissRate                     0|          0          -5.66%
LLdMissRate                    0|          0          -5.12%
LLhits                   390,359|    410,998          +5.29%
LLiMissRate                    0|          0          -5.77%
RamHitRate                     0|          0          -5.66%
RamHits                   17,909|     18,152          +1.36%
TotalRW               30,806,948| 33,097,025          +7.43%

⚡ Render: Cached Execution

run_cached_iai::run_cached_group::run_cached with_setup_0:setup_run_cached(isometric-fountain)
Instructions: 8,247,916 (master) → 9,079,633 (HEAD) : $$\color{red}+10.08\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     6|          6          -4.54%
D1mr                     212,817|    222,491          +4.55%
D1mw                       3,368|      3,343          -0.74%
DLmr                       3,742|      5,413         +44.66%
DLmw                          71|         70          -1.41%
Dr                     2,387,663|  2,620,171          +9.74%
Dw                     1,328,077|  1,445,955          +8.88%
EstimatedCycles       12,951,522| 14,222,103          +9.81%
I1MissRate                     0|          0          -6.95%
I1mr                         534|        547          +2.43%
ILmr                         220|        211          -4.09%
Ir                     8,247,916|  9,079,633         +10.08%
L1HitRate                     98|         98          +0.09%
L1hits                11,746,937| 12,919,378          +9.98%
LLHitRate                      2|          2          -5.57%
LLMissRate                     0|          0         +28.49%
LLdMissRate                    0|          0         +31.41%
LLhits                   212,686|    220,687          +3.76%
LLiMissRate                    0|          0         -12.88%
RamHitRate                     0|          0         +28.49%
RamHits                    4,033|      5,694         +41.19%
TotalRW               11,963,656| 13,145,759          +9.88%

run_cached_iai::run_cached_group::run_cached with_setup_1:setup_run_cached(painted-dreams)
Instructions: 6,278,830 (master) → 6,966,761 (HEAD) : $$\color{red}+10.96\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     5|          4          -5.42%
D1mr                     133,476|    138,586          +3.83%
D1mw                       3,807|      3,826          +0.50%
DLmr                      10,262|      9,728          -5.20%
DLmw                         113|         72         -36.28%
Dr                     1,884,152|  2,075,070         +10.13%
Dw                     1,072,958|  1,168,480          +8.90%
EstimatedCycles       10,105,664| 11,083,537          +9.68%
I1MissRate                     0|          0          -7.61%
I1mr                         558|        572          +2.51%
ILmr                         237|        243          +2.53%
Ir                     6,278,830|  6,966,761         +10.96%
L1HitRate                     99|         99          +0.09%
L1hits                 9,098,099| 10,067,327         +10.65%
LLHitRate                      1|          1          -5.48%
LLMissRate                     0|          0         -14.39%
LLdMissRate                    0|          0         -13.88%
LLhits                   127,229|    132,941          +4.49%
LLiMissRate                    0|          0          -7.59%
RamHitRate                     0|          0         -14.39%
RamHits                   10,612|     10,043          -5.36%
TotalRW                9,235,940| 10,210,311         +10.55%

run_cached_iai::run_cached_group::run_cached with_setup_2:setup_run_cached(parametric-dunescape)
Instructions: 3,584,095 (master) → 3,563,878 (HEAD) : $$\color{lime}-0.56\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     5|          5          +0.40%
D1mr                      90,050|     90,080          +0.03%
D1mw                       2,769|      2,621          -5.34%
DLmr                          28|         27          -3.57%
DLmw                           1|        NaN        -100.00%
Dr                     1,086,659|  1,080,809          -0.54%
Dw                       635,685|    632,449          -0.51%
EstimatedCycles        5,685,951|  5,655,888          -0.53%
I1MissRate                     0|          0          +1.17%
I1mr                         499|        502          +0.60%
ILmr                         179|        171          -4.47%
Ir                     3,584,095|  3,563,878          -0.56%
L1HitRate                     98|         98          -0.01%
L1hits                 5,213,121|  5,183,933          -0.56%
LLHitRate                      2|          2          +0.44%
LLMissRate                     0|          0          -4.28%
LLdMissRate                    0|          0          -6.40%
LLhits                    93,110|     93,005          -0.11%
LLiMissRate                    0|          0          -3.93%
RamHitRate                     0|          0          -4.28%
RamHits                      208|        198          -4.81%
TotalRW                5,306,439|  5,277,136          -0.55%

run_cached_iai::run_cached_group::run_cached with_setup_3:setup_run_cached(red-dress)
Instructions: 34,410,082 (master) → 35,119,527 (HEAD) : $$\color{red}+2.06\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     4|          4          +2.68%
D1mr                     597,977|    627,013          +4.86%
D1mw                      30,829|     31,306          +1.55%
DLmr                     263,769|    264,347          +0.22%
DLmw                       1,228|      1,323          +7.74%
Dr                     9,840,962| 10,036,954          +1.99%
Dw                     5,218,496|  5,317,721          +1.90%
EstimatedCycles       59,950,126| 61,093,058          +1.91%
I1MissRate                     0|          0          -0.73%
I1mr                         533|        540          +1.31%
ILmr                         444|        444          +0.00%
Ir                    34,410,082| 35,119,527          +2.06%
L1HitRate                     99|         99          -0.03%
L1hits                48,840,201| 49,815,343          +2.00%
LLHitRate                      1|          1          +5.78%
LLMissRate                     1|          1          -1.74%
LLdMissRate                    2|          2          -1.67%
LLhits                   363,898|    392,745          +7.93%
LLiMissRate                    0|          0          -2.02%
RamHitRate                     1|          1          -1.74%
RamHits                  265,441|    266,114          +0.25%
TotalRW               49,469,540| 50,474,202          +2.03%

run_cached_iai::run_cached_group::run_cached with_setup_4:setup_run_cached(valley-of-spires)
Instructions: 6,437,849 (master) → 7,089,012 (HEAD) : $$\color{red}+10.11\%$$

Detailed metrics
Baselines:                master|       HEAD
D1MissRate                     6|          5          -3.85%
D1mr                     159,080|    167,355          +5.20%
D1mw                       3,041|      3,097          +1.84%
DLmr                         380|        368          -3.16%
DLmw                          21|         11         -47.62%
Dr                     1,874,768|  2,056,403          +9.69%
Dw                     1,049,565|  1,141,421          +8.75%
EstimatedCycles       10,030,518| 10,988,070          +9.55%
I1MissRate                     0|          0          -8.14%
I1mr                         523|        529          +1.15%
ILmr                         191|        198          +3.66%
Ir                     6,437,849|  7,089,012         +10.11%
L1HitRate                     98|         98          +0.08%
L1hits                 9,199,538| 10,115,855          +9.96%
LLHitRate                      2|          2          -4.30%
LLMissRate                     0|          0         -11.29%
LLdMissRate                    0|          0         -13.57%
LLhits                   162,052|    170,404          +5.15%
LLiMissRate                    0|          0          -5.86%
RamHitRate                     0|          0         -11.29%
RamHits                      592|        577          -2.53%
TotalRW                9,362,182| 10,286,836          +9.88%

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.

Tables and attributes for graphical data Dynamic attributes on Table<T>

1 participant