Skip to content

Commit

Permalink
p
Browse files Browse the repository at this point in the history
Signed-off-by: kevin <[email protected]>
  • Loading branch information
khluu committed Sep 28, 2024
1 parent 0ad2950 commit bfee096
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/pipeline_generator/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class AgentQueue(str, enum.Enum):
def get_agent_queue(no_gpu: Optional[bool], gpu_type: Optional[str], num_gpus: Optional[int]) -> AgentQueue:
if no_gpu:
return AgentQueue.AWS_SMALL_CPU
if gpu_type == A100_GPU:
if gpu_type == GPUType.A100.value:
return AgentQueue.A100
return AgentQueue.AWS_1xL4 if num_gpus == 1 else AgentQueue.AWS_4xL4

Expand Down

0 comments on commit bfee096

Please sign in to comment.