10 lines
180 B
Plaintext
Raw Normal View History

2017-04-14 19:02:05 +02:00
#include <type_traits>
using tt = std::true_type;
using ft = std::false_type;
int __host__ static_cuda11_func(int x)
{
return x * x + std::integral_constant<int, 17>::value;
}