summaryrefslogtreecommitdiff
path: root/plugins/warp/benches/convert.rs
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/warp/benches/convert.rs')
-rw-r--r--plugins/warp/benches/convert.rs49
1 files changed, 26 insertions, 23 deletions
diff --git a/plugins/warp/benches/convert.rs b/plugins/warp/benches/convert.rs
index 7d7f40b3..e0acdc15 100644
--- a/plugins/warp/benches/convert.rs
+++ b/plugins/warp/benches/convert.rs
@@ -4,33 +4,36 @@ use criterion::{criterion_group, criterion_main, Criterion};
use std::path::PathBuf;
use warp_ninja::convert::from_bn_type;
+// These are the target files present in OUT_DIR
+// Add the files to fixtures/bin
+static TARGET_FILES: [&str; 1] = ["atox.obj"];
+
pub fn type_conversion_benchmark(c: &mut Criterion) {
let session = Session::new().expect("Failed to initialize session");
let out_dir = env!("OUT_DIR").parse::<PathBuf>().unwrap();
- for entry in std::fs::read_dir(out_dir).expect("Failed to read OUT_DIR") {
- let entry = entry.expect("Failed to read directory entry");
- let path = entry.path();
- if path.is_file() {
- if let Some(bv) = session.load(path.to_str().unwrap()) {
- let functions = bv.functions();
- c.bench_function("type conversion all functions", |b| {
- b.iter(|| {
- for func in &functions {
- from_bn_type(&bv, &func.function_type(), u8::MAX);
- }
- })
- });
+ for file_name in TARGET_FILES {
+ let path = out_dir.join(file_name);
+ let view = session.load(&path).expect("Failed to load view");
+
+ // Bench function types.
+ let functions: Vec<_> = view.functions().iter().map(|f| f.to_owned()).collect();
+ c.bench_function("type conversion all functions", |b| {
+ b.iter(|| {
+ for func in &functions {
+ from_bn_type(&view, &func.function_type(), u8::MAX);
+ }
+ })
+ });
- let types = bv.types();
- c.bench_function("type conversion all types", |b| {
- b.iter(|| {
- for ty in &types {
- from_bn_type(&bv, &ty.ty, u8::MAX);
- }
- })
- });
- }
- }
+ // Bench view types.
+ let types = view.types().to_vec();
+ c.bench_function("type conversion all types", |b| {
+ b.iter(|| {
+ for ty in &types {
+ from_bn_type(&view, &ty.ty, u8::MAX);
+ }
+ })
+ });
}
}