DOCS shift to rst - Opsets E for master (#17363)

This commit is contained in:
Maciej Smyk
2023-05-05 10:16:49 +02:00
committed by GitHub
parent 909d539698
commit 175e169537
27 changed files with 1171 additions and 1158 deletions

View File

@@ -35,7 +35,7 @@ No attributes available.
*Example 1*
.. code-block:: console
.. code-block:: cpp
<layer ... type="Abs">
<input>

View File

@@ -34,7 +34,7 @@ No attributes available.
*Example 1*
.. code-block:: console
.. code-block:: cpp
<layer ... type="Acos">
<input>

View File

@@ -30,7 +30,7 @@
**Examples**
.. code-block:: console
.. code-block:: cpp
<layer ... type="Acosh">
<input>

View File

@@ -49,7 +49,7 @@ After broadcasting *Add* performs addition operation for the input tensors *a* a
*Example 1*
.. code-block:: console
.. code-block:: cpp
<layer ... type="Add">
<data auto_broadcast="none"/>

View File

@@ -34,7 +34,7 @@ No attributes available.
*Example 1*
.. code-block:: console
.. code-block:: cpp
<layer ... type="Asin">
<input>

View File

@@ -30,7 +30,7 @@
**Example**
.. code-block:: console
.. code-block:: cpp
<layer ... type="Asinh">
<input>

View File

@@ -30,7 +30,7 @@
**Examples**
.. code-block:: console
.. code-block:: cpp
<layer ... type="Atan">
<input>

View File

@@ -45,7 +45,7 @@ Unsigned Intragral type put:
**Examples**
.. code-block:: console
.. code-block:: cpp
<layer ... type="Atanh">
<input>

View File

@@ -1,5 +1,7 @@
# Erf {#openvino_docs_ops_arithmetic_Erf_1}
@sphinxdirective
**Versioned name**: *Erf-1*
**Category**: *Arithmetic unary*
@@ -10,9 +12,9 @@
*Erf* performs element-wise erf operation on a given input tensor, based on the following mathematical formula:
\f[
erf(x) = \pi^{-1} \int_{-x}^{x} e^{-t^2} dt
\f]
.. math::
erf(x) = \pi^{-1} \int_{-x}^{x} e^{-t^2} dt
**Attributes**: *Erf* operation has no attributes.
@@ -28,22 +30,24 @@ erf(x) = \pi^{-1} \int_{-x}^{x} e^{-t^2} dt
* *T*: any supported numeric type.
**Example**
```xml
<layer ... type="Erf">
<input>
<port id="0">
<dim>256</dim>
<dim>56</dim>
</port>
</input>
<output>
<port id="1">
<dim>256</dim>
<dim>56</dim>
</port>
</output>
</layer>
```
.. code-block:: cpp
<layer ... type="Erf">
<input>
<port id="0">
<dim>256</dim>
<dim>56</dim>
</port>
</input>
<output>
<port id="1">
<dim>256</dim>
<dim>56</dim>
</port>
</output>
</layer>
@endsphinxdirective