mirror of
https://github.com/gonum/gonum.git
synced 2025-10-08 16:40:06 +08:00
blas/blas64: reorder fields of Vector
... so that the increment is after the data slice. This matches the order in which the parameters are passed to the BLAS routines.
This commit is contained in:

committed by
Vladimír Chalupecký

parent
bcbf6c8e4e
commit
9ec2aaecbb
@@ -29,8 +29,8 @@ func Implementation() blas.Float64 {
|
||||
// Vector represents a vector with an associated element increment.
|
||||
type Vector struct {
|
||||
N int
|
||||
Inc int
|
||||
Data []float64
|
||||
Inc int
|
||||
}
|
||||
|
||||
// General represents a matrix using the conventional storage scheme.
|
||||
|
Reference in New Issue
Block a user