Class: Google::Cloud::Container::V1beta1::GPUSharingConfig
- Inherits:
-
Object
- Object
- Google::Cloud::Container::V1beta1::GPUSharingConfig
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/container/v1beta1/cluster_service.rb
Overview
GPUSharingConfig represents the GPU sharing configuration for Hardware Accelerators.
Defined Under Namespace
Modules: GPUSharingStrategy
Instance Attribute Summary collapse
-
#gpu_sharing_strategy ⇒ ::Google::Cloud::Container::V1beta1::GPUSharingConfig::GPUSharingStrategy
The type of GPU sharing strategy to enable on the GPU node.
-
#max_shared_clients_per_gpu ⇒ ::Integer
The max number of containers that can share a physical GPU.
Instance Attribute Details
#gpu_sharing_strategy ⇒ ::Google::Cloud::Container::V1beta1::GPUSharingConfig::GPUSharingStrategy
Returns The type of GPU sharing strategy to enable on the GPU node.
4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 |
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 4886 class GPUSharingConfig include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The type of GPU sharing strategy currently provided. module GPUSharingStrategy # Default value. GPU_SHARING_STRATEGY_UNSPECIFIED = 0 # GPUs are time-shared between containers. TIME_SHARING = 1 # GPUs are shared between containers with NVIDIA MPS. MPS = 2 end end |
#max_shared_clients_per_gpu ⇒ ::Integer
Returns The max number of containers that can share a physical GPU.
4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 |
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 4886 class GPUSharingConfig include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The type of GPU sharing strategy currently provided. module GPUSharingStrategy # Default value. GPU_SHARING_STRATEGY_UNSPECIFIED = 0 # GPUs are time-shared between containers. TIME_SHARING = 1 # GPUs are shared between containers with NVIDIA MPS. MPS = 2 end end |