gitextract_yis4nxki/ ├── LICENSE.txt ├── MANIFEST.in ├── Makefile ├── README.md ├── build_helper.py ├── docker/ │ └── Dockerfile ├── docs/ │ ├── Makefile │ ├── make.bat │ └── source/ │ ├── build_helper.rst │ ├── conf.py │ ├── index.rst │ ├── modules.rst │ ├── nnieqat.cuda10.rst │ ├── nnieqat.modules.rst │ ├── nnieqat.rst │ └── setup.rst ├── nnieqat/ │ ├── __init__.py │ ├── cuda10/ │ │ ├── LICENSE.txt │ │ └── lib/ │ │ ├── gfpq.lib │ │ ├── libgfpq.a │ │ ├── libgfpq.so.1.1.5 │ │ ├── libgfpq_gpu.a │ │ └── libgfpq_gpu.so.1.1.5 │ └── quantize.py ├── pyproject.toml ├── setup.cfg ├── setup.py ├── src/ │ ├── fake_quantize.cpp │ ├── fake_quantize.cu │ ├── fake_quantize.h │ └── test/ │ ├── Makefile │ └── test.cu └── tests/ ├── test_cifar10.py ├── test_imagenet.py ├── test_merge_freeze_bn.py └── test_quant_impl.py