1//+build !amd64 noasm appengine gccgo
2
3// Copyright 2020, Klaus Post, see LICENSE for details.
4
5package reedsolomon
6
7func (r *reedSolomon) codeSomeShardsAvx512(matrixRows, inputs, outputs [][]byte, outputCount, byteCount int) {
8	panic("codeSomeShardsAvx512 should not be called if built without asm")
9}
10
11func (r *reedSolomon) codeSomeShardsAvx512P(matrixRows, inputs, outputs [][]byte, outputCount, byteCount int) {
12	panic("codeSomeShardsAvx512P should not be called if built without asm")
13}
14