Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions flytekit/extras/accelerators.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,10 @@ def to_flyte_idl(self) -> tasks_pb2.GPUAccelerator:
#: `NVIDIA H200 GPU https://www.nvidia.com/en-us/data-center/h200
H200 = GPUAccelerator("nvidia-h200")

#: use this constant to specify that the task should run on an
#: `NVIDIA RTX-PRO-6000 GPU https://www.nvidia.com/en-us/products/workstations/professional-desktop-gpus/rtx-pro-6000/
RTX_PRO_6000 = GPUAccelerator("nvidia-rtx-pro-6000")


class MultiInstanceGPUAccelerator(BaseAccelerator):
"""
Expand Down
Loading