parent
396e355c94
commit
8eca221aac
9 changed files with 68 additions and 0 deletions
@ -0,0 +1,13 @@ |
||||
#include <stdio.h> |
||||
#include <iostream> |
||||
|
||||
__global__ void kernel (void){ |
||||
} |
||||
|
||||
int do_cuda_stuff() { |
||||
kernel<<<1,1>>>(); |
||||
|
||||
printf("Hello, World!\n"); |
||||
return 0; |
||||
} |
||||
|
@ -0,0 +1,7 @@ |
||||
#include<iostream> |
||||
|
||||
int do_cuda_stuff(); |
||||
|
||||
int main(int argc, char **argv) { |
||||
return do_cuda_stuff(); |
||||
} |
@ -0,0 +1,7 @@ |
||||
project('simple', 'cuda', 'cpp') |
||||
|
||||
exe = executable('prog', 'main.cpp', 'lib.cu') |
||||
test('cudatest', exe) |
||||
|
||||
subdir('static') |
||||
|
@ -0,0 +1,13 @@ |
||||
#include <stdio.h> |
||||
#include <iostream> |
||||
|
||||
__global__ void kernel (void){ |
||||
} |
||||
|
||||
int do_cuda_stuff() { |
||||
kernel<<<1,1>>>(); |
||||
|
||||
printf("Hello, World!\n"); |
||||
return 0; |
||||
} |
||||
|
@ -0,0 +1,13 @@ |
||||
#include <stdio.h> |
||||
#include <iostream> |
||||
|
||||
__global__ void kernel (void){ |
||||
} |
||||
|
||||
int do_cuda_stuff() { |
||||
kernel<<<1,1>>>(); |
||||
|
||||
printf("Hello, World!\n"); |
||||
return 0; |
||||
} |
||||
|
@ -0,0 +1,7 @@ |
||||
#include<iostream> |
||||
|
||||
int do_cuda_stuff(); |
||||
|
||||
int main(int argc, char **argv) { |
||||
return do_cuda_stuff(); |
||||
} |
@ -0,0 +1,4 @@ |
||||
l = static_library('clib', 'lib.cu') |
||||
exe = executable('staexe', 'main_static.cpp', |
||||
link_with : l) |
||||
test('static Cuda test', exe) |
Loading…
Reference in new issue