mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
[dev.simd] cmd/compile, simd: change PairDotProdAccumulate to AddDotProd
This CL is generated by CL 692219. Change-Id: I50fa919f1edc5c6505bc6d3238f65b37fc7628b5 Reviewed-on: https://go-review.googlesource.com/c/go/+/692156 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: David Chase <drchase@google.com>
This commit is contained in:
parent
2c25f3e846
commit
c2d775d401
8 changed files with 353 additions and 353 deletions
|
|
@ -27,6 +27,12 @@ func simdGenericOps() []opData {
|
|||
{name: "AbsoluteMaskedInt64x2", argLength: 2, commutative: false},
|
||||
{name: "AbsoluteMaskedInt64x4", argLength: 2, commutative: false},
|
||||
{name: "AbsoluteMaskedInt64x8", argLength: 2, commutative: false},
|
||||
{name: "AddDotProdInt32x4", argLength: 3, commutative: false},
|
||||
{name: "AddDotProdInt32x8", argLength: 3, commutative: false},
|
||||
{name: "AddDotProdInt32x16", argLength: 3, commutative: false},
|
||||
{name: "AddDotProdMaskedInt32x4", argLength: 4, commutative: false},
|
||||
{name: "AddDotProdMaskedInt32x8", argLength: 4, commutative: false},
|
||||
{name: "AddDotProdMaskedInt32x16", argLength: 4, commutative: false},
|
||||
{name: "AddFloat32x4", argLength: 2, commutative: true},
|
||||
{name: "AddFloat32x8", argLength: 2, commutative: true},
|
||||
{name: "AddFloat32x16", argLength: 2, commutative: true},
|
||||
|
|
@ -892,12 +898,6 @@ func simdGenericOps() []opData {
|
|||
{name: "OrUint64x2", argLength: 2, commutative: true},
|
||||
{name: "OrUint64x4", argLength: 2, commutative: true},
|
||||
{name: "OrUint64x8", argLength: 2, commutative: true},
|
||||
{name: "PairDotProdAccumulateInt32x4", argLength: 3, commutative: false},
|
||||
{name: "PairDotProdAccumulateInt32x8", argLength: 3, commutative: false},
|
||||
{name: "PairDotProdAccumulateInt32x16", argLength: 3, commutative: false},
|
||||
{name: "PairDotProdAccumulateMaskedInt32x4", argLength: 4, commutative: false},
|
||||
{name: "PairDotProdAccumulateMaskedInt32x8", argLength: 4, commutative: false},
|
||||
{name: "PairDotProdAccumulateMaskedInt32x16", argLength: 4, commutative: false},
|
||||
{name: "PairDotProdInt16x8", argLength: 2, commutative: false},
|
||||
{name: "PairDotProdInt16x16", argLength: 2, commutative: false},
|
||||
{name: "PairDotProdInt16x32", argLength: 2, commutative: false},
|
||||
|
|
@ -1136,6 +1136,12 @@ func simdGenericOps() []opData {
|
|||
{name: "RoundFloat32x8", argLength: 1, commutative: false},
|
||||
{name: "RoundFloat64x2", argLength: 1, commutative: false},
|
||||
{name: "RoundFloat64x4", argLength: 1, commutative: false},
|
||||
{name: "SaturatedAddDotProdInt32x4", argLength: 3, commutative: false},
|
||||
{name: "SaturatedAddDotProdInt32x8", argLength: 3, commutative: false},
|
||||
{name: "SaturatedAddDotProdInt32x16", argLength: 3, commutative: false},
|
||||
{name: "SaturatedAddDotProdMaskedInt32x4", argLength: 4, commutative: false},
|
||||
{name: "SaturatedAddDotProdMaskedInt32x8", argLength: 4, commutative: false},
|
||||
{name: "SaturatedAddDotProdMaskedInt32x16", argLength: 4, commutative: false},
|
||||
{name: "SaturatedAddInt8x16", argLength: 2, commutative: true},
|
||||
{name: "SaturatedAddInt8x32", argLength: 2, commutative: true},
|
||||
{name: "SaturatedAddInt8x64", argLength: 2, commutative: true},
|
||||
|
|
@ -1160,12 +1166,6 @@ func simdGenericOps() []opData {
|
|||
{name: "SaturatedAddUint16x8", argLength: 2, commutative: true},
|
||||
{name: "SaturatedAddUint16x16", argLength: 2, commutative: true},
|
||||
{name: "SaturatedAddUint16x32", argLength: 2, commutative: true},
|
||||
{name: "SaturatedPairDotProdAccumulateInt32x4", argLength: 3, commutative: false},
|
||||
{name: "SaturatedPairDotProdAccumulateInt32x8", argLength: 3, commutative: false},
|
||||
{name: "SaturatedPairDotProdAccumulateInt32x16", argLength: 3, commutative: false},
|
||||
{name: "SaturatedPairDotProdAccumulateMaskedInt32x4", argLength: 4, commutative: false},
|
||||
{name: "SaturatedPairDotProdAccumulateMaskedInt32x8", argLength: 4, commutative: false},
|
||||
{name: "SaturatedPairDotProdAccumulateMaskedInt32x16", argLength: 4, commutative: false},
|
||||
{name: "SaturatedPairwiseAddInt16x8", argLength: 2, commutative: false},
|
||||
{name: "SaturatedPairwiseAddInt16x16", argLength: 2, commutative: false},
|
||||
{name: "SaturatedPairwiseSubInt16x8", argLength: 2, commutative: false},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue