Skip to content

Commit

Permalink
move binding again...
Browse files Browse the repository at this point in the history
  • Loading branch information
zihaoxu98 committed Aug 6, 2024
1 parent 2692edb commit 1b25155
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions utilix/batchq.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,13 +125,13 @@ class JobSubmission(BaseModel):
False, description="Exclude the loosely coupled nodes"
)
log: str = Field("job.log", description="Where to store the log file of the job")
partition: Literal[
"dali", "lgrandi", "xenon1t", "broadwl", "kicp", "caslake", "build", "bigmem2", "gpu2"
] = Field("xenon1t", description="Partition to submit the job to")
bind: List[str] = Field(
default_factory=lambda: DEFAULT_BIND,
description="Paths to add to the container. Immutable when specifying dali as partition",
)
partition: Literal[
"dali", "lgrandi", "xenon1t", "broadwl", "kicp", "caslake", "build", "bigmem2", "gpu2"
] = Field("xenon1t", description="Partition to submit the job to")
qos: str = Field("xenon1t", description="QOS to submit the job to")
account: str = Field("pi-lgrandi", description="Account to submit the job to")
jobname: str = Field("somejob", description="How to name this job")
Expand Down

0 comments on commit 1b25155

Please sign in to comment.