Skip to content

Commit 2c5ddbb

Browse files
authored
bench: explicitly specify separator dtype
Signed-off-by: Athan <kgryte@gmail.com>
1 parent c7de42f commit 2c5ddbb

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

  • lib/node_modules/@stdlib/blas/ext/base/ndarray/gjoin/benchmark

lib/node_modules/@stdlib/blas/ext/base/ndarray/gjoin/benchmark/benchmark.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,9 @@ function createBenchmark( len ) {
5454
xbuf = uniform( len, 0.0, 100.0, options );
5555
x = new ndarray( options.dtype, xbuf, [ len ], [ 1 ], 0, 'row-major' );
5656

57-
separator = scalar2ndarray( ',', options );
57+
separator = scalar2ndarray( ',', {
58+
'dtype': 'generic'
59+
});
5860

5961
return benchmark;
6062

0 commit comments

Comments
 (0)