Skip to content

Commit 67cec8e

Browse files
authored
Add new LAPACK symbols from the release 3.12.1 (#152)
* Add LAPACK symbols of v3.12.1
1 parent b127bc8 commit 67cec8e

File tree

4 files changed

+2078
-2053
lines changed

4 files changed

+2078
-2053
lines changed

.cirrus.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ task:
22
matrix:
33
- name: FreeBSD
44
freebsd_instance:
5-
image: freebsd-13-2-release-amd64
5+
image_family: freebsd-14-2
66
env:
77
matrix:
88
- JULIA_VERSION: 1

ext/gensymbol/gensymbol

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -894,6 +894,23 @@ zpotri,
894894
ztrsyl3,
895895
zrscl,
896896
);
897+
#functions added for lapack-3.12.1
898+
@lapackobjs2c = (@lapackobjs2c,
899+
clarf1f,
900+
clarf1l,
901+
);
902+
@lapackobjs2d = (@lapackobjs2d,
903+
dlarf1f,
904+
dlarf1l,
905+
);
906+
@lapackobjs2s = (@lapackobjs2s,
907+
slarf1f,
908+
slarf1l,
909+
);
910+
@lapackobjs2z = (@lapackobjs2z,
911+
zlarf1f,
912+
zlarf1l,
913+
);
897914

898915
@lapack_extendedprecision_objs = (
899916
zposvxx, clagge, clatms, chesvxx, cposvxx, cgesvxx, ssyrfssx, csyrfsx,

src/Make.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ ifneq (,$(findstring MINGW,$(OS))$(findstring MSYS,$(OS))$(findstring CYGWIN,$(O
2424
endif
2525

2626
LBT_SOVERSION_MAJOR := 5
27-
LBT_SOVERSION_MINOR := 12
27+
LBT_SOVERSION_MINOR := 13
2828
LBT_SOVERSION_PATCH := 0
2929

3030
ifeq ($(OS), WINNT)

0 commit comments

Comments
 (0)