summaryrefslogtreecommitdiffstats
path: root/Tests/Cuda/Complex/mixed.cpp
blob: 205f0916fd290ac891b1f1548e5f5b44c46ccb32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

int dynamic_base_func(int);
int cuda_dynamic_host_func(int);
int file3_launch_kernel(int);

int dynamic_final_func(int x)
{
  return cuda_dynamic_host_func(dynamic_base_func(x));
}

int call_cuda_seperable_code(int x)
{
  return file3_launch_kernel(x);
}