Skip to content
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

disabled mhp Exclusive_Scan benchmarks #618

Merged
Merged
Show file tree
Hide file tree
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
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