lapack: imported lapack as a subtree

This commit is contained in:
Brendan Tracey
2017-05-23 00:02:46 -06:00
305 changed files with 113812 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
// Copyright ©2016 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 go1.7
package native
import (
"testing"
"github.com/gonum/lapack/testlapack"
)
func BenchmarkDgeev(b *testing.B) { testlapack.DgeevBenchmark(b, impl) }