mirror of
https://github.com/fumiama/base16384-sycl.git
synced 2026-06-13 15:00:41 +08:00
14 lines
226 B
C++
14 lines
226 B
C++
#include <stdint.h>
|
|
|
|
#include <sycl/sycl.hpp>
|
|
|
|
#include "test.hpp"
|
|
|
|
SYCL_EXTERNAL uint8_t base16384::test::kernels_basic(uint8_t in) {
|
|
in *= in;
|
|
in %= 251;
|
|
in ^= in >> 2;
|
|
in += 17;
|
|
in *= 3;
|
|
return in ^ (in << 1);
|
|
} |