Update tests and benchmarks
Signed-off-by: Julius Koskela <julius.koskela@unikie.com>
This commit is contained in:
parent
7019f5488c
commit
bd40c9c1f2
@ -1,7 +1,7 @@
|
||||
use manifold::*;
|
||||
use rand::Rng;
|
||||
use criterion::Throughput;
|
||||
use criterion::{criterion_group, criterion_main, BenchmarkId, Criterion};
|
||||
use manifold::*;
|
||||
use rand::Rng;
|
||||
|
||||
fn random_tensor_r2_manifold() -> Tensor<f64, 2> {
|
||||
let mut rng = rand::thread_rng();
|
||||
@ -32,30 +32,35 @@ fn tensor_product(c: &mut Criterion) {
|
||||
for (i, size) in [b].iter().enumerate() {
|
||||
group.throughput(Throughput::Elements(*size as u64));
|
||||
|
||||
group.bench_with_input(BenchmarkId::new("manifold", size), &i, |b, _| {
|
||||
group.bench_with_input(
|
||||
BenchmarkId::new("manifold", size),
|
||||
&i,
|
||||
|b, _| {
|
||||
b.iter(|| {
|
||||
let a = random_tensor_r2_manifold();
|
||||
let b = random_tensor_r2_manifold();
|
||||
let c = a + b;
|
||||
assert!(c.shape().as_array() == &[1000, 1000]);
|
||||
})
|
||||
});
|
||||
},
|
||||
);
|
||||
|
||||
group.bench_with_input(BenchmarkId::new("ndarray", size), &i, |b, _| {
|
||||
group.bench_with_input(
|
||||
BenchmarkId::new("ndarray", size),
|
||||
&i,
|
||||
|b, _| {
|
||||
b.iter(|| {
|
||||
let a = random_tensor_r2_ndarray();
|
||||
let b = random_tensor_r2_ndarray();
|
||||
let c = a + b;
|
||||
assert!(c.shape() == &[1000, 1000]);
|
||||
})
|
||||
});
|
||||
},
|
||||
);
|
||||
}
|
||||
group.finish();
|
||||
}
|
||||
|
||||
criterion_group!(
|
||||
benches,
|
||||
tensor_product
|
||||
);
|
||||
criterion_group!(benches, tensor_product);
|
||||
|
||||
criterion_main!(benches);
|
Loading…
Reference in New Issue
Block a user