Files
gonum/native/lapack_test.go
2015-08-02 09:14:58 -06:00

98 lines
1.6 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 TestDgetrf(t *testing.T) {
testlapack.DgetrfTest(t, impl)
}
func TestDgetrs(t *testing.T) {
testlapack.DgetrsTest(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)
}