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
7package vector
8
9const haveAccumulateSIMD = false
10
11func fixedAccumulateOpOverSIMD(dst []uint8, src []uint32) {}
12func fixedAccumulateOpSrcSIMD(dst []uint8, src []uint32) {}
13func fixedAccumulateMaskSIMD(buf []uint32) {}
14func floatingAccumulateOpOverSIMD(dst []uint8, src []float32) {}
15func floatingAccumulateOpSrcSIMD(dst []uint8, src []float32) {}
16func floatingAccumulateMaskSIMD(dst []uint32, src []float32) {}