blob: 28555b3a3ceede2e01316a5b77a7a09a6e3e37f4 (
plain)
1
2
3
4
5
6
7
8
9
|
#include <type_traits>
using tt = std::true_type;
using ft = std::false_type;
int __host__ shared_cuda11_func(int x)
{
return x * x + std::integral_constant<int, 17>::value;
}
|