struct ngraph::SlicePlan

#include <slice_plan.hpp>

struct SlicePlan
{
    // fields

    std::vector<int64_t> begins;
    std::vector<int64_t> ends;
    std::vector<int64_t> strides;
    Shape reshape_in_shape;
    Shape reshape_out_shape;
    AxisSet reverse_axes;

    // methods

    bool operator == (const SlicePlan& other) const;
    bool operator != (const SlicePlan& other) const;
};