Skip to content

Commit

Permalink
Revert changes to lapack tests
Browse files Browse the repository at this point in the history
Signed-off-by: JackAKirk <[email protected]>
  • Loading branch information
JackAKirk committed Oct 2, 2024
1 parent c082d4a commit ba20653
Show file tree
Hide file tree
Showing 46 changed files with 0 additions and 138 deletions.
3 changes: 0 additions & 3 deletions tests/unit_tests/lapack/source/gebrd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ bool accuracy(const sycl::device& dev, int64_t m, int64_t n, int64_t lda, uint64
TEST_RUN_LAPACK_CT_SELECT(
queue, scratchpad_size = oneapi::mkl::lapack::gebrd_scratchpad_size<fp>, m, n, lda);
#endif
queue.wait_and_throw();
auto scratchpad_dev = device_alloc<data_T>(queue, scratchpad_size);

host_to_device_copy(queue, A.data(), A_dev, A.size());
Expand Down Expand Up @@ -150,7 +149,6 @@ bool usm_dependency(const sycl::device& dev, int64_t m, int64_t n, int64_t lda,
TEST_RUN_LAPACK_CT_SELECT(
queue, scratchpad_size = oneapi::mkl::lapack::gebrd_scratchpad_size<fp>, m, n, lda);
#endif
queue.wait_and_throw();
auto scratchpad_dev = device_alloc<data_T>(queue, scratchpad_size);

host_to_device_copy(queue, A.data(), A_dev, A.size());
Expand All @@ -168,7 +166,6 @@ bool usm_dependency(const sycl::device& dev, int64_t m, int64_t n, int64_t lda,
d_dev, e_dev, tauq_dev, taup_dev, scratchpad_dev, scratchpad_size,
std::vector<sycl::event>{ in_event });
#endif
queue.wait_and_throw();
result = check_dependency(queue, in_event, func_event);

queue.wait_and_throw();
Expand Down
3 changes: 0 additions & 3 deletions tests/unit_tests/lapack/source/geqrf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ bool accuracy(const sycl::device& dev, int64_t m, int64_t n, int64_t lda, uint64
TEST_RUN_LAPACK_CT_SELECT(
queue, scratchpad_size = oneapi::mkl::lapack::geqrf_scratchpad_size<fp>, m, n, lda);
#endif
queue.wait_and_throw();
auto scratchpad_dev = device_alloc<data_T>(queue, scratchpad_size);

host_to_device_copy(queue, A.data(), A_dev, A.size());
Expand Down Expand Up @@ -126,7 +125,6 @@ bool usm_dependency(const sycl::device& dev, int64_t m, int64_t n, int64_t lda,
TEST_RUN_LAPACK_CT_SELECT(
queue, scratchpad_size = oneapi::mkl::lapack::geqrf_scratchpad_size<fp>, m, n, lda);
#endif
queue.wait_and_throw();
auto scratchpad_dev = device_alloc<data_T>(queue, scratchpad_size);

host_to_device_copy(queue, A.data(), A_dev, A.size());
Expand All @@ -144,7 +142,6 @@ bool usm_dependency(const sycl::device& dev, int64_t m, int64_t n, int64_t lda,
tau_dev, scratchpad_dev, scratchpad_size,
std::vector<sycl::event>{ in_event });
#endif
queue.wait_and_throw();
result = check_dependency(queue, in_event, func_event);

queue.wait_and_throw();
Expand Down
3 changes: 0 additions & 3 deletions tests/unit_tests/lapack/source/geqrf_batch_group.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ bool accuracy(const sycl::device& dev, uint64_t seed) {
queue, scratchpad_size = oneapi::mkl::lapack::geqrf_batch_scratchpad_size<fp>,
m_vec.data(), n_vec.data(), lda_vec.data(), group_count, group_sizes_vec.data());
#endif
queue.wait_and_throw();
auto scratchpad_dev = device_alloc<fp>(queue, scratchpad_size);

auto A_dev_iter = A_dev_list.begin();
Expand Down Expand Up @@ -242,7 +241,6 @@ bool usm_dependency(const sycl::device& dev, uint64_t seed) {
queue, scratchpad_size = oneapi::mkl::lapack::geqrf_batch_scratchpad_size<fp>,
m_vec.data(), n_vec.data(), lda_vec.data(), group_count, group_sizes_vec.data());
#endif
queue.wait_and_throw();
auto scratchpad_dev = device_alloc<fp>(queue, scratchpad_size);

auto A_dev_iter = A_dev_list.begin();
Expand Down Expand Up @@ -273,7 +271,6 @@ bool usm_dependency(const sycl::device& dev, uint64_t seed) {
tau_dev_ptrs, group_count, group_sizes_vec.data(), scratchpad_dev,
scratchpad_size, std::vector<sycl::event>{ in_event });
#endif
queue.wait_and_throw();
result = check_dependency(queue, in_event, func_event);

queue.wait_and_throw();
Expand Down
3 changes: 0 additions & 3 deletions tests/unit_tests/lapack/source/geqrf_batch_stride.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ bool accuracy(const sycl::device& dev, int64_t m, int64_t n, int64_t lda, int64_
queue, scratchpad_size = oneapi::mkl::lapack::geqrf_batch_scratchpad_size<fp>, m, n,
lda, stride_a, stride_tau, batch_size);
#endif
queue.wait_and_throw();
auto scratchpad_dev = device_alloc<data_T>(queue, scratchpad_size);

host_to_device_copy(queue, A.data(), A_dev, A.size());
Expand Down Expand Up @@ -143,7 +142,6 @@ bool usm_dependency(const sycl::device& dev, int64_t m, int64_t n, int64_t lda,
queue, scratchpad_size = oneapi::mkl::lapack::geqrf_batch_scratchpad_size<fp>, m, n,
lda, stride_a, stride_tau, batch_size);
#endif
queue.wait_and_throw();
auto scratchpad_dev = device_alloc<data_T>(queue, scratchpad_size);

host_to_device_copy(queue, A.data(), A_dev, A.size());
Expand All @@ -161,7 +159,6 @@ bool usm_dependency(const sycl::device& dev, int64_t m, int64_t n, int64_t lda,
lda, stride_a, tau_dev, stride_tau, batch_size, scratchpad_dev,
scratchpad_size, std::vector<sycl::event>{ in_event });
#endif
queue.wait_and_throw();
result = check_dependency(queue, in_event, func_event);

queue.wait_and_throw();
Expand Down
3 changes: 0 additions & 3 deletions tests/unit_tests/lapack/source/gerqf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ bool accuracy(const sycl::device& dev, int64_t m, int64_t n, int64_t lda, uint64
TEST_RUN_LAPACK_CT_SELECT(
queue, scratchpad_size = oneapi::mkl::lapack::gerqf_scratchpad_size<fp>, m, n, lda);
#endif
queue.wait_and_throw();
auto scratchpad_dev = device_alloc<data_T>(queue, scratchpad_size);

host_to_device_copy(queue, A.data(), A_dev, A.size());
Expand Down Expand Up @@ -126,7 +125,6 @@ bool usm_dependency(const sycl::device& dev, int64_t m, int64_t n, int64_t lda,
TEST_RUN_LAPACK_CT_SELECT(
queue, scratchpad_size = oneapi::mkl::lapack::gerqf_scratchpad_size<fp>, m, n, lda);
#endif
queue.wait_and_throw();
auto scratchpad_dev = device_alloc<data_T>(queue, scratchpad_size);

host_to_device_copy(queue, A.data(), A_dev, A.size());
Expand All @@ -144,7 +142,6 @@ bool usm_dependency(const sycl::device& dev, int64_t m, int64_t n, int64_t lda,
tau_dev, scratchpad_dev, scratchpad_size,
std::vector<sycl::event>{ in_event });
#endif
queue.wait_and_throw();
result = check_dependency(queue, in_event, func_event);

queue.wait_and_throw();
Expand Down
3 changes: 0 additions & 3 deletions tests/unit_tests/lapack/source/gesvd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ bool accuracy(const sycl::device& dev, oneapi::mkl::jobsvd jobu, oneapi::mkl::jo
scratchpad_size = oneapi::mkl::lapack::gesvd_scratchpad_size<fp>,
jobu, jobvt, m, n, lda, ldu, ldvt);
#endif
queue.wait_and_throw();
auto scratchpad_dev = device_alloc<data_T>(queue, scratchpad_size);

host_to_device_copy(queue, A.data(), A_dev, A.size());
Expand Down Expand Up @@ -202,7 +201,6 @@ bool usm_dependency(const sycl::device& dev, oneapi::mkl::jobsvd jobu, oneapi::m
scratchpad_size = oneapi::mkl::lapack::gesvd_scratchpad_size<fp>,
jobu, jobvt, m, n, lda, ldu, ldvt);
#endif
queue.wait_and_throw();
auto scratchpad_dev = device_alloc<data_T>(queue, scratchpad_size);

host_to_device_copy(queue, A.data(), A_dev, A.size());
Expand All @@ -220,7 +218,6 @@ bool usm_dependency(const sycl::device& dev, oneapi::mkl::jobsvd jobu, oneapi::m
A_dev, lda, s_dev, U_dev, ldu, Vt_dev, ldvt, scratchpad_dev,
scratchpad_size, std::vector<sycl::event>{ in_event });
#endif
queue.wait_and_throw();
result = check_dependency(queue, in_event, func_event);

queue.wait_and_throw();
Expand Down
3 changes: 0 additions & 3 deletions tests/unit_tests/lapack/source/getrf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ bool accuracy(const sycl::device& dev, int64_t m, int64_t n, int64_t lda, uint64
TEST_RUN_LAPACK_CT_SELECT(
queue, scratchpad_size = oneapi::mkl::lapack::getrf_scratchpad_size<fp>, m, n, lda);
#endif
queue.wait_and_throw();
auto scratchpad_dev = device_alloc<data_T>(queue, scratchpad_size);

host_to_device_copy(queue, A.data(), A_dev, A.size());
Expand Down Expand Up @@ -129,7 +128,6 @@ bool usm_dependency(const sycl::device& dev, int64_t m, int64_t n, int64_t lda,
TEST_RUN_LAPACK_CT_SELECT(
queue, scratchpad_size = oneapi::mkl::lapack::getrf_scratchpad_size<fp>, m, n, lda);
#endif
queue.wait_and_throw();
auto scratchpad_dev = device_alloc<data_T>(queue, scratchpad_size);

host_to_device_copy(queue, A.data(), A_dev, A.size());
Expand All @@ -147,7 +145,6 @@ bool usm_dependency(const sycl::device& dev, int64_t m, int64_t n, int64_t lda,
ipiv_dev, scratchpad_dev, scratchpad_size,
std::vector<sycl::event>{ in_event });
#endif
queue.wait_and_throw();
result = check_dependency(queue, in_event, func_event);

queue.wait_and_throw();
Expand Down
3 changes: 0 additions & 3 deletions tests/unit_tests/lapack/source/getrf_batch_group.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ bool accuracy(const sycl::device& dev, uint64_t seed) {
queue, scratchpad_size = oneapi::mkl::lapack::getrf_batch_scratchpad_size<fp>,
m_vec.data(), n_vec.data(), lda_vec.data(), group_count, group_sizes_vec.data());
#endif
queue.wait_and_throw();
auto scratchpad_dev = device_alloc<fp>(queue, scratchpad_size);

auto A_dev_iter = A_dev_list.begin();
Expand Down Expand Up @@ -251,7 +250,6 @@ bool usm_dependency(const sycl::device& dev, uint64_t seed) {
queue, scratchpad_size = oneapi::mkl::lapack::getrf_batch_scratchpad_size<fp>,
m_vec.data(), n_vec.data(), lda_vec.data(), group_count, group_sizes_vec.data());
#endif
queue.wait_and_throw();
auto scratchpad_dev = device_alloc<fp>(queue, scratchpad_size);

auto A_dev_iter = A_dev_list.begin();
Expand Down Expand Up @@ -282,7 +280,6 @@ bool usm_dependency(const sycl::device& dev, uint64_t seed) {
A_dev_ptrs, lda_vec.data(), ipiv_dev_ptrs, group_count, group_sizes_vec.data(),
scratchpad_dev, scratchpad_size, std::vector<sycl::event>{ in_event });
#endif
queue.wait_and_throw();
result = check_dependency(queue, in_event, func_event);

queue.wait_and_throw();
Expand Down
3 changes: 0 additions & 3 deletions tests/unit_tests/lapack/source/getrf_batch_stride.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ bool accuracy(const sycl::device& dev, int64_t m, int64_t n, int64_t lda, int64_
queue, scratchpad_size = oneapi::mkl::lapack::getrf_batch_scratchpad_size<fp>, m, n,
lda, stride_a, stride_ipiv, batch_size);
#endif
queue.wait_and_throw();
auto scratchpad_dev = device_alloc<data_T>(queue, scratchpad_size);

host_to_device_copy(queue, A.data(), A_dev, A.size());
Expand Down Expand Up @@ -143,7 +142,6 @@ bool usm_dependency(const sycl::device& dev, int64_t m, int64_t n, int64_t lda,
queue, scratchpad_size = oneapi::mkl::lapack::getrf_batch_scratchpad_size<fp>, m, n,
lda, stride_a, stride_ipiv, batch_size);
#endif
queue.wait_and_throw();
auto scratchpad_dev = device_alloc<data_T>(queue, scratchpad_size);

host_to_device_copy(queue, A.data(), A_dev, A.size());
Expand All @@ -161,7 +159,6 @@ bool usm_dependency(const sycl::device& dev, int64_t m, int64_t n, int64_t lda,
lda, stride_a, ipiv_dev, stride_ipiv, batch_size, scratchpad_dev,
scratchpad_size, std::vector<sycl::event>{ in_event });
#endif
queue.wait_and_throw();
result = check_dependency(queue, in_event, func_event);

queue.wait_and_throw();
Expand Down
3 changes: 0 additions & 3 deletions tests/unit_tests/lapack/source/getri.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ bool accuracy(const sycl::device& dev, int64_t n, int64_t lda, uint64_t seed) {
TEST_RUN_LAPACK_CT_SELECT(
queue, scratchpad_size = oneapi::mkl::lapack::getri_scratchpad_size<fp>, n, lda);
#endif
queue.wait_and_throw();
auto scratchpad_dev = device_alloc<data_T>(queue, scratchpad_size);

host_to_device_copy(queue, A.data(), A_dev, A.size());
Expand Down Expand Up @@ -139,7 +138,6 @@ bool usm_dependency(const sycl::device& dev, int64_t n, int64_t lda, uint64_t se
TEST_RUN_LAPACK_CT_SELECT(
queue, scratchpad_size = oneapi::mkl::lapack::getri_scratchpad_size<fp>, n, lda);
#endif
queue.wait_and_throw();
auto scratchpad_dev = device_alloc<data_T>(queue, scratchpad_size);

host_to_device_copy(queue, A.data(), A_dev, A.size());
Expand All @@ -158,7 +156,6 @@ bool usm_dependency(const sycl::device& dev, int64_t n, int64_t lda, uint64_t se
ipiv_dev, scratchpad_dev, scratchpad_size,
std::vector<sycl::event>{ in_event });
#endif
queue.wait_and_throw();
result = check_dependency(queue, in_event, func_event);

queue.wait_and_throw();
Expand Down
3 changes: 0 additions & 3 deletions tests/unit_tests/lapack/source/getri_batch_group.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@ bool accuracy(const sycl::device& dev, uint64_t seed) {
queue, scratchpad_size = oneapi::mkl::lapack::getri_batch_scratchpad_size<fp>,
n_vec.data(), lda_vec.data(), group_count, group_sizes_vec.data());
#endif
queue.wait_and_throw();
auto scratchpad_dev = device_alloc<fp>(queue, scratchpad_size);

auto A_dev_iter = A_dev_list.begin();
Expand Down Expand Up @@ -263,7 +262,6 @@ bool usm_dependency(const sycl::device& dev, uint64_t seed) {
queue, scratchpad_size = oneapi::mkl::lapack::getri_batch_scratchpad_size<fp>,
n_vec.data(), lda_vec.data(), group_count, group_sizes_vec.data());
#endif
queue.wait_and_throw();
auto scratchpad_dev = device_alloc<fp>(queue, scratchpad_size);

auto A_dev_iter = A_dev_list.begin();
Expand Down Expand Up @@ -297,7 +295,6 @@ bool usm_dependency(const sycl::device& dev, uint64_t seed) {
group_count, group_sizes_vec.data(), scratchpad_dev,
scratchpad_size, std::vector<sycl::event>{ in_event });
#endif
queue.wait_and_throw();
result = check_dependency(queue, in_event, func_event);

queue.wait_and_throw();
Expand Down
3 changes: 0 additions & 3 deletions tests/unit_tests/lapack/source/getri_batch_stride.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ bool accuracy(const sycl::device& dev, int64_t n, int64_t lda, int64_t stride_a,
queue, scratchpad_size = oneapi::mkl::lapack::getri_batch_scratchpad_size<fp>, n, lda,
stride_a, stride_ipiv, batch_size);
#endif
queue.wait_and_throw();
auto scratchpad_dev = device_alloc<data_T>(queue, scratchpad_size);

host_to_device_copy(queue, A.data(), A_dev, A.size());
Expand Down Expand Up @@ -157,7 +156,6 @@ bool usm_dependency(const sycl::device& dev, int64_t n, int64_t lda, int64_t str
queue, scratchpad_size = oneapi::mkl::lapack::getri_batch_scratchpad_size<fp>, n, lda,
stride_a, stride_ipiv, batch_size);
#endif
queue.wait_and_throw();
auto scratchpad_dev = device_alloc<data_T>(queue, scratchpad_size);

host_to_device_copy(queue, A.data(), A_dev, A.size());
Expand All @@ -176,7 +174,6 @@ bool usm_dependency(const sycl::device& dev, int64_t n, int64_t lda, int64_t str
lda, stride_a, ipiv_dev, stride_ipiv, batch_size, scratchpad_dev,
scratchpad_size, std::vector<sycl::event>{ in_event });
#endif
queue.wait_and_throw();
result = check_dependency(queue, in_event, func_event);

queue.wait_and_throw();
Expand Down
3 changes: 0 additions & 3 deletions tests/unit_tests/lapack/source/getrs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ bool accuracy(const sycl::device& dev, oneapi::mkl::transpose trans, int64_t n,
scratchpad_size = oneapi::mkl::lapack::getrs_scratchpad_size<fp>,
trans, n, nrhs, lda, ldb);
#endif
queue.wait_and_throw();
auto scratchpad_dev = device_alloc<data_T>(queue, scratchpad_size);

host_to_device_copy(queue, A.data(), A_dev, A.size());
Expand Down Expand Up @@ -150,7 +149,6 @@ bool usm_dependency(const sycl::device& dev, oneapi::mkl::transpose trans, int64
scratchpad_size = oneapi::mkl::lapack::getrs_scratchpad_size<fp>,
trans, n, nrhs, lda, ldb);
#endif
queue.wait_and_throw();
auto scratchpad_dev = device_alloc<data_T>(queue, scratchpad_size);

host_to_device_copy(queue, A.data(), A_dev, A.size());
Expand All @@ -170,7 +168,6 @@ bool usm_dependency(const sycl::device& dev, oneapi::mkl::transpose trans, int64
A_dev, lda, ipiv_dev, B_dev, ldb, scratchpad_dev, scratchpad_size,
std::vector<sycl::event>{ in_event });
#endif
queue.wait_and_throw();
result = check_dependency(queue, in_event, func_event);

queue.wait_and_throw();
Expand Down
3 changes: 0 additions & 3 deletions tests/unit_tests/lapack/source/getrs_batch_group.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,6 @@ bool accuracy(const sycl::device& dev, uint64_t seed) {
trans_vec.data(), n_vec.data(), nrhs_vec.data(), lda_vec.data(), ldb_vec.data(),
group_count, group_sizes_vec.data());
#endif
queue.wait_and_throw();
auto scratchpad_dev = device_alloc<fp>(queue, scratchpad_size);

auto A_dev_iter = A_dev_list.begin();
Expand Down Expand Up @@ -324,7 +323,6 @@ bool usm_dependency(const sycl::device& dev, uint64_t seed) {
trans_vec.data(), n_vec.data(), nrhs_vec.data(), lda_vec.data(), ldb_vec.data(),
group_count, group_sizes_vec.data());
#endif
queue.wait_and_throw();
auto scratchpad_dev = device_alloc<fp>(queue, scratchpad_size);

auto A_dev_iter = A_dev_list.begin();
Expand Down Expand Up @@ -364,7 +362,6 @@ bool usm_dependency(const sycl::device& dev, uint64_t seed) {
group_count, group_sizes_vec.data(), scratchpad_dev,
scratchpad_size, std::vector<sycl::event>{ in_event });
#endif
queue.wait_and_throw();
result = check_dependency(queue, in_event, func_event);

queue.wait_and_throw();
Expand Down
3 changes: 0 additions & 3 deletions tests/unit_tests/lapack/source/getrs_batch_stride.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ bool accuracy(const sycl::device& dev, oneapi::mkl::transpose trans, int64_t n,
queue, scratchpad_size = oneapi::mkl::lapack::getrs_batch_scratchpad_size<fp>, trans, n,
nrhs, lda, stride_a, stride_ipiv, ldb, stride_b, batch_size);
#endif
queue.wait_and_throw();
auto scratchpad_dev = device_alloc<data_T>(queue, scratchpad_size);

host_to_device_copy(queue, A.data(), A_dev, A.size());
Expand Down Expand Up @@ -172,7 +171,6 @@ bool usm_dependency(const sycl::device& dev, oneapi::mkl::transpose trans, int64
queue, scratchpad_size = oneapi::mkl::lapack::getrs_batch_scratchpad_size<fp>, trans, n,
nrhs, lda, stride_a, stride_ipiv, ldb, stride_b, batch_size);
#endif
queue.wait_and_throw();
auto scratchpad_dev = device_alloc<data_T>(queue, scratchpad_size);

host_to_device_copy(queue, A.data(), A_dev, A.size());
Expand All @@ -194,7 +192,6 @@ bool usm_dependency(const sycl::device& dev, oneapi::mkl::transpose trans, int64
stride_b, batch_size, scratchpad_dev, scratchpad_size,
std::vector<sycl::event>{ in_event });
#endif
queue.wait_and_throw();
result = check_dependency(queue, in_event, func_event);

queue.wait_and_throw();
Expand Down
3 changes: 0 additions & 3 deletions tests/unit_tests/lapack/source/heevd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ bool accuracy(const sycl::device& dev, oneapi::mkl::job jobz, oneapi::mkl::uplo
scratchpad_size = oneapi::mkl::lapack::heevd_scratchpad_size<fp>,
jobz, uplo, n, lda);
#endif
queue.wait_and_throw();
auto scratchpad_dev = device_alloc<data_T>(queue, scratchpad_size);

host_to_device_copy(queue, A.data(), A_dev, A.size());
Expand Down Expand Up @@ -125,7 +124,6 @@ bool usm_dependency(const sycl::device& dev, oneapi::mkl::job jobz, oneapi::mkl:
scratchpad_size = oneapi::mkl::lapack::heevd_scratchpad_size<fp>,
jobz, uplo, n, lda);
#endif
queue.wait_and_throw();
auto scratchpad_dev = device_alloc<data_T>(queue, scratchpad_size);

host_to_device_copy(queue, A.data(), A_dev, A.size());
Expand All @@ -143,7 +141,6 @@ bool usm_dependency(const sycl::device& dev, oneapi::mkl::job jobz, oneapi::mkl:
A_dev, lda, w_dev, scratchpad_dev, scratchpad_size,
std::vector<sycl::event>{ in_event });
#endif
queue.wait_and_throw();
result = check_dependency(queue, in_event, func_event);

queue.wait_and_throw();
Expand Down
Loading

0 comments on commit ba20653

Please sign in to comment.