Commit a11c6765 authored by Maiterth, Matthias's avatar Maiterth, Matthias
Browse files

Merge branch 'refactor-dates' into 'develop'

Simplify fastforward/start/end/time handling

See merge request !119
parents 85b5fe53 16e437c3
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -46,7 +46,7 @@ For Adastra MI250 supercomputer, download 'AdastaJobsMI250_15days.parquet' from

For Google cluster trace v2

    raps run --system gcloudv2 -f ~/data/gcloud/v2/google_cluster_data_2011_sample --ff 600
    raps run --system gcloudv2 -f ~/data/gcloud/v2/google_cluster_data_2011_sample --start '2011-05-02T00:10:00Z'

    # analyze dataset
    raps telemetry --system gcloudv2 -f ~/data/gcloud/v2/google_cluster_data_2011_sample -v
@@ -87,7 +87,7 @@ For Lumi
Lassen is one of the few datasets that has networking data. See `raps/dataloaders/lassen.py` for how to
get the datasets. To run a network simulation, use the following command:

    raps run -f ~/data/lassen/Lassen-Supercomputer-Job-Dataset --system lassen --policy fcfs --backfill firstfit --ff 365d -t 12h --arrival poisson --net
    raps run -f ~/data/lassen/Lassen-Supercomputer-Job-Dataset --system lassen --policy fcfs --backfill firstfit --start '2019-08-22T00:00:00+00:00' -t 12h --arrival poisson --net 

## Snapshot of extracted workload data

+1 −1
Original line number Diff line number Diff line
system: gcloudv2
replay:
  - /opt/data/gcloud/v2/google_cluster_data_2011_sample
ff: 600
start: 2011-05-02T00:10:00Z

main.py

100644 → 100755
+1 −0
Original line number Diff line number Diff line
#!/usr/bin/env python3
"""
ExaDigiT Resource Allocator & Power Simulator (RAPS)
"""
+1 −0
Original line number Diff line number Diff line
@@ -22,6 +22,7 @@ markers =

    40frontiers: System test
    adastraMI250: System test
    bluewaters: System test
    frontier: System test
    fugaku: System test
    gcloudv2: System test
+1 −0
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@
RAPS Constants
"""
from pathlib import Path
from datetime import datetime

ELLIPSES = '\u2026'
OUTPUT_PATH = Path('simulation_results')
Loading