Skip to content

Commit

Permalink
disabled mhp Exclusive_Scan benchmarks (#618)
Browse files Browse the repository at this point in the history
  • Loading branch information
lslusarczyk authored Nov 2, 2023
1 parent 2f335c7 commit a20cf48
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
8 changes: 4 additions & 4 deletions src-python/drbench/drbench/drbench.py
Original file line number Diff line number Diff line change
Expand Up @@ -441,14 +441,14 @@ def multi_node(base):
"^Reduce_DR",
]
dr_filters = dr_nop2p + dr_p2p
# ExclusiveScan benchmarks fail in SHP, so are enabled in MHP only
# see: https://github.com/oneapi-src/distributed-ranges/issues/593
mhp_filters = ["Stencil2D_DR", "WaveEquation_DR", "^Exclusive_Scan_DR"]
# ExclusiveScan benchmarks removed
# fail in SHP: https://github.com/oneapi-src/distributed-ranges/issues/593
# slow in MHP: https://github.com/oneapi-src/distributed-ranges/issues/588
mhp_filters = ["Stencil2D_DR", "WaveEquation_DR"]
shp_filters = [".*Sort_DR", "Gemm_DR"]
reference_filters = [
"BlackScholes_Reference",
"DotProduct_Reference",
"Exclusive_Scan_Reference",
"Inclusive_Scan_Reference",
"Reduce_Reference",
]
Expand Down
5 changes: 3 additions & 2 deletions src-python/drbench/drbench/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,9 @@ def __execute(self, command: str):
subprocess.run(command, shell=True, check=True)
usage_end = resource.getrusage(resource.RUSAGE_CHILDREN)
logging.info(
f"command execution time: "
f"{usage_end.ru_utime - usage_start.ru_utime}, "
f"command execution time, "
f"user:{usage_end.ru_utime - usage_start.ru_utime:.2f}, "
f"system:{usage_end.ru_stime - usage_start.ru_stime:.2f}, "
f"command: {command}"
)

Expand Down

0 comments on commit a20cf48

Please sign in to comment.