Class: Google::Apis::NotebooksV1::SchedulerAcceleratorConfig
- Inherits:
-
Object
- Object
- Google::Apis::NotebooksV1::SchedulerAcceleratorConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/notebooks_v1/classes.rb,
lib/google/apis/notebooks_v1/representations.rb,
lib/google/apis/notebooks_v1/representations.rb more...
Overview
Definition of a hardware accelerator. Note that not all combinations of type
and core_count
are valid. See GPUs on Compute Engine to find a valid combination. TPUs are not supported.
Instance Attribute Summary collapse
-
#core_count ⇒ Fixnum
Count of cores of this accelerator.
-
#type ⇒ String
Type of this accelerator.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SchedulerAcceleratorConfig
constructor
A new instance of SchedulerAcceleratorConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SchedulerAcceleratorConfig
Returns a new instance of SchedulerAcceleratorConfig.
2698 2699 2700 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 2698 def initialize(**args) update!(**args) end |
Instance Attribute Details
#core_count ⇒ Fixnum
Count of cores of this accelerator.
Corresponds to the JSON property coreCount
2691 2692 2693 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 2691 def core_count @core_count end |
#type ⇒ String
Type of this accelerator.
Corresponds to the JSON property type
2696 2697 2698 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 2696 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2703 2704 2705 2706 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 2703 def update!(**args) @core_count = args[:core_count] if args.key?(:core_count) @type = args[:type] if args.key?(:type) end |