aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/quantization
diff options
context:
space:
mode:
authorGravatar Kiril Gorovoy <kgorovoy@google.com>2016-08-04 11:25:36 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-08-04 12:33:01 -0700
commit0811b0b6e0bae76489866d7649bdbb7ffdb4e3ef (patch)
tree4fcf10b620d9d035f40e5cfc559e47ee73078279 /tensorflow/contrib/quantization
parent9e39f6cf93cebffe58e1209ce4a9c4b41261f7ee (diff)
Remove "external/gemmlowp" from gemmlowp #includes since it's not needed and fails to build when compiling TensorFlow as a submodule.
Change: 129359615
Diffstat (limited to 'tensorflow/contrib/quantization')
-rw-r--r--tensorflow/contrib/quantization/kernels/quantization_utils.h2
-rw-r--r--tensorflow/contrib/quantization/kernels/quantized_conv_ops.cc2
-rw-r--r--tensorflow/contrib/quantization/kernels/quantized_matmul_op.cc2
3 files changed, 3 insertions, 3 deletions
diff --git a/tensorflow/contrib/quantization/kernels/quantization_utils.h b/tensorflow/contrib/quantization/kernels/quantization_utils.h
index c9a3c77797..45fda79ce5 100644
--- a/tensorflow/contrib/quantization/kernels/quantization_utils.h
+++ b/tensorflow/contrib/quantization/kernels/quantization_utils.h
@@ -25,7 +25,7 @@ limitations under the License.
// to avoid a dependency on floating-point hardware.
#include "third_party/eigen3/unsupported/Eigen/CXX11/Tensor"
-#include "external/gemmlowp/public/gemmlowp.h"
+#include "public/gemmlowp.h"
#include "tensorflow/core/framework/tensor.h"
#include "tensorflow/core/lib/core/threadpool.h"
diff --git a/tensorflow/contrib/quantization/kernels/quantized_conv_ops.cc b/tensorflow/contrib/quantization/kernels/quantized_conv_ops.cc
index 647e68ea12..b25bff45a1 100644
--- a/tensorflow/contrib/quantization/kernels/quantized_conv_ops.cc
+++ b/tensorflow/contrib/quantization/kernels/quantized_conv_ops.cc
@@ -18,7 +18,7 @@ limitations under the License.
#include <algorithm>
#include <vector>
-#include "external/gemmlowp/public/gemmlowp.h"
+#include "public/gemmlowp.h"
#include "tensorflow/contrib/quantization/kernels/quantization_utils.h"
#include "tensorflow/contrib/quantization/kernels/reference_gemm.h"
#include "tensorflow/core/framework/op_kernel.h"
diff --git a/tensorflow/contrib/quantization/kernels/quantized_matmul_op.cc b/tensorflow/contrib/quantization/kernels/quantized_matmul_op.cc
index 21abce932a..18de2d1d97 100644
--- a/tensorflow/contrib/quantization/kernels/quantized_matmul_op.cc
+++ b/tensorflow/contrib/quantization/kernels/quantized_matmul_op.cc
@@ -15,7 +15,7 @@ limitations under the License.
// Implements a quantized eight-bit version of the matmul operation.
-#include "external/gemmlowp/public/gemmlowp.h"
+#include "public/gemmlowp.h"
#include "tensorflow/contrib/quantization/kernels/quantization_utils.h"
#include "tensorflow/contrib/quantization/kernels/reference_gemm.h"
#include "tensorflow/core/framework/op_kernel.h"