File: level2cmplx128_test.go

package info (click to toggle)
golang-gonum-v1-gonum 0.15.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 18,792 kB
  • sloc: asm: 6,252; fortran: 5,271; sh: 377; ruby: 211; makefile: 98
file content (79 lines) | stat: -rw-r--r-- 1,306 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
// Copyright ©2017 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 gonum

import (
	"testing"

	"gonum.org/v1/gonum/blas/testblas"
)

func TestZgbmv(t *testing.T) {
	testblas.ZgbmvTest(t, impl)
}

func TestZgemv(t *testing.T) {
	testblas.ZgemvTest(t, impl)
}

func TestZgerc(t *testing.T) {
	testblas.ZgercTest(t, impl)
}

func TestZgeru(t *testing.T) {
	testblas.ZgeruTest(t, impl)
}

func TestZhbmv(t *testing.T) {
	testblas.ZhbmvTest(t, impl)
}

func TestZhemv(t *testing.T) {
	testblas.ZhemvTest(t, impl)
}

func TestZher(t *testing.T) {
	testblas.ZherTest(t, impl)
}

func TestZher2(t *testing.T) {
	testblas.Zher2Test(t, impl)
}

func TestZhpmv(t *testing.T) {
	testblas.ZhpmvTest(t, impl)
}

func TestZhpr(t *testing.T) {
	testblas.ZhprTest(t, impl)
}

func TestZhpr2(t *testing.T) {
	testblas.Zhpr2Test(t, impl)
}

func TestZtbmv(t *testing.T) {
	testblas.ZtbmvTest(t, impl)
}

func TestZtbsv(t *testing.T) {
	testblas.ZtbsvTest(t, impl)
}

func TestZtpmv(t *testing.T) {
	testblas.ZtpmvTest(t, impl)
}

func TestZtpsv(t *testing.T) {
	testblas.ZtpsvTest(t, impl)
}

func TestZtrmv(t *testing.T) {
	testblas.ZtrmvTest(t, impl)
}

func TestZtrsv(t *testing.T) {
	testblas.ZtrsvTest(t, impl)
}