acc_other.go 648 B

12345678910111213141516
  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. //go:build !amd64 || appengine || !gc || noasm
  5. package vector
  6. const haveAccumulateSIMD = false
  7. func fixedAccumulateOpOverSIMD(dst []uint8, src []uint32) {}
  8. func fixedAccumulateOpSrcSIMD(dst []uint8, src []uint32) {}
  9. func fixedAccumulateMaskSIMD(buf []uint32) {}
  10. func floatingAccumulateOpOverSIMD(dst []uint8, src []float32) {}
  11. func floatingAccumulateOpSrcSIMD(dst []uint8, src []float32) {}
  12. func floatingAccumulateMaskSIMD(dst []uint32, src []float32) {}