#include #include __global__ void mykernel(void) { printf("*** Hello World from the GPU ***!\n"); } int main(int argc, char** argv) { mykernel<<<1,1>>>(); cudaDeviceSynchronize(); printf("Hello World!\n"); return 0; }