mat: remove testing with blas/netlib package

This commit is contained in:
Vladimir Chalupecky
2021-05-27 09:54:30 +02:00
committed by Vladimír Chalupecký
parent efbee9bf28
commit 2ea969e78c
2 changed files with 0 additions and 18 deletions

View File

@@ -42,7 +42,6 @@ The current list of non-internal tags is as follows:
- safe — do not use assembly or unsafe
- bounds — use bounds checks even in internal calls
- cblas — use CGO gonum.org/v1/netlib/blas/netlib BLAS implementation in tests (only in [mat package](https://godoc.org/gonum.org/v1/gonum/mat))
- noasm — do not use assembly implementations
- tomita — use [Tomita, Tanaka, Takahashi pivot choice](https://doi.org/10.1016%2Fj.tcs.2006.06.015) for maximimal clique calculation, otherwise use random pivot (only in [topo package](https://godoc.org/gonum.org/v1/gonum/graph/topo))

View File

@@ -1,17 +0,0 @@
// 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.
//go:build cblas
// +build cblas
package mat
import (
"gonum.org/v1/gonum/blas/blas64"
"gonum.org/v1/netlib/blas/netlib"
)
func init() {
blas64.Use(netlib.Implementation{})
}