gonum.org/v1/gonum@v0.14.0/blas/gonum/level3float64_test.go (about)

     1  // Copyright ©2014 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 TestDgemm(t *testing.T) {
    14  	testblas.TestDgemm(t, impl)
    15  }
    16  
    17  func TestDsymm(t *testing.T) {
    18  	testblas.DsymmTest(t, impl)
    19  }
    20  
    21  func TestDtrsm(t *testing.T) {
    22  	testblas.DtrsmTest(t, impl)
    23  }
    24  
    25  func TestDsyrk(t *testing.T) {
    26  	testblas.DsyrkTest(t, impl)
    27  }
    28  
    29  func TestDsyr2k(t *testing.T) {
    30  	testblas.Dsyr2kTest(t, impl)
    31  }
    32  
    33  func TestDtrmm(t *testing.T) {
    34  	testblas.DtrmmTest(t, impl)
    35  }