You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
5
5
<sectionclass="release"id="unreleased">
6
6
7
-
## Unreleased (2025-07-08)
7
+
## Unreleased (2025-07-21)
8
8
9
9
<sectionclass="features">
10
10
@@ -33,6 +33,7 @@
33
33
34
34
<details>
35
35
36
+
-[`d559fd7`](https://github.com/stdlib-js/stdlib/commit/d559fd70de9ec9b1d72d22543876f380e4062c69) - **refactor:** update include header guards for single precision real packages [(#7710)](https://github.com/stdlib-js/stdlib/pull/7710)_(by Shabareesh Shetty)_
36
37
-[`e039f2a`](https://github.com/stdlib-js/stdlib/commit/e039f2a6f7ff1b4141dba2d0f5a2fb8a03d7a9b8) - **fix:** consistently use constants instead of hardcoded numbers in unrolled BLAS loops _(by Philipp Burckhardt)_
Copy file name to clipboardExpand all lines: include/stdlib/blas/base/sasum_fortran.h
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -19,8 +19,8 @@
19
19
/**
20
20
* Header file containing function declarations for the Fortran interface to the BLAS Level 1 routine `sasum`.
21
21
*/
22
-
#ifndefSASUM_FORTRAN_H
23
-
#defineSASUM_FORTRAN_H
22
+
#ifndefSTDLIB_BLAS_BASE_SASUM_FORTRAN_H
23
+
#defineSTDLIB_BLAS_BASE_SASUM_FORTRAN_H
24
24
25
25
/*
26
26
* If C++, prevent name mangling so that the compiler emits a binary file having undecorated names, thus mirroring the behavior of a C/Fortran compiler (a Fortran compiler must be configured to not attach underscores).
@@ -38,4 +38,4 @@ void sasumsub( const int *, const float *, const int *, float * );
0 commit comments