You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when i wrap the vector with an thrust device vector as follows.
viennacl::vector vcl_rhs(thrust::raw_pointer_cast(d_b.data()), viennacl::CUDA_MEMORY, vcl_size);
I have include the
#ifndef VIENNACL_WITH_CUDA
#define VIENNACL_WITH_CUDA
#endif
in the head file ,but i still get the errors. What does it means.
terminate called after throwing an instance of 'viennacl::cuda_not_available_exception'
what(): ViennaCL was compiled without CUDA support, but CUDA functionality required for this operation.
Caught signal 6 - SIGABRT (abort)
The text was updated successfully, but these errors were encountered:
Please make sure to define VIENNACL_WITH_CUDA before including any ViennaCL header files (i.e. at the very top of the file that contains the code line you've referenced).
when i wrap the vector with an thrust device vector as follows.
viennacl::vector vcl_rhs(thrust::raw_pointer_cast(d_b.data()), viennacl::CUDA_MEMORY, vcl_size);
I have include the
#ifndef VIENNACL_WITH_CUDA
#define VIENNACL_WITH_CUDA
#endif
in the head file ,but i still get the errors. What does it means.
terminate called after throwing an instance of 'viennacl::cuda_not_available_exception'
what(): ViennaCL was compiled without CUDA support, but CUDA functionality required for this operation.
Caught signal 6 - SIGABRT (abort)
The text was updated successfully, but these errors were encountered: