diff --git a/Docs/install/index.rst b/Docs/install/index.rst index 5846a216ae1..0b996c599e1 100644 --- a/Docs/install/index.rst +++ b/Docs/install/index.rst @@ -73,9 +73,6 @@ The following pre-requisites apply to all variants. The GPU variants may need ad # Install pre-requisite packages apt-get install liblapacke libpython3-dev - # Install an compatible version of pip (since the latest version is NOT compatible with our wheel packages) - python3 -m pip install pip==24.0 - **PyTorch** diff --git a/Docs/install/install_docker.rst b/Docs/install/install_docker.rst index 7d0b8b134c0..a8ef2365483 100644 --- a/Docs/install/install_docker.rst +++ b/Docs/install/install_docker.rst @@ -166,9 +166,6 @@ Install the selected AIMET package as specified below: .. code-block:: bash - # Install an compatible version of pip (since the latest version is NOT compatible with our wheel packages) - python3 -m pip install pip==24.0 - # Install the wheel package python3 -m pip install ${download_url}/${wheel_file_name} ${find_pkg_url_str} diff --git a/Docs/install/install_host.rst b/Docs/install/install_host.rst index 404c0856d40..3de3b7fe811 100755 --- a/Docs/install/install_host.rst +++ b/Docs/install/install_host.rst @@ -146,9 +146,6 @@ Install the selected AIMET package as specified below: .. code-block:: bash - # Install an compatible version of pip (since the latest version is NOT compatible with our wheel packages) - python3 -m pip install pip==24.0 - # Install the wheel package python3 -m pip install ${download_url}/${wheel_file_name} ${find_pkg_url_str} diff --git a/TrainingExtensions/torch/CMakeLists.txt b/TrainingExtensions/torch/CMakeLists.txt index 9252803a772..eca3060ec3f 100644 --- a/TrainingExtensions/torch/CMakeLists.txt +++ b/TrainingExtensions/torch/CMakeLists.txt @@ -76,7 +76,6 @@ add_custom_target(TorchCppOps ALL DEPENDS ${OUTPUT} SOURCES src/AimetTensorQuantizer.cpp - src/AimetEncodingRescaler.cpp ) set(FILE_PATH "${CMAKE_BINARY_DIR}/artifacts/aimet_tensor_quantizer*.egg/AimetTensorQuantizer*.so")