Skip to content

Commit

Permalink
feat(structure): updated explorer to use new project folder structure
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasrothenberger committed Oct 17, 2023
1 parent 657fc1b commit ffe614b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 10 deletions.
20 changes: 10 additions & 10 deletions discopop_explorer/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,24 +25,24 @@ def parse_args() -> ExplorerArguments:
# fmt: off
parser.add_argument(
"--path", type=str, default="./",
help="Directory with input data")
help="Path to the .discopop directory to be analyzed")
parser.add_argument(
"--cu-xml", type=str, default="Data.xml",
"--cu-xml", type=str, default="profiler/Data.xml",
help="CU node xml file")
parser.add_argument(
"--dep-file", type=str, default="dp_run_dep.txt",
"--dep-file", type=str, default="profiler/dynamic_dependencies.txt",
help="Dependencies text file"
)
parser.add_argument(
"--loop-counter", type=str, default="loop_counter_output.txt",
"--loop-counter", type=str, default="profiler/loop_counter_output.txt",
help="Loop counter data"
)
parser.add_argument(
"--reduction", type=str, default="reduction.txt",
"--reduction", type=str, default="profiler/reduction.txt",
help="Reduction variables file"
)
parser.add_argument(
"--fmap", type=str, default="FileMapping.txt",
"--fmap", type=str, default="common_data/FileMapping.txt",
help="File mapping")
parser.add_argument(
"--plugins", type=str, nargs="*", default=[],
Expand All @@ -53,18 +53,18 @@ def parse_args() -> ExplorerArguments:
)
# flags related to output and formatting:
parser.add_argument(
"--json", type=str, nargs="?", default=None, const="patterns.json",
"--json", type=str, nargs="?", default=None, const="explorer/patterns.json",
help="Json output")
parser.add_argument(
"--profiling", type=str, nargs="?", default=None, const="profiling_stats.txt",
"--profiling", type=str, nargs="?", default=None, const="explorer/profiling_stats.txt",
help="Enable profiling. If a path is given, the profiling stats are written to the given file, otherwise to profiling_stats.txt",
)
parser.add_argument(
"--dump-pet", type=str, nargs="?", default=None, const="pet_dump.json",
"--dump-pet", type=str, nargs="?", default=None, const="explorer/pet_dump.json",
help="Dump PET Graph to JSON file. If a path is given, the PET Graph is written to the given file, otherwise to pet_dump.json",
)
parser.add_argument(
"--dump-detection-result", type=str, nargs="?", default=None, const="detection_result_dump.json",
"--dump-detection-result", type=str, nargs="?", default=None, const="explorer/detection_result_dump.json",
help="Dump DetectionResult object to JSON file. If a path is given, the DetectionResult object is written to the given file, otherwise to detection_result_dump.json. Contents are equivalent to the json output. NOTE: This dump contains a dump of the PET Graph!",
)

Expand Down
4 changes: 4 additions & 0 deletions discopop_explorer/discopop_explorer.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,10 @@ def __run(

def run(arguments: ExplorerArguments):
"""Run the discopop_explorer with the given arguments"""
# create explorer directory if not already present
if not os.path.exists(os.path.join(arguments.project_path, "explorer")):
os.mkdir(os.path.join(arguments.project_path, "explorer"))

if arguments.enable_profiling_dump_file is not None:
profile = cProfile.Profile()
profile.enable()
Expand Down

0 comments on commit ffe614b

Please sign in to comment.