Skip to content

Commit f2ab01d

Browse files
authored
disbled shp Exclusive_Scan benchmarks (#614)
1 parent b35f0d8 commit f2ab01d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src-python/drbench/drbench/drbench.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -427,12 +427,13 @@ def multi_node(base):
427427
]
428428
dr_p2p = [
429429
"^DotProduct_DR",
430-
"^Exclusive_Scan_DR",
431430
"^Inclusive_Scan_DR",
432431
"^Reduce_DR",
433432
]
434433
dr_filters = dr_nop2p + dr_p2p
435-
mhp_filters = ["Stencil2D_DR", "WaveEquation_DR"]
434+
# ExclusiveScan benchmarks fail in SHP, so are enabled in MHP only
435+
# see: https://github.com/oneapi-src/distributed-ranges/issues/593
436+
mhp_filters = ["Stencil2D_DR", "WaveEquation_DR", "^Exclusive_Scan_DR"]
436437
shp_filters = [".*Sort_DR", "Gemm_DR"]
437438
reference_filters = [
438439
"BlackScholes_Reference",

0 commit comments

Comments
 (0)