Skip to content

Commit 5ecf714

Browse files
committed
Auto-generated commit
1 parent 97855ed commit 5ecf714

21 files changed

+21
-20
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -794,6 +794,7 @@ A total of 44 issues were closed in this release:
794794

795795
<details>
796796

797+
- [`826071a`](https://github.com/stdlib-js/stdlib/commit/826071af85401abe59ef8c6eb687224b4e374ce8) - **bench:** fix missing arguments _(by Athan Reines)_
797798
- [`b1b1a64`](https://github.com/stdlib-js/stdlib/commit/b1b1a64876a554c2d77c9f4fbc96daa5e0d3f90e) - **docs:** update example _(by Athan Reines)_
798799
- [`0f753ef`](https://github.com/stdlib-js/stdlib/commit/0f753ef8b2aeb203c314accd37af63c551dfdfad) - **refactor:** use string interpolation _(by Athan Reines)_
799800
- [`2de635b`](https://github.com/stdlib-js/stdlib/commit/2de635b53a4366fbcc55f5c648871fd3a59f0b99) - **feat:** add `ndarray2localeString` to namespace _(by Athan Reines)_

base/assign/benchmark/benchmark.10d_columnmajor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
8585

8686
b.tic();
8787
for ( i = 0; i < b.iterations; i++ ) {
88-
assign( x, y );
88+
assign( x, y, order === 'row-major' );
8989
if ( isnan( y.data[ i%len ] ) ) {
9090
b.fail( 'should not return NaN' );
9191
}

base/assign/benchmark/benchmark.10d_rowmajor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
8585

8686
b.tic();
8787
for ( i = 0; i < b.iterations; i++ ) {
88-
assign( x, y );
88+
assign( x, y, order === 'row-major' );
8989
if ( isnan( y.data[ i%len ] ) ) {
9090
b.fail( 'should not return NaN' );
9191
}

base/assign/benchmark/benchmark.2d_columnmajor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
8686

8787
b.tic();
8888
for ( i = 0; i < b.iterations; i++ ) {
89-
assign( x, y );
89+
assign( x, y, order === 'row-major' );
9090
if ( isnan( y.data[ i%len ] ) ) {
9191
b.fail( 'should not return NaN' );
9292
}

base/assign/benchmark/benchmark.2d_rowmajor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
8686

8787
b.tic();
8888
for ( i = 0; i < b.iterations; i++ ) {
89-
assign( x, y );
89+
assign( x, y, order === 'row-major' );
9090
if ( isnan( y.data[ i%len ] ) ) {
9191
b.fail( 'should not return NaN' );
9292
}

base/assign/benchmark/benchmark.2d_rowmajor_accessors.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
114114

115115
b.tic();
116116
for ( i = 0; i < b.iterations; i++ ) {
117-
assign( x, y );
117+
assign( x, y, order === 'row-major' );
118118
if ( isnan( y.data[ i%len ] ) ) {
119119
b.fail( 'should not return NaN' );
120120
}

base/assign/benchmark/benchmark.2d_rowmajor_accessors_complex.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
121121

122122
b.tic();
123123
for ( i = 0; i < b.iterations; i++ ) {
124-
assign( x, y );
124+
assign( x, y, order === 'row-major' );
125125
if ( isnan( ybuf[ i%len ] ) ) {
126126
b.fail( 'should not return NaN' );
127127
}

base/assign/benchmark/benchmark.3d_columnmajor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
8686

8787
b.tic();
8888
for ( i = 0; i < b.iterations; i++ ) {
89-
assign( x, y );
89+
assign( x, y, order === 'row-major' );
9090
if ( isnan( y.data[ i%len ] ) ) {
9191
b.fail( 'should not return NaN' );
9292
}

base/assign/benchmark/benchmark.3d_rowmajor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
8686

8787
b.tic();
8888
for ( i = 0; i < b.iterations; i++ ) {
89-
assign( x, y );
89+
assign( x, y, order === 'row-major' );
9090
if ( isnan( y.data[ i%len ] ) ) {
9191
b.fail( 'should not return NaN' );
9292
}

base/assign/benchmark/benchmark.4d_columnmajor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
8585

8686
b.tic();
8787
for ( i = 0; i < b.iterations; i++ ) {
88-
assign( x, y );
88+
assign( x, y, order === 'row-major' );
8989
if ( isnan( y.data[ i%len ] ) ) {
9090
b.fail( 'should not return NaN' );
9191
}

0 commit comments

Comments
 (0)