From: A. Unique TensorFlower Date: Fri, 18 May 2018 14:52:32 +0000 (-0700) Subject: Restructure BUILD rules to be modularly correct X-Git-Tag: upstream/v1.9.0_rc1~94^2^2~25 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e451eef91d81ea7642bda594f27e514e5922b73b;p=platform%2Fupstream%2Ftensorflow.git Restructure BUILD rules to be modularly correct PiperOrigin-RevId: 197145545 --- diff --git a/tensorflow/contrib/lite/kernels/internal/BUILD b/tensorflow/contrib/lite/kernels/internal/BUILD index d8340d4..aabbb06 100644 --- a/tensorflow/contrib/lite/kernels/internal/BUILD +++ b/tensorflow/contrib/lite/kernels/internal/BUILD @@ -302,6 +302,8 @@ cc_library( name = "neon_tensor_utils", srcs = [ "optimized/neon_tensor_utils.cc", + "reference/portable_tensor_utils.cc", + "reference/portable_tensor_utils.h", ], hdrs = [ "common.h", @@ -313,11 +315,11 @@ cc_library( copts = NEON_FLAGS_IF_APPLICABLE + HARD_FP_FLAGS_IF_APPLICABLE, deps = [ ":cpu_check", - ":portable_tensor_utils", ":round", ":types", "//tensorflow/contrib/lite:builtin_op_data", "//tensorflow/contrib/lite/kernels:activation_functor", + "//tensorflow/contrib/lite/kernels:op_macros", "@arm_neon_2_x86_sse", "@gemmlowp", ],