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 descFormat of memory descriptor.
int inPlace = -1Index of in-place memory. If -1 memory cannot be in-place.
bool constant = falseFlag for determination of the constant memory. If layer contains all constant memory we can calculate it on the load stage.