We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b35f0d8 commit f2ab01dCopy full SHA for f2ab01d
src-python/drbench/drbench/drbench.py
@@ -427,12 +427,13 @@ def multi_node(base):
427
]
428
dr_p2p = [
429
"^DotProduct_DR",
430
- "^Exclusive_Scan_DR",
431
"^Inclusive_Scan_DR",
432
"^Reduce_DR",
433
434
dr_filters = dr_nop2p + dr_p2p
435
- mhp_filters = ["Stencil2D_DR", "WaveEquation_DR"]
+ # ExclusiveScan benchmarks fail in SHP, so are enabled in MHP only
+ # see: https://github.com/oneapi-src/distributed-ranges/issues/593
436
+ mhp_filters = ["Stencil2D_DR", "WaveEquation_DR", "^Exclusive_Scan_DR"]
437
shp_filters = [".*Sort_DR", "Gemm_DR"]
438
reference_filters = [
439
"BlackScholes_Reference",
0 commit comments