サンプルファイルを使用してCuSolverRf サンプルを実行すると、プログラムをスムーズに実行できます。ただし、自分のファイルに挿入すると、手順 8 の後にエラーが発生します。.mtx
lap2D_5pt_n100.mtx
lap3D_7pt_n20.mtx
.mtx
「cuSolverRF.ccp:649 code=2 で CUDA エラーが発生しました...」
問題をここまで絞り込みました。
checkCudaErrors(cusolverRfSetupHost(
rowsA, nnzA,
h_csrRowPtrA, h_csrColIndA, h_csrValA,
nnzL,
h_csrRowPtrL, h_csrColIndL, h_csrValL,
nnzU,
h_csrRowPtrU, h_csrColIndU, h_csrValU,
h_P,
h_Q,
cusolverRfH));
どちらにジャンプしますか
void check(T result, char const *const func, const char *const file, int const line)
{
if (result)
{
fprintf(stderr, "CUDA error at %s:%d code=%d(%s) \"%s\" \n",
file, line, static_cast<unsigned int>(result), _cudaGetErrorEnum(result), func);
DEVICE_RESET
// Make sure we call CUDA Device Reset before exiting
exit(EXIT_FAILURE);
}
}
私の質問は、「結果」がどのように導き出されるかです。問題を克服するために何ができるか、または何が間違っていますか?
追加情報: 私の行列は 196530 x 196530 で、2530798 nnz です。