<div dir="ltr"><div>Thanks John, that's exactly what I was looking for.</div><div><br></div><div>I didn't tell the whole story earlier to keep the example simple, but I need to be able to swap alternating sequences of 8 bytes due to rearrange() for LongVector being unusably slow. It's somewhat more involved that a simple "i ^ 1", but this does the trick:</div><div><br></div><div> VectorShuffle.fromOp(ps, i -> ((i / 8) ^ 1) * 8 + i % 8)</div><div><br></div><div>- Martin</div><div><br></div><div><br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Tue, Jul 9, 2024 at 4:19 PM John Rose <<a href="mailto:john.r.rose@oracle.com">john.r.rose@oracle.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Maybe VectorShuffle::fromOp will do the trick?<br>
<br>
var vs = VectorShuffle.fromOp(ps, i -> i ^ 1);<br>
<br>
On 9 Jul 2024, at 9:59, Martin Traverso wrote:<br>
<br>
> Hi,<br>
><br>
> I've been experimenting with the Vector API in an attempt to port the XXH3<br>
> hashing algorithm to Java. One of the steps requires rearranging the<br>
> elements of a vector by swapping adjacent values. I.e., (v0, v1, v2, v3,<br>
> ...) -> (v1, v0, v3, v2, ...).<br>
</blockquote></div>