Skip to content

Commit 506f2b3

Browse files
Merge branch 'Reference-LAPACK:master' into implement-axpby
2 parents 1221bb2 + 72df25b commit 506f2b3

File tree

2,069 files changed

+4536
-6214
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,069 files changed

+4536
-6214
lines changed

.github/workflows/cmake.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,12 +75,12 @@ jobs:
7575
- name: Install ninja-build tool
7676
uses: seanmiddleditch/gha-setup-ninja@16b940825621068d98711680b6c3ff92201f8fc0 # v3
7777

78-
- name: Use GCC-11 on MacOS
78+
- name: Use GCC-14 on MacOS
7979
if: ${{ matrix.os == 'macos-latest' }}
8080
run: >
8181
cmake -B build -G Ninja
82-
-D CMAKE_C_COMPILER="gcc-11"
83-
-D CMAKE_Fortran_COMPILER="gfortran-11"
82+
-D CMAKE_C_COMPILER="gcc-14"
83+
-D CMAKE_Fortran_COMPILER="gfortran-14"
8484
-D USE_FLAT_NAMESPACE:BOOL=ON
8585
8686
- name: Special flags for Windows
@@ -237,4 +237,4 @@ jobs:
237237
fi
238238
done
239239
exit 0
240-
fi
240+
fi

.github/workflows/makefile.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ jobs:
9090
echo "DOCSDIR = ${{github.workspace}}/DOCS" >> make.inc
9191
- name: Alias for GCC compilers
9292
run: |
93-
sudo ln -s $(which gcc-11) /usr/local/bin/gcc
94-
sudo ln -s $(which gfortran-11) /usr/local/bin/gfortran
93+
sudo ln -s $(which gcc-14) /usr/local/bin/gcc
94+
sudo ln -s $(which gfortran-14) /usr/local/bin/gfortran
9595
- name: Install
9696
run: |
9797
make -s -j2 all

.github/workflows/scorecard.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ jobs:
3232

3333
steps:
3434
- name: "Checkout code"
35-
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
35+
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # tag=v4.2.0
3636
with:
3737
persist-credentials: false
3838

3939
- name: "Run analysis"
40-
uses: ossf/scorecard-action@08b4669551908b1024bb425080c797723083c031 # v2.2.0
40+
uses: ossf/scorecard-action@62b2cac7ed8198b15735ed49ab1e5cf35480ba46 # v2.4.0
4141
with:
4242
results_file: results.sarif
4343
results_format: sarif
@@ -59,14 +59,14 @@ jobs:
5959
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
6060
# format to the repository Actions tab.
6161
- name: "Upload artifact"
62-
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
62+
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
6363
with:
6464
name: SARIF file
6565
path: results.sarif
6666
retention-days: 5
6767

6868
# Upload the results to GitHub's code scanning dashboard.
6969
- name: "Upload to code-scanning"
70-
uses: github/codeql-action/upload-sarif@f9a7c6738f28efb36e31d49c53a201a9c5d6a476 # v2.14.2
70+
uses: github/codeql-action/upload-sarif@662472033e021d55d94146f66f6058822b0b39fd # v3.27.0
7171
with:
7272
sarif_file: results.sarif

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,7 @@ build*
4343
DOCS/man
4444
DOCS/explore-html
4545
output_err
46+
47+
# Mod files from compilation in SRC
48+
SRC/la_constants.mod
49+
SRC/la_xisnan.mod

BLAS/SRC/cgemmtr.f

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@
5050
*> On entry, UPLO specifies whether the lower or the upper
5151
*> triangular part of C is access and updated.
5252
*>
53-
*> UPLO = 'L' or 'l', the lower tringular part of C is used.
53+
*> UPLO = 'L' or 'l', the lower triangular part of C is used.
5454
*>
55-
*> UPLO = 'U' or 'u', the upper tringular part of C is used.
55+
*> UPLO = 'U' or 'u', the upper triangular part of C is used.
5656
*> \endverbatim
5757
*
5858
*> \param[in] TRANSA
@@ -154,7 +154,7 @@
154154
*> Before entry, the leading n by n part of the array C must
155155
*> contain the matrix C, except when beta is zero, in which
156156
*> case C need not be set on entry.
157-
*> On exit, the upper or lower trinangular part of the matrix
157+
*> On exit, the upper or lower triangular part of the matrix
158158
*> C is overwritten by the n by n matrix
159159
*> ( alpha*op( A )*op( B ) + beta*C ).
160160
*> \endverbatim

