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
evaluator_type
fabric_backing
file_format_version
pipeline_stage
- __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