TABLE OF CONTENTS


::pwtk::ll_profile

USAGE

   ::pwtk::ll_profile profileName profileSpecs ?pwtkSpecs?

DESCRIPTION

Define a LL (Load-Leveler) "profile" within the PWTK script. See also ::pwtk::LL.

Here is an example of how a new ll profile can be defined and used:

      ll_profile n24 {
         #!/bin/sh
         # @ wall_clock_limit = 24:00:00
         # @ blocking         = 1
         # @ total_tasks      = 24
      }

      LL n24  job.pwtk

This submits the PWTK file job.pwtk to the LL queuing system with the specifics defined by the 'n24' profile.

ARGUMENTS

IMPORTANT

A typical place where to store LL profiles for frequent use is in the ~/.pwtk/ll.tcl configuration file. Note that in the ~/.pwtk/ll.tcl configuration file, the prefix 'll_' can be omitted.

EXAMPLE

    ll_profile n24 {
       #!/bin/sh
       # @ wall_clock_limit = 24:00:00
       # @ blocking         = 1
       # @ total_tasks      = 24
    } {
       prefix mpirun -np 24
    }