1
0
mirror of https://github.com/fumiama/base16384-sycl.git synced 2026-06-20 03:03:34 +08:00

fix(ci): oneAPI enabling

This commit is contained in:
源文雨
2025-10-13 16:28:27 +08:00
parent 85a41a84ca
commit cc5dacf669
2 changed files with 9 additions and 6 deletions

View File

@@ -5,9 +5,9 @@
SYCL_EXTERNAL std::uint8_t base16384::test::kernels_basic(uint8_t in) {
in *= in;
in %= 251;
in %= (uint8_t)251;
in ^= in >> 2;
in += 17;
in *= 3;
in += (uint8_t)17;
in *= (uint8_t)3;
return in ^ (in << 1);
}
}