diff options
| author | David Chase <drchase@google.com> | 2025-11-12 16:33:03 -0500 |
|---|---|---|
| committer | David Chase <drchase@google.com> | 2025-11-18 09:26:05 -0800 |
| commit | 4004ff3523f03a6e42e60e47b41d8954dfa3a001 (patch) | |
| tree | 4f4dd21581b0bc6800bb7023840370585f4c32ef /src | |
| parent | 896f293a252ad5784a80f42f26b944eabf93eaa6 (diff) | |
| download | go-4004ff3523f03a6e42e60e47b41d8954dfa3a001.tar.xz | |
[dev.simd] simd: remove FlattenedTranspose from exports
Change-Id: If20dc09aa9d84d5b87f16a510e6e8d7fb06114b8
Reviewed-on: https://go-review.googlesource.com/c/go/+/719963
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Austin Clements <austin@google.com>
Diffstat (limited to 'src')
| -rw-r--r-- | src/simd/shuffles_amd64.go | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/simd/shuffles_amd64.go b/src/simd/shuffles_amd64.go index c46a2d06fe..e0d9db9266 100644 --- a/src/simd/shuffles_amd64.go +++ b/src/simd/shuffles_amd64.go @@ -6,14 +6,6 @@ package simd -// FlattenedTranspose tranposes x and y, regarded as a pair of 2x2 -// matrices, but then flattens the rows in order, i.e -// x: ABCD ==> a: A1B2 -// y: 1234 b: C3D4 -func (x Int32x4) FlattenedTranspose(y Int32x4) (a, b Int32x4) { - return x.InterleaveLo(y), x.InterleaveHi(y) -} - // These constants represent the source pattern for the four parameters // (a, b, c, d) passed to SelectFromPair and SelectFromPairGrouped. // L means the element comes from the 'x' vector (Low), and |
