acc_other.go 691 B

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