the maximum data that cudaMempcy can tranfer between host and device

-2
cudaStat1 = cudaMemcpy(d_csrRowdA, CsrRowndA, NNzA * sizeof(d_csrRowdA), cudaMemcpyHostToDevice);
    cudaStat2 = cudaMemcpy(d_csrColnA, CsrColndA, NNzA * sizeof(d_csrColnA), cudaMemcpyHostToDevice);

the value of NNzA is 1171620, i get an error in the second line. The error is: Exception thrown at 0x00007FFE874B4E6B(nvcuda.dll) (located in QRcpp.exe): 0xC0000005: An access violation occurred while reading location 0x0000015827EAF000.

cuda
asked on Stack Overflow Dec 5, 2018 by PerhapsThat

0 Answers

Nobody has answered this question yet.


User contributions licensed under CC BY-SA 3.0