Add changing-seasons to the gungraun benchmark arguments

This commit is contained in:
Dennis Kobert
2026-09-01 13:18:01 +00:00
parent 4e7d72d4b8
commit c12f8f1115
2 changed files with 2 additions and 2 deletions

View File

@@ -18,7 +18,7 @@ fn setup_run_cached(name: &str) -> DynamicExecutor {
}
#[library_benchmark]
#[benches::with_setup(args = ["isometric-fountain", "painted-dreams", "parametric-dunescape", "red-dress", "valley-of-spires"], setup = setup_run_cached)]
#[benches::with_setup(args = ["changing-seasons", "isometric-fountain", "painted-dreams", "parametric-dunescape", "red-dress", "valley-of-spires"], setup = setup_run_cached)]
pub fn run_cached(executor: DynamicExecutor) -> DynamicExecutor {
let context = RenderConfig::default();
black_box(Executor::execute(&&executor, black_box(context)).unwrap());

View File

@@ -13,7 +13,7 @@ fn setup_run_once(name: &str) -> DynamicExecutor {
}
#[library_benchmark]
#[benches::with_setup(args = ["isometric-fountain", "painted-dreams", "procedural-string-lights", "parametric-dunescape", "red-dress", "valley-of-spires"], setup = setup_run_once)]
#[benches::with_setup(args = ["changing-seasons", "isometric-fountain", "painted-dreams", "procedural-string-lights", "parametric-dunescape", "red-dress", "valley-of-spires"], setup = setup_run_once)]
pub fn run_once(executor: DynamicExecutor) -> (DynamicExecutor, core_types::gpoll::GPoll<graph_craft::document::value::TaggedValue>) {
let context = application_io::RenderConfig::default();
let result = black_box(Executor::execute(&&executor, black_box(context)).unwrap());