File: galois_notamd64.go

package info (click to toggle)
golang-github-klauspost-reedsolomon 1.9.13-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bookworm-backports, forky, sid, trixie
  • size: 1,628 kB
  • sloc: asm: 33,006; makefile: 8
file content (13 lines) | stat: -rw-r--r-- 492 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
//+build !amd64 noasm appengine gccgo

// Copyright 2020, Klaus Post, see LICENSE for details.

package reedsolomon

func (r *reedSolomon) codeSomeShardsAvx512(matrixRows, inputs, outputs [][]byte, outputCount, byteCount int) {
	panic("codeSomeShardsAvx512 should not be called if built without asm")
}

func (r *reedSolomon) codeSomeShardsAvx512P(matrixRows, inputs, outputs [][]byte, outputCount, byteCount int) {
	panic("codeSomeShardsAvx512P should not be called if built without asm")
}