struct ov::op::v5::Loop::SpecialBodyPorts

Allows to define the purpose of inputs/outputs in the body.

#include <loop.hpp>

struct SpecialBodyPorts
{
    // fields

    int64_t current_iteration_input_idx = -1;
    int64_t body_condition_output_idx = -1;

    // construction

    SpecialBodyPorts();

    SpecialBodyPorts(
        int64_t in_current_iteration_input_idx,
        int64_t in_body_condition_output_idx
        );
};