Files
CMake/Tests/Cuda/Complex/main.cpp
Brad King c1a5507917 CUDA: Fix Cuda.Complex test case extern function signatures
Make the return types of the extern function declared in `main.cpp`
match those in the method implementations.
2016-12-09 14:19:22 -05:00

15 lines
237 B
C++

#include <iostream>
#include "file1.h"
#include "file2.h"
int call_cuda_seperable_code(int x);
int mixed_launch_kernel(int x);
int main(int argc, char** argv)
{
call_cuda_seperable_code(42);
mixed_launch_kernel(42);
return 0;
}