Skip to content

Commit

Permalink
Adding application.py tags for docs (#536)
Browse files Browse the repository at this point in the history
* Adding tags for remhos

* Tags for branson

* Tags for phloem
  • Loading branch information
pearce8 authored Jan 9, 2025
1 parent 9b90b17 commit 5534200
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 4 deletions.
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

0 comments on commit 5534200

Please sign in to comment.