Skip to content

Latest commit

 

History

History
executable file
·
34 lines (25 loc) · 1.17 KB

ClusterNodeConfig.md

File metadata and controls

executable file
·
34 lines (25 loc) · 1.17 KB

ClusterNodeConfig

Properties

Name Type Description Notes
accelerator AcceleratorConfig
cpus int [optional]
cpu_generation str [optional]
cores_per_cpu int [optional]
threads_per_core int [optional] [readonly]
memory str [optional] [readonly]

Example

from epiccore.models.cluster_node_config import ClusterNodeConfig

# TODO update the JSON string below
json = "{}"
# create an instance of ClusterNodeConfig from a JSON string
cluster_node_config_instance = ClusterNodeConfig.from_json(json)
# print the JSON string representation of the object
print ClusterNodeConfig.to_json()

# convert the object into a dict
cluster_node_config_dict = cluster_node_config_instance.to_dict()
# create an instance of ClusterNodeConfig from a dict
cluster_node_config_form_dict = cluster_node_config.from_dict(cluster_node_config_dict)

[Back to Model list] [Back to API list] [Back to README]