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.

Deprecated The Inference Engine API is deprecated and will be removed in the 2024.0 release. For instructions on transitioning to the new API, please refer to https://docs.openvino.ai/latest/openvino_2_0_transition_guide.html

Fields

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.