Skip to content

Commit 4a83d8f

Browse files
committed
Fix error message of lapack_trtri
1 parent d51a825 commit 4a83d8f

File tree

1 file changed

+1
-1
lines changed
  • source/module_base/module_container/ATen/kernels

1 file changed

+1
-1
lines changed

source/module_base/module_container/ATen/kernels/lapack.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ struct lapack_trtri<T, DEVICE_CPU> {
4141
int info = 0;
4242
lapackConnector::trtri(uplo, diag, dim, Mat, lda, info);
4343
if (info != 0) {
44-
throw std::runtime_error("potrf failed with info = " + std::to_string(info));
44+
throw std::runtime_error("trtri failed with info = " + std::to_string(info));
4545
}
4646
}
4747
};

0 commit comments

Comments
 (0)