Skip to content

[SYCL][ESIMD][E2E] Fix esimd emulator timeout #9143

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

Merged
merged 1 commit into from
Apr 21, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions sycl/test-e2e/ESIMD/matrix_transpose_glb.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ using namespace sycl;
using namespace std;
using namespace sycl::ext::intel::esimd;

const unsigned int ESIMD_EMULATOR_SIZE_LIMIT = 1U << 10;
const unsigned int ESIMD_EMULATOR_SIZE_LIMIT = 1U << 9;

void initMatrix(int *M, unsigned N) {
assert(N >= 8 && (((N - 1) & N) == 0) &&
Expand Down Expand Up @@ -340,14 +340,14 @@ int main(int argc, char *argv[]) {
bool success = true;
success &= runTest(MZ, 16, num_iters, kernel_times, total_times);
if (argc == 1) {
success &= runTest(1U << 9, 8, num_iters, kernel_times, total_times);
success &= runTest(1U << 10, 8, num_iters, kernel_times, total_times);
success &= runTest(1U << 11, 8, num_iters, kernel_times, total_times);
success &= runTest(1U << 12, 8, num_iters, kernel_times, total_times);
// success &= runTest(1U << 13, 8, num_iters, kernel_times, total_times);
success &= runTest(1U << 9, 16, num_iters, kernel_times, total_times);
success &= runTest(1U << 10, 16, num_iters, kernel_times, total_times);
success &= runTest(1U << 11, 16, num_iters, kernel_times, total_times);
success &= runTest(1U << 12, 16, num_iters, kernel_times, total_times);
// success &= runTest(1U << 13, 16, num_iters, kernel_times, total_times);
}

const bool profiling =
Expand Down