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

Adding application.py tags for docs #536

Merged
merged 4 commits into from
Jan 9, 2025
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
4 changes: 3 additions & 1 deletion repo/branson/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ class Branson(ExecutableApplication):
"""Branson benchmark"""
name = "branson"

tags = []
tags = ['asc','montecarlo','particles',
'high-branching','irregular-memory-access',
'mpi','c++','cuda']

executable('setup_experiment',
template=[
Expand Down
6 changes: 6 additions & 0 deletions repo/phloem/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ class Phloem(ExecutableApplication):
"""Phloem benchmark"""
name = "Phloem"

tags = ['synthetic',
'large-scale','multi-node','single-node',
'c','mpi','network-point-to-point',
'network-bandwidth-bound','network-latency-bound',
'network-collectives','network-nonblocking-collectives']

executable('p1', 'sqmr --num_cores={num_cores} --num_nbors={num_nbors}', use_mpi=True)
executable('p2', 'mpiBench', use_mpi=True)
executable('p3', 'mpiGraph', use_mpi=True)
Expand Down
14 changes: 11 additions & 3 deletions repo/remhos/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,23 @@
class Remhos(ExecutableApplication):
"""Remhos benchmark"""
name = "remhos"
#TODO: add -ms flag once it's implemented

tags = ['asc','engineering','mfem','cfd','large-scale',
'multi-node','single-node','mpi','c++','high-order','hydrodynamics',
'explicit-timestepping','finite-element','time-dependent','ode',
'full-assembly','partial-assembly',
'lagrangian','spatial-discretization','unstructured-grid',
'network-latency-bound','network-collectives','unstructured-grid']

#TODO: add -ms flag once it's implemented
executable('2d', 'remhos'+' -dim 2 -epm 1024'+' -p 14'+' -rs {rs2d}'+' -o 3 -dt {dt}'+' -tf {tf}'+' -ho {ho}' ' -lo {lo}'+' -fct {fct}'+' -vs {vs}'+' -ms {ms}'+' -d {device}'+' -pa -no-vis', use_mpi=True)
executable('3d', 'remhos'+' -dim 3 -epm 512'+' -p 10'+' -rs {rs3d}'+' -o 2'+' -dt {dt}'+' -tf {tf}'+' -ho {ho}' ' -lo {lo}'+' -fct {fct}'+' -vs {vs}'+' -ms {ms}'+' -d {device}'+' -pa -no-vis', use_mpi=True)
workload('2d', executables=['2d'])
workload('3d', executables=['3d'])

#workload_variable('mesh', default='{remhos}/data/periodic-square.mesh',
# description='mesh file',
# workloads=[''])
# description='mesh file',
# workloads=[''])

#workload_variable('p', default='5',
# description='problem number',
Expand Down