I follow the example at http://docs.nvidia.com/cuda/cusolver/index.html#gesvdj-example1, F.2. SVD with singular vectors (via Jacobi method). I encounter the problem, error C2065 “gesvdjInfo_t” can not be resolved. So which header file I should include? I have already include 3 header files as shown below. I couldn’t find any header file which contains gesvdjInfo_t or cusolverDnCreateGesvdjInfo().
// CUDA libraries
#include <cuda_runtime.h>
#include <cublas_v2.h>
#include <cusolverDn.h>