summaryrefslogtreecommitdiffstats
path: root/Tests/Cuda/Complex/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/Cuda/Complex/main.cpp')
-rw-r--r--Tests/Cuda/Complex/main.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/Tests/Cuda/Complex/main.cpp b/Tests/Cuda/Complex/main.cpp
new file mode 100644
index 0000000..a72ffd7
--- /dev/null
+++ b/Tests/Cuda/Complex/main.cpp
@@ -0,0 +1,14 @@
+#include <iostream>
+
+#include "file1.h"
+#include "file2.h"
+
+result_type call_cuda_seperable_code(int x);
+result_type mixed_launch_kernel(int x);
+
+int main(int argc, char** argv)
+{
+ call_cuda_seperable_code(42);
+ mixed_launch_kernel(42);
+ return 0;
+}