This page relates to OpenVINO 2022.3 (LTS). Go to the latest documentation for up-to-date information.
Direction of iteration through sequence dimension. More…
#include <ie_layers.h> enum Direction { FWD, BWD, BDR, };
Direction of iteration through sequence dimension.
FWD
Forward mode. Iterate starts from index 0 with step 1.
BWD
Backward mode. Iterate starts from last index with step -1.
BDR
Bidirectional mode. First is forward pass, second is backward.