Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marian-nmt/FBGEMM.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJongsoo Park <jongsoo@fb.com>2018-11-22 08:01:33 +0300
committerFacebook Github Bot <facebook-github-bot@users.noreply.github.com>2018-11-22 08:03:12 +0300
commit719734d01655b7ec5837adaa2710d4b7d03c0840 (patch)
tree67af8315cad28be3c659ca580e209ccca25f8a00 /CMakeLists.txt
parent20aa404122b9b7d999faa70692718e5f473b4ae4 (diff)
adding quantization utility functions (#19)
Summary: Pull Request resolved: https://github.com/pytorch/FBGEMM/pull/19 Copying some of quantization utility functions from caffe2/quantization/server/dnnlowp.h to fbgemm/include/QuantUtils.h Will have another diff that removes the utility functions in caffe2/quantization/server/dnnlowp.h Reviewed By: jianyuh Differential Revision: D13159231 fbshipit-source-id: e409c0adc16b9ae1f32a3a62926817588a860855
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index dd39195..26123d3 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -41,6 +41,7 @@ set(FBGEMM_AVX2_SRCS src/ExecuteKernel.cc
src/PackMatrix.cc
src/PackAWithQuantRowOffset.cc
src/PackAWithRowOffset.cc
+ src/QuantUtils.cc
src/RefImplementations.cc
src/Utils.cc)