Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Jul 16, 2024
1 parent dd61c49 commit 1f8be74
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 21 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<section class="release" id="unreleased">

## Unreleased (2024-07-15)
## Unreleased (2024-07-16)

<section class="packages">

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

<details>

- [`8908bda`](https://github.com/stdlib-js/stdlib/commit/8908bda11588f80edf375466ae9e84a3d70cf7d3) - **refactor:** update paths _(by Athan Reines)_
- [`ad760a9`](https://github.com/stdlib-js/stdlib/commit/ad760a922086631226d8f759a0d467c707fbc0fb) - **refactor:** update paths _(by Athan Reines)_
- [`722452c`](https://github.com/stdlib-js/stdlib/commit/722452c97282738c0a83e336720c63ee785bc69f) - **feat:** rename 'none' transpose operation to 'no-transpose' _(by Athan Reines)_
- [`d04dcbd`](https://github.com/stdlib-js/stdlib/commit/d04dcbd6dc3b0bf4a89bd3947d317fa5ff15bb38) - **docs:** remove private annotations in C comments _(by Philipp Burckhardt)_
- [`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)_
Expand Down
16 changes: 8 additions & 8 deletions base/dcabs1/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
"dependencies": [
"@stdlib/math/base/special/abs",
"@stdlib/complex/float64/ctor",
"@stdlib/complex/reim"
"@stdlib/complex/float64/reim"
]
},
{
Expand All @@ -86,7 +86,7 @@
"dependencies": [
"@stdlib/math/base/special/abs",
"@stdlib/complex/float64/ctor",
"@stdlib/complex/reim",
"@stdlib/complex/float64/reim",
"@stdlib/complex/real",
"@stdlib/complex/imag"
]
Expand Down Expand Up @@ -198,7 +198,7 @@
"dependencies": [
"@stdlib/math/base/special/abs",
"@stdlib/complex/float64/ctor",
"@stdlib/complex/reim"
"@stdlib/complex/float64/reim"
]
},
{
Expand All @@ -217,7 +217,7 @@
"dependencies": [
"@stdlib/math/base/special/abs",
"@stdlib/complex/float64/ctor",
"@stdlib/complex/reim",
"@stdlib/complex/float64/reim",
"@stdlib/complex/real",
"@stdlib/complex/imag"
]
Expand Down Expand Up @@ -374,7 +374,7 @@
"@stdlib/napi/create-double",
"@stdlib/complex/float64/ctor",
"@stdlib/math/base/special/abs",
"@stdlib/complex/reim"
"@stdlib/complex/float64/reim"
]
},
{
Expand All @@ -393,7 +393,7 @@
"dependencies": [
"@stdlib/math/base/special/abs",
"@stdlib/complex/float64/ctor",
"@stdlib/complex/reim"
"@stdlib/complex/float64/reim"
]
},
{
Expand All @@ -412,7 +412,7 @@
"dependencies": [
"@stdlib/math/base/special/abs",
"@stdlib/complex/float64/ctor",
"@stdlib/complex/reim",
"@stdlib/complex/float64/reim",
"@stdlib/complex/real",
"@stdlib/complex/imag"
]
Expand All @@ -434,7 +434,7 @@
"dependencies": [
"@stdlib/math/base/special/abs",
"@stdlib/complex/float64/ctor",
"@stdlib/complex/reim"
"@stdlib/complex/float64/reim"
]
}
]
Expand Down
4 changes: 2 additions & 2 deletions base/dcabs1/src/dcabs1.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#include "stdlib/blas/base/dcabs1.h"
#include "stdlib/math/base/special/abs.h"
#include "stdlib/complex/float64/ctor.h"
#include "stdlib/complex/reim.h"
#include "stdlib/complex/float64/reim.h"

/**
* Computes the sum of the absolute values of the real and imaginary components of a double-precision complex floating-point number.
Expand All @@ -38,6 +38,6 @@
double c_dcabs1( const stdlib_complex128_t z ) {
double re;
double im;
stdlib_reim( z, &re, &im );
stdlib_complex128_reim( z, &re, &im );
return stdlib_base_abs( re ) + stdlib_base_abs( im );
}
16 changes: 8 additions & 8 deletions base/scabs1/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
"dependencies": [
"@stdlib/math/base/special/absf",
"@stdlib/complex/float32/ctor",
"@stdlib/complex/reimf"
"@stdlib/complex/float32/reim"
]
},
{
Expand All @@ -86,7 +86,7 @@
"dependencies": [
"@stdlib/math/base/special/absf",
"@stdlib/complex/float32/ctor",
"@stdlib/complex/reimf",
"@stdlib/complex/float32/reim",
"@stdlib/complex/realf",
"@stdlib/complex/imagf"
]
Expand Down Expand Up @@ -198,7 +198,7 @@
"dependencies": [
"@stdlib/math/base/special/absf",
"@stdlib/complex/float32/ctor",
"@stdlib/complex/reimf"
"@stdlib/complex/float32/reim"
]
},
{
Expand All @@ -217,7 +217,7 @@
"dependencies": [
"@stdlib/math/base/special/absf",
"@stdlib/complex/float32/ctor",
"@stdlib/complex/reimf",
"@stdlib/complex/float32/reim",
"@stdlib/complex/realf",
"@stdlib/complex/imagf"
]
Expand Down Expand Up @@ -374,7 +374,7 @@
"@stdlib/napi/create-double",
"@stdlib/complex/float32/ctor",
"@stdlib/math/base/special/absf",
"@stdlib/complex/reimf"
"@stdlib/complex/float32/reim"
]
},
{
Expand All @@ -393,7 +393,7 @@
"dependencies": [
"@stdlib/math/base/special/absf",
"@stdlib/complex/float32/ctor",
"@stdlib/complex/reimf"
"@stdlib/complex/float32/reim"
]
},
{
Expand All @@ -412,7 +412,7 @@
"dependencies": [
"@stdlib/math/base/special/absf",
"@stdlib/complex/float32/ctor",
"@stdlib/complex/reimf",
"@stdlib/complex/float32/reim",
"@stdlib/complex/realf",
"@stdlib/complex/imagf"
]
Expand All @@ -434,7 +434,7 @@
"dependencies": [
"@stdlib/math/base/special/absf",
"@stdlib/complex/float32/ctor",
"@stdlib/complex/reimf"
"@stdlib/complex/float32/reim"
]
}
]
Expand Down
4 changes: 2 additions & 2 deletions base/scabs1/src/scabs1.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#include "stdlib/blas/base/scabs1.h"
#include "stdlib/math/base/special/absf.h"
#include "stdlib/complex/float32/ctor.h"
#include "stdlib/complex/reimf.h"
#include "stdlib/complex/float32/reim.h"

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

0 comments on commit 1f8be74

Please sign in to comment.