ruby-lapack 1.7 → 1.7.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Rakefile +1 -1
- data/ext/cbbcsd.c +283 -0
- data/ext/cbdsqr.c +182 -0
- data/ext/cgbbrd.c +157 -0
- data/ext/cgbcon.c +98 -0
- data/ext/cgbequ.c +98 -0
- data/ext/cgbequb.c +96 -0
- data/ext/cgbrfs.c +161 -0
- data/ext/cgbrfsx.c +249 -0
- data/ext/cgbsv.c +115 -0
- data/ext/cgbsvx.c +286 -0
- data/ext/cgbsvxx.c +289 -0
- data/ext/cgbtf2.c +93 -0
- data/ext/cgbtrf.c +93 -0
- data/ext/cgbtrs.c +111 -0
- data/ext/cgebak.c +101 -0
- data/ext/cgebal.c +91 -0
- data/ext/cgebd2.c +112 -0
- data/ext/cgebrd.c +127 -0
- data/ext/cgecon.c +78 -0
- data/ext/cgeequ.c +88 -0
- data/ext/cgeequb.c +88 -0
- data/ext/cgees.c +142 -0
- data/ext/cgeesx.c +152 -0
- data/ext/cgeev.c +132 -0
- data/ext/cgeevx.c +173 -0
- data/ext/cgegs.c +166 -0
- data/ext/cgegv.c +171 -0
- data/ext/cgehd2.c +92 -0
- data/ext/cgehrd.c +107 -0
- data/ext/cgelq2.c +86 -0
- data/ext/cgelqf.c +103 -0
- data/ext/cgels.c +137 -0
- data/ext/cgelsd.c +154 -0
- data/ext/cgelss.c +151 -0
- data/ext/cgelsx.c +139 -0
- data/ext/cgelsy.c +166 -0
- data/ext/cgeql2.c +88 -0
- data/ext/cgeqlf.c +103 -0
- data/ext/cgeqp3.c +129 -0
- data/ext/cgeqpf.c +114 -0
- data/ext/cgeqr2.c +88 -0
- data/ext/cgeqr2p.c +88 -0
- data/ext/cgeqrf.c +103 -0
- data/ext/cgeqrfp.c +103 -0
- data/ext/cgerfs.c +153 -0
- data/ext/cgerfsx.c +219 -0
- data/ext/cgerq2.c +86 -0
- data/ext/cgerqf.c +103 -0
- data/ext/cgesc2.c +108 -0
- data/ext/cgesdd.c +135 -0
- data/ext/cgesv.c +107 -0
- data/ext/cgesvd.c +146 -0
- data/ext/cgesvx.c +278 -0
- data/ext/cgesvxx.c +281 -0
- data/ext/cgetc2.c +89 -0
- data/ext/cgetf2.c +85 -0
- data/ext/cgetrf.c +85 -0
- data/ext/cgetri.c +103 -0
- data/ext/cgetrs.c +103 -0
- data/ext/cggbak.c +113 -0
- data/ext/cggbal.c +128 -0
- data/ext/cgges.c +192 -0
- data/ext/cggesx.c +230 -0
- data/ext/cggev.c +171 -0
- data/ext/cggevx.c +226 -0
- data/ext/cggglm.c +156 -0
- data/ext/cgghrd.c +167 -0
- data/ext/cgglse.c +171 -0
- data/ext/cggqrf.c +137 -0
- data/ext/cggrqf.c +141 -0
- data/ext/cggsvd.c +184 -0
- data/ext/cggsvp.c +174 -0
- data/ext/cgtcon.c +121 -0
- data/ext/cgtrfs.c +209 -0
- data/ext/cgtsv.c +142 -0
- data/ext/cgtsvx.c +256 -0
- data/ext/cgttrf.c +132 -0
- data/ext/cgttrs.c +137 -0
- data/ext/cgtts2.c +134 -0
- data/ext/chbev.c +110 -0
- data/ext/chbevd.c +158 -0
- data/ext/chbevx.c +160 -0
- data/ext/chbgst.c +120 -0
- data/ext/chbgv.c +140 -0
- data/ext/chbgvd.c +188 -0
- data/ext/chbgvx.c +189 -0
- data/ext/chbtrd.c +130 -0
- data/ext/checon.c +87 -0
- data/ext/cheequb.c +82 -0
- data/ext/cheev.c +110 -0
- data/ext/cheevd.c +143 -0
- data/ext/cheevr.c +190 -0
- data/ext/cheevx.c +160 -0
- data/ext/chegs2.c +95 -0
- data/ext/chegst.c +95 -0
- data/ext/chegv.c +140 -0
- data/ext/chegvd.c +173 -0
- data/ext/chegvx.c +190 -0
- data/ext/cherfs.c +153 -0
- data/ext/cherfsx.c +218 -0
- data/ext/chesv.c +123 -0
- data/ext/chesvx.c +183 -0
- data/ext/chesvxx.c +258 -0
- data/ext/chetd2.c +101 -0
- data/ext/chetf2.c +85 -0
- data/ext/chetrd.c +113 -0
- data/ext/chetrf.c +97 -0
- data/ext/chetri.c +92 -0
- data/ext/chetrs.c +103 -0
- data/ext/chetrs2.c +106 -0
- data/ext/chfrk.c +109 -0
- data/ext/chgeqz.c +208 -0
- data/ext/chla_transtype.c +51 -0
- data/ext/chpcon.c +85 -0
- data/ext/chpev.c +105 -0
- data/ext/chpevd.c +153 -0
- data/ext/chpevx.c +144 -0
- data/ext/chpgst.c +94 -0
- data/ext/chpgv.c +132 -0
- data/ext/chpgvd.c +170 -0
- data/ext/chpgvx.c +170 -0
- data/ext/chprfs.c +149 -0
- data/ext/chpsv.c +110 -0
- data/ext/chpsvx.c +163 -0
- data/ext/chptrd.c +100 -0
- data/ext/chptrf.c +84 -0
- data/ext/chptri.c +89 -0
- data/ext/chptrs.c +101 -0
- data/ext/chsein.c +185 -0
- data/ext/chseqr.c +145 -0
- data/ext/cla_gbamv.c +127 -0
- data/ext/cla_gbrcond_c.c +142 -0
- data/ext/cla_gbrcond_x.c +138 -0
- data/ext/cla_gbrfsx_extended.c +295 -0
- data/ext/cla_gbrpvgrw.c +87 -0
- data/ext/cla_geamv.c +117 -0
- data/ext/cla_gercond_c.c +134 -0
- data/ext/cla_gercond_x.c +130 -0
- data/ext/cla_gerfsx_extended.c +281 -0
- data/ext/cla_heamv.c +116 -0
- data/ext/cla_hercond_c.c +134 -0
- data/ext/cla_hercond_x.c +130 -0
- data/ext/cla_herfsx_extended.c +283 -0
- data/ext/cla_herpvgrw.c +107 -0
- data/ext/cla_lin_berr.c +84 -0
- data/ext/cla_porcond_c.c +122 -0
- data/ext/cla_porcond_x.c +118 -0
- data/ext/cla_porfsx_extended.c +271 -0
- data/ext/cla_porpvgrw.c +95 -0
- data/ext/cla_rpvgrw.c +79 -0
- data/ext/cla_syamv.c +115 -0
- data/ext/cla_syrcond_c.c +134 -0
- data/ext/cla_syrcond_x.c +130 -0
- data/ext/cla_syrfsx_extended.c +283 -0
- data/ext/cla_syrpvgrw.c +107 -0
- data/ext/cla_wwaddw.c +102 -0
- data/ext/clabrd.c +132 -0
- data/ext/clacgv.c +75 -0
- data/ext/clacn2.c +103 -0
- data/ext/clacon.c +80 -0
- data/ext/clacp2.c +77 -0
- data/ext/clacpy.c +77 -0
- data/ext/clacrm.c +90 -0
- data/ext/clacrt.c +108 -0
- data/ext/cladiv.c +57 -0
- data/ext/claed0.c +134 -0
- data/ext/claed7.c +247 -0
- data/ext/claed8.c +198 -0
- data/ext/claein.c +113 -0
- data/ext/claesy.c +74 -0
- data/ext/claev2.c +71 -0
- data/ext/clag2z.c +76 -0
- data/ext/clags2.c +92 -0
- data/ext/clagtm.c +132 -0
- data/ext/clahef.c +97 -0
- data/ext/clahqr.c +135 -0
- data/ext/clahr2.c +112 -0
- data/ext/clahrd.c +112 -0
- data/ext/claic1.c +90 -0
- data/ext/clals0.c +201 -0
- data/ext/clalsa.c +270 -0
- data/ext/clalsd.c +145 -0
- data/ext/clangb.c +76 -0
- data/ext/clange.c +74 -0
- data/ext/clangt.c +87 -0
- data/ext/clanhb.c +78 -0
- data/ext/clanhe.c +72 -0
- data/ext/clanhf.c +80 -0
- data/ext/clanhp.c +74 -0
- data/ext/clanhs.c +70 -0
- data/ext/clanht.c +75 -0
- data/ext/clansb.c +78 -0
- data/ext/clansp.c +74 -0
- data/ext/clansy.c +72 -0
- data/ext/clantb.c +80 -0
- data/ext/clantp.c +80 -0
- data/ext/clantr.c +82 -0
- data/ext/clapll.c +105 -0
- data/ext/clapmr.c +97 -0
- data/ext/clapmt.c +101 -0
- data/ext/claqgb.c +117 -0
- data/ext/claqge.c +109 -0
- data/ext/claqhb.c +97 -0
- data/ext/claqhe.c +97 -0
- data/ext/claqhp.c +94 -0
- data/ext/claqp2.c +158 -0
- data/ext/claqps.c +208 -0
- data/ext/claqr0.c +145 -0
- data/ext/claqr1.c +76 -0
- data/ext/claqr2.c +174 -0
- data/ext/claqr3.c +174 -0
- data/ext/claqr4.c +145 -0
- data/ext/claqr5.c +179 -0
- data/ext/claqsb.c +101 -0
- data/ext/claqsp.c +94 -0
- data/ext/claqsy.c +97 -0
- data/ext/clar1v.c +173 -0
- data/ext/clar2v.c +149 -0
- data/ext/clarcm.c +86 -0
- data/ext/clarf.c +102 -0
- data/ext/clarfb.c +123 -0
- data/ext/clarfg.c +84 -0
- data/ext/clarfgp.c +84 -0
- data/ext/clarft.c +105 -0
- data/ext/clarfx.c +94 -0
- data/ext/clargv.c +114 -0
- data/ext/clarnv.c +83 -0
- data/ext/clarrv.c +271 -0
- data/ext/clarscl2.c +82 -0
- data/ext/clartg.c +63 -0
- data/ext/clartv.c +130 -0
- data/ext/clarz.c +106 -0
- data/ext/clarzb.c +127 -0
- data/ext/clarzt.c +105 -0
- data/ext/clascl.c +97 -0
- data/ext/clascl2.c +82 -0
- data/ext/claset.c +88 -0
- data/ext/clasr.c +110 -0
- data/ext/classq.c +70 -0
- data/ext/claswp.c +94 -0
- data/ext/clasyf.c +97 -0
- data/ext/clatbs.c +130 -0
- data/ext/clatdf.c +119 -0
- data/ext/clatps.c +124 -0
- data/ext/clatrd.c +105 -0
- data/ext/clatrs.c +126 -0
- data/ext/clatrz.c +87 -0
- data/ext/clatzm.c +132 -0
- data/ext/clauu2.c +77 -0
- data/ext/clauum.c +77 -0
- data/ext/cpbcon.c +82 -0
- data/ext/cpbequ.c +83 -0
- data/ext/cpbrfs.c +145 -0
- data/ext/cpbstf.c +81 -0
- data/ext/cpbsv.c +107 -0
- data/ext/cpbsvx.c +201 -0
- data/ext/cpbtf2.c +81 -0
- data/ext/cpbtrf.c +81 -0
- data/ext/cpbtrs.c +95 -0
- data/ext/cpftrf.c +82 -0
- data/ext/cpftri.c +82 -0
- data/ext/cpftrs.c +97 -0
- data/ext/cpocon.c +78 -0
- data/ext/cpoequ.c +75 -0
- data/ext/cpoequb.c +75 -0
- data/ext/cporfs.c +141 -0
- data/ext/cporfsx.c +206 -0
- data/ext/cposv.c +103 -0
- data/ext/cposvx.c +197 -0
- data/ext/cposvxx.c +235 -0
- data/ext/cpotf2.c +77 -0
- data/ext/cpotrf.c +77 -0
- data/ext/cpotri.c +77 -0
- data/ext/cpotrs.c +91 -0
- data/ext/cppcon.c +78 -0
- data/ext/cppequ.c +79 -0
- data/ext/cpprfs.c +139 -0
- data/ext/cppsv.c +104 -0
- data/ext/cppsvx.c +191 -0
- data/ext/cpptrf.c +78 -0
- data/ext/cpptri.c +78 -0
- data/ext/cpptrs.c +93 -0
- data/ext/cpstf2.c +95 -0
- data/ext/cpstrf.c +95 -0
- data/ext/cptcon.c +81 -0
- data/ext/cpteqr.c +126 -0
- data/ext/cptrfs.c +161 -0
- data/ext/cptsv.c +119 -0
- data/ext/cptsvx.c +171 -0
- data/ext/cpttrf.c +93 -0
- data/ext/cpttrs.c +101 -0
- data/ext/cptts2.c +98 -0
- data/ext/crot.c +107 -0
- data/ext/cspcon.c +85 -0
- data/ext/cspmv.c +115 -0
- data/ext/cspr.c +96 -0
- data/ext/csprfs.c +149 -0
- data/ext/cspsv.c +110 -0
- data/ext/cspsvx.c +163 -0
- data/ext/csptrf.c +84 -0
- data/ext/csptri.c +89 -0
- data/ext/csptrs.c +101 -0
- data/ext/csrscl.c +79 -0
- data/ext/cstedc.c +177 -0
- data/ext/cstegr.c +188 -0
- data/ext/cstein.c +134 -0
- data/ext/cstemr.c +193 -0
- data/ext/csteqr.c +126 -0
- data/ext/csycon.c +87 -0
- data/ext/csyconv.c +84 -0
- data/ext/csyequb.c +82 -0
- data/ext/csymv.c +115 -0
- data/ext/csyr.c +95 -0
- data/ext/csyrfs.c +153 -0
- data/ext/csyrfsx.c +218 -0
- data/ext/csysv.c +129 -0
- data/ext/csysvx.c +183 -0
- data/ext/csysvxx.c +258 -0
- data/ext/csyswapr.c +82 -0
- data/ext/csytf2.c +85 -0
- data/ext/csytrf.c +97 -0
- data/ext/csytri.c +92 -0
- data/ext/csytri2.c +108 -0
- data/ext/csytri2x.c +96 -0
- data/ext/csytrs.c +103 -0
- data/ext/csytrs2.c +106 -0
- data/ext/ctbcon.c +86 -0
- data/ext/ctbrfs.c +127 -0
- data/ext/ctbtrs.c +103 -0
- data/ext/ctfsm.c +111 -0
- data/ext/ctftri.c +86 -0
- data/ext/ctfttp.c +79 -0
- data/ext/ctfttr.c +80 -0
- data/ext/ctgevc.c +156 -0
- data/ext/ctgex2.c +171 -0
- data/ext/ctgexc.c +172 -0
- data/ext/ctgsen.c +244 -0
- data/ext/ctgsja.c +227 -0
- data/ext/ctgsna.c +164 -0
- data/ext/ctgsy2.c +176 -0
- data/ext/ctgsyl.c +190 -0
- data/ext/ctpcon.c +82 -0
- data/ext/ctprfs.c +123 -0
- data/ext/ctptri.c +82 -0
- data/ext/ctptrs.c +101 -0
- data/ext/ctpttf.c +79 -0
- data/ext/ctpttr.c +76 -0
- data/ext/ctrcon.c +82 -0
- data/ext/ctrevc.c +154 -0
- data/ext/ctrexc.c +111 -0
- data/ext/ctrrfs.c +123 -0
- data/ext/ctrsen.c +154 -0
- data/ext/ctrsna.c +137 -0
- data/ext/ctrsyl.c +116 -0
- data/ext/ctrti2.c +81 -0
- data/ext/ctrtri.c +81 -0
- data/ext/ctrtrs.c +99 -0
- data/ext/ctrttf.c +77 -0
- data/ext/ctrttp.c +73 -0
- data/ext/ctzrqf.c +83 -0
- data/ext/ctzrzf.c +101 -0
- data/ext/cunbdb.c +232 -0
- data/ext/cuncsd.c +204 -0
- data/ext/cung2l.c +92 -0
- data/ext/cung2r.c +92 -0
- data/ext/cungbr.c +115 -0
- data/ext/cunghr.c +111 -0
- data/ext/cungl2.c +90 -0
- data/ext/cunglq.c +107 -0
- data/ext/cungql.c +107 -0
- data/ext/cungqr.c +107 -0
- data/ext/cungr2.c +90 -0
- data/ext/cungrq.c +107 -0
- data/ext/cungtr.c +107 -0
- data/ext/cunm2l.c +114 -0
- data/ext/cunm2r.c +114 -0
- data/ext/cunmbr.c +139 -0
- data/ext/cunmhr.c +133 -0
- data/ext/cunml2.c +110 -0
- data/ext/cunmlq.c +125 -0
- data/ext/cunmql.c +129 -0
- data/ext/cunmqr.c +129 -0
- data/ext/cunmr2.c +110 -0
- data/ext/cunmr3.c +114 -0
- data/ext/cunmrq.c +125 -0
- data/ext/cunmrz.c +129 -0
- data/ext/cunmtr.c +129 -0
- data/ext/cupgtr.c +91 -0
- data/ext/cupmtr.c +116 -0
- data/ext/dbbcsd.c +287 -0
- data/ext/dbdsdc.c +151 -0
- data/ext/dbdsqr.c +182 -0
- data/ext/ddisna.c +75 -0
- data/ext/dgbbrd.c +154 -0
- data/ext/dgbcon.c +98 -0
- data/ext/dgbequ.c +98 -0
- data/ext/dgbequb.c +96 -0
- data/ext/dgbrfs.c +161 -0
- data/ext/dgbrfsx.c +249 -0
- data/ext/dgbsv.c +115 -0
- data/ext/dgbsvx.c +286 -0
- data/ext/dgbsvxx.c +289 -0
- data/ext/dgbtf2.c +93 -0
- data/ext/dgbtrf.c +93 -0
- data/ext/dgbtrs.c +111 -0
- data/ext/dgebak.c +101 -0
- data/ext/dgebal.c +91 -0
- data/ext/dgebd2.c +112 -0
- data/ext/dgebrd.c +127 -0
- data/ext/dgecon.c +78 -0
- data/ext/dgeequ.c +88 -0
- data/ext/dgeequb.c +88 -0
- data/ext/dgees.c +148 -0
- data/ext/dgeesx.c +170 -0
- data/ext/dgeev.c +137 -0
- data/ext/dgeevx.c +181 -0
- data/ext/dgegs.c +171 -0
- data/ext/dgegv.c +171 -0
- data/ext/dgehd2.c +92 -0
- data/ext/dgehrd.c +107 -0
- data/ext/dgejsv.c +159 -0
- data/ext/dgelq2.c +86 -0
- data/ext/dgelqf.c +103 -0
- data/ext/dgels.c +137 -0
- data/ext/dgelsd.c +149 -0
- data/ext/dgelss.c +148 -0
- data/ext/dgelsx.c +136 -0
- data/ext/dgelsy.c +163 -0
- data/ext/dgeql2.c +88 -0
- data/ext/dgeqlf.c +103 -0
- data/ext/dgeqp3.c +126 -0
- data/ext/dgeqpf.c +111 -0
- data/ext/dgeqr2.c +88 -0
- data/ext/dgeqr2p.c +88 -0
- data/ext/dgeqrf.c +103 -0
- data/ext/dgeqrfp.c +103 -0
- data/ext/dgerfs.c +153 -0
- data/ext/dgerfsx.c +219 -0
- data/ext/dgerq2.c +86 -0
- data/ext/dgerqf.c +103 -0
- data/ext/dgesc2.c +108 -0
- data/ext/dgesdd.c +132 -0
- data/ext/dgesv.c +107 -0
- data/ext/dgesvd.c +143 -0
- data/ext/dgesvj.c +156 -0
- data/ext/dgesvx.c +278 -0
- data/ext/dgesvxx.c +281 -0
- data/ext/dgetc2.c +89 -0
- data/ext/dgetf2.c +85 -0
- data/ext/dgetrf.c +85 -0
- data/ext/dgetri.c +103 -0
- data/ext/dgetrs.c +103 -0
- data/ext/dggbak.c +113 -0
- data/ext/dggbal.c +128 -0
- data/ext/dgges.c +198 -0
- data/ext/dggesx.c +231 -0
- data/ext/dggev.c +171 -0
- data/ext/dggevx.c +229 -0
- data/ext/dggglm.c +156 -0
- data/ext/dgghrd.c +167 -0
- data/ext/dgglse.c +171 -0
- data/ext/dggqrf.c +137 -0
- data/ext/dggrqf.c +141 -0
- data/ext/dggsvd.c +181 -0
- data/ext/dggsvp.c +171 -0
- data/ext/dgsvj0.c +182 -0
- data/ext/dgsvj1.c +186 -0
- data/ext/dgtcon.c +124 -0
- data/ext/dgtrfs.c +209 -0
- data/ext/dgtsv.c +142 -0
- data/ext/dgtsvx.c +256 -0
- data/ext/dgttrf.c +132 -0
- data/ext/dgttrs.c +137 -0
- data/ext/dgtts2.c +134 -0
- data/ext/dhgeqz.c +213 -0
- data/ext/dhsein.c +205 -0
- data/ext/dhseqr.c +153 -0
- data/ext/disnan.c +51 -0
- data/ext/dla_gbamv.c +129 -0
- data/ext/dla_gbrcond.c +142 -0
- data/ext/dla_gbrfsx_extended.c +293 -0
- data/ext/dla_gbrpvgrw.c +87 -0
- data/ext/dla_geamv.c +119 -0
- data/ext/dla_gercond.c +134 -0
- data/ext/dla_gerfsx_extended.c +281 -0
- data/ext/dla_lin_berr.c +84 -0
- data/ext/dla_porcond.c +122 -0
- data/ext/dla_porfsx_extended.c +271 -0
- data/ext/dla_porpvgrw.c +95 -0
- data/ext/dla_rpvgrw.c +79 -0
- data/ext/dla_syamv.c +113 -0
- data/ext/dla_syrcond.c +134 -0
- data/ext/dla_syrfsx_extended.c +283 -0
- data/ext/dla_syrpvgrw.c +107 -0
- data/ext/dla_wwaddw.c +102 -0
- data/ext/dlabad.c +54 -0
- data/ext/dlabrd.c +132 -0
- data/ext/dlacn2.c +106 -0
- data/ext/dlacon.c +83 -0
- data/ext/dlacpy.c +77 -0
- data/ext/dladiv.c +66 -0
- data/ext/dlae2.c +62 -0
- data/ext/dlaebz.c +218 -0
- data/ext/dlaed0.c +127 -0
- data/ext/dlaed1.c +133 -0
- data/ext/dlaed2.c +189 -0
- data/ext/dlaed3.c +161 -0
- data/ext/dlaed4.c +90 -0
- data/ext/dlaed5.c +87 -0
- data/ext/dlaed6.c +90 -0
- data/ext/dlaed7.c +248 -0
- data/ext/dlaed8.c +206 -0
- data/ext/dlaed9.c +111 -0
- data/ext/dlaeda.c +160 -0
- data/ext/dlaein.c +143 -0
- data/ext/dlaev2.c +68 -0
- data/ext/dlaexc.c +118 -0
- data/ext/dlag2.c +91 -0
- data/ext/dlag2s.c +76 -0
- data/ext/dlags2.c +90 -0
- data/ext/dlagtf.c +140 -0
- data/ext/dlagtm.c +132 -0
- data/ext/dlagts.c +139 -0
- data/ext/dlagv2.c +132 -0
- data/ext/dlahqr.c +143 -0
- data/ext/dlahr2.c +112 -0
- data/ext/dlahrd.c +112 -0
- data/ext/dlaic1.c +89 -0
- data/ext/dlaln2.c +120 -0
- data/ext/dlals0.c +201 -0
- data/ext/dlalsa.c +270 -0
- data/ext/dlalsd.c +142 -0
- data/ext/dlamrg.c +80 -0
- data/ext/dlaneg.c +83 -0
- data/ext/dlangb.c +78 -0
- data/ext/dlange.c +74 -0
- data/ext/dlangt.c +87 -0
- data/ext/dlanhs.c +70 -0
- data/ext/dlansb.c +78 -0
- data/ext/dlansf.c +80 -0
- data/ext/dlansp.c +76 -0
- data/ext/dlanst.c +75 -0
- data/ext/dlansy.c +74 -0
- data/ext/dlantb.c +82 -0
- data/ext/dlantp.c +80 -0
- data/ext/dlantr.c +82 -0
- data/ext/dlanv2.c +82 -0
- data/ext/dlapll.c +105 -0
- data/ext/dlapmr.c +97 -0
- data/ext/dlapmt.c +101 -0
- data/ext/dlapy2.c +55 -0
- data/ext/dlapy3.c +59 -0
- data/ext/dlaqgb.c +117 -0
- data/ext/dlaqge.c +109 -0
- data/ext/dlaqp2.c +158 -0
- data/ext/dlaqps.c +208 -0
- data/ext/dlaqr0.c +153 -0
- data/ext/dlaqr1.c +82 -0
- data/ext/dlaqr2.c +182 -0
- data/ext/dlaqr3.c +182 -0
- data/ext/dlaqr4.c +153 -0
- data/ext/dlaqr5.c +200 -0
- data/ext/dlaqsb.c +101 -0
- data/ext/dlaqsp.c +94 -0
- data/ext/dlaqsy.c +97 -0
- data/ext/dlaqtr.c +114 -0
- data/ext/dlar1v.c +173 -0
- data/ext/dlar2v.c +149 -0
- data/ext/dlarf.c +101 -0
- data/ext/dlarfb.c +123 -0
- data/ext/dlarfg.c +83 -0
- data/ext/dlarfgp.c +83 -0
- data/ext/dlarft.c +105 -0
- data/ext/dlarfx.c +93 -0
- data/ext/dlargv.c +114 -0
- data/ext/dlarnv.c +83 -0
- data/ext/dlarra.c +124 -0
- data/ext/dlarrb.c +178 -0
- data/ext/dlarrc.c +96 -0
- data/ext/dlarrd.c +190 -0
- data/ext/dlarre.c +221 -0
- data/ext/dlarrf.c +176 -0
- data/ext/dlarrj.c +147 -0
- data/ext/dlarrk.c +97 -0
- data/ext/dlarrr.c +82 -0
- data/ext/dlarrv.c +271 -0
- data/ext/dlarscl2.c +82 -0
- data/ext/dlartg.c +61 -0
- data/ext/dlartgp.c +61 -0
- data/ext/dlartgs.c +62 -0
- data/ext/dlartv.c +130 -0
- data/ext/dlaruv.c +79 -0
- data/ext/dlarz.c +105 -0
- data/ext/dlarzb.c +127 -0
- data/ext/dlarzt.c +105 -0
- data/ext/dlas2.c +62 -0
- data/ext/dlascl.c +97 -0
- data/ext/dlascl2.c +82 -0
- data/ext/dlasd0.c +120 -0
- data/ext/dlasd1.c +162 -0
- data/ext/dlasd2.c +228 -0
- data/ext/dlasd3.c +202 -0
- data/ext/dlasd4.c +93 -0
- data/ext/dlasd5.c +90 -0
- data/ext/dlasd6.c +236 -0
- data/ext/dlasd7.c +225 -0
- data/ext/dlasd8.c +173 -0
- data/ext/dlasda.c +221 -0
- data/ext/dlasdq.c +186 -0
- data/ext/dlasdt.c +82 -0
- data/ext/dlaset.c +86 -0
- data/ext/dlasq1.c +96 -0
- data/ext/dlasq2.c +74 -0
- data/ext/dlasq3.c +138 -0
- data/ext/dlasq4.c +107 -0
- data/ext/dlasq5.c +94 -0
- data/ext/dlasq6.c +86 -0
- data/ext/dlasr.c +110 -0
- data/ext/dlasrt.c +74 -0
- data/ext/dlassq.c +70 -0
- data/ext/dlasv2.c +74 -0
- data/ext/dlaswp.c +94 -0
- data/ext/dlasy2.c +126 -0
- data/ext/dlasyf.c +97 -0
- data/ext/dlat2s.c +76 -0
- data/ext/dlatbs.c +130 -0
- data/ext/dlatdf.c +119 -0
- data/ext/dlatps.c +124 -0
- data/ext/dlatrd.c +105 -0
- data/ext/dlatrs.c +126 -0
- data/ext/dlatrz.c +87 -0
- data/ext/dlatzm.c +131 -0
- data/ext/dlauu2.c +77 -0
- data/ext/dlauum.c +77 -0
- data/ext/dopgtr.c +91 -0
- data/ext/dopmtr.c +116 -0
- data/ext/dorbdb.c +232 -0
- data/ext/dorcsd.c +197 -0
- data/ext/dorg2l.c +92 -0
- data/ext/dorg2r.c +92 -0
- data/ext/dorgbr.c +115 -0
- data/ext/dorghr.c +111 -0
- data/ext/dorgl2.c +90 -0
- data/ext/dorglq.c +107 -0
- data/ext/dorgql.c +107 -0
- data/ext/dorgqr.c +107 -0
- data/ext/dorgr2.c +90 -0
- data/ext/dorgrq.c +107 -0
- data/ext/dorgtr.c +107 -0
- data/ext/dorm2l.c +114 -0
- data/ext/dorm2r.c +114 -0
- data/ext/dormbr.c +139 -0
- data/ext/dormhr.c +133 -0
- data/ext/dorml2.c +110 -0
- data/ext/dormlq.c +125 -0
- data/ext/dormql.c +129 -0
- data/ext/dormqr.c +129 -0
- data/ext/dormr2.c +110 -0
- data/ext/dormr3.c +114 -0
- data/ext/dormrq.c +125 -0
- data/ext/dormrz.c +129 -0
- data/ext/dormtr.c +129 -0
- data/ext/dpbcon.c +82 -0
- data/ext/dpbequ.c +83 -0
- data/ext/dpbrfs.c +145 -0
- data/ext/dpbstf.c +81 -0
- data/ext/dpbsv.c +107 -0
- data/ext/dpbsvx.c +201 -0
- data/ext/dpbtf2.c +81 -0
- data/ext/dpbtrf.c +81 -0
- data/ext/dpbtrs.c +95 -0
- data/ext/dpftrf.c +82 -0
- data/ext/dpftri.c +82 -0
- data/ext/dpftrs.c +97 -0
- data/ext/dpocon.c +78 -0
- data/ext/dpoequ.c +75 -0
- data/ext/dpoequb.c +75 -0
- data/ext/dporfs.c +141 -0
- data/ext/dporfsx.c +206 -0
- data/ext/dposv.c +103 -0
- data/ext/dposvx.c +197 -0
- data/ext/dposvxx.c +235 -0
- data/ext/dpotf2.c +77 -0
- data/ext/dpotrf.c +77 -0
- data/ext/dpotri.c +77 -0
- data/ext/dpotrs.c +91 -0
- data/ext/dppcon.c +78 -0
- data/ext/dppequ.c +79 -0
- data/ext/dpprfs.c +139 -0
- data/ext/dppsv.c +104 -0
- data/ext/dppsvx.c +191 -0
- data/ext/dpptrf.c +78 -0
- data/ext/dpptri.c +78 -0
- data/ext/dpptrs.c +93 -0
- data/ext/dpstf2.c +95 -0
- data/ext/dpstrf.c +95 -0
- data/ext/dptcon.c +81 -0
- data/ext/dpteqr.c +126 -0
- data/ext/dptrfs.c +154 -0
- data/ext/dptsv.c +119 -0
- data/ext/dptsvx.c +168 -0
- data/ext/dpttrf.c +93 -0
- data/ext/dpttrs.c +97 -0
- data/ext/dptts2.c +94 -0
- data/ext/drscl.c +79 -0
- data/ext/dsbev.c +107 -0
- data/ext/dsbevd.c +140 -0
- data/ext/dsbevx.c +157 -0
- data/ext/dsbgst.c +117 -0
- data/ext/dsbgv.c +137 -0
- data/ext/dsbgvd.c +170 -0
- data/ext/dsbgvx.c +197 -0
- data/ext/dsbtrd.c +130 -0
- data/ext/dsfrk.c +109 -0
- data/ext/dsgesv.c +115 -0
- data/ext/dspcon.c +88 -0
- data/ext/dspev.c +102 -0
- data/ext/dspevd.c +135 -0
- data/ext/dspevx.c +141 -0
- data/ext/dspgst.c +94 -0
- data/ext/dspgv.c +129 -0
- data/ext/dspgvd.c +162 -0
- data/ext/dspgvx.c +168 -0
- data/ext/dsposv.c +111 -0
- data/ext/dsprfs.c +149 -0
- data/ext/dspsv.c +110 -0
- data/ext/dspsvx.c +163 -0
- data/ext/dsptrd.c +100 -0
- data/ext/dsptrf.c +84 -0
- data/ext/dsptri.c +89 -0
- data/ext/dsptrs.c +101 -0
- data/ext/dstebz.c +135 -0
- data/ext/dstedc.c +159 -0
- data/ext/dstegr.c +188 -0
- data/ext/dstein.c +134 -0
- data/ext/dstemr.c +193 -0
- data/ext/dsteqr.c +126 -0
- data/ext/dsterf.c +93 -0
- data/ext/dstev.c +111 -0
- data/ext/dstevd.c +144 -0
- data/ext/dstevr.c +188 -0
- data/ext/dstevx.c +158 -0
- data/ext/dsycon.c +90 -0
- data/ext/dsyconv.c +84 -0
- data/ext/dsyequb.c +82 -0
- data/ext/dsyev.c +107 -0
- data/ext/dsyevd.c +125 -0
- data/ext/dsyevr.c +172 -0
- data/ext/dsyevx.c +157 -0
- data/ext/dsygs2.c +95 -0
- data/ext/dsygst.c +95 -0
- data/ext/dsygv.c +137 -0
- data/ext/dsygvd.c +155 -0
- data/ext/dsygvx.c +187 -0
- data/ext/dsyrfs.c +153 -0
- data/ext/dsyrfsx.c +218 -0
- data/ext/dsysv.c +129 -0
- data/ext/dsysvx.c +183 -0
- data/ext/dsysvxx.c +258 -0
- data/ext/dsyswapr.c +82 -0
- data/ext/dsytd2.c +101 -0
- data/ext/dsytf2.c +85 -0
- data/ext/dsytrd.c +113 -0
- data/ext/dsytrf.c +97 -0
- data/ext/dsytri.c +92 -0
- data/ext/dsytri2.c +108 -0
- data/ext/dsytri2x.c +96 -0
- data/ext/dsytrs.c +103 -0
- data/ext/dsytrs2.c +106 -0
- data/ext/dtbcon.c +86 -0
- data/ext/dtbrfs.c +127 -0
- data/ext/dtbtrs.c +103 -0
- data/ext/dtfsm.c +110 -0
- data/ext/dtftri.c +86 -0
- data/ext/dtfttp.c +79 -0
- data/ext/dtfttr.c +80 -0
- data/ext/dtgevc.c +153 -0
- data/ext/dtgex2.c +180 -0
- data/ext/dtgexc.c +187 -0
- data/ext/dtgsen.c +252 -0
- data/ext/dtgsja.c +227 -0
- data/ext/dtgsna.c +164 -0
- data/ext/dtgsy2.c +182 -0
- data/ext/dtgsyl.c +190 -0
- data/ext/dtpcon.c +82 -0
- data/ext/dtprfs.c +123 -0
- data/ext/dtptri.c +82 -0
- data/ext/dtptrs.c +101 -0
- data/ext/dtpttf.c +79 -0
- data/ext/dtpttr.c +76 -0
- data/ext/dtrcon.c +82 -0
- data/ext/dtrevc.c +150 -0
- data/ext/dtrexc.c +116 -0
- data/ext/dtrrfs.c +123 -0
- data/ext/dtrsen.c +169 -0
- data/ext/dtrsna.c +137 -0
- data/ext/dtrsyl.c +116 -0
- data/ext/dtrti2.c +81 -0
- data/ext/dtrtri.c +81 -0
- data/ext/dtrtrs.c +99 -0
- data/ext/dtrttf.c +77 -0
- data/ext/dtrttp.c +73 -0
- data/ext/dtzrqf.c +83 -0
- data/ext/dtzrzf.c +101 -0
- data/ext/dzsum1.c +63 -0
- data/ext/icmax1.c +63 -0
- data/ext/ieeeck.c +59 -0
- data/ext/ilaclc.c +65 -0
- data/ext/ilaclr.c +65 -0
- data/ext/iladiag.c +51 -0
- data/ext/iladlc.c +65 -0
- data/ext/iladlr.c +65 -0
- data/ext/ilaenv.c +75 -0
- data/ext/ilaprec.c +51 -0
- data/ext/ilaslc.c +65 -0
- data/ext/ilaslr.c +65 -0
- data/ext/ilatrans.c +51 -0
- data/ext/ilauplo.c +51 -0
- data/ext/ilaver.c +53 -0
- data/ext/ilazlc.c +65 -0
- data/ext/ilazlr.c +65 -0
- data/ext/iparmq.c +75 -0
- data/ext/izmax1.c +63 -0
- data/ext/lsamen.c +59 -0
- data/ext/rb_lapack.c +3279 -0
- data/ext/sbbcsd.c +287 -0
- data/ext/sbdsdc.c +157 -0
- data/ext/sbdsqr.c +182 -0
- data/ext/scsum1.c +63 -0
- data/ext/sdisna.c +75 -0
- data/ext/sgbbrd.c +154 -0
- data/ext/sgbcon.c +98 -0
- data/ext/sgbequ.c +98 -0
- data/ext/sgbequb.c +96 -0
- data/ext/sgbrfs.c +161 -0
- data/ext/sgbrfsx.c +249 -0
- data/ext/sgbsv.c +115 -0
- data/ext/sgbsvx.c +286 -0
- data/ext/sgbsvxx.c +289 -0
- data/ext/sgbtf2.c +93 -0
- data/ext/sgbtrf.c +93 -0
- data/ext/sgbtrs.c +111 -0
- data/ext/sgebak.c +101 -0
- data/ext/sgebal.c +91 -0
- data/ext/sgebd2.c +112 -0
- data/ext/sgebrd.c +127 -0
- data/ext/sgecon.c +78 -0
- data/ext/sgeequ.c +88 -0
- data/ext/sgeequb.c +88 -0
- data/ext/sgees.c +148 -0
- data/ext/sgeesx.c +170 -0
- data/ext/sgeev.c +137 -0
- data/ext/sgeevx.c +181 -0
- data/ext/sgegs.c +171 -0
- data/ext/sgegv.c +171 -0
- data/ext/sgehd2.c +92 -0
- data/ext/sgehrd.c +107 -0
- data/ext/sgejsv.c +159 -0
- data/ext/sgelq2.c +86 -0
- data/ext/sgelqf.c +103 -0
- data/ext/sgels.c +137 -0
- data/ext/sgelsd.c +149 -0
- data/ext/sgelss.c +148 -0
- data/ext/sgelsx.c +136 -0
- data/ext/sgelsy.c +163 -0
- data/ext/sgeql2.c +88 -0
- data/ext/sgeqlf.c +103 -0
- data/ext/sgeqp3.c +126 -0
- data/ext/sgeqpf.c +111 -0
- data/ext/sgeqr2.c +88 -0
- data/ext/sgeqr2p.c +88 -0
- data/ext/sgeqrf.c +103 -0
- data/ext/sgeqrfp.c +103 -0
- data/ext/sgerfs.c +153 -0
- data/ext/sgerfsx.c +219 -0
- data/ext/sgerq2.c +86 -0
- data/ext/sgerqf.c +103 -0
- data/ext/sgesc2.c +108 -0
- data/ext/sgesdd.c +132 -0
- data/ext/sgesv.c +107 -0
- data/ext/sgesvd.c +143 -0
- data/ext/sgesvj.c +156 -0
- data/ext/sgesvx.c +278 -0
- data/ext/sgesvxx.c +281 -0
- data/ext/sgetc2.c +89 -0
- data/ext/sgetf2.c +85 -0
- data/ext/sgetrf.c +85 -0
- data/ext/sgetri.c +103 -0
- data/ext/sgetrs.c +103 -0
- data/ext/sggbak.c +113 -0
- data/ext/sggbal.c +128 -0
- data/ext/sgges.c +198 -0
- data/ext/sggesx.c +231 -0
- data/ext/sggev.c +171 -0
- data/ext/sggevx.c +229 -0
- data/ext/sggglm.c +156 -0
- data/ext/sgghrd.c +167 -0
- data/ext/sgglse.c +171 -0
- data/ext/sggqrf.c +137 -0
- data/ext/sggrqf.c +141 -0
- data/ext/sggsvd.c +181 -0
- data/ext/sggsvp.c +171 -0
- data/ext/sgsvj0.c +182 -0
- data/ext/sgsvj1.c +186 -0
- data/ext/sgtcon.c +124 -0
- data/ext/sgtrfs.c +209 -0
- data/ext/sgtsv.c +142 -0
- data/ext/sgtsvx.c +256 -0
- data/ext/sgttrf.c +132 -0
- data/ext/sgttrs.c +137 -0
- data/ext/sgtts2.c +134 -0
- data/ext/shgeqz.c +213 -0
- data/ext/shsein.c +205 -0
- data/ext/shseqr.c +153 -0
- data/ext/sisnan.c +51 -0
- data/ext/sla_gbamv.c +129 -0
- data/ext/sla_gbrcond.c +142 -0
- data/ext/sla_gbrfsx_extended.c +291 -0
- data/ext/sla_gbrpvgrw.c +87 -0
- data/ext/sla_geamv.c +119 -0
- data/ext/sla_gercond.c +134 -0
- data/ext/sla_gerfsx_extended.c +283 -0
- data/ext/sla_lin_berr.c +84 -0
- data/ext/sla_porcond.c +122 -0
- data/ext/sla_porfsx_extended.c +271 -0
- data/ext/sla_porpvgrw.c +95 -0
- data/ext/sla_rpvgrw.c +79 -0
- data/ext/sla_syamv.c +116 -0
- data/ext/sla_syrcond.c +134 -0
- data/ext/sla_syrfsx_extended.c +283 -0
- data/ext/sla_syrpvgrw.c +107 -0
- data/ext/sla_wwaddw.c +102 -0
- data/ext/slabad.c +54 -0
- data/ext/slabrd.c +132 -0
- data/ext/slacn2.c +106 -0
- data/ext/slacon.c +83 -0
- data/ext/slacpy.c +77 -0
- data/ext/sladiv.c +66 -0
- data/ext/slae2.c +62 -0
- data/ext/slaebz.c +218 -0
- data/ext/slaed0.c +127 -0
- data/ext/slaed1.c +133 -0
- data/ext/slaed2.c +189 -0
- data/ext/slaed3.c +161 -0
- data/ext/slaed4.c +90 -0
- data/ext/slaed5.c +87 -0
- data/ext/slaed6.c +90 -0
- data/ext/slaed7.c +248 -0
- data/ext/slaed8.c +206 -0
- data/ext/slaed9.c +111 -0
- data/ext/slaeda.c +160 -0
- data/ext/slaein.c +143 -0
- data/ext/slaev2.c +68 -0
- data/ext/slaexc.c +118 -0
- data/ext/slag2.c +91 -0
- data/ext/slag2d.c +76 -0
- data/ext/slags2.c +90 -0
- data/ext/slagtf.c +140 -0
- data/ext/slagtm.c +132 -0
- data/ext/slagts.c +139 -0
- data/ext/slagv2.c +132 -0
- data/ext/slahqr.c +143 -0
- data/ext/slahr2.c +112 -0
- data/ext/slahrd.c +114 -0
- data/ext/slaic1.c +89 -0
- data/ext/slaln2.c +120 -0
- data/ext/slals0.c +201 -0
- data/ext/slalsa.c +270 -0
- data/ext/slalsd.c +142 -0
- data/ext/slamrg.c +80 -0
- data/ext/slaneg.c +83 -0
- data/ext/slangb.c +78 -0
- data/ext/slange.c +74 -0
- data/ext/slangt.c +87 -0
- data/ext/slanhs.c +70 -0
- data/ext/slansb.c +78 -0
- data/ext/slansf.c +78 -0
- data/ext/slansp.c +76 -0
- data/ext/slanst.c +75 -0
- data/ext/slansy.c +74 -0
- data/ext/slantb.c +82 -0
- data/ext/slantp.c +80 -0
- data/ext/slantr.c +82 -0
- data/ext/slanv2.c +82 -0
- data/ext/slapll.c +105 -0
- data/ext/slapmr.c +97 -0
- data/ext/slapmt.c +101 -0
- data/ext/slapy2.c +55 -0
- data/ext/slapy3.c +59 -0
- data/ext/slaqgb.c +117 -0
- data/ext/slaqge.c +109 -0
- data/ext/slaqp2.c +158 -0
- data/ext/slaqps.c +208 -0
- data/ext/slaqr0.c +153 -0
- data/ext/slaqr1.c +82 -0
- data/ext/slaqr2.c +182 -0
- data/ext/slaqr3.c +182 -0
- data/ext/slaqr4.c +153 -0
- data/ext/slaqr5.c +200 -0
- data/ext/slaqsb.c +101 -0
- data/ext/slaqsp.c +94 -0
- data/ext/slaqsy.c +97 -0
- data/ext/slaqtr.c +114 -0
- data/ext/slar1v.c +173 -0
- data/ext/slar2v.c +149 -0
- data/ext/slarf.c +101 -0
- data/ext/slarfb.c +123 -0
- data/ext/slarfg.c +83 -0
- data/ext/slarfgp.c +83 -0
- data/ext/slarft.c +105 -0
- data/ext/slarfx.c +93 -0
- data/ext/slargv.c +114 -0
- data/ext/slarnv.c +83 -0
- data/ext/slarra.c +124 -0
- data/ext/slarrb.c +178 -0
- data/ext/slarrc.c +96 -0
- data/ext/slarrd.c +190 -0
- data/ext/slarre.c +221 -0
- data/ext/slarrf.c +176 -0
- data/ext/slarrj.c +147 -0
- data/ext/slarrk.c +97 -0
- data/ext/slarrr.c +82 -0
- data/ext/slarrv.c +271 -0
- data/ext/slarscl2.c +82 -0
- data/ext/slartg.c +61 -0
- data/ext/slartgp.c +61 -0
- data/ext/slartgs.c +62 -0
- data/ext/slartv.c +130 -0
- data/ext/slaruv.c +79 -0
- data/ext/slarz.c +105 -0
- data/ext/slarzb.c +127 -0
- data/ext/slarzt.c +105 -0
- data/ext/slas2.c +62 -0
- data/ext/slascl.c +97 -0
- data/ext/slascl2.c +82 -0
- data/ext/slasd0.c +120 -0
- data/ext/slasd1.c +160 -0
- data/ext/slasd2.c +228 -0
- data/ext/slasd3.c +212 -0
- data/ext/slasd4.c +93 -0
- data/ext/slasd5.c +90 -0
- data/ext/slasd6.c +236 -0
- data/ext/slasd7.c +225 -0
- data/ext/slasd8.c +173 -0
- data/ext/slasda.c +221 -0
- data/ext/slasdq.c +186 -0
- data/ext/slasdt.c +82 -0
- data/ext/slaset.c +86 -0
- data/ext/slasq1.c +96 -0
- data/ext/slasq2.c +74 -0
- data/ext/slasq3.c +138 -0
- data/ext/slasq4.c +107 -0
- data/ext/slasq5.c +94 -0
- data/ext/slasq6.c +86 -0
- data/ext/slasr.c +110 -0
- data/ext/slasrt.c +74 -0
- data/ext/slassq.c +70 -0
- data/ext/slasv2.c +74 -0
- data/ext/slaswp.c +94 -0
- data/ext/slasy2.c +126 -0
- data/ext/slasyf.c +97 -0
- data/ext/slatbs.c +130 -0
- data/ext/slatdf.c +119 -0
- data/ext/slatps.c +124 -0
- data/ext/slatrd.c +105 -0
- data/ext/slatrs.c +126 -0
- data/ext/slatrz.c +87 -0
- data/ext/slatzm.c +131 -0
- data/ext/slauu2.c +77 -0
- data/ext/slauum.c +77 -0
- data/ext/sopgtr.c +91 -0
- data/ext/sopmtr.c +116 -0
- data/ext/sorbdb.c +232 -0
- data/ext/sorcsd.c +197 -0
- data/ext/sorg2l.c +92 -0
- data/ext/sorg2r.c +92 -0
- data/ext/sorgbr.c +115 -0
- data/ext/sorghr.c +111 -0
- data/ext/sorgl2.c +90 -0
- data/ext/sorglq.c +107 -0
- data/ext/sorgql.c +107 -0
- data/ext/sorgqr.c +107 -0
- data/ext/sorgr2.c +90 -0
- data/ext/sorgrq.c +107 -0
- data/ext/sorgtr.c +107 -0
- data/ext/sorm2l.c +114 -0
- data/ext/sorm2r.c +114 -0
- data/ext/sormbr.c +139 -0
- data/ext/sormhr.c +133 -0
- data/ext/sorml2.c +110 -0
- data/ext/sormlq.c +125 -0
- data/ext/sormql.c +129 -0
- data/ext/sormqr.c +129 -0
- data/ext/sormr2.c +110 -0
- data/ext/sormr3.c +114 -0
- data/ext/sormrq.c +125 -0
- data/ext/sormrz.c +129 -0
- data/ext/sormtr.c +129 -0
- data/ext/spbcon.c +82 -0
- data/ext/spbequ.c +83 -0
- data/ext/spbrfs.c +145 -0
- data/ext/spbstf.c +81 -0
- data/ext/spbsv.c +107 -0
- data/ext/spbsvx.c +201 -0
- data/ext/spbtf2.c +81 -0
- data/ext/spbtrf.c +81 -0
- data/ext/spbtrs.c +95 -0
- data/ext/spftrf.c +82 -0
- data/ext/spftri.c +82 -0
- data/ext/spftrs.c +97 -0
- data/ext/spocon.c +78 -0
- data/ext/spoequ.c +75 -0
- data/ext/spoequb.c +75 -0
- data/ext/sporfs.c +141 -0
- data/ext/sporfsx.c +206 -0
- data/ext/sposv.c +103 -0
- data/ext/sposvx.c +197 -0
- data/ext/sposvxx.c +235 -0
- data/ext/spotf2.c +77 -0
- data/ext/spotrf.c +77 -0
- data/ext/spotri.c +77 -0
- data/ext/spotrs.c +91 -0
- data/ext/sppcon.c +78 -0
- data/ext/sppequ.c +79 -0
- data/ext/spprfs.c +139 -0
- data/ext/sppsv.c +104 -0
- data/ext/sppsvx.c +191 -0
- data/ext/spptrf.c +78 -0
- data/ext/spptri.c +78 -0
- data/ext/spptrs.c +93 -0
- data/ext/spstf2.c +95 -0
- data/ext/spstrf.c +95 -0
- data/ext/sptcon.c +81 -0
- data/ext/spteqr.c +126 -0
- data/ext/sptrfs.c +154 -0
- data/ext/sptsv.c +119 -0
- data/ext/sptsvx.c +168 -0
- data/ext/spttrf.c +93 -0
- data/ext/spttrs.c +97 -0
- data/ext/sptts2.c +94 -0
- data/ext/srscl.c +79 -0
- data/ext/ssbev.c +107 -0
- data/ext/ssbevd.c +140 -0
- data/ext/ssbevx.c +157 -0
- data/ext/ssbgst.c +117 -0
- data/ext/ssbgv.c +137 -0
- data/ext/ssbgvd.c +170 -0
- data/ext/ssbgvx.c +197 -0
- data/ext/ssbtrd.c +130 -0
- data/ext/ssfrk.c +109 -0
- data/ext/sspcon.c +88 -0
- data/ext/sspev.c +102 -0
- data/ext/sspevd.c +135 -0
- data/ext/sspevx.c +141 -0
- data/ext/sspgst.c +94 -0
- data/ext/sspgv.c +129 -0
- data/ext/sspgvd.c +162 -0
- data/ext/sspgvx.c +168 -0
- data/ext/ssprfs.c +149 -0
- data/ext/sspsv.c +110 -0
- data/ext/sspsvx.c +163 -0
- data/ext/ssptrd.c +100 -0
- data/ext/ssptrf.c +84 -0
- data/ext/ssptri.c +89 -0
- data/ext/ssptrs.c +101 -0
- data/ext/sstebz.c +135 -0
- data/ext/sstedc.c +159 -0
- data/ext/sstegr.c +188 -0
- data/ext/sstein.c +134 -0
- data/ext/sstemr.c +193 -0
- data/ext/ssteqr.c +126 -0
- data/ext/ssterf.c +93 -0
- data/ext/sstev.c +111 -0
- data/ext/sstevd.c +144 -0
- data/ext/sstevr.c +188 -0
- data/ext/sstevx.c +158 -0
- data/ext/ssycon.c +90 -0
- data/ext/ssyconv.c +84 -0
- data/ext/ssyequb.c +82 -0
- data/ext/ssyev.c +107 -0
- data/ext/ssyevd.c +125 -0
- data/ext/ssyevr.c +172 -0
- data/ext/ssyevx.c +157 -0
- data/ext/ssygs2.c +95 -0
- data/ext/ssygst.c +95 -0
- data/ext/ssygv.c +137 -0
- data/ext/ssygvd.c +155 -0
- data/ext/ssygvx.c +191 -0
- data/ext/ssyrfs.c +153 -0
- data/ext/ssyrfsx.c +218 -0
- data/ext/ssysv.c +129 -0
- data/ext/ssysvx.c +183 -0
- data/ext/ssysvxx.c +258 -0
- data/ext/ssyswapr.c +82 -0
- data/ext/ssytd2.c +101 -0
- data/ext/ssytf2.c +85 -0
- data/ext/ssytrd.c +113 -0
- data/ext/ssytrf.c +97 -0
- data/ext/ssytri.c +92 -0
- data/ext/ssytri2.c +127 -0
- data/ext/ssytri2x.c +96 -0
- data/ext/ssytrs.c +103 -0
- data/ext/ssytrs2.c +106 -0
- data/ext/stbcon.c +86 -0
- data/ext/stbrfs.c +127 -0
- data/ext/stbtrs.c +103 -0
- data/ext/stfsm.c +112 -0
- data/ext/stftri.c +86 -0
- data/ext/stfttp.c +79 -0
- data/ext/stfttr.c +80 -0
- data/ext/stgevc.c +153 -0
- data/ext/stgex2.c +184 -0
- data/ext/stgexc.c +191 -0
- data/ext/stgsen.c +252 -0
- data/ext/stgsja.c +227 -0
- data/ext/stgsna.c +164 -0
- data/ext/stgsy2.c +182 -0
- data/ext/stgsyl.c +190 -0
- data/ext/stpcon.c +82 -0
- data/ext/stprfs.c +123 -0
- data/ext/stptri.c +82 -0
- data/ext/stptrs.c +101 -0
- data/ext/stpttf.c +79 -0
- data/ext/stpttr.c +76 -0
- data/ext/strcon.c +82 -0
- data/ext/strevc.c +150 -0
- data/ext/strexc.c +116 -0
- data/ext/strrfs.c +123 -0
- data/ext/strsen.c +169 -0
- data/ext/strsna.c +137 -0
- data/ext/strsyl.c +116 -0
- data/ext/strti2.c +81 -0
- data/ext/strtri.c +81 -0
- data/ext/strtrs.c +99 -0
- data/ext/strttf.c +77 -0
- data/ext/strttp.c +73 -0
- data/ext/stzrqf.c +83 -0
- data/ext/stzrzf.c +101 -0
- data/ext/xerbla.c +52 -0
- data/ext/xerbla_array.c +53 -0
- data/ext/zbbcsd.c +283 -0
- data/ext/zbdsqr.c +182 -0
- data/ext/zcgesv.c +118 -0
- data/ext/zcposv.c +114 -0
- data/ext/zdrscl.c +79 -0
- data/ext/zgbbrd.c +157 -0
- data/ext/zgbcon.c +98 -0
- data/ext/zgbequ.c +98 -0
- data/ext/zgbequb.c +96 -0
- data/ext/zgbrfs.c +161 -0
- data/ext/zgbrfsx.c +249 -0
- data/ext/zgbsv.c +115 -0
- data/ext/zgbsvx.c +286 -0
- data/ext/zgbsvxx.c +289 -0
- data/ext/zgbtf2.c +93 -0
- data/ext/zgbtrf.c +93 -0
- data/ext/zgbtrs.c +111 -0
- data/ext/zgebak.c +101 -0
- data/ext/zgebal.c +91 -0
- data/ext/zgebd2.c +112 -0
- data/ext/zgebrd.c +127 -0
- data/ext/zgecon.c +78 -0
- data/ext/zgeequ.c +88 -0
- data/ext/zgeequb.c +88 -0
- data/ext/zgees.c +142 -0
- data/ext/zgeesx.c +152 -0
- data/ext/zgeev.c +132 -0
- data/ext/zgeevx.c +173 -0
- data/ext/zgegs.c +166 -0
- data/ext/zgegv.c +171 -0
- data/ext/zgehd2.c +92 -0
- data/ext/zgehrd.c +107 -0
- data/ext/zgelq2.c +86 -0
- data/ext/zgelqf.c +103 -0
- data/ext/zgels.c +137 -0
- data/ext/zgelsd.c +154 -0
- data/ext/zgelss.c +151 -0
- data/ext/zgelsx.c +139 -0
- data/ext/zgelsy.c +166 -0
- data/ext/zgeql2.c +88 -0
- data/ext/zgeqlf.c +103 -0
- data/ext/zgeqp3.c +129 -0
- data/ext/zgeqpf.c +114 -0
- data/ext/zgeqr2.c +88 -0
- data/ext/zgeqr2p.c +88 -0
- data/ext/zgeqrf.c +103 -0
- data/ext/zgeqrfp.c +103 -0
- data/ext/zgerfs.c +153 -0
- data/ext/zgerfsx.c +219 -0
- data/ext/zgerq2.c +86 -0
- data/ext/zgerqf.c +103 -0
- data/ext/zgesc2.c +108 -0
- data/ext/zgesdd.c +135 -0
- data/ext/zgesv.c +107 -0
- data/ext/zgesvd.c +146 -0
- data/ext/zgesvx.c +278 -0
- data/ext/zgesvxx.c +281 -0
- data/ext/zgetc2.c +89 -0
- data/ext/zgetf2.c +85 -0
- data/ext/zgetrf.c +85 -0
- data/ext/zgetri.c +103 -0
- data/ext/zgetrs.c +103 -0
- data/ext/zggbak.c +113 -0
- data/ext/zggbal.c +128 -0
- data/ext/zgges.c +192 -0
- data/ext/zggesx.c +230 -0
- data/ext/zggev.c +171 -0
- data/ext/zggevx.c +226 -0
- data/ext/zggglm.c +156 -0
- data/ext/zgghrd.c +167 -0
- data/ext/zgglse.c +171 -0
- data/ext/zggqrf.c +137 -0
- data/ext/zggrqf.c +141 -0
- data/ext/zggsvd.c +184 -0
- data/ext/zggsvp.c +174 -0
- data/ext/zgtcon.c +121 -0
- data/ext/zgtrfs.c +209 -0
- data/ext/zgtsv.c +142 -0
- data/ext/zgtsvx.c +256 -0
- data/ext/zgttrf.c +132 -0
- data/ext/zgttrs.c +137 -0
- data/ext/zgtts2.c +134 -0
- data/ext/zhbev.c +110 -0
- data/ext/zhbevd.c +158 -0
- data/ext/zhbevx.c +160 -0
- data/ext/zhbgst.c +120 -0
- data/ext/zhbgv.c +140 -0
- data/ext/zhbgvd.c +188 -0
- data/ext/zhbgvx.c +189 -0
- data/ext/zhbtrd.c +130 -0
- data/ext/zhecon.c +87 -0
- data/ext/zheequb.c +82 -0
- data/ext/zheev.c +110 -0
- data/ext/zheevd.c +143 -0
- data/ext/zheevr.c +190 -0
- data/ext/zheevx.c +160 -0
- data/ext/zhegs2.c +95 -0
- data/ext/zhegst.c +95 -0
- data/ext/zhegv.c +140 -0
- data/ext/zhegvd.c +173 -0
- data/ext/zhegvx.c +190 -0
- data/ext/zherfs.c +153 -0
- data/ext/zherfsx.c +218 -0
- data/ext/zhesv.c +123 -0
- data/ext/zhesvx.c +183 -0
- data/ext/zhesvxx.c +258 -0
- data/ext/zhetd2.c +101 -0
- data/ext/zhetf2.c +85 -0
- data/ext/zhetrd.c +113 -0
- data/ext/zhetrf.c +97 -0
- data/ext/zhetri.c +92 -0
- data/ext/zhetrs.c +103 -0
- data/ext/zhetrs2.c +106 -0
- data/ext/zhfrk.c +109 -0
- data/ext/zhgeqz.c +208 -0
- data/ext/zhpcon.c +85 -0
- data/ext/zhpev.c +105 -0
- data/ext/zhpevd.c +153 -0
- data/ext/zhpevx.c +144 -0
- data/ext/zhpgst.c +94 -0
- data/ext/zhpgv.c +132 -0
- data/ext/zhpgvd.c +170 -0
- data/ext/zhpgvx.c +170 -0
- data/ext/zhprfs.c +149 -0
- data/ext/zhpsv.c +110 -0
- data/ext/zhpsvx.c +163 -0
- data/ext/zhptrd.c +100 -0
- data/ext/zhptrf.c +84 -0
- data/ext/zhptri.c +89 -0
- data/ext/zhptrs.c +101 -0
- data/ext/zhsein.c +185 -0
- data/ext/zhseqr.c +145 -0
- data/ext/zla_gbamv.c +127 -0
- data/ext/zla_gbrcond_c.c +142 -0
- data/ext/zla_gbrcond_x.c +138 -0
- data/ext/zla_gbrfsx_extended.c +295 -0
- data/ext/zla_gbrpvgrw.c +87 -0
- data/ext/zla_geamv.c +119 -0
- data/ext/zla_gercond_c.c +134 -0
- data/ext/zla_gercond_x.c +130 -0
- data/ext/zla_gerfsx_extended.c +281 -0
- data/ext/zla_heamv.c +116 -0
- data/ext/zla_hercond_c.c +134 -0
- data/ext/zla_hercond_x.c +130 -0
- data/ext/zla_herfsx_extended.c +283 -0
- data/ext/zla_herpvgrw.c +107 -0
- data/ext/zla_lin_berr.c +84 -0
- data/ext/zla_porcond_c.c +122 -0
- data/ext/zla_porcond_x.c +118 -0
- data/ext/zla_porfsx_extended.c +271 -0
- data/ext/zla_porpvgrw.c +95 -0
- data/ext/zla_rpvgrw.c +79 -0
- data/ext/zla_syamv.c +116 -0
- data/ext/zla_syrcond_c.c +134 -0
- data/ext/zla_syrcond_x.c +130 -0
- data/ext/zla_syrfsx_extended.c +283 -0
- data/ext/zla_syrpvgrw.c +107 -0
- data/ext/zla_wwaddw.c +102 -0
- data/ext/zlabrd.c +132 -0
- data/ext/zlacgv.c +75 -0
- data/ext/zlacn2.c +103 -0
- data/ext/zlacon.c +80 -0
- data/ext/zlacp2.c +77 -0
- data/ext/zlacpy.c +77 -0
- data/ext/zlacrm.c +90 -0
- data/ext/zlacrt.c +108 -0
- data/ext/zladiv.c +57 -0
- data/ext/zlaed0.c +134 -0
- data/ext/zlaed7.c +247 -0
- data/ext/zlaed8.c +198 -0
- data/ext/zlaein.c +113 -0
- data/ext/zlaesy.c +74 -0
- data/ext/zlaev2.c +71 -0
- data/ext/zlag2c.c +76 -0
- data/ext/zlags2.c +92 -0
- data/ext/zlagtm.c +132 -0
- data/ext/zlahef.c +97 -0
- data/ext/zlahqr.c +135 -0
- data/ext/zlahr2.c +112 -0
- data/ext/zlahrd.c +112 -0
- data/ext/zlaic1.c +90 -0
- data/ext/zlals0.c +201 -0
- data/ext/zlalsa.c +270 -0
- data/ext/zlalsd.c +145 -0
- data/ext/zlangb.c +76 -0
- data/ext/zlange.c +74 -0
- data/ext/zlangt.c +87 -0
- data/ext/zlanhb.c +78 -0
- data/ext/zlanhe.c +74 -0
- data/ext/zlanhf.c +80 -0
- data/ext/zlanhp.c +76 -0
- data/ext/zlanhs.c +70 -0
- data/ext/zlanht.c +75 -0
- data/ext/zlansb.c +78 -0
- data/ext/zlansp.c +76 -0
- data/ext/zlansy.c +74 -0
- data/ext/zlantb.c +82 -0
- data/ext/zlantp.c +80 -0
- data/ext/zlantr.c +82 -0
- data/ext/zlapll.c +105 -0
- data/ext/zlapmr.c +97 -0
- data/ext/zlapmt.c +101 -0
- data/ext/zlaqgb.c +117 -0
- data/ext/zlaqge.c +109 -0
- data/ext/zlaqhb.c +97 -0
- data/ext/zlaqhe.c +97 -0
- data/ext/zlaqhp.c +94 -0
- data/ext/zlaqp2.c +158 -0
- data/ext/zlaqps.c +208 -0
- data/ext/zlaqr0.c +153 -0
- data/ext/zlaqr1.c +76 -0
- data/ext/zlaqr2.c +174 -0
- data/ext/zlaqr3.c +174 -0
- data/ext/zlaqr4.c +147 -0
- data/ext/zlaqr5.c +179 -0
- data/ext/zlaqsb.c +101 -0
- data/ext/zlaqsp.c +94 -0
- data/ext/zlaqsy.c +97 -0
- data/ext/zlar1v.c +173 -0
- data/ext/zlar2v.c +149 -0
- data/ext/zlarcm.c +86 -0
- data/ext/zlarf.c +102 -0
- data/ext/zlarfb.c +123 -0
- data/ext/zlarfg.c +84 -0
- data/ext/zlarfgp.c +84 -0
- data/ext/zlarft.c +105 -0
- data/ext/zlarfx.c +94 -0
- data/ext/zlargv.c +114 -0
- data/ext/zlarnv.c +83 -0
- data/ext/zlarrv.c +271 -0
- data/ext/zlarscl2.c +82 -0
- data/ext/zlartg.c +63 -0
- data/ext/zlartv.c +130 -0
- data/ext/zlarz.c +106 -0
- data/ext/zlarzb.c +127 -0
- data/ext/zlarzt.c +105 -0
- data/ext/zlascl.c +97 -0
- data/ext/zlascl2.c +82 -0
- data/ext/zlaset.c +88 -0
- data/ext/zlasr.c +110 -0
- data/ext/zlassq.c +70 -0
- data/ext/zlaswp.c +94 -0
- data/ext/zlasyf.c +97 -0
- data/ext/zlat2c.c +76 -0
- data/ext/zlatbs.c +130 -0
- data/ext/zlatdf.c +119 -0
- data/ext/zlatps.c +124 -0
- data/ext/zlatrd.c +105 -0
- data/ext/zlatrs.c +126 -0
- data/ext/zlatrz.c +87 -0
- data/ext/zlatzm.c +132 -0
- data/ext/zlauu2.c +77 -0
- data/ext/zlauum.c +77 -0
- data/ext/zpbcon.c +82 -0
- data/ext/zpbequ.c +83 -0
- data/ext/zpbrfs.c +145 -0
- data/ext/zpbstf.c +81 -0
- data/ext/zpbsv.c +107 -0
- data/ext/zpbsvx.c +201 -0
- data/ext/zpbtf2.c +81 -0
- data/ext/zpbtrf.c +81 -0
- data/ext/zpbtrs.c +95 -0
- data/ext/zpftrf.c +82 -0
- data/ext/zpftri.c +82 -0
- data/ext/zpftrs.c +97 -0
- data/ext/zpocon.c +78 -0
- data/ext/zpoequ.c +75 -0
- data/ext/zpoequb.c +75 -0
- data/ext/zporfs.c +141 -0
- data/ext/zporfsx.c +206 -0
- data/ext/zposv.c +103 -0
- data/ext/zposvx.c +197 -0
- data/ext/zposvxx.c +235 -0
- data/ext/zpotf2.c +77 -0
- data/ext/zpotrf.c +77 -0
- data/ext/zpotri.c +77 -0
- data/ext/zpotrs.c +91 -0
- data/ext/zppcon.c +78 -0
- data/ext/zppequ.c +79 -0
- data/ext/zpprfs.c +139 -0
- data/ext/zppsv.c +104 -0
- data/ext/zppsvx.c +191 -0
- data/ext/zpptrf.c +78 -0
- data/ext/zpptri.c +78 -0
- data/ext/zpptrs.c +93 -0
- data/ext/zpstf2.c +95 -0
- data/ext/zpstrf.c +95 -0
- data/ext/zptcon.c +81 -0
- data/ext/zpteqr.c +126 -0
- data/ext/zptrfs.c +161 -0
- data/ext/zptsv.c +123 -0
- data/ext/zptsvx.c +171 -0
- data/ext/zpttrf.c +93 -0
- data/ext/zpttrs.c +101 -0
- data/ext/zptts2.c +98 -0
- data/ext/zrot.c +107 -0
- data/ext/zspcon.c +85 -0
- data/ext/zspmv.c +117 -0
- data/ext/zspr.c +96 -0
- data/ext/zsprfs.c +149 -0
- data/ext/zspsv.c +110 -0
- data/ext/zspsvx.c +163 -0
- data/ext/zsptrf.c +84 -0
- data/ext/zsptri.c +89 -0
- data/ext/zsptrs.c +101 -0
- data/ext/zstedc.c +177 -0
- data/ext/zstegr.c +188 -0
- data/ext/zstein.c +134 -0
- data/ext/zstemr.c +193 -0
- data/ext/zsteqr.c +126 -0
- data/ext/zsycon.c +87 -0
- data/ext/zsyconv.c +84 -0
- data/ext/zsyequb.c +82 -0
- data/ext/zsymv.c +115 -0
- data/ext/zsyr.c +95 -0
- data/ext/zsyrfs.c +153 -0
- data/ext/zsyrfsx.c +218 -0
- data/ext/zsysv.c +129 -0
- data/ext/zsysvx.c +183 -0
- data/ext/zsysvxx.c +258 -0
- data/ext/zsyswapr.c +82 -0
- data/ext/zsytf2.c +85 -0
- data/ext/zsytrf.c +97 -0
- data/ext/zsytri.c +92 -0
- data/ext/zsytri2.c +104 -0
- data/ext/zsytri2x.c +96 -0
- data/ext/zsytrs.c +103 -0
- data/ext/zsytrs2.c +106 -0
- data/ext/ztbcon.c +86 -0
- data/ext/ztbrfs.c +127 -0
- data/ext/ztbtrs.c +103 -0
- data/ext/ztfsm.c +111 -0
- data/ext/ztftri.c +86 -0
- data/ext/ztfttp.c +79 -0
- data/ext/ztfttr.c +80 -0
- data/ext/ztgevc.c +156 -0
- data/ext/ztgex2.c +171 -0
- data/ext/ztgexc.c +172 -0
- data/ext/ztgsen.c +244 -0
- data/ext/ztgsja.c +227 -0
- data/ext/ztgsna.c +164 -0
- data/ext/ztgsy2.c +176 -0
- data/ext/ztgsyl.c +190 -0
- data/ext/ztpcon.c +82 -0
- data/ext/ztprfs.c +123 -0
- data/ext/ztptri.c +82 -0
- data/ext/ztptrs.c +101 -0
- data/ext/ztpttf.c +79 -0
- data/ext/ztpttr.c +76 -0
- data/ext/ztrcon.c +82 -0
- data/ext/ztrevc.c +154 -0
- data/ext/ztrexc.c +111 -0
- data/ext/ztrrfs.c +123 -0
- data/ext/ztrsen.c +154 -0
- data/ext/ztrsna.c +137 -0
- data/ext/ztrsyl.c +116 -0
- data/ext/ztrti2.c +81 -0
- data/ext/ztrtri.c +81 -0
- data/ext/ztrtrs.c +99 -0
- data/ext/ztrttf.c +77 -0
- data/ext/ztrttp.c +73 -0
- data/ext/ztzrqf.c +83 -0
- data/ext/ztzrzf.c +101 -0
- data/ext/zunbdb.c +232 -0
- data/ext/zuncsd.c +204 -0
- data/ext/zung2l.c +92 -0
- data/ext/zung2r.c +92 -0
- data/ext/zungbr.c +115 -0
- data/ext/zunghr.c +111 -0
- data/ext/zungl2.c +90 -0
- data/ext/zunglq.c +107 -0
- data/ext/zungql.c +107 -0
- data/ext/zungqr.c +107 -0
- data/ext/zungr2.c +90 -0
- data/ext/zungrq.c +107 -0
- data/ext/zungtr.c +107 -0
- data/ext/zunm2l.c +114 -0
- data/ext/zunm2r.c +114 -0
- data/ext/zunmbr.c +139 -0
- data/ext/zunmhr.c +133 -0
- data/ext/zunml2.c +110 -0
- data/ext/zunmlq.c +125 -0
- data/ext/zunmql.c +129 -0
- data/ext/zunmqr.c +129 -0
- data/ext/zunmr2.c +110 -0
- data/ext/zunmr3.c +114 -0
- data/ext/zunmrq.c +125 -0
- data/ext/zunmrz.c +129 -0
- data/ext/zunmtr.c +129 -0
- data/ext/zupgtr.c +91 -0
- data/ext/zupmtr.c +116 -0
- metadata +1632 -1
data/ext/dla_porpvgrw.c
ADDED
@@ -0,0 +1,95 @@
|
|
1
|
+
#include "rb_lapack.h"
|
2
|
+
|
3
|
+
extern doublereal dla_porpvgrw_(char* uplo, integer* ncols, doublereal* a, integer* lda, doublereal* af, integer* ldaf, doublereal* work);
|
4
|
+
|
5
|
+
|
6
|
+
static VALUE
|
7
|
+
rblapack_dla_porpvgrw(int argc, VALUE *argv, VALUE self){
|
8
|
+
VALUE rblapack_uplo;
|
9
|
+
char uplo;
|
10
|
+
VALUE rblapack_ncols;
|
11
|
+
integer ncols;
|
12
|
+
VALUE rblapack_a;
|
13
|
+
doublereal *a;
|
14
|
+
VALUE rblapack_af;
|
15
|
+
doublereal *af;
|
16
|
+
VALUE rblapack_work;
|
17
|
+
doublereal *work;
|
18
|
+
VALUE rblapack___out__;
|
19
|
+
doublereal __out__;
|
20
|
+
|
21
|
+
integer lda;
|
22
|
+
integer n;
|
23
|
+
integer ldaf;
|
24
|
+
|
25
|
+
VALUE rblapack_options;
|
26
|
+
if (argc > 0 && TYPE(argv[argc-1]) == T_HASH) {
|
27
|
+
argc--;
|
28
|
+
rblapack_options = argv[argc];
|
29
|
+
if (rb_hash_aref(rblapack_options, sHelp) == Qtrue) {
|
30
|
+
printf("%s\n", "USAGE:\n __out__ = NumRu::Lapack.dla_porpvgrw( uplo, ncols, a, af, work, [:usage => usage, :help => help])\n\n\nFORTRAN MANUAL\n DOUBLE PRECISION FUNCTION DLA_PORPVGRW( UPLO, NCOLS, A, LDA, AF, LDAF, WORK )\n\n* Purpose\n* =======\n* \n* DLA_PORPVGRW computes the reciprocal pivot growth factor\n* norm(A)/norm(U). The \"max absolute element\" norm is used. If this is\n* much less than 1, the stability of the LU factorization of the\n* (equilibrated) matrix A could be poor. This also means that the\n* solution X, estimated condition numbers, and error bounds could be\n* unreliable.\n*\n\n* Arguments\n* =========\n*\n* UPLO (input) CHARACTER*1\n* = 'U': Upper triangle of A is stored;\n* = 'L': Lower triangle of A is stored.\n*\n* NCOLS (input) INTEGER\n* The number of columns of the matrix A. NCOLS >= 0.\n*\n* A (input) DOUBLE PRECISION array, dimension (LDA,N)\n* On entry, the N-by-N matrix A.\n*\n* LDA (input) INTEGER\n* The leading dimension of the array A. LDA >= max(1,N).\n*\n* AF (input) DOUBLE PRECISION array, dimension (LDAF,N)\n* The triangular factor U or L from the Cholesky factorization\n* A = U**T*U or A = L*L**T, as computed by DPOTRF.\n*\n* LDAF (input) INTEGER\n* The leading dimension of the array AF. LDAF >= max(1,N).\n*\n* WORK (input) DOUBLE PRECISION array, dimension (2*N)\n*\n\n* =====================================================================\n*\n* .. Local Scalars ..\n INTEGER I, J\n DOUBLE PRECISION AMAX, UMAX, RPVGRW\n LOGICAL UPPER\n* ..\n* .. Intrinsic Functions ..\n INTRINSIC ABS, MAX, MIN\n* ..\n* .. External Functions ..\n EXTERNAL LSAME, DLASET\n LOGICAL LSAME\n* ..\n\n");
|
31
|
+
return Qnil;
|
32
|
+
}
|
33
|
+
if (rb_hash_aref(rblapack_options, sUsage) == Qtrue) {
|
34
|
+
printf("%s\n", "USAGE:\n __out__ = NumRu::Lapack.dla_porpvgrw( uplo, ncols, a, af, work, [:usage => usage, :help => help])\n");
|
35
|
+
return Qnil;
|
36
|
+
}
|
37
|
+
} else
|
38
|
+
rblapack_options = Qnil;
|
39
|
+
if (argc != 5 && argc != 5)
|
40
|
+
rb_raise(rb_eArgError,"wrong number of arguments (%d for 5)", argc);
|
41
|
+
rblapack_uplo = argv[0];
|
42
|
+
rblapack_ncols = argv[1];
|
43
|
+
rblapack_a = argv[2];
|
44
|
+
rblapack_af = argv[3];
|
45
|
+
rblapack_work = argv[4];
|
46
|
+
if (argc == 5) {
|
47
|
+
} else if (rblapack_options != Qnil) {
|
48
|
+
} else {
|
49
|
+
}
|
50
|
+
|
51
|
+
uplo = StringValueCStr(rblapack_uplo)[0];
|
52
|
+
if (!NA_IsNArray(rblapack_a))
|
53
|
+
rb_raise(rb_eArgError, "a (3th argument) must be NArray");
|
54
|
+
if (NA_RANK(rblapack_a) != 2)
|
55
|
+
rb_raise(rb_eArgError, "rank of a (3th argument) must be %d", 2);
|
56
|
+
lda = NA_SHAPE0(rblapack_a);
|
57
|
+
n = NA_SHAPE1(rblapack_a);
|
58
|
+
if (NA_TYPE(rblapack_a) != NA_DFLOAT)
|
59
|
+
rblapack_a = na_change_type(rblapack_a, NA_DFLOAT);
|
60
|
+
a = NA_PTR_TYPE(rblapack_a, doublereal*);
|
61
|
+
ncols = NUM2INT(rblapack_ncols);
|
62
|
+
if (!NA_IsNArray(rblapack_af))
|
63
|
+
rb_raise(rb_eArgError, "af (4th argument) must be NArray");
|
64
|
+
if (NA_RANK(rblapack_af) != 2)
|
65
|
+
rb_raise(rb_eArgError, "rank of af (4th argument) must be %d", 2);
|
66
|
+
ldaf = NA_SHAPE0(rblapack_af);
|
67
|
+
if (NA_SHAPE1(rblapack_af) != n)
|
68
|
+
rb_raise(rb_eRuntimeError, "shape 1 of af must be the same as shape 1 of a");
|
69
|
+
if (NA_TYPE(rblapack_af) != NA_DFLOAT)
|
70
|
+
rblapack_af = na_change_type(rblapack_af, NA_DFLOAT);
|
71
|
+
af = NA_PTR_TYPE(rblapack_af, doublereal*);
|
72
|
+
if (!NA_IsNArray(rblapack_work))
|
73
|
+
rb_raise(rb_eArgError, "work (5th argument) must be NArray");
|
74
|
+
if (NA_RANK(rblapack_work) != 1)
|
75
|
+
rb_raise(rb_eArgError, "rank of work (5th argument) must be %d", 1);
|
76
|
+
if (NA_SHAPE0(rblapack_work) != (2*n))
|
77
|
+
rb_raise(rb_eRuntimeError, "shape 0 of work must be %d", 2*n);
|
78
|
+
if (NA_TYPE(rblapack_work) != NA_DFLOAT)
|
79
|
+
rblapack_work = na_change_type(rblapack_work, NA_DFLOAT);
|
80
|
+
work = NA_PTR_TYPE(rblapack_work, doublereal*);
|
81
|
+
|
82
|
+
__out__ = dla_porpvgrw_(&uplo, &ncols, a, &lda, af, &ldaf, work);
|
83
|
+
|
84
|
+
rblapack___out__ = rb_float_new((double)__out__);
|
85
|
+
return rblapack___out__;
|
86
|
+
}
|
87
|
+
|
88
|
+
void
|
89
|
+
init_lapack_dla_porpvgrw(VALUE mLapack, VALUE sH, VALUE sU, VALUE zero){
|
90
|
+
sHelp = sH;
|
91
|
+
sUsage = sU;
|
92
|
+
rblapack_ZERO = zero;
|
93
|
+
|
94
|
+
rb_define_module_function(mLapack, "dla_porpvgrw", rblapack_dla_porpvgrw, -1);
|
95
|
+
}
|
data/ext/dla_rpvgrw.c
ADDED
@@ -0,0 +1,79 @@
|
|
1
|
+
#include "rb_lapack.h"
|
2
|
+
|
3
|
+
extern doublereal dla_rpvgrw_(integer* n, integer* ncols, doublereal* a, integer* lda, doublereal* af, integer* ldaf);
|
4
|
+
|
5
|
+
|
6
|
+
static VALUE
|
7
|
+
rblapack_dla_rpvgrw(int argc, VALUE *argv, VALUE self){
|
8
|
+
VALUE rblapack_ncols;
|
9
|
+
integer ncols;
|
10
|
+
VALUE rblapack_a;
|
11
|
+
doublereal *a;
|
12
|
+
VALUE rblapack_af;
|
13
|
+
doublereal *af;
|
14
|
+
VALUE rblapack___out__;
|
15
|
+
doublereal __out__;
|
16
|
+
|
17
|
+
integer lda;
|
18
|
+
integer n;
|
19
|
+
integer ldaf;
|
20
|
+
|
21
|
+
VALUE rblapack_options;
|
22
|
+
if (argc > 0 && TYPE(argv[argc-1]) == T_HASH) {
|
23
|
+
argc--;
|
24
|
+
rblapack_options = argv[argc];
|
25
|
+
if (rb_hash_aref(rblapack_options, sHelp) == Qtrue) {
|
26
|
+
printf("%s\n", "USAGE:\n __out__ = NumRu::Lapack.dla_rpvgrw( ncols, a, af, [:usage => usage, :help => help])\n\n\nFORTRAN MANUAL\n DOUBLE PRECISION FUNCTION DLA_RPVGRW( N, NCOLS, A, LDA, AF, LDAF )\n\n* Purpose\n* =======\n* \n* DLA_RPVGRW computes the reciprocal pivot growth factor\n* norm(A)/norm(U). The \"max absolute element\" norm is used. If this is\n* much less than 1, the stability of the LU factorization of the\n* (equilibrated) matrix A could be poor. This also means that the\n* solution X, estimated condition numbers, and error bounds could be\n* unreliable.\n*\n\n* Arguments\n* =========\n*\n* N (input) INTEGER\n* The number of linear equations, i.e., the order of the\n* matrix A. N >= 0.\n*\n* NCOLS (input) INTEGER\n* The number of columns of the matrix A. NCOLS >= 0.\n*\n* A (input) DOUBLE PRECISION array, dimension (LDA,N)\n* On entry, the N-by-N matrix A.\n*\n* LDA (input) INTEGER\n* The leading dimension of the array A. LDA >= max(1,N).\n*\n* AF (input) DOUBLE PRECISION array, dimension (LDAF,N)\n* The factors L and U from the factorization\n* A = P*L*U as computed by DGETRF.\n*\n* LDAF (input) INTEGER\n* The leading dimension of the array AF. LDAF >= max(1,N).\n*\n\n* =====================================================================\n*\n* .. Local Scalars ..\n INTEGER I, J\n DOUBLE PRECISION AMAX, UMAX, RPVGRW\n* ..\n* .. Intrinsic Functions ..\n INTRINSIC ABS, MAX, MIN\n* ..\n\n");
|
27
|
+
return Qnil;
|
28
|
+
}
|
29
|
+
if (rb_hash_aref(rblapack_options, sUsage) == Qtrue) {
|
30
|
+
printf("%s\n", "USAGE:\n __out__ = NumRu::Lapack.dla_rpvgrw( ncols, a, af, [:usage => usage, :help => help])\n");
|
31
|
+
return Qnil;
|
32
|
+
}
|
33
|
+
} else
|
34
|
+
rblapack_options = Qnil;
|
35
|
+
if (argc != 3 && argc != 3)
|
36
|
+
rb_raise(rb_eArgError,"wrong number of arguments (%d for 3)", argc);
|
37
|
+
rblapack_ncols = argv[0];
|
38
|
+
rblapack_a = argv[1];
|
39
|
+
rblapack_af = argv[2];
|
40
|
+
if (argc == 3) {
|
41
|
+
} else if (rblapack_options != Qnil) {
|
42
|
+
} else {
|
43
|
+
}
|
44
|
+
|
45
|
+
ncols = NUM2INT(rblapack_ncols);
|
46
|
+
if (!NA_IsNArray(rblapack_af))
|
47
|
+
rb_raise(rb_eArgError, "af (3th argument) must be NArray");
|
48
|
+
if (NA_RANK(rblapack_af) != 2)
|
49
|
+
rb_raise(rb_eArgError, "rank of af (3th argument) must be %d", 2);
|
50
|
+
ldaf = NA_SHAPE0(rblapack_af);
|
51
|
+
n = NA_SHAPE1(rblapack_af);
|
52
|
+
if (NA_TYPE(rblapack_af) != NA_DFLOAT)
|
53
|
+
rblapack_af = na_change_type(rblapack_af, NA_DFLOAT);
|
54
|
+
af = NA_PTR_TYPE(rblapack_af, doublereal*);
|
55
|
+
if (!NA_IsNArray(rblapack_a))
|
56
|
+
rb_raise(rb_eArgError, "a (2th argument) must be NArray");
|
57
|
+
if (NA_RANK(rblapack_a) != 2)
|
58
|
+
rb_raise(rb_eArgError, "rank of a (2th argument) must be %d", 2);
|
59
|
+
lda = NA_SHAPE0(rblapack_a);
|
60
|
+
if (NA_SHAPE1(rblapack_a) != n)
|
61
|
+
rb_raise(rb_eRuntimeError, "shape 1 of a must be the same as shape 1 of af");
|
62
|
+
if (NA_TYPE(rblapack_a) != NA_DFLOAT)
|
63
|
+
rblapack_a = na_change_type(rblapack_a, NA_DFLOAT);
|
64
|
+
a = NA_PTR_TYPE(rblapack_a, doublereal*);
|
65
|
+
|
66
|
+
__out__ = dla_rpvgrw_(&n, &ncols, a, &lda, af, &ldaf);
|
67
|
+
|
68
|
+
rblapack___out__ = rb_float_new((double)__out__);
|
69
|
+
return rblapack___out__;
|
70
|
+
}
|
71
|
+
|
72
|
+
void
|
73
|
+
init_lapack_dla_rpvgrw(VALUE mLapack, VALUE sH, VALUE sU, VALUE zero){
|
74
|
+
sHelp = sH;
|
75
|
+
sUsage = sU;
|
76
|
+
rblapack_ZERO = zero;
|
77
|
+
|
78
|
+
rb_define_module_function(mLapack, "dla_rpvgrw", rblapack_dla_rpvgrw, -1);
|
79
|
+
}
|
data/ext/dla_syamv.c
ADDED
@@ -0,0 +1,113 @@
|
|
1
|
+
#include "rb_lapack.h"
|
2
|
+
|
3
|
+
extern VOID dla_syamv_(integer* uplo, integer* n, doublereal* alpha, doublereal* a, integer* lda, doublereal* x, integer* incx, doublereal* beta, doublereal* y, integer* incy);
|
4
|
+
|
5
|
+
|
6
|
+
static VALUE
|
7
|
+
rblapack_dla_syamv(int argc, VALUE *argv, VALUE self){
|
8
|
+
VALUE rblapack_uplo;
|
9
|
+
integer uplo;
|
10
|
+
VALUE rblapack_alpha;
|
11
|
+
doublereal alpha;
|
12
|
+
VALUE rblapack_a;
|
13
|
+
doublereal *a;
|
14
|
+
VALUE rblapack_x;
|
15
|
+
doublereal *x;
|
16
|
+
VALUE rblapack_incx;
|
17
|
+
integer incx;
|
18
|
+
VALUE rblapack_beta;
|
19
|
+
doublereal beta;
|
20
|
+
VALUE rblapack_y;
|
21
|
+
doublereal *y;
|
22
|
+
VALUE rblapack_incy;
|
23
|
+
integer incy;
|
24
|
+
VALUE rblapack_y_out__;
|
25
|
+
doublereal *y_out__;
|
26
|
+
|
27
|
+
integer lda;
|
28
|
+
integer n;
|
29
|
+
|
30
|
+
VALUE rblapack_options;
|
31
|
+
if (argc > 0 && TYPE(argv[argc-1]) == T_HASH) {
|
32
|
+
argc--;
|
33
|
+
rblapack_options = argv[argc];
|
34
|
+
if (rb_hash_aref(rblapack_options, sHelp) == Qtrue) {
|
35
|
+
printf("%s\n", "USAGE:\n y = NumRu::Lapack.dla_syamv( uplo, alpha, a, x, incx, beta, y, incy, [:usage => usage, :help => help])\n\n\nFORTRAN MANUAL\n SUBROUTINE DLA_SYAMV( UPLO, N, ALPHA, A, LDA, X, INCX, BETA, Y, INCY )\n\n* Purpose\n* =======\n*\n* DLA_SYAMV performs the matrix-vector operation\n*\n* y := alpha*abs(A)*abs(x) + beta*abs(y),\n*\n* where alpha and beta are scalars, x and y are vectors and A is an\n* n by n symmetric matrix.\n*\n* This function is primarily used in calculating error bounds.\n* To protect against underflow during evaluation, components in\n* the resulting vector are perturbed away from zero by (N+1)\n* times the underflow threshold. To prevent unnecessarily large\n* errors for block-structure embedded in general matrices,\n* \"symbolically\" zero components are not perturbed. A zero\n* entry is considered \"symbolic\" if all multiplications involved\n* in computing that entry have at least one zero multiplicand.\n*\n\n* Arguments\n* ==========\n*\n* UPLO (input) INTEGER\n* On entry, UPLO specifies whether the upper or lower\n* triangular part of the array A is to be referenced as\n* follows:\n*\n* UPLO = BLAS_UPPER Only the upper triangular part of A\n* is to be referenced.\n*\n* UPLO = BLAS_LOWER Only the lower triangular part of A\n* is to be referenced.\n*\n* Unchanged on exit.\n*\n* N (input) INTEGER\n* On entry, N specifies the number of columns of the matrix A.\n* N must be at least zero.\n* Unchanged on exit.\n*\n* ALPHA - DOUBLE PRECISION .\n* On entry, ALPHA specifies the scalar alpha.\n* Unchanged on exit.\n*\n* A - DOUBLE PRECISION array of DIMENSION ( LDA, n ).\n* Before entry, the leading m by n part of the array A must\n* contain the matrix of coefficients.\n* Unchanged on exit.\n*\n* LDA (input) INTEGER\n* On entry, LDA specifies the first dimension of A as declared\n* in the calling (sub) program. LDA must be at least\n* max( 1, n ).\n* Unchanged on exit.\n*\n* X (input) DOUBLE PRECISION array, dimension\n* ( 1 + ( n - 1 )*abs( INCX ) )\n* Before entry, the incremented array X must contain the\n* vector x.\n* Unchanged on exit.\n*\n* INCX (input) INTEGER\n* On entry, INCX specifies the increment for the elements of\n* X. INCX must not be zero.\n* Unchanged on exit.\n*\n* BETA - DOUBLE PRECISION .\n* On entry, BETA specifies the scalar beta. When BETA is\n* supplied as zero then Y need not be set on input.\n* Unchanged on exit.\n*\n* Y (input/output) DOUBLE PRECISION array, dimension\n* ( 1 + ( n - 1 )*abs( INCY ) )\n* Before entry with BETA non-zero, the incremented array Y\n* must contain the vector y. On exit, Y is overwritten by the\n* updated vector y.\n*\n* INCY (input) INTEGER\n* On entry, INCY specifies the increment for the elements of\n* Y. INCY must not be zero.\n* Unchanged on exit.\n*\n\n* Further Details\n* ===============\n*\n* Level 2 Blas routine.\n*\n* -- Written on 22-October-1986.\n* Jack Dongarra, Argonne National Lab.\n* Jeremy Du Croz, Nag Central Office.\n* Sven Hammarling, Nag Central Office.\n* Richard Hanson, Sandia National Labs.\n* -- Modified for the absolute-value product, April 2006\n* Jason Riedy, UC Berkeley\n*\n* =====================================================================\n*\n\n");
|
36
|
+
return Qnil;
|
37
|
+
}
|
38
|
+
if (rb_hash_aref(rblapack_options, sUsage) == Qtrue) {
|
39
|
+
printf("%s\n", "USAGE:\n y = NumRu::Lapack.dla_syamv( uplo, alpha, a, x, incx, beta, y, incy, [:usage => usage, :help => help])\n");
|
40
|
+
return Qnil;
|
41
|
+
}
|
42
|
+
} else
|
43
|
+
rblapack_options = Qnil;
|
44
|
+
if (argc != 8 && argc != 8)
|
45
|
+
rb_raise(rb_eArgError,"wrong number of arguments (%d for 8)", argc);
|
46
|
+
rblapack_uplo = argv[0];
|
47
|
+
rblapack_alpha = argv[1];
|
48
|
+
rblapack_a = argv[2];
|
49
|
+
rblapack_x = argv[3];
|
50
|
+
rblapack_incx = argv[4];
|
51
|
+
rblapack_beta = argv[5];
|
52
|
+
rblapack_y = argv[6];
|
53
|
+
rblapack_incy = argv[7];
|
54
|
+
if (argc == 8) {
|
55
|
+
} else if (rblapack_options != Qnil) {
|
56
|
+
} else {
|
57
|
+
}
|
58
|
+
|
59
|
+
uplo = NUM2INT(rblapack_uplo);
|
60
|
+
if (!NA_IsNArray(rblapack_a))
|
61
|
+
rb_raise(rb_eArgError, "a (3th argument) must be NArray");
|
62
|
+
if (NA_RANK(rblapack_a) != 2)
|
63
|
+
rb_raise(rb_eArgError, "rank of a (3th argument) must be %d", 2);
|
64
|
+
lda = NA_SHAPE0(rblapack_a);
|
65
|
+
n = NA_SHAPE1(rblapack_a);
|
66
|
+
if (NA_TYPE(rblapack_a) != NA_DFLOAT)
|
67
|
+
rblapack_a = na_change_type(rblapack_a, NA_DFLOAT);
|
68
|
+
a = NA_PTR_TYPE(rblapack_a, doublereal*);
|
69
|
+
incx = NUM2INT(rblapack_incx);
|
70
|
+
incy = NUM2INT(rblapack_incy);
|
71
|
+
alpha = NUM2DBL(rblapack_alpha);
|
72
|
+
beta = NUM2DBL(rblapack_beta);
|
73
|
+
if (!NA_IsNArray(rblapack_x))
|
74
|
+
rb_raise(rb_eArgError, "x (4th argument) must be NArray");
|
75
|
+
if (NA_RANK(rblapack_x) != 1)
|
76
|
+
rb_raise(rb_eArgError, "rank of x (4th argument) must be %d", 1);
|
77
|
+
if (NA_SHAPE0(rblapack_x) != (1 + ( n - 1 )*abs( incx )))
|
78
|
+
rb_raise(rb_eRuntimeError, "shape 0 of x must be %d", 1 + ( n - 1 )*abs( incx ));
|
79
|
+
if (NA_TYPE(rblapack_x) != NA_DFLOAT)
|
80
|
+
rblapack_x = na_change_type(rblapack_x, NA_DFLOAT);
|
81
|
+
x = NA_PTR_TYPE(rblapack_x, doublereal*);
|
82
|
+
if (!NA_IsNArray(rblapack_y))
|
83
|
+
rb_raise(rb_eArgError, "y (7th argument) must be NArray");
|
84
|
+
if (NA_RANK(rblapack_y) != 1)
|
85
|
+
rb_raise(rb_eArgError, "rank of y (7th argument) must be %d", 1);
|
86
|
+
if (NA_SHAPE0(rblapack_y) != (1 + ( n - 1 )*abs( incy )))
|
87
|
+
rb_raise(rb_eRuntimeError, "shape 0 of y must be %d", 1 + ( n - 1 )*abs( incy ));
|
88
|
+
if (NA_TYPE(rblapack_y) != NA_DFLOAT)
|
89
|
+
rblapack_y = na_change_type(rblapack_y, NA_DFLOAT);
|
90
|
+
y = NA_PTR_TYPE(rblapack_y, doublereal*);
|
91
|
+
{
|
92
|
+
na_shape_t shape[1];
|
93
|
+
shape[0] = 1 + ( n - 1 )*abs( incy );
|
94
|
+
rblapack_y_out__ = na_make_object(NA_DFLOAT, 1, shape, cNArray);
|
95
|
+
}
|
96
|
+
y_out__ = NA_PTR_TYPE(rblapack_y_out__, doublereal*);
|
97
|
+
MEMCPY(y_out__, y, doublereal, NA_TOTAL(rblapack_y));
|
98
|
+
rblapack_y = rblapack_y_out__;
|
99
|
+
y = y_out__;
|
100
|
+
|
101
|
+
dla_syamv_(&uplo, &n, &alpha, a, &lda, x, &incx, &beta, y, &incy);
|
102
|
+
|
103
|
+
return rblapack_y;
|
104
|
+
}
|
105
|
+
|
106
|
+
void
|
107
|
+
init_lapack_dla_syamv(VALUE mLapack, VALUE sH, VALUE sU, VALUE zero){
|
108
|
+
sHelp = sH;
|
109
|
+
sUsage = sU;
|
110
|
+
rblapack_ZERO = zero;
|
111
|
+
|
112
|
+
rb_define_module_function(mLapack, "dla_syamv", rblapack_dla_syamv, -1);
|
113
|
+
}
|
data/ext/dla_syrcond.c
ADDED
@@ -0,0 +1,134 @@
|
|
1
|
+
#include "rb_lapack.h"
|
2
|
+
|
3
|
+
extern doublereal dla_syrcond_(char* uplo, integer* n, doublereal* a, integer* lda, doublereal* af, integer* ldaf, integer* ipiv, integer* cmode, doublereal* c, integer* info, doublereal* work, integer* iwork);
|
4
|
+
|
5
|
+
|
6
|
+
static VALUE
|
7
|
+
rblapack_dla_syrcond(int argc, VALUE *argv, VALUE self){
|
8
|
+
VALUE rblapack_uplo;
|
9
|
+
char uplo;
|
10
|
+
VALUE rblapack_a;
|
11
|
+
doublereal *a;
|
12
|
+
VALUE rblapack_af;
|
13
|
+
doublereal *af;
|
14
|
+
VALUE rblapack_ipiv;
|
15
|
+
integer *ipiv;
|
16
|
+
VALUE rblapack_cmode;
|
17
|
+
integer cmode;
|
18
|
+
VALUE rblapack_c;
|
19
|
+
doublereal *c;
|
20
|
+
VALUE rblapack_work;
|
21
|
+
doublereal *work;
|
22
|
+
VALUE rblapack_iwork;
|
23
|
+
integer *iwork;
|
24
|
+
VALUE rblapack_info;
|
25
|
+
integer info;
|
26
|
+
VALUE rblapack___out__;
|
27
|
+
doublereal __out__;
|
28
|
+
|
29
|
+
integer lda;
|
30
|
+
integer n;
|
31
|
+
integer ldaf;
|
32
|
+
|
33
|
+
VALUE rblapack_options;
|
34
|
+
if (argc > 0 && TYPE(argv[argc-1]) == T_HASH) {
|
35
|
+
argc--;
|
36
|
+
rblapack_options = argv[argc];
|
37
|
+
if (rb_hash_aref(rblapack_options, sHelp) == Qtrue) {
|
38
|
+
printf("%s\n", "USAGE:\n info, __out__ = NumRu::Lapack.dla_syrcond( uplo, a, af, ipiv, cmode, c, work, iwork, [:usage => usage, :help => help])\n\n\nFORTRAN MANUAL\n DOUBLE PRECISION FUNCTION DLA_SYRCOND( UPLO, N, A, LDA, AF, LDAF, IPIV, CMODE, C, INFO, WORK, IWORK )\n\n* Purpose\n* =======\n*\n* DLA_SYRCOND estimates the Skeel condition number of op(A) * op2(C)\n* where op2 is determined by CMODE as follows\n* CMODE = 1 op2(C) = C\n* CMODE = 0 op2(C) = I\n* CMODE = -1 op2(C) = inv(C)\n* The Skeel condition number cond(A) = norminf( |inv(A)||A| )\n* is computed by computing scaling factors R such that\n* diag(R)*A*op2(C) is row equilibrated and computing the standard\n* infinity-norm condition number.\n*\n\n* Arguments\n* ==========\n*\n* UPLO (input) CHARACTER*1\n* = 'U': Upper triangle of A is stored;\n* = 'L': Lower triangle of A is stored.\n*\n* N (input) INTEGER\n* The number of linear equations, i.e., the order of the\n* matrix A. N >= 0.\n*\n* A (input) DOUBLE PRECISION array, dimension (LDA,N)\n* On entry, the N-by-N matrix A.\n*\n* LDA (input) INTEGER\n* The leading dimension of the array A. LDA >= max(1,N).\n*\n* AF (input) DOUBLE PRECISION array, dimension (LDAF,N)\n* The block diagonal matrix D and the multipliers used to\n* obtain the factor U or L as computed by DSYTRF.\n*\n* LDAF (input) INTEGER\n* The leading dimension of the array AF. LDAF >= max(1,N).\n*\n* IPIV (input) INTEGER array, dimension (N)\n* Details of the interchanges and the block structure of D\n* as determined by DSYTRF.\n*\n* CMODE (input) INTEGER\n* Determines op2(C) in the formula op(A) * op2(C) as follows:\n* CMODE = 1 op2(C) = C\n* CMODE = 0 op2(C) = I\n* CMODE = -1 op2(C) = inv(C)\n*\n* C (input) DOUBLE PRECISION array, dimension (N)\n* The vector C in the formula op(A) * op2(C).\n*\n* INFO (output) INTEGER\n* = 0: Successful exit.\n* i > 0: The ith argument is invalid.\n*\n* WORK (input) DOUBLE PRECISION array, dimension (3*N).\n* Workspace.\n*\n* IWORK (input) INTEGER array, dimension (N).\n* Workspace.\n*\n\n* =====================================================================\n*\n* .. Local Scalars ..\n CHARACTER NORMIN\n INTEGER KASE, I, J\n DOUBLE PRECISION AINVNM, SMLNUM, TMP\n LOGICAL UP\n* ..\n* .. Local Arrays ..\n INTEGER ISAVE( 3 )\n* ..\n* .. External Functions ..\n LOGICAL LSAME\n INTEGER IDAMAX\n DOUBLE PRECISION DLAMCH\n EXTERNAL LSAME, IDAMAX, DLAMCH\n* ..\n* .. External Subroutines ..\n EXTERNAL DLACN2, DLATRS, DRSCL, XERBLA, DSYTRS\n* ..\n* .. Intrinsic Functions ..\n INTRINSIC ABS, MAX\n* ..\n\n");
|
39
|
+
return Qnil;
|
40
|
+
}
|
41
|
+
if (rb_hash_aref(rblapack_options, sUsage) == Qtrue) {
|
42
|
+
printf("%s\n", "USAGE:\n info, __out__ = NumRu::Lapack.dla_syrcond( uplo, a, af, ipiv, cmode, c, work, iwork, [:usage => usage, :help => help])\n");
|
43
|
+
return Qnil;
|
44
|
+
}
|
45
|
+
} else
|
46
|
+
rblapack_options = Qnil;
|
47
|
+
if (argc != 8 && argc != 8)
|
48
|
+
rb_raise(rb_eArgError,"wrong number of arguments (%d for 8)", argc);
|
49
|
+
rblapack_uplo = argv[0];
|
50
|
+
rblapack_a = argv[1];
|
51
|
+
rblapack_af = argv[2];
|
52
|
+
rblapack_ipiv = argv[3];
|
53
|
+
rblapack_cmode = argv[4];
|
54
|
+
rblapack_c = argv[5];
|
55
|
+
rblapack_work = argv[6];
|
56
|
+
rblapack_iwork = argv[7];
|
57
|
+
if (argc == 8) {
|
58
|
+
} else if (rblapack_options != Qnil) {
|
59
|
+
} else {
|
60
|
+
}
|
61
|
+
|
62
|
+
uplo = StringValueCStr(rblapack_uplo)[0];
|
63
|
+
if (!NA_IsNArray(rblapack_af))
|
64
|
+
rb_raise(rb_eArgError, "af (3th argument) must be NArray");
|
65
|
+
if (NA_RANK(rblapack_af) != 2)
|
66
|
+
rb_raise(rb_eArgError, "rank of af (3th argument) must be %d", 2);
|
67
|
+
ldaf = NA_SHAPE0(rblapack_af);
|
68
|
+
n = NA_SHAPE1(rblapack_af);
|
69
|
+
if (NA_TYPE(rblapack_af) != NA_DFLOAT)
|
70
|
+
rblapack_af = na_change_type(rblapack_af, NA_DFLOAT);
|
71
|
+
af = NA_PTR_TYPE(rblapack_af, doublereal*);
|
72
|
+
cmode = NUM2INT(rblapack_cmode);
|
73
|
+
if (!NA_IsNArray(rblapack_iwork))
|
74
|
+
rb_raise(rb_eArgError, "iwork (8th argument) must be NArray");
|
75
|
+
if (NA_RANK(rblapack_iwork) != 1)
|
76
|
+
rb_raise(rb_eArgError, "rank of iwork (8th argument) must be %d", 1);
|
77
|
+
if (NA_SHAPE0(rblapack_iwork) != n)
|
78
|
+
rb_raise(rb_eRuntimeError, "shape 0 of iwork must be the same as shape 1 of af");
|
79
|
+
if (NA_TYPE(rblapack_iwork) != NA_LINT)
|
80
|
+
rblapack_iwork = na_change_type(rblapack_iwork, NA_LINT);
|
81
|
+
iwork = NA_PTR_TYPE(rblapack_iwork, integer*);
|
82
|
+
if (!NA_IsNArray(rblapack_a))
|
83
|
+
rb_raise(rb_eArgError, "a (2th argument) must be NArray");
|
84
|
+
if (NA_RANK(rblapack_a) != 2)
|
85
|
+
rb_raise(rb_eArgError, "rank of a (2th argument) must be %d", 2);
|
86
|
+
lda = NA_SHAPE0(rblapack_a);
|
87
|
+
if (NA_SHAPE1(rblapack_a) != n)
|
88
|
+
rb_raise(rb_eRuntimeError, "shape 1 of a must be the same as shape 1 of af");
|
89
|
+
if (NA_TYPE(rblapack_a) != NA_DFLOAT)
|
90
|
+
rblapack_a = na_change_type(rblapack_a, NA_DFLOAT);
|
91
|
+
a = NA_PTR_TYPE(rblapack_a, doublereal*);
|
92
|
+
if (!NA_IsNArray(rblapack_c))
|
93
|
+
rb_raise(rb_eArgError, "c (6th argument) must be NArray");
|
94
|
+
if (NA_RANK(rblapack_c) != 1)
|
95
|
+
rb_raise(rb_eArgError, "rank of c (6th argument) must be %d", 1);
|
96
|
+
if (NA_SHAPE0(rblapack_c) != n)
|
97
|
+
rb_raise(rb_eRuntimeError, "shape 0 of c must be the same as shape 1 of af");
|
98
|
+
if (NA_TYPE(rblapack_c) != NA_DFLOAT)
|
99
|
+
rblapack_c = na_change_type(rblapack_c, NA_DFLOAT);
|
100
|
+
c = NA_PTR_TYPE(rblapack_c, doublereal*);
|
101
|
+
if (!NA_IsNArray(rblapack_ipiv))
|
102
|
+
rb_raise(rb_eArgError, "ipiv (4th argument) must be NArray");
|
103
|
+
if (NA_RANK(rblapack_ipiv) != 1)
|
104
|
+
rb_raise(rb_eArgError, "rank of ipiv (4th argument) must be %d", 1);
|
105
|
+
if (NA_SHAPE0(rblapack_ipiv) != n)
|
106
|
+
rb_raise(rb_eRuntimeError, "shape 0 of ipiv must be the same as shape 1 of af");
|
107
|
+
if (NA_TYPE(rblapack_ipiv) != NA_LINT)
|
108
|
+
rblapack_ipiv = na_change_type(rblapack_ipiv, NA_LINT);
|
109
|
+
ipiv = NA_PTR_TYPE(rblapack_ipiv, integer*);
|
110
|
+
if (!NA_IsNArray(rblapack_work))
|
111
|
+
rb_raise(rb_eArgError, "work (7th argument) must be NArray");
|
112
|
+
if (NA_RANK(rblapack_work) != 1)
|
113
|
+
rb_raise(rb_eArgError, "rank of work (7th argument) must be %d", 1);
|
114
|
+
if (NA_SHAPE0(rblapack_work) != (3*n))
|
115
|
+
rb_raise(rb_eRuntimeError, "shape 0 of work must be %d", 3*n);
|
116
|
+
if (NA_TYPE(rblapack_work) != NA_DFLOAT)
|
117
|
+
rblapack_work = na_change_type(rblapack_work, NA_DFLOAT);
|
118
|
+
work = NA_PTR_TYPE(rblapack_work, doublereal*);
|
119
|
+
|
120
|
+
__out__ = dla_syrcond_(&uplo, &n, a, &lda, af, &ldaf, ipiv, &cmode, c, &info, work, iwork);
|
121
|
+
|
122
|
+
rblapack_info = INT2NUM(info);
|
123
|
+
rblapack___out__ = rb_float_new((double)__out__);
|
124
|
+
return rb_ary_new3(2, rblapack_info, rblapack___out__);
|
125
|
+
}
|
126
|
+
|
127
|
+
void
|
128
|
+
init_lapack_dla_syrcond(VALUE mLapack, VALUE sH, VALUE sU, VALUE zero){
|
129
|
+
sHelp = sH;
|
130
|
+
sUsage = sU;
|
131
|
+
rblapack_ZERO = zero;
|
132
|
+
|
133
|
+
rb_define_module_function(mLapack, "dla_syrcond", rblapack_dla_syrcond, -1);
|
134
|
+
}
|
@@ -0,0 +1,283 @@
|
|
1
|
+
#include "rb_lapack.h"
|
2
|
+
|
3
|
+
extern VOID dla_syrfsx_extended_(integer* prec_type, char* uplo, integer* n, integer* nrhs, doublereal* a, integer* lda, doublereal* af, integer* ldaf, integer* ipiv, logical* colequ, doublereal* c, doublereal* b, integer* ldb, doublereal* y, integer* ldy, doublereal* berr_out, integer* n_norms, doublereal* err_bnds_norm, doublereal* err_bnds_comp, doublereal* res, doublereal* ayb, doublereal* dy, doublereal* y_tail, doublereal* rcond, integer* ithresh, doublereal* rthresh, doublereal* dz_ub, logical* ignore_cwise, integer* info);
|
4
|
+
|
5
|
+
|
6
|
+
static VALUE
|
7
|
+
rblapack_dla_syrfsx_extended(int argc, VALUE *argv, VALUE self){
|
8
|
+
VALUE rblapack_prec_type;
|
9
|
+
integer prec_type;
|
10
|
+
VALUE rblapack_uplo;
|
11
|
+
char uplo;
|
12
|
+
VALUE rblapack_a;
|
13
|
+
doublereal *a;
|
14
|
+
VALUE rblapack_af;
|
15
|
+
doublereal *af;
|
16
|
+
VALUE rblapack_ipiv;
|
17
|
+
integer *ipiv;
|
18
|
+
VALUE rblapack_colequ;
|
19
|
+
logical colequ;
|
20
|
+
VALUE rblapack_c;
|
21
|
+
doublereal *c;
|
22
|
+
VALUE rblapack_b;
|
23
|
+
doublereal *b;
|
24
|
+
VALUE rblapack_y;
|
25
|
+
doublereal *y;
|
26
|
+
VALUE rblapack_n_norms;
|
27
|
+
integer n_norms;
|
28
|
+
VALUE rblapack_err_bnds_norm;
|
29
|
+
doublereal *err_bnds_norm;
|
30
|
+
VALUE rblapack_err_bnds_comp;
|
31
|
+
doublereal *err_bnds_comp;
|
32
|
+
VALUE rblapack_res;
|
33
|
+
doublereal *res;
|
34
|
+
VALUE rblapack_ayb;
|
35
|
+
doublereal *ayb;
|
36
|
+
VALUE rblapack_dy;
|
37
|
+
doublereal *dy;
|
38
|
+
VALUE rblapack_y_tail;
|
39
|
+
doublereal *y_tail;
|
40
|
+
VALUE rblapack_rcond;
|
41
|
+
doublereal rcond;
|
42
|
+
VALUE rblapack_ithresh;
|
43
|
+
integer ithresh;
|
44
|
+
VALUE rblapack_rthresh;
|
45
|
+
doublereal rthresh;
|
46
|
+
VALUE rblapack_dz_ub;
|
47
|
+
doublereal dz_ub;
|
48
|
+
VALUE rblapack_ignore_cwise;
|
49
|
+
logical ignore_cwise;
|
50
|
+
VALUE rblapack_berr_out;
|
51
|
+
doublereal *berr_out;
|
52
|
+
VALUE rblapack_info;
|
53
|
+
integer info;
|
54
|
+
VALUE rblapack_y_out__;
|
55
|
+
doublereal *y_out__;
|
56
|
+
VALUE rblapack_err_bnds_norm_out__;
|
57
|
+
doublereal *err_bnds_norm_out__;
|
58
|
+
VALUE rblapack_err_bnds_comp_out__;
|
59
|
+
doublereal *err_bnds_comp_out__;
|
60
|
+
|
61
|
+
integer lda;
|
62
|
+
integer n;
|
63
|
+
integer ldaf;
|
64
|
+
integer ldb;
|
65
|
+
integer nrhs;
|
66
|
+
integer ldy;
|
67
|
+
integer n_err_bnds;
|
68
|
+
|
69
|
+
VALUE rblapack_options;
|
70
|
+
if (argc > 0 && TYPE(argv[argc-1]) == T_HASH) {
|
71
|
+
argc--;
|
72
|
+
rblapack_options = argv[argc];
|
73
|
+
if (rb_hash_aref(rblapack_options, sHelp) == Qtrue) {
|
74
|
+
printf("%s\n", "USAGE:\n berr_out, info, y, err_bnds_norm, err_bnds_comp = NumRu::Lapack.dla_syrfsx_extended( prec_type, uplo, a, af, ipiv, colequ, c, b, y, n_norms, err_bnds_norm, err_bnds_comp, res, ayb, dy, y_tail, rcond, ithresh, rthresh, dz_ub, ignore_cwise, [:usage => usage, :help => help])\n\n\nFORTRAN MANUAL\n SUBROUTINE DLA_SYRFSX_EXTENDED( PREC_TYPE, UPLO, N, NRHS, A, LDA, AF, LDAF, IPIV, COLEQU, C, B, LDB, Y, LDY, BERR_OUT, N_NORMS, ERR_BNDS_NORM, ERR_BNDS_COMP, RES, AYB, DY, Y_TAIL, RCOND, ITHRESH, RTHRESH, DZ_UB, IGNORE_CWISE, INFO )\n\n* Purpose\n* =======\n* \n* DLA_SYRFSX_EXTENDED improves the computed solution to a system of\n* linear equations by performing extra-precise iterative refinement\n* and provides error bounds and backward error estimates for the solution.\n* This subroutine is called by DSYRFSX to perform iterative refinement.\n* In addition to normwise error bound, the code provides maximum\n* componentwise error bound if possible. See comments for ERR_BNDS_NORM\n* and ERR_BNDS_COMP for details of the error bounds. Note that this\n* subroutine is only resonsible for setting the second fields of\n* ERR_BNDS_NORM and ERR_BNDS_COMP.\n*\n\n* Arguments\n* =========\n*\n* PREC_TYPE (input) INTEGER\n* Specifies the intermediate precision to be used in refinement.\n* The value is defined by ILAPREC(P) where P is a CHARACTER and\n* P = 'S': Single\n* = 'D': Double\n* = 'I': Indigenous\n* = 'X', 'E': Extra\n*\n* UPLO (input) CHARACTER*1\n* = 'U': Upper triangle of A is stored;\n* = 'L': Lower triangle of A is stored.\n*\n* N (input) INTEGER\n* The number of linear equations, i.e., the order of the\n* matrix A. N >= 0.\n*\n* NRHS (input) INTEGER\n* The number of right-hand-sides, i.e., the number of columns of the\n* matrix B.\n*\n* A (input) DOUBLE PRECISION array, dimension (LDA,N)\n* On entry, the N-by-N matrix A.\n*\n* LDA (input) INTEGER\n* The leading dimension of the array A. LDA >= max(1,N).\n*\n* AF (input) DOUBLE PRECISION array, dimension (LDAF,N)\n* The block diagonal matrix D and the multipliers used to\n* obtain the factor U or L as computed by DSYTRF.\n*\n* LDAF (input) INTEGER\n* The leading dimension of the array AF. LDAF >= max(1,N).\n*\n* IPIV (input) INTEGER array, dimension (N)\n* Details of the interchanges and the block structure of D\n* as determined by DSYTRF.\n*\n* COLEQU (input) LOGICAL\n* If .TRUE. then column equilibration was done to A before calling\n* this routine. This is needed to compute the solution and error\n* bounds correctly.\n*\n* C (input) DOUBLE PRECISION array, dimension (N)\n* The column scale factors for A. If COLEQU = .FALSE., C\n* is not accessed. If C is input, each element of C should be a power\n* of the radix to ensure a reliable solution and error estimates.\n* Scaling by powers of the radix does not cause rounding errors unless\n* the result underflows or overflows. Rounding errors during scaling\n* lead to refining with a matrix that is not equivalent to the\n* input matrix, producing error estimates that may not be\n* reliable.\n*\n* B (input) DOUBLE PRECISION array, dimension (LDB,NRHS)\n* The right-hand-side matrix B.\n*\n* LDB (input) INTEGER\n* The leading dimension of the array B. LDB >= max(1,N).\n*\n* Y (input/output) DOUBLE PRECISION array, dimension\n* (LDY,NRHS)\n* On entry, the solution matrix X, as computed by DSYTRS.\n* On exit, the improved solution matrix Y.\n*\n* LDY (input) INTEGER\n* The leading dimension of the array Y. LDY >= max(1,N).\n*\n* BERR_OUT (output) DOUBLE PRECISION array, dimension (NRHS)\n* On exit, BERR_OUT(j) contains the componentwise relative backward\n* error for right-hand-side j from the formula\n* max(i) ( abs(RES(i)) / ( abs(op(A_s))*abs(Y) + abs(B_s) )(i) )\n* where abs(Z) is the componentwise absolute value of the matrix\n* or vector Z. This is computed by DLA_LIN_BERR.\n*\n* N_NORMS (input) INTEGER\n* Determines which error bounds to return (see ERR_BNDS_NORM\n* and ERR_BNDS_COMP).\n* If N_NORMS >= 1 return normwise error bounds.\n* If N_NORMS >= 2 return componentwise error bounds.\n*\n* ERR_BNDS_NORM (input/output) DOUBLE PRECISION array, dimension\n* (NRHS, N_ERR_BNDS)\n* For each right-hand side, this array contains information about\n* various error bounds and condition numbers corresponding to the\n* normwise relative error, which is defined as follows:\n*\n* Normwise relative error in the ith solution vector:\n* max_j (abs(XTRUE(j,i) - X(j,i)))\n* ------------------------------\n* max_j abs(X(j,i))\n*\n* The array is indexed by the type of error information as described\n* below. There currently are up to three pieces of information\n* returned.\n*\n* The first index in ERR_BNDS_NORM(i,:) corresponds to the ith\n* right-hand side.\n*\n* The second index in ERR_BNDS_NORM(:,err) contains the following\n* three fields:\n* err = 1 \"Trust/don't trust\" boolean. Trust the answer if the\n* reciprocal condition number is less than the threshold\n* sqrt(n) * slamch('Epsilon').\n*\n* err = 2 \"Guaranteed\" error bound: The estimated forward error,\n* almost certainly within a factor of 10 of the true error\n* so long as the next entry is greater than the threshold\n* sqrt(n) * slamch('Epsilon'). This error bound should only\n* be trusted if the previous boolean is true.\n*\n* err = 3 Reciprocal condition number: Estimated normwise\n* reciprocal condition number. Compared with the threshold\n* sqrt(n) * slamch('Epsilon') to determine if the error\n* estimate is \"guaranteed\". These reciprocal condition\n* numbers are 1 / (norm(Z^{-1},inf) * norm(Z,inf)) for some\n* appropriately scaled matrix Z.\n* Let Z = S*A, where S scales each row by a power of the\n* radix so all absolute row sums of Z are approximately 1.\n*\n* This subroutine is only responsible for setting the second field\n* above.\n* See Lapack Working Note 165 for further details and extra\n* cautions.\n*\n* ERR_BNDS_COMP (input/output) DOUBLE PRECISION array, dimension\n* (NRHS, N_ERR_BNDS)\n* For each right-hand side, this array contains information about\n* various error bounds and condition numbers corresponding to the\n* componentwise relative error, which is defined as follows:\n*\n* Componentwise relative error in the ith solution vector:\n* abs(XTRUE(j,i) - X(j,i))\n* max_j ----------------------\n* abs(X(j,i))\n*\n* The array is indexed by the right-hand side i (on which the\n* componentwise relative error depends), and the type of error\n* information as described below. There currently are up to three\n* pieces of information returned for each right-hand side. If\n* componentwise accuracy is not requested (PARAMS(3) = 0.0), then\n* ERR_BNDS_COMP is not accessed. If N_ERR_BNDS .LT. 3, then at most\n* the first (:,N_ERR_BNDS) entries are returned.\n*\n* The first index in ERR_BNDS_COMP(i,:) corresponds to the ith\n* right-hand side.\n*\n* The second index in ERR_BNDS_COMP(:,err) contains the following\n* three fields:\n* err = 1 \"Trust/don't trust\" boolean. Trust the answer if the\n* reciprocal condition number is less than the threshold\n* sqrt(n) * slamch('Epsilon').\n*\n* err = 2 \"Guaranteed\" error bound: The estimated forward error,\n* almost certainly within a factor of 10 of the true error\n* so long as the next entry is greater than the threshold\n* sqrt(n) * slamch('Epsilon'). This error bound should only\n* be trusted if the previous boolean is true.\n*\n* err = 3 Reciprocal condition number: Estimated componentwise\n* reciprocal condition number. Compared with the threshold\n* sqrt(n) * slamch('Epsilon') to determine if the error\n* estimate is \"guaranteed\". These reciprocal condition\n* numbers are 1 / (norm(Z^{-1},inf) * norm(Z,inf)) for some\n* appropriately scaled matrix Z.\n* Let Z = S*(A*diag(x)), where x is the solution for the\n* current right-hand side and S scales each row of\n* A*diag(x) by a power of the radix so all absolute row\n* sums of Z are approximately 1.\n*\n* This subroutine is only responsible for setting the second field\n* above.\n* See Lapack Working Note 165 for further details and extra\n* cautions.\n*\n* RES (input) DOUBLE PRECISION array, dimension (N)\n* Workspace to hold the intermediate residual.\n*\n* AYB (input) DOUBLE PRECISION array, dimension (N)\n* Workspace. This can be the same workspace passed for Y_TAIL.\n*\n* DY (input) DOUBLE PRECISION array, dimension (N)\n* Workspace to hold the intermediate solution.\n*\n* Y_TAIL (input) DOUBLE PRECISION array, dimension (N)\n* Workspace to hold the trailing bits of the intermediate solution.\n*\n* RCOND (input) DOUBLE PRECISION\n* Reciprocal scaled condition number. This is an estimate of the\n* reciprocal Skeel condition number of the matrix A after\n* equilibration (if done). If this is less than the machine\n* precision (in particular, if it is zero), the matrix is singular\n* to working precision. Note that the error may still be small even\n* if this number is very small and the matrix appears ill-\n* conditioned.\n*\n* ITHRESH (input) INTEGER\n* The maximum number of residual computations allowed for\n* refinement. The default is 10. For 'aggressive' set to 100 to\n* permit convergence using approximate factorizations or\n* factorizations other than LU. If the factorization uses a\n* technique other than Gaussian elimination, the guarantees in\n* ERR_BNDS_NORM and ERR_BNDS_COMP may no longer be trustworthy.\n*\n* RTHRESH (input) DOUBLE PRECISION\n* Determines when to stop refinement if the error estimate stops\n* decreasing. Refinement will stop when the next solution no longer\n* satisfies norm(dx_{i+1}) < RTHRESH * norm(dx_i) where norm(Z) is\n* the infinity norm of Z. RTHRESH satisfies 0 < RTHRESH <= 1. The\n* default value is 0.5. For 'aggressive' set to 0.9 to permit\n* convergence on extremely ill-conditioned matrices. See LAWN 165\n* for more details.\n*\n* DZ_UB (input) DOUBLE PRECISION\n* Determines when to start considering componentwise convergence.\n* Componentwise convergence is only considered after each component\n* of the solution Y is stable, which we definte as the relative\n* change in each component being less than DZ_UB. The default value\n* is 0.25, requiring the first bit to be stable. See LAWN 165 for\n* more details.\n*\n* IGNORE_CWISE (input) LOGICAL\n* If .TRUE. then ignore componentwise convergence. Default value\n* is .FALSE..\n*\n* INFO (output) INTEGER\n* = 0: Successful exit.\n* < 0: if INFO = -i, the ith argument to DSYTRS had an illegal\n* value\n*\n\n* =====================================================================\n*\n* .. Local Scalars ..\n INTEGER UPLO2, CNT, I, J, X_STATE, Z_STATE\n DOUBLE PRECISION YK, DYK, YMIN, NORMY, NORMX, NORMDX, DXRAT,\n $ DZRAT, PREVNORMDX, PREV_DZ_Z, DXRATMAX,\n $ DZRATMAX, DX_X, DZ_Z, FINAL_DX_X, FINAL_DZ_Z,\n $ EPS, HUGEVAL, INCR_THRESH\n LOGICAL INCR_PREC\n* ..\n\n");
|
75
|
+
return Qnil;
|
76
|
+
}
|
77
|
+
if (rb_hash_aref(rblapack_options, sUsage) == Qtrue) {
|
78
|
+
printf("%s\n", "USAGE:\n berr_out, info, y, err_bnds_norm, err_bnds_comp = NumRu::Lapack.dla_syrfsx_extended( prec_type, uplo, a, af, ipiv, colequ, c, b, y, n_norms, err_bnds_norm, err_bnds_comp, res, ayb, dy, y_tail, rcond, ithresh, rthresh, dz_ub, ignore_cwise, [:usage => usage, :help => help])\n");
|
79
|
+
return Qnil;
|
80
|
+
}
|
81
|
+
} else
|
82
|
+
rblapack_options = Qnil;
|
83
|
+
if (argc != 21 && argc != 21)
|
84
|
+
rb_raise(rb_eArgError,"wrong number of arguments (%d for 21)", argc);
|
85
|
+
rblapack_prec_type = argv[0];
|
86
|
+
rblapack_uplo = argv[1];
|
87
|
+
rblapack_a = argv[2];
|
88
|
+
rblapack_af = argv[3];
|
89
|
+
rblapack_ipiv = argv[4];
|
90
|
+
rblapack_colequ = argv[5];
|
91
|
+
rblapack_c = argv[6];
|
92
|
+
rblapack_b = argv[7];
|
93
|
+
rblapack_y = argv[8];
|
94
|
+
rblapack_n_norms = argv[9];
|
95
|
+
rblapack_err_bnds_norm = argv[10];
|
96
|
+
rblapack_err_bnds_comp = argv[11];
|
97
|
+
rblapack_res = argv[12];
|
98
|
+
rblapack_ayb = argv[13];
|
99
|
+
rblapack_dy = argv[14];
|
100
|
+
rblapack_y_tail = argv[15];
|
101
|
+
rblapack_rcond = argv[16];
|
102
|
+
rblapack_ithresh = argv[17];
|
103
|
+
rblapack_rthresh = argv[18];
|
104
|
+
rblapack_dz_ub = argv[19];
|
105
|
+
rblapack_ignore_cwise = argv[20];
|
106
|
+
if (argc == 21) {
|
107
|
+
} else if (rblapack_options != Qnil) {
|
108
|
+
} else {
|
109
|
+
}
|
110
|
+
|
111
|
+
prec_type = NUM2INT(rblapack_prec_type);
|
112
|
+
if (!NA_IsNArray(rblapack_a))
|
113
|
+
rb_raise(rb_eArgError, "a (3th argument) must be NArray");
|
114
|
+
if (NA_RANK(rblapack_a) != 2)
|
115
|
+
rb_raise(rb_eArgError, "rank of a (3th argument) must be %d", 2);
|
116
|
+
lda = NA_SHAPE0(rblapack_a);
|
117
|
+
n = NA_SHAPE1(rblapack_a);
|
118
|
+
if (NA_TYPE(rblapack_a) != NA_DFLOAT)
|
119
|
+
rblapack_a = na_change_type(rblapack_a, NA_DFLOAT);
|
120
|
+
a = NA_PTR_TYPE(rblapack_a, doublereal*);
|
121
|
+
if (!NA_IsNArray(rblapack_ipiv))
|
122
|
+
rb_raise(rb_eArgError, "ipiv (5th argument) must be NArray");
|
123
|
+
if (NA_RANK(rblapack_ipiv) != 1)
|
124
|
+
rb_raise(rb_eArgError, "rank of ipiv (5th argument) must be %d", 1);
|
125
|
+
if (NA_SHAPE0(rblapack_ipiv) != n)
|
126
|
+
rb_raise(rb_eRuntimeError, "shape 0 of ipiv must be the same as shape 1 of a");
|
127
|
+
if (NA_TYPE(rblapack_ipiv) != NA_LINT)
|
128
|
+
rblapack_ipiv = na_change_type(rblapack_ipiv, NA_LINT);
|
129
|
+
ipiv = NA_PTR_TYPE(rblapack_ipiv, integer*);
|
130
|
+
if (!NA_IsNArray(rblapack_c))
|
131
|
+
rb_raise(rb_eArgError, "c (7th argument) must be NArray");
|
132
|
+
if (NA_RANK(rblapack_c) != 1)
|
133
|
+
rb_raise(rb_eArgError, "rank of c (7th argument) must be %d", 1);
|
134
|
+
if (NA_SHAPE0(rblapack_c) != n)
|
135
|
+
rb_raise(rb_eRuntimeError, "shape 0 of c must be the same as shape 1 of a");
|
136
|
+
if (NA_TYPE(rblapack_c) != NA_DFLOAT)
|
137
|
+
rblapack_c = na_change_type(rblapack_c, NA_DFLOAT);
|
138
|
+
c = NA_PTR_TYPE(rblapack_c, doublereal*);
|
139
|
+
if (!NA_IsNArray(rblapack_y))
|
140
|
+
rb_raise(rb_eArgError, "y (9th argument) must be NArray");
|
141
|
+
if (NA_RANK(rblapack_y) != 2)
|
142
|
+
rb_raise(rb_eArgError, "rank of y (9th argument) must be %d", 2);
|
143
|
+
ldy = NA_SHAPE0(rblapack_y);
|
144
|
+
nrhs = NA_SHAPE1(rblapack_y);
|
145
|
+
if (NA_TYPE(rblapack_y) != NA_DFLOAT)
|
146
|
+
rblapack_y = na_change_type(rblapack_y, NA_DFLOAT);
|
147
|
+
y = NA_PTR_TYPE(rblapack_y, doublereal*);
|
148
|
+
if (!NA_IsNArray(rblapack_err_bnds_norm))
|
149
|
+
rb_raise(rb_eArgError, "err_bnds_norm (11th argument) must be NArray");
|
150
|
+
if (NA_RANK(rblapack_err_bnds_norm) != 2)
|
151
|
+
rb_raise(rb_eArgError, "rank of err_bnds_norm (11th argument) must be %d", 2);
|
152
|
+
if (NA_SHAPE0(rblapack_err_bnds_norm) != nrhs)
|
153
|
+
rb_raise(rb_eRuntimeError, "shape 0 of err_bnds_norm must be the same as shape 1 of y");
|
154
|
+
n_err_bnds = NA_SHAPE1(rblapack_err_bnds_norm);
|
155
|
+
if (NA_TYPE(rblapack_err_bnds_norm) != NA_DFLOAT)
|
156
|
+
rblapack_err_bnds_norm = na_change_type(rblapack_err_bnds_norm, NA_DFLOAT);
|
157
|
+
err_bnds_norm = NA_PTR_TYPE(rblapack_err_bnds_norm, doublereal*);
|
158
|
+
if (!NA_IsNArray(rblapack_res))
|
159
|
+
rb_raise(rb_eArgError, "res (13th argument) must be NArray");
|
160
|
+
if (NA_RANK(rblapack_res) != 1)
|
161
|
+
rb_raise(rb_eArgError, "rank of res (13th argument) must be %d", 1);
|
162
|
+
if (NA_SHAPE0(rblapack_res) != n)
|
163
|
+
rb_raise(rb_eRuntimeError, "shape 0 of res must be the same as shape 1 of a");
|
164
|
+
if (NA_TYPE(rblapack_res) != NA_DFLOAT)
|
165
|
+
rblapack_res = na_change_type(rblapack_res, NA_DFLOAT);
|
166
|
+
res = NA_PTR_TYPE(rblapack_res, doublereal*);
|
167
|
+
if (!NA_IsNArray(rblapack_dy))
|
168
|
+
rb_raise(rb_eArgError, "dy (15th argument) must be NArray");
|
169
|
+
if (NA_RANK(rblapack_dy) != 1)
|
170
|
+
rb_raise(rb_eArgError, "rank of dy (15th argument) must be %d", 1);
|
171
|
+
if (NA_SHAPE0(rblapack_dy) != n)
|
172
|
+
rb_raise(rb_eRuntimeError, "shape 0 of dy must be the same as shape 1 of a");
|
173
|
+
if (NA_TYPE(rblapack_dy) != NA_DFLOAT)
|
174
|
+
rblapack_dy = na_change_type(rblapack_dy, NA_DFLOAT);
|
175
|
+
dy = NA_PTR_TYPE(rblapack_dy, doublereal*);
|
176
|
+
rcond = NUM2DBL(rblapack_rcond);
|
177
|
+
rthresh = NUM2DBL(rblapack_rthresh);
|
178
|
+
ignore_cwise = (rblapack_ignore_cwise == Qtrue);
|
179
|
+
uplo = StringValueCStr(rblapack_uplo)[0];
|
180
|
+
colequ = (rblapack_colequ == Qtrue);
|
181
|
+
n_norms = NUM2INT(rblapack_n_norms);
|
182
|
+
if (!NA_IsNArray(rblapack_ayb))
|
183
|
+
rb_raise(rb_eArgError, "ayb (14th argument) must be NArray");
|
184
|
+
if (NA_RANK(rblapack_ayb) != 1)
|
185
|
+
rb_raise(rb_eArgError, "rank of ayb (14th argument) must be %d", 1);
|
186
|
+
if (NA_SHAPE0(rblapack_ayb) != n)
|
187
|
+
rb_raise(rb_eRuntimeError, "shape 0 of ayb must be the same as shape 1 of a");
|
188
|
+
if (NA_TYPE(rblapack_ayb) != NA_DFLOAT)
|
189
|
+
rblapack_ayb = na_change_type(rblapack_ayb, NA_DFLOAT);
|
190
|
+
ayb = NA_PTR_TYPE(rblapack_ayb, doublereal*);
|
191
|
+
ithresh = NUM2INT(rblapack_ithresh);
|
192
|
+
if (!NA_IsNArray(rblapack_af))
|
193
|
+
rb_raise(rb_eArgError, "af (4th argument) must be NArray");
|
194
|
+
if (NA_RANK(rblapack_af) != 2)
|
195
|
+
rb_raise(rb_eArgError, "rank of af (4th argument) must be %d", 2);
|
196
|
+
ldaf = NA_SHAPE0(rblapack_af);
|
197
|
+
if (NA_SHAPE1(rblapack_af) != n)
|
198
|
+
rb_raise(rb_eRuntimeError, "shape 1 of af must be the same as shape 1 of a");
|
199
|
+
if (NA_TYPE(rblapack_af) != NA_DFLOAT)
|
200
|
+
rblapack_af = na_change_type(rblapack_af, NA_DFLOAT);
|
201
|
+
af = NA_PTR_TYPE(rblapack_af, doublereal*);
|
202
|
+
if (!NA_IsNArray(rblapack_err_bnds_comp))
|
203
|
+
rb_raise(rb_eArgError, "err_bnds_comp (12th argument) must be NArray");
|
204
|
+
if (NA_RANK(rblapack_err_bnds_comp) != 2)
|
205
|
+
rb_raise(rb_eArgError, "rank of err_bnds_comp (12th argument) must be %d", 2);
|
206
|
+
if (NA_SHAPE0(rblapack_err_bnds_comp) != nrhs)
|
207
|
+
rb_raise(rb_eRuntimeError, "shape 0 of err_bnds_comp must be the same as shape 1 of y");
|
208
|
+
if (NA_SHAPE1(rblapack_err_bnds_comp) != n_err_bnds)
|
209
|
+
rb_raise(rb_eRuntimeError, "shape 1 of err_bnds_comp must be the same as shape 1 of err_bnds_norm");
|
210
|
+
if (NA_TYPE(rblapack_err_bnds_comp) != NA_DFLOAT)
|
211
|
+
rblapack_err_bnds_comp = na_change_type(rblapack_err_bnds_comp, NA_DFLOAT);
|
212
|
+
err_bnds_comp = NA_PTR_TYPE(rblapack_err_bnds_comp, doublereal*);
|
213
|
+
dz_ub = NUM2DBL(rblapack_dz_ub);
|
214
|
+
if (!NA_IsNArray(rblapack_b))
|
215
|
+
rb_raise(rb_eArgError, "b (8th argument) must be NArray");
|
216
|
+
if (NA_RANK(rblapack_b) != 2)
|
217
|
+
rb_raise(rb_eArgError, "rank of b (8th argument) must be %d", 2);
|
218
|
+
ldb = NA_SHAPE0(rblapack_b);
|
219
|
+
if (NA_SHAPE1(rblapack_b) != nrhs)
|
220
|
+
rb_raise(rb_eRuntimeError, "shape 1 of b must be the same as shape 1 of y");
|
221
|
+
if (NA_TYPE(rblapack_b) != NA_DFLOAT)
|
222
|
+
rblapack_b = na_change_type(rblapack_b, NA_DFLOAT);
|
223
|
+
b = NA_PTR_TYPE(rblapack_b, doublereal*);
|
224
|
+
if (!NA_IsNArray(rblapack_y_tail))
|
225
|
+
rb_raise(rb_eArgError, "y_tail (16th argument) must be NArray");
|
226
|
+
if (NA_RANK(rblapack_y_tail) != 1)
|
227
|
+
rb_raise(rb_eArgError, "rank of y_tail (16th argument) must be %d", 1);
|
228
|
+
if (NA_SHAPE0(rblapack_y_tail) != n)
|
229
|
+
rb_raise(rb_eRuntimeError, "shape 0 of y_tail must be the same as shape 1 of a");
|
230
|
+
if (NA_TYPE(rblapack_y_tail) != NA_DFLOAT)
|
231
|
+
rblapack_y_tail = na_change_type(rblapack_y_tail, NA_DFLOAT);
|
232
|
+
y_tail = NA_PTR_TYPE(rblapack_y_tail, doublereal*);
|
233
|
+
{
|
234
|
+
na_shape_t shape[1];
|
235
|
+
shape[0] = nrhs;
|
236
|
+
rblapack_berr_out = na_make_object(NA_DFLOAT, 1, shape, cNArray);
|
237
|
+
}
|
238
|
+
berr_out = NA_PTR_TYPE(rblapack_berr_out, doublereal*);
|
239
|
+
{
|
240
|
+
na_shape_t shape[2];
|
241
|
+
shape[0] = ldy;
|
242
|
+
shape[1] = nrhs;
|
243
|
+
rblapack_y_out__ = na_make_object(NA_DFLOAT, 2, shape, cNArray);
|
244
|
+
}
|
245
|
+
y_out__ = NA_PTR_TYPE(rblapack_y_out__, doublereal*);
|
246
|
+
MEMCPY(y_out__, y, doublereal, NA_TOTAL(rblapack_y));
|
247
|
+
rblapack_y = rblapack_y_out__;
|
248
|
+
y = y_out__;
|
249
|
+
{
|
250
|
+
na_shape_t shape[2];
|
251
|
+
shape[0] = nrhs;
|
252
|
+
shape[1] = n_err_bnds;
|
253
|
+
rblapack_err_bnds_norm_out__ = na_make_object(NA_DFLOAT, 2, shape, cNArray);
|
254
|
+
}
|
255
|
+
err_bnds_norm_out__ = NA_PTR_TYPE(rblapack_err_bnds_norm_out__, doublereal*);
|
256
|
+
MEMCPY(err_bnds_norm_out__, err_bnds_norm, doublereal, NA_TOTAL(rblapack_err_bnds_norm));
|
257
|
+
rblapack_err_bnds_norm = rblapack_err_bnds_norm_out__;
|
258
|
+
err_bnds_norm = err_bnds_norm_out__;
|
259
|
+
{
|
260
|
+
na_shape_t shape[2];
|
261
|
+
shape[0] = nrhs;
|
262
|
+
shape[1] = n_err_bnds;
|
263
|
+
rblapack_err_bnds_comp_out__ = na_make_object(NA_DFLOAT, 2, shape, cNArray);
|
264
|
+
}
|
265
|
+
err_bnds_comp_out__ = NA_PTR_TYPE(rblapack_err_bnds_comp_out__, doublereal*);
|
266
|
+
MEMCPY(err_bnds_comp_out__, err_bnds_comp, doublereal, NA_TOTAL(rblapack_err_bnds_comp));
|
267
|
+
rblapack_err_bnds_comp = rblapack_err_bnds_comp_out__;
|
268
|
+
err_bnds_comp = err_bnds_comp_out__;
|
269
|
+
|
270
|
+
dla_syrfsx_extended_(&prec_type, &uplo, &n, &nrhs, a, &lda, af, &ldaf, ipiv, &colequ, c, b, &ldb, y, &ldy, berr_out, &n_norms, err_bnds_norm, err_bnds_comp, res, ayb, dy, y_tail, &rcond, &ithresh, &rthresh, &dz_ub, &ignore_cwise, &info);
|
271
|
+
|
272
|
+
rblapack_info = INT2NUM(info);
|
273
|
+
return rb_ary_new3(5, rblapack_berr_out, rblapack_info, rblapack_y, rblapack_err_bnds_norm, rblapack_err_bnds_comp);
|
274
|
+
}
|
275
|
+
|
276
|
+
void
|
277
|
+
init_lapack_dla_syrfsx_extended(VALUE mLapack, VALUE sH, VALUE sU, VALUE zero){
|
278
|
+
sHelp = sH;
|
279
|
+
sUsage = sU;
|
280
|
+
rblapack_ZERO = zero;
|
281
|
+
|
282
|
+
rb_define_module_function(mLapack, "dla_syrfsx_extended", rblapack_dla_syrfsx_extended, -1);
|
283
|
+
}
|