struct InferenceEngine::LayerConfig

Overview

This structure describes Layer configuration. More…

#include <ie_iextension.h>

struct LayerConfig
{
    // fields

    bool dynBatchSupport = false;
    std::vector<DataConfig> inConfs;
    std::vector<DataConfig> outConfs;
};

Detailed Documentation

This structure describes Layer 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

bool dynBatchSupport = false

Supported dynamic batch. If false, dynamic batch is not supported.

std::vector<DataConfig> inConfs

Vector of input data configs.

std::vector<DataConfig> outConfs

Vector of output data configs.