We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b538a6f commit ce4707dCopy full SHA for ce4707d
workflow/Snakefile
@@ -243,7 +243,7 @@ rule structure_inference:
243
slurm_partition=(DEFAULT_SLURM_PARTITION or "gpu"),
244
qos=DEFAULT_SLURM_QOS,
245
gpu=DEFAULT_STRUCTURE_INFERENCE_GPUS,
246
- gpu_model=DEFAULT_STRUCTURE_INFERENCE_GPU_MODEL,
+ **({"gpu_model": DEFAULT_STRUCTURE_INFERENCE_GPU_MODEL} if DEFAULT_STRUCTURE_INFERENCE_GPU_MODEL is not None else {}),
247
tasks_per_gpu=DEFAULT_STRUCTURE_INFERENCE_TASKS_PER_GPU,
248
**linear_resources(
249
mem_fn=lambda wc, attempt: config.get("structure_inference_ram_bytes", 32000)
0 commit comments