Hi,
I tried to install the stable version(Release version 1.16.1 · quic/aimet · GitHub) of 1.16.1 in python 3.6 environment.
When I tried to install AIMET packages, it stated wheel is not supported, then I replaced py3-none-any with cp36-cp36m-linux_x86_64
OR cp37-cp37m-linux_x86_64
but it stated 404 error as the file was not found.
So I explicitly copied the wheel file link address and installed all the packages, like this:
(python3 -m pip install https://github.com/quic/aimet/releases/download/1.16.1/AimetCommon-torch_gpu_1.16.1-py3-none-any.whl)
Once the installation was done, I get error as
import AimetTensorQuantizer # pylint: disable=import-error
ModuleNotFoundError: No module named ‘AimetTensorQuantizer’
I’m using ubuntu 18.04
cuda version : 11.2
python 3.6
I’m wondering the installation is wrong, but I get this when I try to run a quantization code: root - INFO - AIMET. So it means the AIMET installation is done right?
Can anyone help what’s going wrong here?