Skip to content

Commit de553c4

Browse files
committed
Auto-generated commit
1 parent 68c7134 commit de553c4

File tree

11 files changed

+29
-27
lines changed

11 files changed

+29
-27
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2669,6 +2669,8 @@ A total of 35 people contributed to this release. Thank you to the following con
26692669

26702670
<details>
26712671

2672+
- [`e3a3679`](https://github.com/stdlib-js/stdlib/commit/e3a3679f1e733cf02ce47cdc4bd0137bd37bef41) - **refactor:** update paths _(by Athan Reines)_
2673+
- [`ddd4403`](https://github.com/stdlib-js/stdlib/commit/ddd44032f9d8a6d318c80e3b239ff72280ffc599) - **refactor:** update paths _(by Athan Reines)_
26722674
- [`0406147`](https://github.com/stdlib-js/stdlib/commit/04061476d1036e1b8b786736b1ba1653eddff1ef) - **refactor:** update paths _(by Athan Reines)_
26732675
- [`b9703b5`](https://github.com/stdlib-js/stdlib/commit/b9703b569dc2f0a67e604e388a0d188b08138b48) - **refactor:** update paths _(by Athan Reines)_
26742676
- [`32bbcb3`](https://github.com/stdlib-js/stdlib/commit/32bbcb3b3dae1f028fd18166ee7875a93d44d0ee) - **refactor:** update paths _(by Athan Reines)_

base/caxpy/lib/ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
// MODULES //
2222

2323
var scabs1 = require( './../../../base/scabs1' );
24-
var cmulf = require( '@stdlib/math/base/ops/cmulf' );
24+
var cmulf = require( '@stdlib/complex/float32/base/mul' );
2525
var caddf = require( '@stdlib/complex/float32/base/add' );
2626

2727

base/cscal/lib/cscal.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
// MODULES //
2222

23-
var cmulf = require( '@stdlib/math/base/ops/cmulf' );
23+
var cmulf = require( '@stdlib/complex/float32/base/mul' );
2424

2525

2626
// MAIN //

base/cscal/lib/ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
// MODULES //
2222

23-
var cmulf = require( '@stdlib/math/base/ops/cmulf' );
23+
var cmulf = require( '@stdlib/complex/float32/base/mul' );
2424

2525

2626
// MAIN //

base/cscal/manifest.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"@stdlib/napi/argv-strided-complex64array",
5151
"@stdlib/napi/argv-complex64",
5252
"@stdlib/complex/float32/ctor",
53-
"@stdlib/math/base/ops/cmulf"
53+
"@stdlib/complex/float32/base/mul"
5454
]
5555
},
5656
{
@@ -68,7 +68,7 @@
6868
"libpath": [],
6969
"dependencies": [
7070
"@stdlib/blas/base/shared",
71-
"@stdlib/math/base/ops/cmulf",
71+
"@stdlib/complex/float32/base/mul",
7272
"@stdlib/complex/float32/ctor"
7373
]
7474
},
@@ -87,7 +87,7 @@
8787
"libpath": [],
8888
"dependencies": [
8989
"@stdlib/blas/base/shared",
90-
"@stdlib/math/base/ops/cmulf",
90+
"@stdlib/complex/float32/base/mul",
9191
"@stdlib/complex/float32/ctor"
9292
]
9393
},
@@ -200,7 +200,7 @@
200200
"libpath": [],
201201
"dependencies": [
202202
"@stdlib/blas/base/shared",
203-
"@stdlib/math/base/ops/cmulf",
203+
"@stdlib/complex/float32/base/mul",
204204
"@stdlib/complex/float32/ctor"
205205
]
206206
},
@@ -219,7 +219,7 @@
219219
"libpath": [],
220220
"dependencies": [
221221
"@stdlib/blas/base/shared",
222-
"@stdlib/math/base/ops/cmulf",
222+
"@stdlib/complex/float32/base/mul",
223223
"@stdlib/complex/float32/ctor"
224224
]
225225
},
@@ -380,7 +380,7 @@
380380
"@stdlib/napi/argv-strided-complex64array",
381381
"@stdlib/napi/argv-complex64",
382382
"@stdlib/complex/float32/ctor",
383-
"@stdlib/math/base/ops/cmulf"
383+
"@stdlib/complex/float32/base/mul"
384384
]
385385
},
386386
{
@@ -398,7 +398,7 @@
398398
"libpath": [],
399399
"dependencies": [
400400
"@stdlib/blas/base/shared",
401-
"@stdlib/math/base/ops/cmulf",
401+
"@stdlib/complex/float32/base/mul",
402402
"@stdlib/complex/float32/ctor"
403403
]
404404
},
@@ -417,7 +417,7 @@
417417
"libpath": [],
418418
"dependencies": [
419419
"@stdlib/blas/base/shared",
420-
"@stdlib/math/base/ops/cmulf",
420+
"@stdlib/complex/float32/base/mul",
421421
"@stdlib/complex/float32/ctor"
422422
]
423423
},
@@ -437,7 +437,7 @@
437437
"libpath": [],
438438
"dependencies": [
439439
"@stdlib/blas/base/shared",
440-
"@stdlib/math/base/ops/cmulf",
440+
"@stdlib/complex/float32/base/mul",
441441
"@stdlib/complex/float32/ctor"
442442
]
443443
}

