Skip to content

Commit e393844

Browse files
committed
Merge branch 'develop'
2 parents a8f9b6a + c543714 commit e393844

3 files changed

Lines changed: 10 additions & 2 deletions

File tree

CONTRIBUTORS.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,14 @@
1515
* Build LAPACKE: C interface to LAPACK
1616
* Improve the windows build.
1717

18+
## Previous Developers
19+
20+
* Chen Shaohu <huhumartinwar@gmail.com>
21+
* Optimize GEMV on the Loongson 3A processor.
22+
23+
* Luo Wen
24+
* Intern. Test Level-2 BLAS.
25+
1826
## Contributors
1927

2028
In chronological order:

f_check

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ $compiler = "" if $compiler eq "f77";
2424

2525
if ($compiler eq "") {
2626

27-
@lists = ("f77", "g77", "g95", "gfortran", "frt", "fort", "openf90", "openf95",
27+
@lists = ("g77", "g95", "gfortran", "frt", "fort", "openf90", "openf95",
2828
"sunf77", "sunf90", "sunf95",
2929
"xlf95", "xlf90", "xlf",
3030
"ppuf77", "ppuf95", "ppuf90", "ppuxlf",

interface/trtri.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ int NAME(char *UPLO, char *DIAG, blasint *N, FLOAT *a, blasint *ldA, blasint *In
138138
// call dtrtri from lapack for a walk around.
139139
if(uplo==0){
140140
dtrtri_lapack_(UPLO, DIAG, N, a, ldA, Info);
141-
return;
141+
return 0;
142142
}
143143
#endif
144144

0 commit comments

Comments
 (0)