mirror of
https://github.com/gonum/gonum.git
synced 2025-10-30 10:06:29 +08:00
This removes the cgo packages from the main gonum library now that they have been moved to gonum.org/v1/netlib. Specifically, this removes blas/cgo, lapack/cgo, and internal/binding
17 lines
321 B
Go
17 lines
321 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.
|
|
|
|
//+build cblas
|
|
|
|
package mat64
|
|
|
|
import (
|
|
"gonum.org/v1/gonum/blas/blas64"
|
|
"gonum.org/v1/netlib/blas"
|
|
)
|
|
|
|
func init() {
|
|
blas64.Use(blas.Implementation{})
|
|
}
|