Class: Google::Apis::NotebooksV1::RuntimeAcceleratorConfig

Inherits:
Object
  • Object
show all
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

Overview

Definition of the types of hardware accelerators that can be used. See Compute Engine AcceleratorTypes. Examples: * nvidia-tesla-k80 * nvidia- tesla-p100 * nvidia-tesla-v100 * nvidia-tesla-p4 * nvidia-tesla-t4 * nvidia-tesla-a100

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RuntimeAcceleratorConfig

Returns a new instance of RuntimeAcceleratorConfig.



2220
2221
2222
# File 'lib/google/apis/notebooks_v1/classes.rb', line 2220

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#core_countFixnum

Count of cores of this accelerator. Corresponds to the JSON property coreCount

Returns:

  • (Fixnum)


2213
2214
2215
# File 'lib/google/apis/notebooks_v1/classes.rb', line 2213

def core_count
  @core_count
end

#typeString

Accelerator model. Corresponds to the JSON property type

Returns:

  • (String)


2218
2219
2220
# File 'lib/google/apis/notebooks_v1/classes.rb', line 2218

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2225
2226
2227
2228
# File 'lib/google/apis/notebooks_v1/classes.rb', line 2225

def update!(**args)
  @core_count = args[:core_count] if args.key?(:core_count)
  @type = args[:type] if args.key?(:type)
end