Back to the main page.
Bug 920 - ensure walltime is in a format that qsub can understand
| Status | CLOSED FIXED |
| Reported | 2011-09-01 16:32:00 +0200 |
| Modified | 2011-09-14 14:33:33 +0200 |
| Product: | FieldTrip |
| Component: | peer |
| Version: | unspecified |
| Hardware: | PC |
| Operating System: | Windows |
| Importance: | P1 normal |
| Assigned to: | Eelke Spaak |
| URL: | |
| Tags: | |
| Depends on: | |
| Blocks: | |
| See also: |
Eelke Spaak - 2011-09-01 16:32:30 +0200
Values >60 cause an error; it probably should be in the format HH:mm:ss.
Eelke Spaak - 2011-09-07 09:34:36 +0200
I was mistaken: walltime can actually be just in seconds. The issue was with the specification of memory requirements in the same string: -l walltime=300:mem=400000 will be interpreted by qsub as an invalid walltime string, rather than as a valid walltime (i.e., in seconds) and a valid memory requirement string. The following works, however: -l walltime=300 -l mem=400000 I made the appropriate change, and deleted qsub/private/formattim.m.