struct InferenceEngine::DataConfig¶
Overview¶
This structure describes data configuration. More…
#include <ie_iextension.h>
struct DataConfig
{
// fields
TensorDesc desc;
int inPlace = -1;
bool constant = false;
};
Detailed Documentation¶
This structure describes data configuration.
Fields¶
TensorDesc desc
Format of memory descriptor.
int inPlace = -1
Index of in-place memory. If -1 memory cannot be in-place.
bool constant = false
Flag for determination of the constant memory. If layer contains all constant memory we can calculate it on the load stage.