1
2#include <type_traits>
3
4#ifdef _WIN32
5# define EXPORT __declspec(dllexport)
6#else
7# define EXPORT
8#endif
9
10using tt = std::true_type;
11using ft = std::false_type;
12EXPORT int __host__ shared_hip11_func(int x)
13{
14 return x * x + std::integral_constant<int, 17>::value;
15}
16