-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
blas/netlib: add tests for complex BLAS level 3 functions and run cod…
…egen
- Loading branch information
1 parent
3431cf5
commit 560ce24
Showing
2 changed files
with
81 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// Copyright ©2019 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 netlib | ||
|
||
import ( | ||
"testing" | ||
|
||
"gonum.org/v1/gonum/blas/testblas" | ||
) | ||
|
||
func TestZgemm(t *testing.T) { testblas.ZgemmTest(t, impl) } | ||
func TestZhemm(t *testing.T) { testblas.ZhemmTest(t, impl) } | ||
func TestZherk(t *testing.T) { testblas.ZherkTest(t, impl) } | ||
func TestZher2k(t *testing.T) { testblas.Zher2kTest(t, impl) } | ||
func TestZsymm(t *testing.T) { testblas.ZsymmTest(t, impl) } | ||
func TestZsyrk(t *testing.T) { testblas.ZsyrkTest(t, impl) } | ||
func TestZsyr2k(t *testing.T) { testblas.Zsyr2kTest(t, impl) } | ||
func TestZtrmm(t *testing.T) { testblas.ZtrmmTest(t, impl) } | ||
func TestZtrsm(t *testing.T) { testblas.ZtrsmTest(t, impl) } |