vyre 0.4.0

GPU compute intermediate representation with a standard operation library
Documentation
1
2
3
fn vyre_sip_rotl64(x: u64, n: u32) -> u64 {
  return (x << n) | (x >> ((64u - n) & 63u));
}