1
0
mirror of https://github.com/fumiama/base16384-sycl.git synced 2026-06-05 00:32:49 +08:00
Files
base16384-sycl/include/test/kernels.hpp
2025-10-13 13:54:20 +08:00

15 lines
329 B
C++

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