OpenVINO 2022.1 has introduced OpenVINO API 2.0. For more information on transition steps from the previous API, see the transition guide
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.