Hello
I am running under Win7/64, CUDA 10, dd 416.34.
I have a Quadro K620 and TitanV in my machine.
I am grabbed the vectorAddDrv example code and I am trying to do this on the TitanV card …
cuProfilerInitialize(config.txt, output.txt, CU_OUT_KEY_VALUE_PAIR)
cuProfilerStart();
checkCudaErrors(cuLaunchKernel(vecAdd_kernel, blocksPerGrid, 1, 1,
threadsPerBlock, 1, 1,
0,
NULL, args, NULL));
cuProfilerStop();
I can’t figure out the format of the config.txt file? How do I tell it which metrics to acquire?
–Bob