gonum.org/v1/gonum@v0.14.0/blas/gonum/level3cmplx128_test.go (about) 1 // Copyright ©2019 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 TestZgemm(t *testing.T) { testblas.ZgemmTest(t, impl) } 14 func TestZhemm(t *testing.T) { testblas.ZhemmTest(t, impl) } 15 func TestZherk(t *testing.T) { testblas.ZherkTest(t, impl) } 16 func TestZher2k(t *testing.T) { testblas.Zher2kTest(t, impl) } 17 func TestZsymm(t *testing.T) { testblas.ZsymmTest(t, impl) } 18 func TestZsyrk(t *testing.T) { testblas.ZsyrkTest(t, impl) } 19 func TestZsyr2k(t *testing.T) { testblas.Zsyr2kTest(t, impl) } 20 func TestZtrmm(t *testing.T) { testblas.ZtrmmTest(t, impl) } 21 func TestZtrsm(t *testing.T) { testblas.ZtrsmTest(t, impl) }