class Azure::BatchAI::Mgmt::V2018_05_01::Models::HorovodSettings
Specifies the settings for Horovod job.
Attributes
command_line_args[RW]
@return [String] Command line arguments. Command line arguments that need to be passed to the python script.
process_count[RW]
@return [Integer] Process count. Number of processes to launch for the job execution. The default value for this property is equal to nodeCount property
python_interpreter_path[RW]
@return [String] Python interpreter path. The path to the Python interpreter.
python_script_file_path[RW]
@return [String] Python script file path. The python script to execute.
Private Class Methods
mapper()
click to toggle source
Mapper for HorovodSettings
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2018-05-01/generated/azure_mgmt_batchai/models/horovod_settings.rb, line 36 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'HorovodSettings', type: { name: 'Composite', class_name: 'HorovodSettings', model_properties: { python_script_file_path: { client_side_validation: true, required: true, serialized_name: 'pythonScriptFilePath', type: { name: 'String' } }, python_interpreter_path: { client_side_validation: true, required: false, serialized_name: 'pythonInterpreterPath', type: { name: 'String' } }, command_line_args: { client_side_validation: true, required: false, serialized_name: 'commandLineArgs', type: { name: 'String' } }, process_count: { client_side_validation: true, required: false, serialized_name: 'processCount', type: { name: 'Number' } } } } } end