You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
stxue@mustard:/private/groups/patenlab/toil-dev/wdl-conformance-tests$ srun -c 1 --mem 1G --time=0:10:00 --partition gpu --gres=gpu:1 --pty bash -i
stxue@phoenix-05:/private/groups/patenlab/toil-dev/wdl-conformance-tests$ toil-wdl-runner test_gpu_task.wdl
/usr/lib/python3/dist-packages/paramiko/transport.py:236: CryptographyDeprecationWarning: Blowfish has been deprecated and will be removed in a future release
"class": algorithms.Blowfish,
[2024-05-29T13:39:17-0700] [MainThread] [I] [toil] Running Toil version 7.1.0a1-e9d0b62d7d62af9672946858fdd6fb587b1dd563 on host phoenix-05.prism.
/usr/lib/python3/dist-packages/paramiko/transport.py:236: CryptographyDeprecationWarning: Blowfish has been deprecated and will be removed in a future release
"class": algorithms.Blowfish,
[2024-05-29T13:39:18-0700] [MainThread] [I] [toil.leader] 0 jobs are running, 0 jobs are issued and waiting to run
[2024-05-29T13:39:18-0700] [MainThread] [I] [toil.leader] Issued job 'WDLTaskJob' wf.test_gpu.command kind-WDLTaskJob/instance-52hhmugy v1 with job batch system ID: 2 and disk: 2.0 Gi, memor
y: 2.0 Gi, cores: 1, accelerators: [{'count': 1, 'kind': 'gpu'}], preemptible: False
/usr/lib/python3/dist-packages/paramiko/transport.py:236: CryptographyDeprecationWarning: Blowfish has been deprecated and will be removed in a future release
"class": algorithms.Blowfish,
/usr/lib/python3/dist-packages/paramiko/transport.py:236: CryptographyDeprecationWarning: Blowfish has been deprecated and will be removed in a future release
"class": algorithms.Blowfish,
[2024-05-29T13:39:25-0700] [MainThread] [I] [toil.leader] Finished toil run successfully.
Workflow Progress 100%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 3/3 (0 failures) [00:06<00:00, 0.48 jobs/s]
{"wf.out": true}
[2024-05-29T13:39:25-0700] [MainThread] [I] [toil.common] Successfully deleted the job store: FileJobStore(/data/tmp/tmpxfvwtsc1/tree)
The text was updated successfully, but these errors were encountered:
stxue1
changed the title
Example WDL test for gpu's does not work depending on default executor engine
Example WDL test for gpu's does not work depending on default executor container
May 29, 2024
In the
test_gpu_task.wdl
example test, it depends on thelspci
command from the default executor container as no container is specified.For MiniWDL and Toil, the default container is Ubuntu 20.04:
https://github.com/chanzuckerberg/miniwdl/blob/a34aa902ec1be2f411db1e38daf51bae4f839f42/WDL/runtime/config_templates/default.cfg#L144-L146
But the base Ubuntu 20.04 doesn't support
lspci
:I think some container with
lspci
preinstalled should be specified. Ex:and
which allows the test to run:
The text was updated successfully, but these errors were encountered: