2022-12-27 10:09:53 +08:00
|
|
|
//go:build !noasm
|
2022-12-25 18:44:29 +08:00
|
|
|
// +build !noasm
|
|
|
|
|
|
|
|
|
|
package resolv
|
|
|
|
|
|
|
|
|
|
// functions from the gonum package that optimizes arithmetic
|
|
|
|
|
// operations on lists of float64 values
|
|
|
|
|
func axpyUnitaryTo(dst []float64, alpha float64, x, y []float64)
|
|
|
|
|
func scalUnitaryTo(dst []float64, alpha float64, x []float64)
|