Skip to content

Commit f2cc658

Browse files
committed
Auto-generated commit
1 parent e5e950c commit f2cc658

File tree

24 files changed

+34
-27
lines changed

24 files changed

+34
-27
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -497,6 +497,9 @@ A total of 23 issues were closed in this release:
497497

498498
<details>
499499

500+
- [`85a9c18`](https://github.com/stdlib-js/stdlib/commit/85a9c18a4a4edcf9ccfc590137ecc76812e86204) - **chore:** disable lint rule _(by Philipp Burckhardt)_
501+
- [`4dba421`](https://github.com/stdlib-js/stdlib/commit/4dba421f5bd8acafdd58e1c7681965b9ad267bc7) - **docs:** minor clean-up _(by Philipp Burckhardt)_
502+
- [`69ad0f3`](https://github.com/stdlib-js/stdlib/commit/69ad0f330677990bab1fe157e167998d94a58eea) - **docs:** minor clean-up _(by Philipp Burckhardt)_
500503
- [`992d491`](https://github.com/stdlib-js/stdlib/commit/992d491518fcbdc4f61570f3289bfafc8835eecd) - **test:** address failing tests due to upstream refactoring _(by Athan Reines)_
501504
- [`231adcc`](https://github.com/stdlib-js/stdlib/commit/231adcca7fe97378ed76193faba8ccf41123ad83) - **feat:** add JavaScript implementation and clean-up `blas/base/dger` [(#6395)](https://github.com/stdlib-js/stdlib/pull/6395) _(by Shabareesh Shetty, Athan Reines, stdlib-bot)_
502505
- [`7c9afed`](https://github.com/stdlib-js/stdlib/commit/7c9afed6a288c9e7d3048dfa0ac8f085759d73f4) - **chore:** minor clean-up _(by Philipp Burckhardt)_

base/cscal/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ int main( void ) {
284284
printf( "x[ %i ] = %f + %fj\n", i, x[ i*2 ], x[ (i*2)+1 ] );
285285
}
286286

287-
// Scale the elements of the array:
287+
// Scale the elements of the array using alternative indexing semantics:
288288
c_cscal_ndarray( N, alpha, (void *)x, -strideX, 3 );
289289

290290
// Print the result:

base/csrot/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ int main( void ) {
283283
const int strideX = 1;
284284
const int strideY = -1;
285285

286-
// Copy elements:
286+
// Apply a plane rotation:
287287
c_csrot( N, (void *)x, strideX, (void *)y, strideY, 0.8f, 0.6f );
288288

289289
// Print the result:

base/cswap/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ int main( void ) {
275275
const int strideX = 1;
276276
const int strideY = -1;
277277

278-
// Copy elements:
278+
// Interchange the vectors:
279279
c_cswap( N, (void *)x, strideX, (void *)y, strideY );
280280

281281
// Print the result:

base/dcabs1/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Computes the sum of the [absolute values][absolute-value] of the real and imagin
103103

104104
const stdlib_complex128_t c = stdlib_complex128( 5.0, -3.0 );
105105

106-
double y = c_dcabs1( z );
106+
double y = c_dcabs1( c );
107107
// returns 8.0
108108
```
109109

@@ -148,7 +148,7 @@ int main( void ) {
148148
stdlib_complex128( 0.0/0.0, 0.0/0.0 )
149149
};
150150
151-
float y;
151+
double y;
152152
int i;
153153
for ( i = 0; i < 4; i++ ) {
154154
y = c_dcabs1( x[ i ] );

base/dnrm2/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ limitations under the License.
2626

2727
The [L2-norm][l2-norm] is defined as
2828

29-
<!-- <equation class="equation" label="eq:l2_norm" align="center raw="\|\mathbf{x}\|_2 = \sqrt{x_0^2 + x_1^2 + \ldots + x_{N-1}^2}" alt="L2-norm definition."> -->
29+
<!-- <equation class="equation" label="eq:l2_norm" align="center" raw="\|\mathbf{x}\|_2 = \sqrt{x_0^2 + x_1^2 + \ldots + x_{N-1}^2}" alt="L2-norm definition."> -->
3030

3131
<div class="equation" align="center" data-raw-text="\|\mathbf{x}\|_2 = \sqrt{x_0^2 + x_1^2 + \ldots + x_{N-1}^2}" data-equation="eq:l2_norm">
3232
<img src="https://cdn.jsdelivr.net/gh/stdlib-js/stdlib@f766d7eeb56ff14cbceeeeef03d7f7b88c467515/lib/node_modules/@stdlib/blas/base/dnrm2/docs/img/equation_l2_norm.svg" alt="L2-norm definition.">

base/gnrm2/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ limitations under the License.
2626

2727
The [L2-norm][l2-norm] is defined as
2828

29-
<!-- <equation class="equation" label="eq:l2_norm" align="center raw="\|\mathbf{x}\|_2 = \sqrt{x_0^2 + x_1^2 + \ldots + x_{N-1}^2}" alt="L2-norm definition."> -->
29+
<!-- <equation class="equation" label="eq:l2_norm" align="center" raw="\|\mathbf{x}\|_2 = \sqrt{x_0^2 + x_1^2 + \ldots + x_{N-1}^2}" alt="L2-norm definition."> -->
3030

3131
<div class="equation" align="center" data-raw-text="\|\mathbf{x}\|_2 = \sqrt{x_0^2 + x_1^2 + \ldots + x_{N-1}^2}" data-equation="eq:l2_norm">
3232
<img src="https://cdn.jsdelivr.net/gh/stdlib-js/stdlib@f8997c489e47eb1a9d993ef4ab3a522a095331f5/lib/node_modules/@stdlib/blas/base/gnrm2/docs/img/equation_l2_norm.svg" alt="L2-norm definition.">

base/operation-side-resolve-str/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ v = resolve( str2enum( 'left' ) );
5454
// returns 'left'
5555
```
5656

57-
If unable to resolve a operation side string, the function returns `null`.
57+
If unable to resolve an operation side string, the function returns `null`.
5858

5959
```javascript
6060
var v = resolve( 'beep' );

base/operation-sides/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ bool = isOperationSide( 'beep' );
124124

125125
An enumeration of BLAS operation sides with the following fields:
126126

127-
- **STDLIB_BLAS_LEFT**: a triangular matrix is on the left side of a matrix-matrix operation (e.g., `XA = B`, where `A` is a triangular matrix).
127+
- **STDLIB_BLAS_LEFT**: a triangular matrix is on the left side of a matrix-matrix operation (e.g., `AX = B`, where `A` is a triangular matrix).
128128
- **STDLIB_BLAS_RIGHT**: a triangular matrix is on the right side of a matrix-matrix operation (e.g., `XA = B`, where `A` is a triangular matrix).
129129

130130
```c

base/saxpy/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ The function accepts the following arguments:
207207
- **X**: `[in] float*` input array.
208208
- **strideX**: `[in] CBLAS_INT` index increment for `X`.
209209
- **Y**: `[inout] float*` output array.
210-
- **strideY**: `[in CBLAS_INT` index increment for `Y`.
210+
- **strideY**: `[in] CBLAS_INT` index increment for `Y`.
211211
212212
```c
213213
void c_saxpy( const CBLAS_INT N, const float alpha, const float *X, const CBLAS_INT strideX, float *Y, const CBLAS_INT strideY );
@@ -232,7 +232,7 @@ The function accepts the following arguments:
232232
- **strideX**: `[in] CBLAS_INT` index increment for `X`.
233233
- **offsetX**: `[in] CBLAS_INT` starting index for `X`.
234234
- **Y**: `[inout] float*` output array.
235-
- **strideY**: `[in CBLAS_INT` index increment for `Y`.
235+
- **strideY**: `[in] CBLAS_INT` index increment for `Y`.
236236
- **offsetY**: `[in] CBLAS_INT` starting index for `Y`.
237237
238238
```c

0 commit comments

Comments
 (0)