Files
CMake/Tests/CudaOnly/Unity/a.cu
2024-08-02 13:35:53 -04:00

13 lines
146 B
Plaintext

__device__ int function(int a, int b);
__global__ void kernel()
{
function(2, 3);
}
void test_unity_functions()
{
kernel<<<1, 1, 1>>>();
}