Files
gonum/native/lapack_test.go
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

90 lines
1.5 KiB
Go

// Copyright ©2015 The gonum Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package native
import (
"testing"
"github.com/gonum/lapack/testlapack"
)
var impl = Implementation{}
func TestDgelqf(t *testing.T) {
testlapack.DgelqfTest(t, impl)
}
func TestDgelq2(t *testing.T) {
testlapack.Dgelq2Test(t, impl)
}
func TestDgels(t *testing.T) {
testlapack.DgelsTest(t, impl)
}
func TestDgeqr2(t *testing.T) {
testlapack.Dgeqr2Test(t, impl)
}
func TestDgeqrf(t *testing.T) {
testlapack.DgeqrfTest(t, impl)
}
func TestDgetf2(t *testing.T) {
testlapack.Dgetf2Test(t, impl)
}
func TestDlange(t *testing.T) {
testlapack.DlangeTest(t, impl)
}
func TestDlarfb(t *testing.T) {
testlapack.DlarfbTest(t, impl)
}
func TestDlarf(t *testing.T) {
testlapack.DlarfTest(t, impl)
}
func TestDlarfg(t *testing.T) {
testlapack.DlarfgTest(t, impl)
}
func TestDlarft(t *testing.T) {
testlapack.DlarftTest(t, impl)
}
func TestDorml2(t *testing.T) {
testlapack.Dorml2Test(t, impl)
}
func TestDormlq(t *testing.T) {
testlapack.DormlqTest(t, impl)
}
func TestDormqr(t *testing.T) {
testlapack.DormqrTest(t, impl)
}
func TestDorm2r(t *testing.T) {
testlapack.Dorm2rTest(t, impl)
}
func TestDpotf2(t *testing.T) {
testlapack.Dpotf2Test(t, impl)
}
func TestDpotrf(t *testing.T) {
testlapack.DpotrfTest(t, impl)
}
func TestIladlc(t *testing.T) {
testlapack.IladlcTest(t, impl)
}
func TestIladlr(t *testing.T) {
testlapack.IladlrTest(t, impl)
}