dynamic parallelism

Hi ,

I have written a simple code to test dynamic parallelism, the code is given below#include <stdio.h>

#include “cuda_runtime.h”
#include “device_launch_parameters.h”
global void d_hello()
{
int a = 5;
printf("%d ",a);
}
global void hello()
{
printf(“hello device\n”);
d_hello<<<1,32>>>();
}
int main()
{
printf(“hello\n”);
hello<<<1,32>>>();
cudaDeviceSynchronize();
}

I have compiled the code using the flags -arch=compute_37,-rdc=true and the compilation is not throwing any errors and the executable is generated. But when I run the executable I see no output.

I am using Tesla K80 fro aws instance and my cuda version is 7.5.
Thanks for the help in advance! :)

link against the device runtime

-lcudadevrt

run any of the CDP cuda sample codes/projects

add proper CUDA error checking to your code

run you code with cuda-memcheck, or the memory checker enabled within visual studio

I am getting error when I am linking with cudadevrt, the error is as follows:

nvlink error : Undefined reference to ‘cudaGetParameterBufferV2’ in ‘myprog.o’
nvlink error : Undefined reference to ‘cudaLaunchDeviceV2’ in ‘myprog.o’
nvlink error : Undefined reference to ‘cudaDeviceSynchronize’ in ‘myprog.o’

I’m not on a AWS instance, and I am on linux.

I had to add the include of stdio.h to get your code to compile. When I do that here’s what I see:

$ cat t1462.cu
#include "cuda_runtime.h"
#include "device_launch_parameters.h"
#include <stdio.h>
__global__ void d_hello()
{
int a = 5;
printf("%d ",a);
}
__global__ void hello()
{
printf("hello device\n");
d_hello<<<1,32>>>();
}
int main()
{
printf("hello\n");
hello<<<1,32>>>();
cudaDeviceSynchronize();
}
$ nvcc -arch=compute_37 -rdc=true  t1462.cu -o t1462 -lcudadevrt
$ ./t1462
hello
hello device
hello device
hello device
hello device
hello device
hello device
hello device
hello device
hello device
hello device
hello device
hello device
hello device
hello device
hello device
hello device
hello device
hello device
hello device
hello device
hello device
hello device
hello device
hello device
hello device
hello device
hello device
hello device
hello device
hello device
hello device
hello device
5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 $

<stdio.h> was included in the code that I compiled and linked it is only that I missed pasting it here. I installed cuda and the driver as specified in the installation guide. But still I am getting the same nvlink error.
Is there any way to check if I have the cudadevrt required for the linking. Please help me as I am beginner in this. Thanks in advance.