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// +build !amd64 appengine !gc !go1.6 noasm 6 7package vector 8 9const haveFixedAccumulateSIMD = false 10const haveFloatingAccumulateSIMD = false 11 12func fixedAccumulateOpOverSIMD(dst []uint8, src []uint32) {} 13func fixedAccumulateOpSrcSIMD(dst []uint8, src []uint32) {} 14func fixedAccumulateMaskSIMD(buf []uint32) {} 15func floatingAccumulateOpOverSIMD(dst []uint8, src []float32) {} 16func floatingAccumulateOpSrcSIMD(dst []uint8, src []float32) {} 17func floatingAccumulateMaskSIMD(dst []uint32, src []float32) {} 18