Skip to content

Commit 1f8be74

Browse files
committed
Auto-generated commit
1 parent dd61c49 commit 1f8be74

File tree

5 files changed

+23
-21
lines changed

5 files changed

+23
-21
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2024-07-15)
7+
## Unreleased (2024-07-16)
88

99
<section class="packages">
1010

@@ -2647,6 +2647,8 @@ A total of 35 people contributed to this release. Thank you to the following con
26472647

26482648
<details>
26492649

2650+
- [`8908bda`](https://github.com/stdlib-js/stdlib/commit/8908bda11588f80edf375466ae9e84a3d70cf7d3) - **refactor:** update paths _(by Athan Reines)_
2651+
- [`ad760a9`](https://github.com/stdlib-js/stdlib/commit/ad760a922086631226d8f759a0d467c707fbc0fb) - **refactor:** update paths _(by Athan Reines)_
26502652
- [`722452c`](https://github.com/stdlib-js/stdlib/commit/722452c97282738c0a83e336720c63ee785bc69f) - **feat:** rename 'none' transpose operation to 'no-transpose' _(by Athan Reines)_
26512653
- [`d04dcbd`](https://github.com/stdlib-js/stdlib/commit/d04dcbd6dc3b0bf4a89bd3947d317fa5ff15bb38) - **docs:** remove private annotations in C comments _(by Philipp Burckhardt)_
26522654
- [`3dda09b`](https://github.com/stdlib-js/stdlib/commit/3dda09be640b5ee96278691de75d35a61b2ecfe8) - **feat:** add `blas/base/scasum` [(#2573)](https://github.com/stdlib-js/stdlib/pull/2573) _(by Aman Bhansali, Athan Reines)_

base/dcabs1/manifest.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
"dependencies": [
6868
"@stdlib/math/base/special/abs",
6969
"@stdlib/complex/float64/ctor",
70-
"@stdlib/complex/reim"
70+
"@stdlib/complex/float64/reim"
7171
]
7272
},
7373
{
@@ -86,7 +86,7 @@
8686
"dependencies": [
8787
"@stdlib/math/base/special/abs",
8888
"@stdlib/complex/float64/ctor",
89-
"@stdlib/complex/reim",
89+
"@stdlib/complex/float64/reim",
9090
"@stdlib/complex/real",
9191
"@stdlib/complex/imag"
9292
]
@@ -198,7 +198,7 @@
198198
"dependencies": [
199199
"@stdlib/math/base/special/abs",
200200
"@stdlib/complex/float64/ctor",
201-
"@stdlib/complex/reim"
201+
"@stdlib/complex/float64/reim"
202202
]
203203
},
204204
{
@@ -217,7 +217,7 @@
217217
"dependencies": [
218218
"@stdlib/math/base/special/abs",
219219
"@stdlib/complex/float64/ctor",
220-
"@stdlib/complex/reim",
220+
"@stdlib/complex/float64/reim",
221221
"@stdlib/complex/real",
222222
"@stdlib/complex/imag"
223223
]
@@ -374,7 +374,7 @@
374374
"@stdlib/napi/create-double",
375375
"@stdlib/complex/float64/ctor",
376376
"@stdlib/math/base/special/abs",
377-
"@stdlib/complex/reim"
377+
"@stdlib/complex/float64/reim"
378378
]
379379
},
380380
{
@@ -393,7 +393,7 @@
393393
"dependencies": [
394394
"@stdlib/math/base/special/abs",
395395
"@stdlib/complex/float64/ctor",
396-
"@stdlib/complex/reim"
396+
"@stdlib/complex/float64/reim"
397397
]
398398
},
399399
{
@@ -412,7 +412,7 @@
412412
"dependencies": [
413413
"@stdlib/math/base/special/abs",
414414
"@stdlib/complex/float64/ctor",
415-
"@stdlib/complex/reim",
415+
"@stdlib/complex/float64/reim",
416416
"@stdlib/complex/real",
417417
"@stdlib/complex/imag"
418418
]
@@ -434,7 +434,7 @@
434434
"dependencies": [
435435
"@stdlib/math/base/special/abs",
436436
"@stdlib/complex/float64/ctor",
437-
"@stdlib/complex/reim"
437+
"@stdlib/complex/float64/reim"
438438
]
439439
}
440440
]

base/dcabs1/src/dcabs1.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#include "stdlib/blas/base/dcabs1.h"
2020
#include "stdlib/math/base/special/abs.h"
2121
#include "stdlib/complex/float64/ctor.h"
22-
#include "stdlib/complex/reim.h"
22+
#include "stdlib/complex/float64/reim.h"
2323

2424
/**
2525
* Computes the sum of the absolute values of the real and imaginary components of a double-precision complex floating-point number.
@@ -38,6 +38,6 @@
3838
double c_dcabs1( const stdlib_complex128_t z ) {
3939
double re;
4040
double im;
41-
stdlib_reim( z, &re, &im );
41+
stdlib_complex128_reim( z, &re, &im );
4242
return stdlib_base_abs( re ) + stdlib_base_abs( im );
4343
}

base/scabs1/manifest.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
"dependencies": [
6868
"@stdlib/math/base/special/absf",
6969
"@stdlib/complex/float32/ctor",
70-
"@stdlib/complex/reimf"
70+
"@stdlib/complex/float32/reim"
7171
]
7272
},
7373
{
@@ -86,7 +86,7 @@
8686
"dependencies": [
8787
"@stdlib/math/base/special/absf",
8888
"@stdlib/complex/float32/ctor",
89-
"@stdlib/complex/reimf",
89+
"@stdlib/complex/float32/reim",
9090
"@stdlib/complex/realf",
9191
"@stdlib/complex/imagf"
9292
]
@@ -198,7 +198,7 @@
198198
"dependencies": [
199199
"@stdlib/math/base/special/absf",
200200
"@stdlib/complex/float32/ctor",
201-
"@stdlib/complex/reimf"
201+
"@stdlib/complex/float32/reim"
202202
]
203203
},
204204
{
@@ -217,7 +217,7 @@
217217
"dependencies": [
218218
"@stdlib/math/base/special/absf",
219219
"@stdlib/complex/float32/ctor",
220-
"@stdlib/complex/reimf",
220+
"@stdlib/complex/float32/reim",
221221
"@stdlib/complex/realf",
222222
"@stdlib/complex/imagf"
223223
]
@@ -374,7 +374,7 @@
374374
"@stdlib/napi/create-double",
375375
"@stdlib/complex/float32/ctor",
376376
"@stdlib/math/base/special/absf",
377-
"@stdlib/complex/reimf"
377+
"@stdlib/complex/float32/reim"
378378
]
379379
},
380380
{
@@ -393,7 +393,7 @@
393393
"dependencies": [
394394
"@stdlib/math/base/special/absf",
395395
"@stdlib/complex/float32/ctor",
396-
"@stdlib/complex/reimf"
396+
"@stdlib/complex/float32/reim"
397397
]
398398
},
399399
{
@@ -412,7 +412,7 @@
412412
"dependencies": [
413413
"@stdlib/math/base/special/absf",
414414
"@stdlib/complex/float32/ctor",
415-
"@stdlib/complex/reimf",
415+
"@stdlib/complex/float32/reim",
416416
"@stdlib/complex/realf",
417417
"@stdlib/complex/imagf"
418418
]
@@ -434,7 +434,7 @@
434434
"dependencies": [
435435
"@stdlib/math/base/special/absf",
436436
"@stdlib/complex/float32/ctor",
437-
"@stdlib/complex/reimf"
437+
"@stdlib/complex/float32/reim"
438438
]
439439
}
440440
]

base/scabs1/src/scabs1.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#include "stdlib/blas/base/scabs1.h"
2020
#include "stdlib/math/base/special/absf.h"
2121
#include "stdlib/complex/float32/ctor.h"
22-
#include "stdlib/complex/reimf.h"
22+
#include "stdlib/complex/float32/reim.h"
2323

2424
/**
2525
* Computes the sum of the absolute values of the real and imaginary components of a single-precision complex floating-point number.
@@ -38,6 +38,6 @@
3838
float c_scabs1( const stdlib_complex64_t c ) {
3939
float re;
4040
float im;
41-
stdlib_reimf( c, &re, &im );
41+
stdlib_complex64_reim( c, &re, &im );
4242
return stdlib_base_absf( re ) + stdlib_base_absf( im );
4343
}

0 commit comments

Comments
 (0)