mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2025-08-03 13:02:20 +00:00

* Split benches into two files * Implement executor update bench * Restructure benchmarks * Unify usages of wrap network in scope * Remove unused imports * Fix oom bug * Remove bounding box impl
14 lines
532 B
Rust
14 lines
532 B
Rust
use criterion::{black_box, criterion_group, criterion_main, Criterion};
|
|
use graph_craft::util::DEMO_ART;
|
|
fn compile_to_proto(c: &mut Criterion) {
|
|
use graph_craft::util::{compile, load_from_name};
|
|
let mut c = c.benchmark_group("Compile Network cold");
|
|
|
|
for name in DEMO_ART {
|
|
let network = load_from_name(name);
|
|
c.bench_function(name, |b| b.iter_batched(|| network.clone(), |network| compile(black_box(network)), criterion::BatchSize::SmallInput));
|
|
}
|
|
}
|
|
|
|
criterion_group!(benches, compile_to_proto);
|
|
criterion_main!(benches);
|