OSDN Git Service

new repo
[bytom/vapor.git] / vendor / gonum.org / v1 / gonum / blas / gonum / level2cmplx128_test.go
1 // Copyright ©2017 The Gonum Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
4
5 package gonum
6
7 import (
8         "testing"
9
10         "gonum.org/v1/gonum/blas/testblas"
11 )
12
13 func TestZgemv(t *testing.T) {
14         testblas.ZgemvTest(t, impl)
15 }
16
17 func TestZgerc(t *testing.T) {
18         testblas.ZgercTest(t, impl)
19 }
20
21 func TestZgeru(t *testing.T) {
22         testblas.ZgeruTest(t, impl)
23 }
24
25 func TestZhemv(t *testing.T) {
26         testblas.ZhemvTest(t, impl)
27 }
28
29 func TestZher(t *testing.T) {
30         testblas.ZherTest(t, impl)
31 }
32
33 func TestZher2(t *testing.T) {
34         testblas.Zher2Test(t, impl)
35 }
36
37 func TestZhpmv(t *testing.T) {
38         testblas.ZhpmvTest(t, impl)
39 }
40
41 func TestZhpr(t *testing.T) {
42         testblas.ZhprTest(t, impl)
43 }
44
45 func TestZhpr2(t *testing.T) {
46         testblas.Zhpr2Test(t, impl)
47 }
48
49 func TestZtpmv(t *testing.T) {
50         testblas.ZtpmvTest(t, impl)
51 }
52
53 func TestZtrmv(t *testing.T) {
54         testblas.ZtrmvTest(t, impl)
55 }
56
57 func TestZtrsv(t *testing.T) {
58         testblas.ZtrsvTest(t, impl)
59 }