blob: 5cda629d8f1a0d155c4b539e40b511e015e633b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <stdio.h>
#include <cuda_runtime.h>
#include "kernels.h"
TAG_HIDDEN __global__ void kernel (void){
}
TAG_PUBLIC int run_tests(void) {
kernel<<<1,1>>>();
return (int)cudaDeviceSynchronize();
}
|