Skip to content

Commit

Permalink
bench: fix benchmark name
Browse files Browse the repository at this point in the history
  • Loading branch information
kgryte committed Aug 27, 2023
1 parent 4be1349 commit 0cf27bd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ function main() {
N = floor( pow( pow( 10, i ), 1.0/3.0 ) );
sh = [ N, N, N ];
f = createBenchmark( sh );
bench( pkg+'::square_matrix:size='+numel( sh ), f );
bench( pkg+'::equidimensional:size='+numel( sh ), f );
}
}

Expand Down

1 comment on commit 0cf27bd

@stdlib-bot
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage Report

Package Statements Branches Functions Lines
array/base/unary3d $\color{green}144/144$
$\color{green}+100.00\%$
$\color{green}10/10$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}144/144$
$\color{green}+100.00\%$

The above coverage report was generated for the changes in this push.

Please sign in to comment.