Skip to content

Commit 4438add

Browse files
[DOCS] align the new APT-YUM references (#29455)
1 parent b1a07c7 commit 4438add

File tree

3 files changed

+20
-19
lines changed

3 files changed

+20
-19
lines changed

docs/articles_en/documentation/openvino-ir-format/operation-sets/operation-specs/generation/random-uniform-8.rst

+7-6
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ The result of Philox is calculated by applying a fixed number of *key* and *coun
4242
This implementation uses 4x32_10 version of Philox algorithm, where number of rounds = 10.
4343

4444
Suppose we have *n* which determines *n*-th 4 elements of random sequence.
45-
In each round *key*, *counter* and *n* are splitted to pairs of uint32 values:
45+
In each round *key*, *counter* and *n* are split to pairs of uint32 values:
4646

4747
.. math::
4848
@@ -220,7 +220,8 @@ Example 3. *RandomUniform* output with ``global_seed`` = 80, ``op_seed`` = 100,
220220

221221
Mersenne-Twister Algorithm Explanation:
222222

223-
Link to the original paper Mersenne Twister: Mersenne twister: a 623-dimensionally equidistributed uniform pseudo-random number generator <https://dl.acm.org/doi/10.1145/272991.272995>__.
223+
| Link to the original paper Mersenne Twister:
224+
| `Mersenne twister: a 623-dimensionally equidistributed uniform pseudo-random number generator <https://dl.acm.org/doi/10.1145/272991.272995>`__.
224225
225226
The Mersenne-Twister algorithm generates random numbers by initializing a state array with a seed and then iterating through a series of transformations.
226227
Suppose we have n which determines the n-th element of the random sequence.
@@ -250,11 +251,11 @@ Whenever all state values are 'used', a new state array is generated recursively
250251

251252
.. math::
252253
253-
current_state = state[i]
254-
next_state = state[i+1] if i+1 <= 623 else state[0]
255-
next_m_state = state[i+m] if i+m <= 623 else state[i+m-623]
254+
current\_state = state[i]
255+
next\_state = state[i+1] if i+1 <= 623 else state[0]
256+
next\_m_state = state[i+m] if i+m <= 623 else state[i+m-623]
256257
257-
twisted_state = (((current_state & 0x80000000) | (next_state & 0x7fffffff)) >> 1) ^ (next_state & 1 ? 0x9908b0df : 0)
258+
twisted\_state = (((current_state & 0x80000000) | (next_state & 0x7fffffff)) >> 1) ^ (next_state & 1 ? 0x9908b0df : 0)
258259
state[i] = next_m_state ^ twisted_state
259260
260261
where m is a constant.

docs/articles_en/get-started/install-openvino/install-openvino-apt.rst

+5-5
Original file line numberDiff line numberDiff line change
@@ -56,21 +56,21 @@ Step 1: Set Up the OpenVINO Toolkit APT Repository
5656

5757
.. code-block:: sh
5858
59-
echo "deb https://apt.repos.intel.com/openvino/2025 ubuntu24 main" | sudo tee /etc/apt/sources.list.d/intel-openvino-2025.list
59+
echo "deb https://apt.repos.intel.com/openvino ubuntu24 main" | sudo tee /etc/apt/sources.list.d/intel-openvino.list
6060
6161
.. tab-item:: Ubuntu 22
6262
:sync: ubuntu-22
6363

6464
.. code-block:: sh
6565
66-
echo "deb https://apt.repos.intel.com/openvino/2025 ubuntu22 main" | sudo tee /etc/apt/sources.list.d/intel-openvino-2025.list
66+
echo "deb https://apt.repos.intel.com/openvino ubuntu22 main" | sudo tee /etc/apt/sources.list.d/intel-openvino.list
6767
6868
.. tab-item:: Ubuntu 20
6969
:sync: ubuntu-20
7070

7171
.. code-block:: sh
7272
73-
echo "deb https://apt.repos.intel.com/openvino/2025 ubuntu20 main" | sudo tee /etc/apt/sources.list.d/intel-openvino-2025.list
73+
echo "deb https://apt.repos.intel.com/openvino ubuntu20 main" | sudo tee /etc/apt/sources.list.d/intel-openvino.list
7474
7575
7676
3. Update the list of packages via the update command:
@@ -126,7 +126,7 @@ Step 2: Install OpenVINO Runtime Using the APT Package Manager
126126
.. code-block:: sh
127127
128128
129-
sudo apt install openvino-2025.0.0
129+
sudo apt install openvino-2025.1.0
130130
131131
.. note::
132132

@@ -199,7 +199,7 @@ To uninstall OpenVINO Runtime via APT, run the following command based on your n
199199

200200
.. code-block:: sh
201201
202-
sudo apt autoremove openvino-2025.0.0
202+
sudo apt autoremove openvino-2025.1.0
203203
204204
205205
What's Next?

docs/articles_en/get-started/install-openvino/install-openvino-yum.rst

+8-8
Original file line numberDiff line numberDiff line change
@@ -25,25 +25,25 @@ Step 1: Set Up the Repository
2525
+++++++++++++++++++++++++++++
2626

2727

28-
1. Create a YUM repository file (``openvino-2025.repo``) in the ``/tmp`` directory as a normal user:
28+
1. Create a YUM repository file (``openvino.repo``) in the ``/tmp`` directory as a normal user:
2929

3030
.. code-block:: sh
3131
32-
tee > /tmp/openvino-2025.repo << EOF
32+
tee > /tmp/openvino.repo << EOF
3333
[OpenVINO]
34-
name=Intel(R) Distribution of OpenVINO 2025
35-
baseurl=https://yum.repos.intel.com/openvino/2025
34+
name=Intel(R) Distribution of OpenVINO
35+
baseurl=https://yum.repos.intel.com/openvino
3636
enabled=1
3737
gpgcheck=1
3838
repo_gpgcheck=1
3939
gpgkey=https://yum.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB
4040
EOF
4141
42-
2. Move the new ``openvino-2025.repo`` file to the YUM configuration directory, i.e. ``/etc/yum.repos.d``:
42+
2. Move the new ``openvino.repo`` file to the YUM configuration directory, i.e. ``/etc/yum.repos.d``:
4343
4444
.. code-block:: sh
4545
46-
sudo mv /tmp/openvino-2025.repo /etc/yum.repos.d
46+
sudo mv /tmp/openvino.repo /etc/yum.repos.d
4747
4848
3. Verify that the new repository is set up properly.
4949
@@ -93,7 +93,7 @@ Install OpenVINO Runtime
9393
.. code-block:: sh
9494
9595
96-
sudo yum install openvino-2025.0.0
96+
sudo yum install openvino-2025.1.0
9797
9898
9999
@@ -164,7 +164,7 @@ To uninstall OpenVINO Runtime via YUM, run the following command based on your n
164164
165165
.. code-block:: sh
166166
167-
sudo yum autoremove openvino-2025.0.0
167+
sudo yum autoremove openvino-2025.1.0
168168
169169
170170

0 commit comments

Comments
 (0)