-
Notifications
You must be signed in to change notification settings - Fork 34
Closed
Description
The gridmap docs seem to have essentially nothing about specifying job resources (eg., time and memory), although I see there is an unmerged PR for specifying a gpu resource. All I se in the code is:
if self.mem_free and USE_MEM_FREE:
ret += " -l mem_free={}".format(self.mem_free)
if self.num_slots and self.num_slots > 1:
ret += " -pe {} {}".format(self.par_env, self.num_slots)
if self.white_list:
ret += " -l h={}".format('|'.join(self.white_list))
if self.queue:
ret += " -q {}".format(self.queue)
How is the user supposed to set -l h_rt or -l h_vmem? We also have special resource settings that our cluster admin setup, so how can the user specify non-standard resources (e.g., -l tmpfs)?
Metadata
Metadata
Assignees
Labels
No labels