base/cscal/src/cscal.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#include "stdlib/blas/base/cscal.h"
2020
#include "stdlib/blas/base/shared.h"
2121
#include "stdlib/complex/float32/ctor.h"
22-
#include "stdlib/math/base/ops/cmulf.h"
22+
#include "stdlib/complex/float32/base/mul.h"
2323
#include <stdint.h>
2424

2525
/**
@@ -42,7 +42,7 @@ void API_SUFFIX(c_cscal)( const CBLAS_INT N, const stdlib_complex64_t ca, void *
4242
}
4343
for ( i = 0; i < N; i++, ip1 += is1 ) {
4444
z = *( (stdlib_complex64_t *)ip1 );
45-
*( (stdlib_complex64_t *)ip1 ) = stdlib_base_cmulf( ca, z );
45+
*( (stdlib_complex64_t *)ip1 ) = stdlib_base_complex64_mul( ca, z );
4646
}
4747
return;
4848
}

base/zaxpy/lib/ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
// MODULES //
2222

2323
var dcabs1 = require( './../../../base/dcabs1' );
24-
var cmul = require( '@stdlib/math/base/ops/cmul' );
24+
var cmul = require( '@stdlib/complex/float64/base/mul' );
2525
var cadd = require( '@stdlib/complex/float64/base/add' );
2626

2727

base/zscal/lib/ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
// MODULES //
2222

23-
var cmul = require( '@stdlib/math/base/ops/cmul' );
23+
var cmul = require( '@stdlib/complex/float64/base/mul' );
2424

2525

2626
// MAIN //

base/zscal/lib/zscal.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
// MODULES //
2222

23-
var cmul = require( '@stdlib/math/base/ops/cmul' );
23+
var cmul = require( '@stdlib/complex/float64/base/mul' );
2424

2525

2626
// MAIN //

base/zscal/manifest.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
"libpath": [],
6868
"dependencies": [
6969
"@stdlib/blas/base/shared",
70-
"@stdlib/math/base/ops/cmul",
70+
"@stdlib/complex/float64/base/mul",
7171
"@stdlib/complex/float64/ctor"
7272
]
7373
},
@@ -86,7 +86,7 @@
8686
"libpath": [],
8787
"dependencies": [
8888
"@stdlib/blas/base/shared",
89-
"@stdlib/math/base/ops/cmul",
89+
"@stdlib/complex/float64/base/mul",
9090
"@stdlib/complex/float64/ctor"
9191
]
9292
},
@@ -199,7 +199,7 @@
199199
"libpath": [],
200200
"dependencies": [
201201
"@stdlib/blas/base/shared",
202-
"@stdlib/math/base/ops/cmul",
202+
"@stdlib/complex/float64/base/mul",
203203
"@stdlib/complex/float64/ctor"
204204
]
205205
},
@@ -218,7 +218,7 @@
218218
"libpath": [],
219219
"dependencies": [
220220
"@stdlib/blas/base/shared",
221-
"@stdlib/math/base/ops/cmul",
221+
"@stdlib/complex/float64/base/mul",
222222
"@stdlib/complex/float64/ctor"
223223
]
224224
},
@@ -379,7 +379,7 @@
379379
"@stdlib/napi/argv-strided-complex128array",
380380
"@stdlib/napi/argv-complex128",
381381
"@stdlib/complex/float64/ctor",
382-
"@stdlib/math/base/ops/cmul"
382+
"@stdlib/complex/float64/base/mul"
383383
]
384384
},
385385
{
@@ -397,7 +397,7 @@
397397
"libpath": [],
398398
"dependencies": [
399399
"@stdlib/blas/base/shared",
400-
"@stdlib/math/base/ops/cmul",
400+
"@stdlib/complex/float64/base/mul",
401401
"@stdlib/complex/float64/ctor"
402402
]
403403
},
@@ -416,7 +416,7 @@
416416
"libpath": [],
417417
"dependencies": [
418418
"@stdlib/blas/base/shared",
419-
"@stdlib/math/base/ops/cmul",
419+
"@stdlib/complex/float64/base/mul",
420420
"@stdlib/complex/float64/ctor"
421421
]
422422
},
@@ -436,7 +436,7 @@
436436
"libpath": [],
437437
"dependencies": [
438438
"@stdlib/blas/base/shared",
439-
"@stdlib/math/base/ops/cmul",
439+
"@stdlib/complex/float64/base/mul",
440440
"@stdlib/complex/float64/ctor"
441441
]
442442
}

0 commit comments

Comments
 (0)