OSDN Git Service

Merge pull request #201 from Bytom/v0.1
[bytom/vapor.git] / vendor / gonum.org / v1 / gonum / blas / gonum / dgerbench_test.go
diff --git a/vendor/gonum.org/v1/gonum/blas/gonum/dgerbench_test.go b/vendor/gonum.org/v1/gonum/blas/gonum/dgerbench_test.go
deleted file mode 100644 (file)
index d26efca..0000000
+++ /dev/null
@@ -1,51 +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.
-
-package gonum
-
-import (
-       "testing"
-
-       "gonum.org/v1/gonum/blas/testblas"
-)
-
-func BenchmarkDgerSmSmInc1(b *testing.B) {
-       testblas.DgerBenchmark(b, impl, Sm, Sm, 1, 1)
-}
-
-func BenchmarkDgerSmSmIncN(b *testing.B) {
-       testblas.DgerBenchmark(b, impl, Sm, Sm, 2, 3)
-}
-
-func BenchmarkDgerMedMedInc1(b *testing.B) {
-       testblas.DgerBenchmark(b, impl, Med, Med, 1, 1)
-}
-
-func BenchmarkDgerMedMedIncN(b *testing.B) {
-       testblas.DgerBenchmark(b, impl, Med, Med, 2, 3)
-}
-
-func BenchmarkDgerLgLgInc1(b *testing.B) {
-       testblas.DgerBenchmark(b, impl, Lg, Lg, 1, 1)
-}
-
-func BenchmarkDgerLgLgIncN(b *testing.B) {
-       testblas.DgerBenchmark(b, impl, Lg, Lg, 2, 3)
-}
-
-func BenchmarkDgerLgSmInc1(b *testing.B) {
-       testblas.DgerBenchmark(b, impl, Lg, Sm, 1, 1)
-}
-
-func BenchmarkDgerLgSmIncN(b *testing.B) {
-       testblas.DgerBenchmark(b, impl, Lg, Sm, 2, 3)
-}
-
-func BenchmarkDgerSmLgInc1(b *testing.B) {
-       testblas.DgerBenchmark(b, impl, Sm, Lg, 1, 1)
-}
-
-func BenchmarkDgerSmLgIncN(b *testing.B) {
-       testblas.DgerBenchmark(b, impl, Sm, Lg, 2, 3)
-}