Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Aimet docker version fix #3292

Merged
merged 2 commits into from
Sep 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ def setup(app):
.. |author| replace:: {author}
.. |project| replace:: {project}
.. |default-quantsim-config-file| replace:: aimet_common/quantsim_config/default_config.json
.. |version| replace:: {version}
""".format(project=project, author=author, version=version)

# -- Options for LaTeX output ------------------------------------------------
Expand Down
15 changes: 7 additions & 8 deletions Docs/install/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -68,29 +68,29 @@ For other aimet variants, install the latest version from the .whl files hosted
.. parsed-literal::

# Pytorch 1.13 with CUDA 11.x
python3 -m pip install |download_url|\ |version|/aimet_torch-torch_gpu\_\ |version|\ |whl_suffix|
python3 -m pip install |download_url|\ |version|/aimet_torch-\ |version|\ |whl_suffix|
# Pytorch 1.13 CPU only
python3 -m pip install |download_url|\ |version|/aimet_torch-torch_cpu\_\ |version|\ |whl_suffix|
python3 -m pip install |download_url|\ |version|/aimet_torch-\ |version|\ |whl_suffix|


**TensorFlow**

.. parsed-literal::

# Tensorflow 2.10 GPU with CUDA 11.x
python3 -m pip install |download_url|\ |version|/aimet_tensorflow-tf_gpu\_\ |version|\ |whl_suffix|
python3 -m pip install |download_url|\ |version|/aimet_tensorflow-\ |version|\ |whl_suffix|
# Tensorflow 2.10 CPU only
python3 -m pip install |download_url|\ |version|/aimet_tensorflow-tf_cpu\_\ |version|\ |whl_suffix|
python3 -m pip install |download_url|\ |version|/aimet_tensorflow-\ |version|\ |whl_suffix|


**Onnx**

.. parsed-literal::

# ONNX 1.14 GPU
python3 -m pip install |download_url|\ |version|/aimet_onnx-onnx_gpu\_\ |version|\ |whl_suffix|
python3 -m pip install |download_url|\ |version|/aimet_onnx-\ |version|\ |whl_suffix|
# ONNX 1.14 CPU
python3 -m pip install |download_url|\ |version|/aimet_onnx-onnx_cpu\_\ |version|\ |whl_suffix|
python3 -m pip install |download_url|\ |version|/aimet_onnx-\ |version|\ |whl_suffix|

For previous AIMET releases, browse packages at https://github.com/quic/aimet/releases. Each release includes multiple python packages of the following format:

Expand All @@ -101,8 +101,7 @@ For previous AIMET releases, browse packages at https://github.com/quic/aimet/re
<PACKAGE_PREFIX>-<VARIANT>_<VERSION>\ |whl_suffix|


.. |version| replace:: 1.31.0
.. |whl_suffix| replace:: -cp38-cp38-linux_x86_64.whl
.. |whl_suffix| replace:: -cp310-cp310-manylinux_2_34_x86_64.whl
.. |download_url| replace:: \https://github.com/quic/aimet/releases/download/

System Requirements
Expand Down
Loading