Skip to content

Commit 260ced4

Browse files
committed
Merge branch 'feature/float32/add' of https://github.com/ShabiShett07/stdlib into feature/float32/add
2 parents d22cd19 + 36986fd commit 260ced4

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

lib/node_modules/@stdlib/complex/float32/base/add/README.md

100755100644
File mode changed.

lib/node_modules/@stdlib/complex/float32/base/add/benchmark/benchmark.asssign.js renamed to lib/node_modules/@stdlib/complex/float32/base/add/benchmark/benchmark.assign.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,4 @@ bench( pkg+':assign', function benchmark( b ) {
6767
}
6868
b.pass( 'benchmark finished' );
6969
b.end();
70-
});
70+
});

lib/node_modules/@stdlib/complex/float32/base/add/benchmark/benchmark.strided.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,4 @@ bench( pkg+':strided', function benchmark( b ) {
6565
}
6666
b.pass( 'benchmark finished' );
6767
b.end();
68-
});
68+
});

lib/node_modules/@stdlib/complex/float32/base/add/lib/assign.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@ function assign( re1, im1, re2, im2, out, strideOut, offsetOut ) {
5252

5353
// EXPORTS //
5454

55-
module.exports = assign;
55+
module.exports = assign;

lib/node_modules/@stdlib/complex/float32/base/add/lib/strided.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,4 @@ function strided( z1, strideZ1, offsetZ1, z2, strideZ2, offsetZ2, out, strideOut
5757

5858
// EXPORTS //
5959

60-
module.exports = strided;
60+
module.exports = strided;

lib/node_modules/@stdlib/complex/float32/base/add/test/test.assign.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
// MODULES //
2222

2323
var tape = require( 'tape' );
24-
var isSameFloat32Array = require( '@stdlib/assert/is-same-Float32Array' );
24+
var isSameFloat32Array = require( '@stdlib/assert/is-same-float32array' );
2525
var Float32Array = require( '@stdlib/array/float32' );
2626
var add = require( './../lib/assign.js' );
2727

@@ -129,4 +129,4 @@ tape( 'if a real or imaginary component is `NaN`, the output component is `NaN`'
129129
t.strictEqual( isSameFloat32Array( out, expected ), true, 'returns expected value' );
130130

131131
t.end();
132-
});
132+
});

lib/node_modules/@stdlib/complex/float32/base/add/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@ tape( 'attached to the main export is a `strided` method', function test( t ) {
4343
t.ok( true, __filename );
4444
t.strictEqual( isMethod( add, 'strided' ), true, 'returns expected value' );
4545
t.end();
46-
});
46+
});

lib/node_modules/@stdlib/complex/float32/base/add/test/test.main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @license Apache-2.0
33
*
4-
* Copyright (c) 2018 The Stdlib Authors.
4+
* Copyright (c) 2025 The Stdlib Authors.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.
@@ -107,4 +107,4 @@ tape( 'if a real or imaginary component is `NaN`, the resulting component is `Na
107107
t.strictEqual( isnanf( imag( v ) ), true, 'returns expected value' );
108108

109109
t.end();
110-
});
110+
});

lib/node_modules/@stdlib/complex/float32/base/add/test/test.strided.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
var tape = require( 'tape' );
2424
var isSameFloat32Array = require( '@stdlib/assert/is-same-float32array' );
25-
var Float32Array = require( '@stdlib/array/float64' );
25+
var Float32Array = require( '@stdlib/array/float32' );
2626
var add = require( './../lib/strided.js' );
2727

2828

@@ -154,4 +154,4 @@ tape( 'if a real or imaginary component is `NaN`, the output component is `NaN`'
154154
t.deepEqual( isSameFloat32Array( out, expected ), true, 'returns expected value' );
155155

156156
t.end();
157-
});
157+
});

0 commit comments

Comments
 (0)