Vladimir Chalupecky
41295780d5
cgo: add test for Dormhr
2016-06-15 08:54:27 +09:00
Vladimir Chalupecky
e947d6c6e3
cgo: add test for Dorghr
2016-06-14 10:41:51 +09:00
Vladimir Chalupecky
4821837335
cgo: add Dgehrd
2016-06-08 15:23:24 +09:00
btracey
a7639f128b
Add Dsyev and tests
2016-03-02 08:03:35 -07:00
btracey
909081d32b
remove orig
2016-01-06 21:38:58 -07:00
btracey
1211255fc4
Add Dbdsqr and test
2015-12-14 09:56:17 -07:00
btracey
b4c92ec2c1
Add Dorgbr and test. Fix bug in Dorgl2 while there
2015-12-11 17:00:35 -08:00
btracey
69fe9cef45
Add Dormbr and test
2015-12-10 08:16:12 -07:00
btracey
be045bbf9a
Add dorgqr and tests, update dorg2r tests, and fix cgo dorgqr
2015-10-27 17:45:04 -06:00
btracey
3d9d26a4f2
Add Dorg2r and test
2015-10-23 23:22:26 -06:00
btracey
77927b49f4
Add Dlacpy and tests
2015-10-05 15:02:47 -06:00
btracey
7411c6944f
AddDgetri for computing matrix inverses
2015-09-13 18:48:59 -06:00
btracey
e131d240e5
Add Dtrti2
2015-09-12 21:32:00 -06:00
kortschak
b073cd1830
lapack/cgo: re-enable Dpocon test
2015-09-11 09:43:58 +09:30
btracey
7d24247587
Disable cgo test
2015-09-09 23:58:49 -06:00
btracey
bffde37f95
Add Dpocon and tests
2015-09-09 23:00:50 -06:00
Brendan Tracey
96257fa90e
Merge pull request #44 from gonum/adddtrcon
...
Add Dtrcon and test
2015-09-09 22:09:03 -06:00
btracey
7476e69309
Add Dtrcon and test
2015-09-09 21:39:09 -06:00
kortschak
c1c001ae7b
lapack/cgo: re-enable Dlantr test
2015-09-10 09:43:41 +09:30
btracey
311b5656d9
Add Dgecon and tests, plus small fix to Dlacn2
2015-09-08 20:41:48 -06:00
btracey
88f250e5f0
Add Dlantr
2015-09-06 18:30:39 -06:00
btracey
2e760db794
Add cgo and lapack64 functions for performing a QR and LQ solve from the factorization
2015-08-10 23:56:05 -06:00
btracey
376807a880
Add the linear solve routines (Dgetrs, Dgels) to the lapack64 interface
2015-08-04 00:15:50 -06:00
btracey
80e9717bf5
Add LQ factorization to cgo and tests
...
Responded to PR comments
2015-08-03 23:14:09 -06:00
btracey
0331cab04a
Add QR factorization to lapack64 interface.
2015-08-03 10:21:37 -06:00
btracey
32bdb776ef
Add Dgetrs (compute a solution based on LU factorization) and test.
...
Responded to PR comments
2015-08-02 09:14:58 -06:00
btracey
a0a68a3b68
Add dgetrf and tests
...
removed unnecessary requirement
Implement Dlaswp in both directions
Responded to PR comments
2015-08-01 21:20:48 -06:00
btracey
809045e88e
Add Dgetf2 (unblocked LU algorithm) and tests
...
fixed incorrect comment and incorrect test
Real permutations and PR comments
Add cgo tests
fix indexing error
change return to ok
fix okays
fix ok
2015-07-29 23:48:29 -06:00
kortschak
434c403e6b
cgo: move bindings to new package
...
This is a clean up of the code generation (reducing the line count
sigificantly and making failure much noisier prior to the CGO call -
though will only catch the most egregious errors).
The approach I've taken here differs significantly from that in blas/cgo
where all the checks are done in the generated binding code. Here there
is too much complexity, so we do the checks in the Implementation method
and then call the clapack function.
Also use CGO_LDFLAGS env var; this is how we do things in blas and it
allows us to have code that will work with go get when the environment
is correctly set up - without requiring go generate or perl use by the
client.
2015-07-16 09:36:17 +09:30