Skip to content

Commit ffb4666

Browse files
Merge branch 'master' into try-xLARTG-from-Edward-Anderson
2 parents f1550e0 + 6728b6d commit ffb4666

19 files changed

+825
-429
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: 'Type: Bug'
6+
assignees: ''
7+
8+
---
9+
**Description**
10+
11+
**Checklist**
12+
13+
- [ ] I've included a minimal example to reproduce the issue
14+
- [ ] I'd be willing to make a PR to solve this issue
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
name: Feature request
3+
about: Request a feature
4+
title: ''
5+
labels: 'Type: Feature request'
6+
assignees: ''
7+
8+
---

.github/ISSUE_TEMPLATE/help_wanted.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
name: Question
3+
about: Ask a question related to the use of the package
4+
title: ''
5+
labels: 'Type: Question'
6+
assignees: ''
7+
8+
---

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
**Description**
2+
3+
**Checklist**
4+
5+
- [ ] The documententation has been updated
6+
- [ ] If the PR solves a specific issue, it is set to be closed on merge.

.travis.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,12 @@ matrix:
2727
name: "CMake Coverage Test on Linux"
2828
env: CMAKE_BUILD_TYPE=Coverage
2929
- os: osx
30-
name: "CMake Release Test on Mac OS X"
31-
osx_image: xcode10.3
30+
name: "CMake Release Test on macOS Big Sur"
31+
osx_image: xcode12.3
3232
env: CMAKE_BUILD_TYPE=Release
3333
- os: osx
34-
name: "CMake Release Test on OSX Catalina"
35-
osx_image: xcode12.2
36-
env: CMAKE_BUILD_TYPE=Release
37-
- os: osx
38-
osx_image: xcode10.3
39-
name: "Makefile Test on Mac OS X"
34+
osx_image: xcode12.3
35+
name: "Makefile Test on on macOS Big Sur"
4036
script:
4137
- rm -f make.inc
4238
- cp make.inc.example make.inc
@@ -63,6 +59,7 @@ script:
6359
-DLAPACKE:BOOL=ON
6460
-DBUILD_TESTING=ON
6561
-DLAPACKE_WITH_TMG:BOOL=ON
62+
-DBUILD_SHARED_LIBS=BOOL:ON
6663
-DCMAKE_Fortran_FLAGS:STRING="-fimplicit-none -frecursive -fcheck=all"
6764
-DCMAKE_C_FLAGS=${CMAKE_C_FLAGS}
6865
${SRC_DIR}

BLAS/SRC/CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,16 @@
2929
# Level 1 BLAS
3030
#---------------------------------------------------------
3131
set(SBLAS1 isamax.f sasum.f saxpy.f scopy.f sdot.f snrm2.f
32-
srot.f srotg.f sscal.f sswap.f sdsdot.f srotmg.f srotm.f)
32+
srot.f srotg.f90 sscal.f sswap.f sdsdot.f srotmg.f srotm.f)
3333

3434
set(CBLAS1 scabs1.f scasum.f scnrm2.f icamax.f caxpy.f ccopy.f
35-
cdotc.f cdotu.f csscal.f crotg.f cscal.f cswap.f csrot.f)
35+
cdotc.f cdotu.f csscal.f crotg.f90 cscal.f cswap.f csrot.f)
3636

3737
set(DBLAS1 idamax.f dasum.f daxpy.f dcopy.f ddot.f dnrm2.f
38-
drot.f drotg.f dscal.f dsdot.f dswap.f drotmg.f drotm.f)
38+
drot.f drotg.f90 dscal.f dsdot.f dswap.f drotmg.f drotm.f)
3939

4040
set(ZBLAS1 dcabs1.f dzasum.f dznrm2.f izamax.f zaxpy.f zcopy.f
41-
zdotc.f zdotu.f zdscal.f zrotg.f zscal.f zswap.f zdrot.f)
41+
zdotc.f zdotu.f zdscal.f zrotg.f90 zscal.f zswap.f zdrot.f)
4242

4343
set(CB1AUX isamax.f sasum.f saxpy.f scopy.f snrm2.f sscal.f)
4444

BLAS/SRC/Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,10 @@
5656
TOPSRCDIR = ../..
5757
include $(TOPSRCDIR)/make.inc
5858

59+
.SUFFIXES: .f90 .o
60+
.f90.o:
61+
$(FC) $(FFLAGS) -c -o $@ $<
62+
5963
.PHONY: all
6064
all: $(BLASLIB)
6165

BLAS/SRC/crotg.f

Lines changed: 0 additions & 94 deletions
This file was deleted.

0 commit comments

Comments
 (0)