Skip to content
This repository was archived by the owner on Mar 28, 2023. It is now read-only.

Commit 3530fb2

Browse files
authored
[SYCL][ESIMD] Resolve [S,s]tencil* sporadic test error. (#178)
1 parent 3d50724 commit 3530fb2

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

SYCL/ESIMD/Stencil.cpp

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@
1111
// RUN: %HOST_RUN_PLACEHOLDER %t.out
1212
// RUN: %GPU_RUN_PLACEHOLDER %t.out
1313

14-
// #155 Disable unstable tests
15-
// REQUIRES: TEMPORARY_DISBLED
16-
1714
#include "esimd_test_utils.hpp"
1815

1916
#include <CL/sycl.hpp>
@@ -25,7 +22,7 @@
2522
// test 8x16 block size
2623
//
2724
#define DIM_SIZE (1 << 13)
28-
#define SQUARE_SZ (DIM_SIZE * DIM_SIZE)
25+
#define SQUARE_SZ (DIM_SIZE * DIM_SIZE + 1)
2926

3027
#define WIDTH 16
3128
#define HEIGHT 16

SYCL/ESIMD/stencil2.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111
// RUN: %HOST_RUN_PLACEHOLDER %t.out
1212
// RUN: %GPU_RUN_PLACEHOLDER %t.out
1313

14-
// #155 Disable unstable tests
15-
// REQUIRES: TEMPORARY_DISBLED
1614
#include "esimd_test_utils.hpp"
1715

1816
#include <CL/sycl.hpp>
@@ -24,7 +22,7 @@
2422
// test 8x16 block size
2523
//
2624
#define DIM_SIZE (1 << 13)
27-
#define SQUARE_SZ (DIM_SIZE * DIM_SIZE)
25+
#define SQUARE_SZ (DIM_SIZE * DIM_SIZE + 1)
2826

2927
#define WIDTH 16
3028
#define HEIGHT 16

0 commit comments

Comments
 (0)