Skip to content

Commit

Permalink
example
Browse files Browse the repository at this point in the history
  • Loading branch information
luiztauffer committed Nov 22, 2024
1 parent 7222448 commit 7c96fcd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion examples/example_1.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,18 @@ def main():
],
)
required_resources = DendroJobRequiredResources(
numCpus=24, numGpus=0, memoryGb=120, timeSec=6 * 3600
numCpus=24,
numGpus=0,
memoryGb=120,
timeSec=6 * 3600,
)
job = submit_job(
service_name=service_name,
job_definition=job_def,
required_resources=required_resources,
target_compute_client_ids=["*"],
tags=["example"],
skip_cache=True,
)
print(job.job_url, job.status)

Expand Down

0 comments on commit 7c96fcd

Please sign in to comment.