mirror of
https://github.com/gonum/gonum.git
synced 2025-10-20 05:54:41 +08:00
Rearrange Lapack to be like BLAS. Implement cholesky decomposition
Responded to PR comments modified travis file Changed input and output types added back needed types by cgo Fixed perl script so it compiles Changes to genLapack to allow compilation Reinstate test-coverage.sh
This commit is contained in:
17
native/lapack_test.go
Normal file
17
native/lapack_test.go
Normal file
@@ -0,0 +1,17 @@
|
||||
package native
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/gonum/lapack/testlapack"
|
||||
)
|
||||
|
||||
var impl = Implementation{}
|
||||
|
||||
func TestDpotf2(t *testing.T) {
|
||||
testlapack.Dpotf2Test(t, impl)
|
||||
}
|
||||
|
||||
func TestDpotrf(t *testing.T) {
|
||||
testlapack.DpotrfTest(t, impl)
|
||||
}
|
Reference in New Issue
Block a user