Skip to content

Commit

Permalink
update benchmark
Browse files Browse the repository at this point in the history
  • Loading branch information
mscroggs committed Sep 19, 2024
1 parent dc9075b commit d6e8afa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions benches/assembly_benchmark.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ pub fn assembly_parts_benchmark(c: &mut Criterion) {

let colouring = space.cell_colouring();
let mut a = BoundaryAssembler::<f64, _, _>::new_laplace_single_layer();
a.quadrature_degree(ReferenceCellType::Triangle, 16);
a.singular_quadrature_degree(
a.set_quadrature_degree(ReferenceCellType::Triangle, 16);
a.set_singular_quadrature_degree(
(ReferenceCellType::Triangle, ReferenceCellType::Triangle),
4,
);
a.batch_size(128);
a.set_batch_size(128);

group.bench_function(
&format!(
Expand Down

0 comments on commit d6e8afa

Please sign in to comment.