OSDN Git Service

new repo
[bytom/vapor.git] / vendor / gonum.org / v1 / gonum / blas / gonum / level1cmplx128_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 TestDzasum(t *testing.T) {
14         testblas.DzasumTest(t, impl)
15 }
16
17 func TestDznrm2(t *testing.T) {
18         testblas.Dznrm2Test(t, impl)
19 }
20
21 func TestIzamax(t *testing.T) {
22         testblas.IzamaxTest(t, impl)
23 }
24
25 func TestZaxpy(t *testing.T) {
26         testblas.ZaxpyTest(t, impl)
27 }
28
29 func TestZcopy(t *testing.T) {
30         testblas.ZcopyTest(t, impl)
31 }
32
33 func TestZdotc(t *testing.T) {
34         testblas.ZdotcTest(t, impl)
35 }
36
37 func TestZdotu(t *testing.T) {
38         testblas.ZdotuTest(t, impl)
39 }
40
41 func TestZdscal(t *testing.T) {
42         testblas.ZdscalTest(t, impl)
43 }
44
45 func TestZscal(t *testing.T) {
46         testblas.ZscalTest(t, impl)
47 }
48
49 func TestZswap(t *testing.T) {
50         testblas.ZswapTest(t, impl)
51 }