I am trying to run this C++ console app project using cmakefile and I am getting this error for a cuda optimizer which was written in this project.
// wrap the existing CUDA CSR data in a viennacl::compressed_matrix:
viennacl::compressed_matrix<double> vcl_A(d_L_Row, d_L_Col, d_L, viennacl::CUDA_MEMORY, ncols, ncols, nnzL);
viennacl::vector<double> vcl_R(d_R, viennacl::CUDA_MEMORY, ncols);
viennacl::vector<double> vcl_X(X, viennacl::CUDA_MEMORY, ncols);
for above part of code shows this error:
no instance of constructor "viennacl::compressed_matrix<NumericT, AlignmentV>::compressed_matrix [with NumericT=double, AlignmentV=1U]" matches the argument list
what exactly this means? how to fix it?