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:
Vladimir Chalupecky
2019-01-27 15:20:01 +01:00
committed by Vladimír Chalupecký
parent bcbf6c8e4e
commit 9ec2aaecbb

View File

@@ -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.