Skip to content

Commit 6da31fe

Browse files
Update lib/node_modules/@stdlib/math/base/special/erfcf/benchmark/benchmark.js
Co-authored-by: Lokesh Ranjan <lokesh.ranjan.phe23@itbhu.ac.in> Signed-off-by: Tejasvini Ramaswamy <143736305+Tejasvini595@users.noreply.github.com>
1 parent 90738b3 commit 6da31fe

File tree

1 file changed

+4
-3
lines changed
  • lib/node_modules/@stdlib/math/base/special/erfcf/benchmark

1 file changed

+4
-3
lines changed

lib/node_modules/@stdlib/math/base/special/erfcf/benchmark/benchmark.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,10 @@ function benchmark( b ) {
4242
var y;
4343
var i;
4444

45-
x = uniform( 100, -5.0, 5.0, {
46-
'dtype': 'float32'
47-
});
45+
var opts = {
46+
'dtype': 'float32'
47+
};
48+
x = uniform( 100, -5.0, 5.0, opts );
4849

4950
b.tic();
5051
for ( i = 0; i < b.iterations; i++ ) {

0 commit comments

Comments
 (0)