mirror of
https://github.com/fumiama/base16384-sycl.git
synced 2026-06-05 08:40:34 +08:00
15 lines
329 B
C++
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 |