Skip to content

Commit 0527eb7

Browse files
committed
Fixing conda references.
1 parent 3ee545d commit 0527eb7

File tree

3 files changed

+27
-0
lines changed

3 files changed

+27
-0
lines changed

beginner_source/introyt/tensorboardyt_tutorial.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,13 @@
2424
To run this tutorial, you’ll need to install PyTorch, TorchVision,
2525
Matplotlib, and TensorBoard.
2626
27+
With ``conda``:
28+
29+
.. code-block:: sh
30+
31+
conda install pytorch torchvision -c pytorch
32+
conda install matplotlib tensorboard
33+
2734
With ``pip``:
2835
2936
.. code-block:: sh

recipes_source/intel_neural_compressor_for_pytorch.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,9 @@ Installation
5050
# install nightly version from pip
5151
pip install -i https://test.pypi.org/simple/ neural-compressor
5252
53+
# install stable version from from conda
54+
conda install neural-compressor -c conda-forge -c intel
55+
5356
*Supported python versions are 3.6 or 3.7 or 3.8 or 3.9*
5457

5558
Usages

recipes_source/xeon_run_cpu.rst

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,11 @@ The Intel® OpenMP Runtime Library can be installed using one of these commands:
9999
100100
$ pip install intel-openmp
101101
102+
or
103+
104+
.. code-block:: console
105+
$ conda install mkl
106+
102107
103108
Choosing an Optimized Memory Allocator
104109
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -117,6 +122,12 @@ On CentOS, you can install it by running:
117122
118123
$ yum install gperftools
119124
125+
In a conda environment, it can also be installed by running:
126+
127+
.. code-block:: console
128+
129+
$ conda install conda-forge::gperftools
130+
120131
On Ubuntu ``JeMalloc`` can be installed by this command:
121132

122133
.. code-block:: console
@@ -129,6 +140,12 @@ On CentOS it can be installed by running:
129140
130141
$ yum install jemalloc
131142
143+
In a conda environment, it can also be installed by running:
144+
145+
.. code-block:: console
146+
147+
$ conda install conda-forge::jemalloc
148+
132149
Quick Start Example Commands
133150
----------------------------
134151

0 commit comments

Comments
 (0)