Skip to content

Commit e0f2668

Browse files
committed
Auto-generated commit
1 parent 97f3bef commit e0f2668

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

CHANGELOG.md

Lines changed: 2 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 (2025-07-12)
7+
## Unreleased (2025-07-13)
88

99
<section class="features">
1010

@@ -538,6 +538,7 @@ A total of 24 issues were closed in this release:
538538

539539
<details>
540540

541+
- [`e01e9d8`](https://github.com/stdlib-js/stdlib/commit/e01e9d8efc5ba72da1a68a6abf2d4058e6d89a02) - **docs:** use appropriate data type in string interpolation [(#7631)](https://github.com/stdlib-js/stdlib/pull/7631) _(by Shabareesh Shetty)_
541542
- [`c9c2744`](https://github.com/stdlib-js/stdlib/commit/c9c274420d450483ea3518e73e5103961ec8f4b5) - **docs:** fix parameter name _(by Philipp Burckhardt)_
542543
- [`c458860`](https://github.com/stdlib-js/stdlib/commit/c458860b027331d80f38f87461fb8f7e80283e39) - **refactor:** use smaller dtype _(by Athan Reines)_
543544
- [`398570f`](https://github.com/stdlib-js/stdlib/commit/398570f2b74d19d9725a40e8c47f0a1e76af6f0a) - **refactor:** use smaller dtype _(by Athan Reines)_

CONTRIBUTORS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ Anudeep Sanapala <anudeep0306@gmail.com>
3131
Arihant Pal <arihant0pal@gmail.com>
3232
Aryan Bhirud <112156883+AryanBhirud@users.noreply.github.com>
3333
Athan Reines <kgryte@gmail.com>
34+
Atharva Patil <124063987+atharva-patil-23@users.noreply.github.com>
3435
Ayaka <73595362+USERSATOSHI@users.noreply.github.com>
3536
Bhavishy Agrawal <90029607+bhavishy2801@users.noreply.github.com>
3637
Brendan Graetz <bguiz@users.noreply.github.com>
@@ -63,6 +64,7 @@ GURU PRASAD SHARMA <168292003+GURUPRASADSHARMA@users.noreply.github.com>
6364
Gaurav <gaurav70380@gmail.com>
6465
Gautam Kaushik <162317291+Kaushikgtm@users.noreply.github.com>
6566
Gautam sharma <gautamkrishnasharma1@gmail.com>
67+
GeoDaoyu <geodaoyu@foxmail.com>
6668
Girish Garg <garggirish2020@gmail.com>
6769
Golden Kumar <103646877+AuenKr@users.noreply.github.com>
6870
Gunj Joshi <gunjjoshi8372@gmail.com>

base/dsyr/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -299,15 +299,15 @@ int main( void ) {
299299

300300
// Print the result:
301301
for ( int i = 0; i < N*N; i++ ) {
302-
printf( "A1[ %i ] = %f\n", i, A1[ i ] );
302+
printf( "A1[ %i ] = %lf\n", i, A1[ i ] );
303303
}
304304

305305
// Perform the symmetric rank 1 operation `A = α*x*x^T + A` using alternative indexing semantics:
306306
c_dsyr_ndarray( CblasUpper, N, 1.0, x, 1, 0, A2, N, 1, 0 );
307307

308308
// Print the result:
309309
for ( int i = 0; i < N*N; i++ ) {
310-
printf( "A2[ %i ] = %f\n", i, A[ i ] );
310+
printf( "A2[ %i ] = %lf\n", i, A[ i ] );
311311
}
312312
}
313313
```

base/dsyr/examples/c/example.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,14 @@ int main( void ) {
4545

4646
// Print the result:
4747
for ( int i = 0; i < N*N; i++ ) {
48-
printf( "A1[ %i ] = %f\n", i, A1[ i ] );
48+
printf( "A1[ %i ] = %lf\n", i, A1[ i ] );
4949
}
5050

5151
// Perform the symmetric rank 1 operation `A = α*x*x^T + A` using alternative indexing semantics:
5252
c_dsyr_ndarray( CblasUpper, N, 1.0, x, 1, 0, A2, N, 1, 0 );
5353

5454
// Print the result:
5555
for ( int i = 0; i < N*N; i++ ) {
56-
printf( "A2[ %i ] = %f\n", i, A2[ i ] );
56+
printf( "A2[ %i ] = %lf\n", i, A2[ i ] );
5757
}
5858
}

0 commit comments

Comments
 (0)