Files
openvino/docs/ops/infrastructure/ReadValue_3.md
Ivan Tikhonov 6789c158fd New versions of Assign/ReadValue ops (#4055)
* new versions of assign/read value, squashed commits

* Assign/ReadValue base classes, code style

* update ie_ir_parser and conversion

* low latency transformation update to support Loop op

* ngraph code style

* fix build, refactoring

* fix unit tests

* fix unit tests again

* fix unit tests

* fix code style

* update comments

* ngraph codestyle

* fix low latency tests

* fix failed unit tests

* fix incorrect version of submodule

* fix review remarks

* ngraph code style

* fix ngraph tests

* fix low latency unit tests
2021-02-09 09:50:55 +03:00

1.5 KiB

ReadValue

Versioned name: ReadValue-3

Category: Infrastructure

Short description: ReadValue returns value of the variable_id variable.

Detailed description:

ReadValue returns value from the corresponding variable_id variable if the variable was set already by Assign operation and was not reset. The operation checks that the type and shape of the output are the same as declared in variable_id and returns an error otherwise. If the corresponding variable was not set or was reset, the operation returns the value from the 1 input, and initializes the variable_id shape and type with the shape and type from the 1 input.

Attributes:

  • variable_id

    • Description: identificator of the variable to be read
    • Range of values: any non-empty string
    • Type: string
    • Default value: None
    • Required: Yes

Inputs

  • 1: init_value - input tensor with constant values of any supported type. Required.

Outputs

  • 1: tensor with the same shape and type as init_value.

Example

<layer ... type="ReadValue" ...>
    <data variable_id="lstm_state_1"/>
    <input>
        <port id="0">
            <dim>1</dim>
            <dim>3</dim>
            <dim>224</dim>
            <dim>224</dim>
        </port>
    </input>
    <output>
        <port id="1">
            <dim>1</dim>
            <dim>3</dim>
            <dim>224</dim>
            <dim>224</dim>
        </port>
    </output>
</layer>