From f22b278b28ac9805aadd613a754a60c35b24ae69 Mon Sep 17 00:00:00 2001 From: Vladimir Chalupecky Date: Sat, 8 Dec 2018 22:30:49 +0100 Subject: [PATCH] blas: add deprecation notice --- blas.go | 3 +++ blas32/blas32.go | 3 +++ blas64/blas64.go | 3 +++ cblas128/cblas128.go | 3 +++ cblas64/cblas64.go | 3 +++ cgo/doc.go | 3 +++ native/doc.go | 3 +++ native/internal/math32/math.go | 3 +++ testblas/level1double.go | 3 +++ 9 files changed, 27 insertions(+) diff --git a/blas.go b/blas.go index 6c14aac..0ea4960 100644 --- a/blas.go +++ b/blas.go @@ -3,6 +3,9 @@ // license that can be found in the LICENSE file. /* +This repository is no longer maintained. +Development has moved to https://github.com/gonum/gonum. + Package blas provides interfaces for the BLAS linear algebra standard. All methods must perform appropriate parameter checking and panic if diff --git a/blas32/blas32.go b/blas32/blas32.go index 82971ea..746a2fa 100644 --- a/blas32/blas32.go +++ b/blas32/blas32.go @@ -2,6 +2,9 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. +// This repository is no longer maintained. +// Development has moved to https://github.com/gonum/gonum. +// // Package blas32 provides a simple interface to the float32 BLAS API. package blas32 diff --git a/blas64/blas64.go b/blas64/blas64.go index 088c30e..40841f5 100644 --- a/blas64/blas64.go +++ b/blas64/blas64.go @@ -2,6 +2,9 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. +// This repository is no longer maintained. +// Development has moved to https://github.com/gonum/gonum. +// // Package blas64 provides a simple interface to the float64 BLAS API. package blas64 diff --git a/cblas128/cblas128.go b/cblas128/cblas128.go index 60be9dd..ca5d4cb 100644 --- a/cblas128/cblas128.go +++ b/cblas128/cblas128.go @@ -2,6 +2,9 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. +// This repository is no longer maintained. +// Development has moved to https://github.com/gonum/gonum. +// // Package cblas128 provides a simple interface to the complex128 BLAS API. package cblas128 diff --git a/cblas64/cblas64.go b/cblas64/cblas64.go index 08c7738..695a0dd 100644 --- a/cblas64/cblas64.go +++ b/cblas64/cblas64.go @@ -2,6 +2,9 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. +// This repository is no longer maintained. +// Development has moved to https://github.com/gonum/gonum. +// // Package cblas64 provides a simple interface to the complex64 BLAS API. package cblas64 diff --git a/cgo/doc.go b/cgo/doc.go index 4e3efcf..1cfb30d 100644 --- a/cgo/doc.go +++ b/cgo/doc.go @@ -7,6 +7,9 @@ // Ensure changes made to blas/cgo are reflected in blas/native where relevant. /* +This repository is no longer maintained. +Development has moved to https://github.com/gonum/gonum. + Package cgo provides bindings to a C BLAS library. This wrapper interface panics when the input arguments are invalid as per the standard, for example if a vector increment is zero. Please note that the treatment of NaN values diff --git a/native/doc.go b/native/doc.go index cb63fe7..a4f971b 100644 --- a/native/doc.go +++ b/native/doc.go @@ -5,6 +5,9 @@ // Ensure changes made to blas/native are reflected in blas/cgo where relevant. /* +This repository is no longer maintained. +Development has moved to https://github.com/gonum/gonum. + Package native is a Go implementation of the BLAS API. This implementation panics when the input arguments are invalid as per the standard, for example if a vector increment is zero. Please note that the treatment of NaN values diff --git a/native/internal/math32/math.go b/native/internal/math32/math.go index b33401b..09c38d7 100644 --- a/native/internal/math32/math.go +++ b/native/internal/math32/math.go @@ -6,6 +6,9 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. +// This repository is no longer maintained. +// Development has moved to https://github.com/gonum/gonum. +// // Package math32 provides float32 versions of standard library math package // routines used by gonum/blas/native. package math32 diff --git a/testblas/level1double.go b/testblas/level1double.go index 9e16059..b13d2df 100644 --- a/testblas/level1double.go +++ b/testblas/level1double.go @@ -2,6 +2,9 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. +// This repository is no longer maintained. +// Development has moved to https://github.com/gonum/gonum. +// // Package testblas provides tests for blas implementations. package testblas