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



1785
1786
1787
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1785

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)


1778
1779
1780
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1778

def core_count
  @core_count
end

#typeString

Accelerator model. Corresponds to the JSON property type

Returns:

  • (String)


1783
1784
1785
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1783

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1790
1791
1792
1793
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1790

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