1
0
mirror of https://github.com/fumiama/base16384-sycl.git synced 2026-06-05 08:40:34 +08:00
Files
base16384-sycl/include/test.hpp
2025-10-09 16:08:09 +08:00

15 lines
324 B
C++

#ifndef _TEST_KERNELS_H_
#define _TEST_KERNELS_H_
#include <stdint.h>
namespace base16384 {
class test {
public:
// base16384_test_kernels_basic is a demo calculation that implements
// mod, bit, plus and mul calculations.
SYCL_EXTERNAL static uint8_t kernels_basic(uint8_t in);
};
} // namespace base16384
#endif