Files
gonum/matrix/mat64/cblas_test.go
Brendan Tracey 27963ab707 blas/lapack/internal: Remove cgo packages
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
2017-05-25 21:02:52 -06:00

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{})
}