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

     1  // Copyright ©2015 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  	"gonum.org/v1/gonum/blas"
     9  	"gonum.org/v1/gonum/blas/testblas"
    10  )
    11  
    12  const (
    13  	Sm  = testblas.SmallMat
    14  	Med = testblas.MediumMat
    15  	Lg  = testblas.LargeMat
    16  	Hg  = testblas.HugeMat
    17  )
    18  
    19  const (
    20  	T  = blas.Trans
    21  	NT = blas.NoTrans
    22  )