Changes between Version 6 and Version 7 of Meep
- Timestamp:
- 10/09/09 16:43:05 (6 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Meep
v6 v7 52 52 53 53 === Running a Parallel Job === 54 To run Meep, we will use the `run` command which creates our job script and submits our job to the cluster for us :54 To run Meep, we will use the `run` command which creates our job script and submits our job to the cluster for us. We will also use the /work filesystem since Meep relies on HDF5's parallel I/O facilities: 55 55 {{{ 56 [user@login0 ~]$ run -b -t 1:00:00 -n 4 meep-mpi input.ctl 56 [user@login0 ~]$ cd $WORK 57 [user@login0 user]$ ls 58 input.ctl 59 [user@login0 user]$ run -b -t 1:00:00 -n 4 meep-mpi input.ctl 60 ... 57 61 }}} 58 62 Here, we run Meep with 4 processors for one hour, specifying the input ctl file `input.ctl`. See the tutorials linked above for information on creating the ctl (Scheme-based) input file. For more information on using the `run` command, please see [wiki:Run here].