PipelineDagNode

A directed acyclic graph [DAG] representing the execution of the pipeline.

Copy
Copied!
            

message PipelineDagNode { // Name of the operator (stage). string name = 1; // Represents the next stage(s) of pipeline execution. repeated PipelineDagNode next = 2; }


name

type: string

Name of the operator (stage).

next

type: repeated message

Represents the next stage(s) of pipeline execution as a PipelineDagNode.

© Copyright 2018-2021, NVIDIA Corporation. All rights reserved. Last updated on Feb 1, 2023.