File tree Expand file tree Collapse file tree 2 files changed +209
-211
lines changed
lib/node_modules/@stdlib/math/strided/ops/sub Expand file tree Collapse file tree 2 files changed +209
-211
lines changed Original file line number Diff line number Diff line change 18
18
* limitations under the License.
19
19
*/
20
20
21
- /* eslint-disable node/shebang */
22
-
23
21
'use strict' ;
24
22
25
23
// MODULES //
@@ -151,13 +149,13 @@ function main() {
151
149
throw new Error ( 'unexpected error. Callback arguments must all be the same. Function: `' + fcns [ i ] + '`.' ) ;
152
150
}
153
151
if ( t1 === FLOAT64_CHAR ) {
154
- f = 'stdlib_base_ ' + FCN_BASENAME ;
152
+ f = 'stdlib_base_float64_ ' + FCN_BASENAME ;
155
153
} else if ( t1 === FLOAT32_CHAR ) {
156
- f = 'stdlib_base_ ' + FCN_BASENAME + t1 ;
154
+ f = 'stdlib_base_float32_ ' + FCN_BASENAME ;
157
155
} else if ( t1 === COMPLEX64_CHAR ) {
158
- f = 'stdlib_base_c ' + FCN_BASENAME + 'f' ;
156
+ f = 'stdlib_base_complex64_ ' + FCN_BASENAME ;
159
157
} else if ( t1 === COMPLEX128_CHAR ) {
160
- f = 'stdlib_base_c ' + FCN_BASENAME ;
158
+ f = 'stdlib_base_complex128_ ' + FCN_BASENAME ;
161
159
} else {
162
160
f = FCN_BASENAME + t1 ;
163
161
}
You can’t perform that action at this time.
0 commit comments