QNN quantize and dequantize operators. (#3745)
authorshoubhik <shoubhikbhatti@gmail.com>
Fri, 16 Aug 2019 03:29:34 +0000 (20:29 -0700)
committerWuwei Lin <wuwei@apache.org>
Fri, 16 Aug 2019 03:29:34 +0000 (20:29 -0700)
commitd3eb9cb84b3dc5c08446af0007371c2a42398cac
tree7f2cb3319eb7b0b9328aaaac22f6f2216fcfb00b
parent674feba0dcef8e4d2d4118436f3387f19d8f62da
QNN quantize and dequantize operators. (#3745)

* QNN quantize and dequantize operators.

* addressing review comments.

* addressing review comments.

* Adding new line at the end of the file.

* Adhering to styling guidelines.

* Adding name to contributors.

* Fixing lint issue.

* Fixing file name.

* Removing unnecessary code.
CONTRIBUTORS.md
include/tvm/relay/qnn/attrs.h
python/tvm/relay/qnn/op/qnn.py
src/relay/qnn/op/dequantize.cc [new file with mode: 0644]
src/relay/qnn/op/quantize.cc [new file with mode: 0644]
src/relay/qnn/op/requantize.cc
tests/python/relay/test_qnn_dequantize.py [new file with mode: 0644]
tests/python/relay/test_qnn_quantize.py [new file with mode: 0644]
tests/python/relay/test_qnn_requantize.py