Skip to content
This repository has been archived by the owner on Dec 9, 2018. It is now read-only.

Commit

Permalink
blas: add deprecation notice
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimir-ch committed Dec 8, 2018
1 parent e7c5890 commit f22b278
Show file tree
Hide file tree
Showing 9 changed files with 27 additions and 0 deletions.
3 changes: 3 additions & 0 deletions blas.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions blas32/blas32.go
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
3 changes: 3 additions & 0 deletions blas64/blas64.go
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
3 changes: 3 additions & 0 deletions cblas128/cblas128.go
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
3 changes: 3 additions & 0 deletions cblas64/cblas64.go
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
3 changes: 3 additions & 0 deletions cgo/doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions native/doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions native/internal/math32/math.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions testblas/level1double.go
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit f22b278

Please sign in to comment.