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
more...

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.

[View source]

2332
2333
2334
# File 'lib/google/apis/notebooks_v1/classes.rb', line 2332

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)

2325
2326
2327
# File 'lib/google/apis/notebooks_v1/classes.rb', line 2325

def core_count
  @core_count
end

#typeString

Accelerator model. Corresponds to the JSON property type

Returns:

  • (String)

2330
2331
2332
# File 'lib/google/apis/notebooks_v1/classes.rb', line 2330

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object

[View source]

2337
2338
2339
2340
# File 'lib/google/apis/notebooks_v1/classes.rb', line 2337

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