Differences between revisions 15 and 16
Revision 15 as of 2020-07-27 16:48:20
Size: 4919
Editor: MalteHelmert
Comment: Elaborate Vagrant instructions.
Revision 16 as of 2022-02-16 14:03:47
Size: 4167
Editor: MalteHelmert
Comment: We no longer use Singularity Hub; also some polishing.
Deletions are marked like this. Additions are marked like this.
Line 6: Line 6:
We provide below a few instructions to get you started as quickly as possible. You can find a more detailed description on [[ObtainingAndRunningFastDownward]] and [[PlannerUsage]]. Here we provide instructions to get you started as quickly as possible. You can find a more detailed description on [[ObtainingAndRunningFastDownward]] and [[PlannerUsage]].
Line 18: Line 18:
Here is how you can download the planner image and run the LAMA-first configuration to solve a planning task located in the `$BENCHMARKS` directory. LAMA-first is designed to find solutions quickly without much regard for plan cost:
Download the Singularity image from the release page and directly run it as an executable. Here is an example for [[Releases/21.12|Fast Downward 21.12]]. You may need to make the image executable first:
Line 21: Line 22:
# Download the planner image and store it in the file "downward.sif". Only do this once.
singularity pull --name downward.sif shub://aibasel/downward
# Run the planner.
singularity run downward.sif --alias lama-first $BENCHMARKS/gripper/prob01.pddl
chmod a+x fast-downward-21.12.sif
}}}

Then run the planner. The example uses the LAMA-first configuration to solve a planning task located in the `$BENCHMARKS` directory. LAMA-first is designed to find solutions quickly without much regard for plan cost:

{{{#!highlight bash
./fast-downward-21.12.sif --alias lama-first $BENCHMARKS/gripper/prob01.pddl
Line 29: Line 33:
=== Alternative way without "singularity run" ===

With reasonably recent versions of Singularity, the image file can be executed directly like a script, leading to a simpler usage than via `singularity run`. For example, you can download and run the planner like this:

{{{#!highlight bash
# Download the planner and store it in the file "downward". Only do this once.
singularity pull --name downward shub://aibasel/downward
# Run the planner.
./downward --alias lama-first $BENCHMARKS/gripper/prob01.pddl}}}

=== Troubleshooting ===

Depending on your configuration, the `singularity pull` step might produce an error message like the following:

{{{
ERROR : Called singularity_config_get_value on uninitialized config subsystem
ABORT : Retval = 255
}}}

In our experience, this error can be ignored.
Line 52: Line 35:
We assume that [[https://docs.docker.com/install/|Docker]] is installed on your machine. You want to solve a planning problem located on the `$BENCHMARKS` directory. We assume that [[https://docs.docker.com/get-docker/|Docker]] is installed on your machine. You want to solve a planning problem located on the `$BENCHMARKS` directory.

Back to the HomePage.

Quick start

Fast Downward is released in four flavours: tarball, Singularity, Docker and Vagrant. Here we provide instructions to get you started as quickly as possible. You can find a more detailed description on ObtainingAndRunningFastDownward and PlannerUsage.

What flavour is for me?

  • running experiments: We recommend Singularity or the tarball. Docker is an alternative, but be mindful of its significant overhead.

  • teaching: We recommend Vagrant.

  • development: We recommend working on a clone of the master repository.

See WhatFlavourIsForMe for a more detailed discussion.

Running the Singularity image

We assume that Singularity is installed on your machine. We have tested Singularity 2.6, 3.2, and 3.5.

Download the Singularity image from the release page and directly run it as an executable. Here is an example for Fast Downward 21.12. You may need to make the image executable first:

   1 chmod a+x fast-downward-21.12.sif

Then run the planner. The example uses the LAMA-first configuration to solve a planning task located in the $BENCHMARKS directory. LAMA-first is designed to find solutions quickly without much regard for plan cost:

   1 ./fast-downward-21.12.sif --alias lama-first $BENCHMARKS/gripper/prob01.pddl

Unlike Docker (see below), $BENCHMARKS does not have to be an absolute path.

Running the Docker image

We assume that Docker is installed on your machine. You want to solve a planning problem located on the $BENCHMARKS directory. You can run the same LAMA-first configuration as before:

   1 sudo docker run --rm -v $BENCHMARKS:/benchmarks aibasel/downward --alias lama-first /benchmarks/gripper/prob01.pddl

Note the use of sudo (Docker usually requires root privileges).

Note that this mounts the local directory $BENCHMARKS of your host machine under the container directory /benchmarks, which is the place where the containerized planner looks for the problem. The path stored in the $BENCHMARKS variable must be absolute.

The Docker image for Fast Downward is installed on your machine as a side-effect of the command.

Using a Vagrant machine

We assume that

  • Vagrant is installed on your machine

  • The current directory contains the Fast Downward Vagrantfile for the desired release, the PDDL files domain.pddl and problem.pddl for the planning task you want to solve.

  • If you want to use the SoPlex and/or CPLEX LP solver within the planner, their installer files are present in the directory /path/to/lp/installers. As of Fast Downward 20.06, you will need CPLEX 12.9 (installer filename cplex_studio129.linux-x86-64.bin) and/or SoPlex 3.1.1 (filename soplex-3.1.1.tgz).

  • You want to create your Vagrant VM as subdirectory my-fast-downward-vm of the current directory. The subdirectory does not exist yet.

Create and provision your virtual machine as follows:

   1 # Set up the VM. Only run this one.
   2 mkdir my-fast-downward-vm
   3 cp Vagrantfile my-fast-downward-vm/
   4 cp domain.pddl problem.pddl my-fast-downward-vm/
   5 # Skip next line if you don't need LP support.
   6 export DOWNWARD_LP_INSTALLERS=/path/to/lp/installers
   7 cd my-fast-downward-vm
   8 vagrant up
   9 # The VM is now set up.
  10 # You can now safely delete the LP installers and unset the environment variable.
  11 
  12 # Log into the VM and run the planner.
  13 vagrant ssh
  14 downward/fast-downward.py --alias lama-first /vagrant/domain.pddl /vagrant/problem.pddl
  15 
  16 # Log out from the VM.
  17 exit

Source code

See ObtainingAndRunningFastDownward for a complete description on how to build the planner from source.

Next steps

FastDownward: QuickStart (last edited 2023-10-12 12:30:20 by GabiRoeger)