GraphSettings

class omni.graph.core.GraphSettings(evaluator_type: str = 'push', file_format_version: ~typing.Tuple[int, int] = (0, 0), fabric_backing: str = <GraphBackingType.GRAPH_BACKING_TYPE_FLATCACHE_SHARED: 0>, pipeline_stage: str = <GraphPipelineStage.GRAPH_PIPELINE_STAGE_SIMULATION: 10>, evaluation_mode: str = <GraphEvaluationMode.GRAPH_EVALUATION_MODE_STANDALONE: 1>)

Bases: object

Container for the set of settings in a graph. This is a class instead of a tuple so that future additions to the settings do not break backward compatibility

Methods

__init__([evaluator_type, ...])

Attributes

evaluation_mode

Default evaluation mode of the graph

evaluator_type

Type of evaluator to use by default on the graph

fabric_backing

Type of data backing the graph has

file_format_version

File format version used when creating the graph

pipeline_stage

Pipeline stage to which the graph belongs

__init__(evaluator_type: str = 'push', file_format_version: ~typing.Tuple[int, int] = (0, 0), fabric_backing: str = <GraphBackingType.GRAPH_BACKING_TYPE_FLATCACHE_SHARED: 0>, pipeline_stage: str = <GraphPipelineStage.GRAPH_PIPELINE_STAGE_SIMULATION: 10>, evaluation_mode: str = <GraphEvaluationMode.GRAPH_EVALUATION_MODE_STANDALONE: 1>) None
evaluation_mode: str = <GraphEvaluationMode.GRAPH_EVALUATION_MODE_STANDALONE: 1>

Default evaluation mode of the graph

evaluator_type: str = 'push'

Type of evaluator to use by default on the graph

fabric_backing: str = <GraphBackingType.GRAPH_BACKING_TYPE_FLATCACHE_SHARED: 0>

Type of data backing the graph has

file_format_version: Tuple[int, int] = (0, 0)

File format version used when creating the graph

pipeline_stage: str = <GraphPipelineStage.GRAPH_PIPELINE_STAGE_SIMULATION: 10>

Pipeline stage to which the graph belongs