Skip to content

Commit

Permalink
blas/netlib: add tests for complex BLAS level 3 functions and run cod…
Browse files Browse the repository at this point in the history
…egen
  • Loading branch information
vladimir-ch committed Jan 19, 2019
1 parent 3431cf5 commit 560ce24
Show file tree
Hide file tree
Showing 2 changed files with 81 additions and 0 deletions.
60 changes: 60 additions & 0 deletions blas/netlib/blas.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 21 additions & 0 deletions blas/netlib/level3cmplx128_test.go
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) }

0 comments on commit 560ce24

Please sign in to comment.