Class: Google::Apis::NotebooksV1::SchedulerAcceleratorConfig

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SchedulerAcceleratorConfig

Returns a new instance of SchedulerAcceleratorConfig.



2559
2560
2561
# File 'lib/google/apis/notebooks_v1/classes.rb', line 2559

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)


2552
2553
2554
# File 'lib/google/apis/notebooks_v1/classes.rb', line 2552

def core_count
  @core_count
end

#typeString

Type of this accelerator. Corresponds to the JSON property type

Returns:

  • (String)


2557
2558
2559
# File 'lib/google/apis/notebooks_v1/classes.rb', line 2557

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2564
2565
2566
2567
# File 'lib/google/apis/notebooks_v1/classes.rb', line 2564

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