1 // Copyright 2016 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 //go:build !amd64 || appengine || !gc || noasm 6 7 package vector 8 9 const haveAccumulateSIMD = false 10 11 func fixedAccumulateOpOverSIMD(dst []uint8, src []uint32) {} 12 func fixedAccumulateOpSrcSIMD(dst []uint8, src []uint32) {} 13 func fixedAccumulateMaskSIMD(buf []uint32) {} 14 func floatingAccumulateOpOverSIMD(dst []uint8, src []float32) {} 15 func floatingAccumulateOpSrcSIMD(dst []uint8, src []float32) {} 16 func floatingAccumulateMaskSIMD(dst []uint32, src []float32) {} 17