Skip to content

Commit

Permalink
Merge branch 'develop' into genesis-rewrite
Browse files Browse the repository at this point in the history
  • Loading branch information
slabasan authored Jan 9, 2025
2 parents 8bb2779 + 757b8da commit 294762a
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 4 deletions.
36 changes: 36 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Log files**
If applicable, add log files to help explain your problem.

**Supercomputer (please complete the following information):**
- system: which of the systems in benchpark/systems you are using [e.g., El Capitan]
- system parameters: what system parameters did you use to instantiate the system
- experiment: which of the experiments in benchpark/experiments are you using [e.g., amg2023]
- experiment parameters: what experiment parameters did you use to instantiate the experiment

**Python environment, etc. (please complete the following information):**
- Python version

**Additional context**
Add any other context about the problem here.
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 294762a

Please sign in to comment.