DOCS shift to rst - Opsets E for master (#17363)
This commit is contained in:
@@ -35,7 +35,7 @@ No attributes available.
|
||||
|
||||
*Example 1*
|
||||
|
||||
.. code-block:: console
|
||||
.. code-block:: cpp
|
||||
|
||||
<layer ... type="Abs">
|
||||
<input>
|
||||
|
||||
@@ -34,7 +34,7 @@ No attributes available.
|
||||
|
||||
*Example 1*
|
||||
|
||||
.. code-block:: console
|
||||
.. code-block:: cpp
|
||||
|
||||
<layer ... type="Acos">
|
||||
<input>
|
||||
|
||||
@@ -30,7 +30,7 @@
|
||||
|
||||
**Examples**
|
||||
|
||||
.. code-block:: console
|
||||
.. code-block:: cpp
|
||||
|
||||
<layer ... type="Acosh">
|
||||
<input>
|
||||
|
||||
@@ -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"/>
|
||||
|
||||
@@ -34,7 +34,7 @@ No attributes available.
|
||||
|
||||
*Example 1*
|
||||
|
||||
.. code-block:: console
|
||||
.. code-block:: cpp
|
||||
|
||||
<layer ... type="Asin">
|
||||
<input>
|
||||
|
||||
@@ -30,7 +30,7 @@
|
||||
|
||||
**Example**
|
||||
|
||||
.. code-block:: console
|
||||
.. code-block:: cpp
|
||||
|
||||
<layer ... type="Asinh">
|
||||
<input>
|
||||
|
||||
@@ -30,7 +30,7 @@
|
||||
|
||||
**Examples**
|
||||
|
||||
.. code-block:: console
|
||||
.. code-block:: cpp
|
||||
|
||||
<layer ... type="Atan">
|
||||
<input>
|
||||
|
||||
@@ -45,7 +45,7 @@ Unsigned Intragral type put:
|
||||
|
||||
**Examples**
|
||||
|
||||
.. code-block:: console
|
||||
.. code-block:: cpp
|
||||
|
||||
<layer ... type="Atanh">
|
||||
<input>
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user