I am trying to migrate a simple vectorAdd.cu from NVDIA CUDA samples to DPCPP. I am getting the following error during migration when using DPCT.
fatal error: 'helper_cude.h' file not found
Command used: dpct --in-root=./ vectorAdd.cu
And, When I tried to add include path of 'helper_cuda.h' using -I<path-of-helper_cuda.h>, I'm getting the error:
"Unknown Command line argument '-I'. Did you mean '-h'?"
Command used: dpct --in-root=./ --out-root=dpct_out1 -I "C:\ProgramData\NVIDIA Corporation\CUDA Samples\v10.2\common\inc" vectorAdd.cu
Unknown Command line argument
Any help here is much appreciated! Thanks