union InferenceEngine::UserValue

Overview

The method holds the user values to enable binding of data per graph node. More…

#include <ie_common.h>

union UserValue
{
    // fields

    int v_int;
    float v_float;
    void \* v_ptr;
};

Detailed Documentation

The method holds the user values to enable binding of data per graph node.

Fields

int v_int

An integer value.

float v_float

A floating point value.

void \* v_ptr

A pointer to a void.