Mainflux.mainflux/vendor/gonum.org/v1/gonum/blas
Dušan Borovčanin 412593ae94
NOISSUE - Update dependencies (#1838)
* Update dependencies

Signed-off-by: dusanb94 <dusan.borovcanin@mainflux.com>

* Update dependencies

Fix Timescale Reader bug.

Signed-off-by: dusanb94 <dusan.borovcanin@mainflux.com>

* Revert influxdb-reader changes

Signed-off-by: dusanb94 <dusan.borovcanin@mainflux.com>

* Update dependencies to latest supported versions

Signed-off-by: dusanb94 <dusan.borovcanin@mainflux.com>

---------

Signed-off-by: dusanb94 <dusan.borovcanin@mainflux.com>
Co-authored-by: Drasko DRASKOVIC <drasko.draskovic@gmail.com>
2023-07-06 20:44:12 +02:00
..
blas64 Update Go version and dependencies (#1663) 2022-10-26 15:56:35 +02:00
cblas128 Update Go version and dependencies (#1663) 2022-10-26 15:56:35 +02:00
gonum Update Go version and dependencies (#1663) 2022-10-26 15:56:35 +02:00
README.md NOISSUE - Update dependencies (#1838) 2023-07-06 20:44:12 +02:00
blas.go MF-295 add mqtt benchmark tool (#817) 2019-08-13 12:56:31 +02:00
conversions.bash Migrate from dep to go modules (#971) 2019-11-27 15:29:34 +01:00
doc.go MF-295 add mqtt benchmark tool (#817) 2019-08-13 12:56:31 +02:00

README.md

Gonum BLAS

go.dev reference GoDoc

A collection of packages to provide BLAS functionality for the Go programming language

Installation

  go get gonum.org/v1/gonum/blas/...

Packages

blas

Defines BLAS API split in several interfaces.

blas/gonum

Go implementation of the BLAS API (incomplete, implements the float32 and float64 API).

blas/blas64 and blas/blas32

Wrappers for an implementation of the double (i.e., float64) and single (float32) precision real parts of the BLAS API.

package main

import (
	"fmt"

	"gonum.org/v1/gonum/blas/blas64"
)

func main() {
	v := blas64.Vector{Inc: 1, Data: []float64{1, 1, 1}}
	v.N = len(v.Data)
	fmt.Println("v has length:", blas64.Nrm2(v))
}

blas/cblas128 and blas/cblas64

Wrappers for an implementation of the double (i.e., complex128) and single (complex64) precision complex parts of the blas API.

Currently blas/cblas64 and blas/cblas128 require gonum.org/v1/netlib/blas.