Files
gonum/blas/native/bench_test.go
2017-05-23 00:03:03 -06:00

23 lines
413 B
Go

// Copyright ©2015 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 native
import (
"gonum.org/v1/gonum/blas"
"gonum.org/v1/gonum/blas/testblas"
)
const (
Sm = testblas.SmallMat
Med = testblas.MediumMat
Lg = testblas.LargeMat
Hg = testblas.HugeMat
)
const (
T = blas.Trans
NT = blas.NoTrans
)