Skip to content

Commit

Permalink
Fix restore-looppoint script
Browse files Browse the repository at this point in the history
  • Loading branch information
BobbyRBruce committed Feb 25, 2023
1 parent a89bede commit dcad8e0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions materials/looppoints/restore-looppoint-checkpoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from gem5.isas import ISA
from gem5.resources.resource import obtain_resource
from m5.stats import reset, dump
from argparse import Path
from pathlib import Path

requires(isa_required=ISA.X86)

Expand Down Expand Up @@ -62,8 +62,8 @@
board.set_se_looppoint_workload(
binary=obtain_resource("x86-matrix-multiply-omp"),
looppoint=LooppointJsonLoader(
looppoint_file=Path("materials/looppoints/looppoint.json"),
region=args.region
looppoint_file=Path("materials/looppoints/refs/looppoint.json"),
region_id=args.region
),
checkpoint=Path(
f"materials/looppoints/refs/region-{args.region}-checkpoint"
Expand Down

0 comments on commit dcad8e0

Please sign in to comment.