-
Notifications
You must be signed in to change notification settings - Fork 142
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2d44934
commit d97fb70
Showing
1 changed file
with
140 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,140 @@ | ||
#! /usr/bin/env python3 | ||
|
||
import os | ||
|
||
from lab.environments import LocalEnvironment, BaselSlurmEnvironment | ||
from lab.reports import Attribute | ||
|
||
import common_setup | ||
from common_setup import IssueConfig, IssueExperiment | ||
|
||
ISSUE = "issue1036" | ||
ARCHIVE_PATH = f"ai/downward/{ISSUE}" | ||
DIR = os.path.dirname(os.path.abspath(__file__)) | ||
REPO_DIR = os.environ["DOWNWARD_REPO"] | ||
BENCHMARKS_DIR = os.environ["DOWNWARD_BENCHMARKS"] | ||
REVISIONS = [ | ||
f"{ISSUE}-base", | ||
] | ||
BUILDS = ["release"] | ||
|
||
|
||
def make_comparison_table(): | ||
pairs = [ | ||
(f"{ISSUE}-v11-lm-cut", f"{ISSUE}-v11-lm-cut"), | ||
] + [ | ||
(f"{ISSUE}-base-{lm_factory}", f"{ISSUE}-v11-{lm_factory}-reasonable") | ||
for lm_factory in [ | ||
"seq-opt-bjolp", | ||
"seq-opt-bjolp-opt", | ||
"lm-exhaust", | ||
"lm-hm2", | ||
"lm-rhw", | ||
"lm-zg", | ||
] | ||
] | ||
|
||
report = common_setup.ComparativeReport( | ||
algorithm_pairs=pairs, attributes=ATTRIBUTES, | ||
) | ||
outfile = os.path.join( | ||
exp.eval_dir, "%s-compare.%s" % (exp.name, report.output_format) | ||
) | ||
report(exp.eval_dir, outfile) | ||
|
||
exp.add_report(report) | ||
|
||
|
||
CONFIG_NICKS = [ | ||
("seq-opt-bjolp", | ||
["--evaluator", | ||
f"lmc=landmark_cost_partitioning(lm_merged([lm_rhw(),lm_hm(m=1)]))", | ||
"--search", "astar(lmc,lazy_evaluator=lmc)"], []), | ||
("seq-opt-bjolp-opt", | ||
["--evaluator", | ||
f"lmc=landmark_cost_partitioning(lm_merged([lm_rhw(),lm_hm(m=1)]),optimal=true,lpsolver=CPLEX)", | ||
"--search", "astar(lmc,lazy_evaluator=lmc)"], []), | ||
("lm-exhaust", | ||
["--evaluator", | ||
f"lmc=landmark_cost_partitioning(lm_exhaust())", | ||
"--search", "astar(lmc,lazy_evaluator=lmc)"], []), | ||
("lm-hm2", | ||
["--evaluator", | ||
f"lmc=landmark_cost_partitioning(lm_hm(m=2))", | ||
"--search", "astar(lmc,lazy_evaluator=lmc)"], []), | ||
("lm-rhw", | ||
["--evaluator", | ||
f"lmc=landmark_cost_partitioning(lm_rhw())", | ||
"--search", "astar(lmc)"], []), | ||
("lm-zg", | ||
["--evaluator", | ||
f"lmc=landmark_cost_partitioning(lm_zg())", | ||
"--search", "astar(lmc)"], []), | ||
] | ||
CONFIGS = [ | ||
IssueConfig( | ||
config_nick, | ||
config, | ||
build_options=[build], | ||
driver_options=driver_opts, | ||
) | ||
for build in BUILDS | ||
for config_nick, config, driver_opts in CONFIG_NICKS | ||
] | ||
|
||
SUITE = common_setup.DEFAULT_SATISFICING_SUITE | ||
ENVIRONMENT = BaselSlurmEnvironment( | ||
partition="infai_2", | ||
email="[email protected]", | ||
export=["PATH"]) | ||
""" | ||
If your experiments sometimes have GCLIBX errors, you can use the | ||
below "setup" parameter instead of the above use "export" parameter for | ||
setting environment variables which "load" the right modules. ("module | ||
load" doesn't do anything else than setting environment variables.) | ||
paths obtained via: | ||
$ module purge | ||
$ module -q load CMake/3.15.3-GCCcore-8.3.0 | ||
$ module -q load GCC/8.3.0 | ||
$ echo $PATH | ||
$ echo $LD_LIBRARY_PATH | ||
""" | ||
# setup='export PATH=/scicore/soft/apps/binutils/2.32-GCCcore-8.3.0/bin:/scicore/soft/apps/CMake/3.15.3-GCCcore-8.3.0/bin:/scicore/soft/apps/cURL/7.66.0-GCCcore-8.3.0/bin:/scicore/soft/apps/bzip2/1.0.8-GCCcore-8.3.0/bin:/scicore/soft/apps/ncurses/6.1-GCCcore-8.3.0/bin:/scicore/soft/apps/GCCcore/8.3.0/bin:/infai/sieverss/repos/bin:/infai/sieverss/local:/export/soft/lua_lmod/centos7/lmod/lmod/libexec:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:$PATH\nexport LD_LIBRARY_PATH=/scicore/soft/apps/binutils/2.32-GCCcore-8.3.0/lib:/scicore/soft/apps/cURL/7.66.0-GCCcore-8.3.0/lib:/scicore/soft/apps/bzip2/1.0.8-GCCcore-8.3.0/lib:/scicore/soft/apps/zlib/1.2.11-GCCcore-8.3.0/lib:/scicore/soft/apps/ncurses/6.1-GCCcore-8.3.0/lib:/scicore/soft/apps/GCCcore/8.3.0/lib64:/scicore/soft/apps/GCCcore/8.3.0/lib' | ||
|
||
if common_setup.is_test_run(): | ||
SUITE = IssueExperiment.DEFAULT_TEST_SUITE | ||
ENVIRONMENT = LocalEnvironment(processes=4) | ||
|
||
exp = IssueExperiment( | ||
revisions=REVISIONS, | ||
configs=CONFIGS, | ||
environment=ENVIRONMENT, | ||
) | ||
exp.add_suite(BENCHMARKS_DIR, SUITE) | ||
|
||
exp.add_parser(exp.EXITCODE_PARSER) | ||
exp.add_parser(exp.SINGLE_SEARCH_PARSER) | ||
exp.add_parser(exp.PLANNER_PARSER) | ||
exp.add_parser("landmark_parser.py") | ||
|
||
ATTRIBUTES = IssueExperiment.DEFAULT_TABLE_ATTRIBUTES + [ | ||
Attribute("landmarks", min_wins=False), | ||
Attribute("landmarks_disjunctive", min_wins=False), | ||
Attribute("landmarks_conjunctive", min_wins=False), | ||
Attribute("orderings", min_wins=False), | ||
Attribute("lmgraph_generation_time"), | ||
] | ||
|
||
exp.add_step("build", exp.build) | ||
exp.add_step("start", exp.start_runs) | ||
exp.add_fetcher(name="fetch base") | ||
exp.add_fetcher("data/issue1036-v11-optimal-eval/", name="fetch v11", merge=True) | ||
|
||
exp.add_step("comparison table", make_comparison_table) | ||
exp.add_scatter_plot_step(relative=True, attributes=["total_time", "memory"]) | ||
|
||
exp.add_archive_step(ARCHIVE_PATH) | ||
# exp.add_archive_eval_dir_step(ARCHIVE_PATH) | ||
|
||
exp.run_steps() |