Skip to content

Move lapack_info_check inside of onemkl_cusolver_host_task #238

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 12 commits into
base: develop
Choose a base branch
from
Prev Previous commit
Merge branch 'develop' into info_check_rebased
  • Loading branch information
JackAKirk authored Oct 26, 2022
commit 91bbde4b7e662a6097b11d503f88d4b981d8619a
3 changes: 1 addition & 2 deletions src/lapack/backends/cusolver/cusolver_lapack.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -701,7 +701,6 @@ inline void potrf(const char *func_name, Func func, sycl::queue &queue, oneapi::
lda, scratch_, scratchpad_size, dev_info_d);

lapack_info_check_and_free(dev_info_d, __func__, func_name);

});
});
}
Expand Down Expand Up @@ -1436,7 +1435,7 @@ inline sycl::event getrs(const char *func_name, Func func, sycl::queue &queue,
auto b_ = reinterpret_cast<cuDataType *>(b);
cusolverStatus_t err;
CUSOLVER_ERROR_FUNC_T_SYNC(func_name, func, err, handle, get_cublas_operation(trans), n,
nrhs, a_, lda, ipiv32, b_, ldb, nullptr);
nrhs, a_, lda, ipiv32, b_, ldb, nullptr);
});
});

Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.