Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
colinthomas-z80 committed Aug 7, 2024
1 parent 5cb24e9 commit 8a7c858
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion taskvine/src/worker/vine_worker.c
Original file line number Diff line number Diff line change
Expand Up @@ -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.
}

/*
Expand Down

0 comments on commit 8a7c858

Please sign in to comment.