mirror of
https://github.com/gonum/gonum.git
synced 2025-10-05 15:16:59 +08:00
23 lines
413 B
Go
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
|
|
)
|