Skip to content

Commit

Permalink
Merge pull request #34 from tinaok/master
Browse files Browse the repository at this point in the history
resolving issue #33
  • Loading branch information
tinaok authored Oct 11, 2019
2 parents b67568f + aec75ef commit 2c1605b
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 0 deletions.
1 change: 1 addition & 0 deletions benchmark-configs/halstrong11D.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ maxmemory_per_node: 128gb
maxcore_per_node: 24
chunk_per_worker: 10
spil: false
freq: 1D
parameters:
number_of_workers_per_nodes:
- 1
Expand Down
1 change: 1 addition & 0 deletions benchmark-configs/halstrong21D.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ maxmemory_per_node: 128gb
maxcore_per_node: 24
chunk_per_worker: 10
spil: false
freq: 1D
parameters:
number_of_workers_per_nodes:
- 1
Expand Down
28 changes: 28 additions & 0 deletions benchmark-configs/halweak1D.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
machine: hal1D
job_scheduler: pbs
queue: batch
walltime: 1:00:00
maxmemory_per_node: 128gb
maxcore_per_node: 24
chunk_per_worker: 10
spil: false
freq: 1D
parameters:
number_of_workers_per_nodes:
- 1
number_of_threads_per_workers: 1
number_of_nodes:
- 1
- 2
- 4
- 8
- 16
chunk_size:
- 64MB
- 128MB
- 256MB
- 512MB
chunking_scheme:
- spatial
- temporal
- auto
2 changes: 2 additions & 0 deletions benchmarks/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ def run(self):
maxmemory_per_node = self.params["maxmemory_per_node"]
maxcore_per_node = self.params["maxcore_per_node"]
chunk_per_worker = self.params["chunk_per_worker"]
freq = self.params["freq"]
spil = self.params["spil"]
output_dir = self.params.get("output_dir", results_dir)
now = datetime.datetime.now()
Expand Down Expand Up @@ -159,6 +160,7 @@ def run(self):
chunk_size=chunk_size,
chunking_scheme=chunking_scheme,
num_nodes=num,
freq=freq,
worker_per_node=wpn,
).persist()
wait(ds)
Expand Down

0 comments on commit 2c1605b

Please sign in to comment.