BLAS/SRC/dgemmtr.f

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@
5050
*> On entry, UPLO specifies whether the lower or the upper
5151
*> triangular part of C is access and updated.
5252
*>
53-
*> UPLO = 'L' or 'l', the lower tringular part of C is used.
53+
*> UPLO = 'L' or 'l', the lower triangular part of C is used.
5454
*>
55-
*> UPLO = 'U' or 'u', the upper tringular part of C is used.
55+
*> UPLO = 'U' or 'u', the upper triangular part of C is used.
5656
*> \endverbatim
5757
*
5858
*> \param[in] TRANSA
@@ -154,7 +154,7 @@
154154
*> Before entry, the leading n by n part of the array C must
155155
*> contain the matrix C, except when beta is zero, in which
156156
*> case C need not be set on entry.
157-
*> On exit, the upper or lower trinangular part of the matrix
157+
*> On exit, the upper or lower triangular part of the matrix
158158
*> C is overwritten by the n by n matrix
159159
*> ( alpha*op( A )*op( B ) + beta*C ).
160160
*> \endverbatim

BLAS/SRC/drotm.f

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@
3838
*> H=( ) ( ) ( ) ( )
3939
*> (DH21 DH22), (DH21 1.D0), (-1.D0 DH22), (0.D0 1.D0).
4040
*> SEE DROTMG FOR A DESCRIPTION OF DATA STORAGE IN DPARAM.
41+
*>
42+
*> IF DFLAG IS NOT ONE OF THE LISTED ABOVE, THE BEHAVIOR IS UNDEFINED.
43+
*> NANS IN DFLAG MAY NOT PROPAGATE TO THE OUTPUT.
44+
*>
4145
*> \endverbatim
4246
*
4347
* Arguments:

BLAS/SRC/sgemmtr.f

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@
5050
*> On entry, UPLO specifies whether the lower or the upper
5151
*> triangular part of C is access and updated.
5252
*>
53-
*> UPLO = 'L' or 'l', the lower tringular part of C is used.
53+
*> UPLO = 'L' or 'l', the lower triangular part of C is used.
5454
*>
55-
*> UPLO = 'U' or 'u', the upper tringular part of C is used.
55+
*> UPLO = 'U' or 'u', the upper triangular part of C is used.
5656
*> \endverbatim
5757
*
5858
*> \param[in] TRANSA
@@ -154,7 +154,7 @@
154154
*> Before entry, the leading n by n part of the array C must
155155
*> contain the matrix C, except when beta is zero, in which
156156
*> case C need not be set on entry.
157-
*> On exit, the upper or lower trinangular part of the matrix
157+
*> On exit, the upper or lower triangular part of the matrix
158158
*> C is overwritten by the n by n matrix
159159
*> ( alpha*op( A )*op( B ) + beta*C ).
160160
*> \endverbatim

BLAS/SRC/srotm.f

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@
3939
*> (SH21 SH22), (SH21 1.E0), (-1.E0 SH22), (0.E0 1.E0).
4040
*> SEE SROTMG FOR A DESCRIPTION OF DATA STORAGE IN SPARAM.
4141
*>
42+
*> IF SFLAG IS NOT ONE OF THE LISTED ABOVE, THE BEHAVIOR IS UNDEFINED.
43+
*> NANS IN SFLAG MAY NOT PROPAGATE TO THE OUTPUT.
44+
*>
4245
*> \endverbatim
4346
*
4447
* Arguments:

BLAS/SRC/zgemmtr.f

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@
5050
*> On entry, UPLO specifies whether the lower or the upper
5151
*> triangular part of C is access and updated.
5252
*>
53-
*> UPLO = 'L' or 'l', the lower tringular part of C is used.
53+
*> UPLO = 'L' or 'l', the lower triangular part of C is used.
5454
*>
55-
*> UPLO = 'U' or 'u', the upper tringular part of C is used.
55+
*> UPLO = 'U' or 'u', the upper triangular part of C is used.
5656
*> \endverbatim
5757
*
5858
*> \param[in] TRANSA
@@ -154,7 +154,7 @@
154154
*> Before entry, the leading n by n part of the array C must
155155
*> contain the matrix C, except when beta is zero, in which
156156
*> case C need not be set on entry.
157-
*> On exit, the upper or lower trinangular part of the matrix
157+
*> On exit, the upper or lower triangular part of the matrix
158158
*> C is overwritten by the n by n matrix
159159
*> ( alpha*op( A )*op( B ) + beta*C ).
160160
*> \endverbatim

0 commit comments

Comments
 (0)