Hi all,
The version of CUDA Toolkit and GPU Computing SDK in my computer are both 3.0.
When build the project “CUDA-EC_v102” in VS2008 enviroment, I encountered the errors as following:
- Error 76 error C2065: ‘comp_ascii’ : undeclared identifier d:\cuda\cuda-ec\cuda-ec\utils.cpp 17 CUDA-EC
The error happened in the line:
c = comp_ascii[n];
,
which lies in the file utils.cpp. I could not find any files that contain ‘comp_ascii’ in the project “CUDA-EC_v102”, as well as in the “include” directory of “NVIDIA GPU Computing SDK” and “CUDA Toolkit”.
- Error 77 error C2065: ‘unmasked_nuc’ : undeclared identifier d:\cuda\cuda-ec\cuda-ec\utils.cpp 113 CUDA-EC
This error was in the line
dnas->seq[i] = unmasked_nuc[dnas->seq[i]];
in the file utils.cpp. I found that the array “unmasked_nuc” was declared and defined in the file FixErrorsVoting_kernel.cu.
What could I do to solve the above problem? I am so appreciated if someone provide some advice or any kind of help. Thanks!