From 8a7c8582e25c3a55daf271027e40d71d757778c5 Mon Sep 17 00:00:00 2001 From: Colin Thomas Date: Wed, 7 Aug 2024 19:32:44 -0400 Subject: [PATCH] format --- taskvine/src/worker/vine_worker.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/taskvine/src/worker/vine_worker.c b/taskvine/src/worker/vine_worker.c index a2d96ce6ab..428c5a7039 100644 --- a/taskvine/src/worker/vine_worker.c +++ b/taskvine/src/worker/vine_worker.c @@ -1328,7 +1328,7 @@ static int task_resources_fit_now(struct vine_task *t) return (cores_allocated + t->resources_requested->cores <= total_resources->cores.total) && (memory_allocated + t->resources_requested->memory <= total_resources->memory.total) && ((t->needs_library || disk_allocated + t->resources_requested->disk <= total_resources->disk.total)) && (gpus_allocated + t->resources_requested->gpus <= total_resources->gpus.total); - // XXX Disk is constantly shrinking, and library disk requests are currently static. Once we generate some files things will hang. + // XXX Disk is constantly shrinking, and library disk requests are currently static. Once we generate some files things will hang. } /*