Skip to content

Commit ea4787c

Browse files
committed
added complex precision truncated QR and testing for CGEQP3RK, CLAQP2RK, CLAQP3RK
1 parent 6a15917 commit ea4787c

File tree

14 files changed

+3733
-38
lines changed

14 files changed

+3733
-38
lines changed

SRC/CMakeLists.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,8 @@ set(CLASRC
177177
cgbtf2.f cgbtrf.f cgbtrs.f cgebak.f cgebal.f cgebd2.f cgebrd.f
178178
cgecon.f cgeequ.f cgees.f cgeesx.f cgeev.f cgeevx.f
179179
cgehd2.f cgehrd.f cgelq2.f cgelqf.f
180-
cgels.f cgelst.f cgelsd.f cgelss.f cgelsy.f cgeql2.f cgeqlf.f cgeqp3.f
180+
cgels.f cgelst.f cgelsd.f cgelss.f cgelsy.f cgeql2.f cgeqlf.f
181+
cgeqp3.f cgeqp3rk.f
181182
cgeqr2.f cgeqr2p.f cgeqrf.f cgeqrfp.f cgerfs.f cgerq2.f cgerqf.f
182183
cgesc2.f cgesdd.f cgesv.f cgesvd.f cgesvdx.f
183184
cgesvj.f cgejsv.f cgsvj0.f cgsvj1.f
@@ -213,7 +214,7 @@ set(CLASRC
213214
clanhb.f clanhe.f
214215
clanhp.f clanhs.f clanht.f clansb.f clansp.f clansy.f clantb.f
215216
clantp.f clantr.f clapll.f clapmt.f clarcm.f claqgb.f claqge.f
216-
claqhb.f claqhe.f claqhp.f claqp2.f claqps.f claqsb.f
217+
claqhb.f claqhe.f claqhp.f claqp2.f claqps.f claqp2rk.f claqp3rk.f claqsb.f
217218
claqr0.f claqr1.f claqr2.f claqr3.f claqr4.f claqr5.f
218219
claqsp.f claqsy.f clar1v.f clar2v.f ilaclr.f ilaclc.f
219220
clarf.f clarfb.f clarfb_gett.f clarfg.f clarfgp.f clarft.f

SRC/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -211,8 +211,8 @@ CLASRC = \
211211
cgbtf2.o cgbtrf.o cgbtrs.o cgebak.o cgebal.o cgebd2.o cgebrd.o \
212212
cgecon.o cgeequ.o cgees.o cgeesx.o cgeev.o cgeevx.o \
213213
cgehd2.o cgehrd.o cgelq2.o cgelqf.o \
214-
cgels.o cgelst.o cgelsd.o cgelss.o cgelsy.o cgeql2.o cgeqlf.o cgeqp3.o \
215-
cgeqr2.o cgeqr2p.o cgeqrf.o cgeqrfp.o cgerfs.o \
214+
cgels.o cgelst.o cgelsd.o cgelss.o cgelsy.o cgeql2.o cgeqlf.o \
215+
cgeqp3.o cgeqp3rk.o cgeqr2.o cgeqr2p.o cgeqrf.o cgeqrfp.o cgerfs.o \
216216
cgerq2.o cgerqf.o cgesc2.o cgesdd.o cgesv.o cgesvd.o cgesvdx.o \
217217
cgesvj.o cgejsv.o cgsvj0.o cgsvj1.o \
218218
cgesvx.o cgetc2.o cgetf2.o cgetri.o \
@@ -246,7 +246,7 @@ CLASRC = \
246246
clanhb.o clanhe.o \
247247
clanhp.o clanhs.o clanht.o clansb.o clansp.o clansy.o clantb.o \
248248
clantp.o clantr.o clapll.o clapmt.o clarcm.o claqgb.o claqge.o \
249-
claqhb.o claqhe.o claqhp.o claqp2.o claqps.o claqsb.o \
249+
claqhb.o claqhe.o claqhp.o claqp2.o claqps.o claqp2rk.o claqp3rk.o claqsb.o \
250250
claqr0.o claqr1.o claqr2.o claqr3.o claqr4.o claqr5.o \
251251
claqsp.o claqsy.o clar1v.o clar2v.o ilaclr.o ilaclc.o \
252252
clarf.o clarfb.o clarfb_gett.o clarfg.o clarft.o clarfgp.o \

0 commit comments

Comments
 (0)