aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/lite/toco/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/contrib/lite/toco/BUILD')
-rw-r--r--tensorflow/contrib/lite/toco/BUILD15
1 files changed, 11 insertions, 4 deletions
diff --git a/tensorflow/contrib/lite/toco/BUILD b/tensorflow/contrib/lite/toco/BUILD
index f74fc45330..c88079717d 100644
--- a/tensorflow/contrib/lite/toco/BUILD
+++ b/tensorflow/contrib/lite/toco/BUILD
@@ -93,6 +93,7 @@ cc_library(
":runtime",
":toco_port",
"//tensorflow/core:lib",
+ "@com_google_absl//absl/types:optional",
],
)
@@ -176,7 +177,7 @@ cc_library(
"graph_transformations/convert_reorder_axes.cc",
"graph_transformations/convert_squeeze_to_reshape.cc",
"graph_transformations/convert_trivial_addn_to_add.cc",
- "graph_transformations/convert_trivial_stack_to_reshape.cc",
+ "graph_transformations/convert_trivial_pack_to_reshape.cc",
"graph_transformations/convert_trivial_tile_to_concat.cc",
"graph_transformations/convert_trivial_transpose_to_reshape.cc",
"graph_transformations/create_im2col_arrays.cc",
@@ -202,6 +203,7 @@ cc_library(
"graph_transformations/lstm_utils.cc",
"graph_transformations/make_initial_dequantize_operator.cc",
"graph_transformations/merge_reshape_into_preceding_transpose.cc",
+ "graph_transformations/move_binary_operator_before_reshape.cc",
"graph_transformations/propagate_activation_function_into_constants.cc",
"graph_transformations/propagate_array_data_types.cc",
"graph_transformations/propagate_default_min_max.cc",
@@ -211,7 +213,7 @@ cc_library(
"graph_transformations/quantization_util.h",
"graph_transformations/quantize.cc",
"graph_transformations/quantize_weights.cc",
- "graph_transformations/read_fake_quant_min_max.cc",
+ "graph_transformations/read_array_minmax_and_narrow_range_from_fake_quant.cc",
"graph_transformations/remove_final_dequantize_op.cc",
"graph_transformations/remove_tensorflow_assert.cc",
"graph_transformations/remove_tensorflow_identity.cc",
@@ -235,19 +237,21 @@ cc_library(
"graph_transformations/resolve_constant_fake_quant.cc",
"graph_transformations/resolve_constant_fill.cc",
"graph_transformations/resolve_constant_gather.cc",
+ "graph_transformations/resolve_constant_pack.cc",
"graph_transformations/resolve_constant_random_uniform.cc",
"graph_transformations/resolve_constant_range.cc",
"graph_transformations/resolve_constant_reshape.cc",
"graph_transformations/resolve_constant_shape_or_rank.cc",
"graph_transformations/resolve_constant_slice.cc",
- "graph_transformations/resolve_constant_stack.cc",
"graph_transformations/resolve_constant_strided_slice.cc",
"graph_transformations/resolve_constant_transpose.cc",
"graph_transformations/resolve_constant_unary.cc",
- "graph_transformations/resolve_mean_attributes.cc",
+ "graph_transformations/resolve_fake_quant_args_from_vars.cc",
+ "graph_transformations/resolve_gather_attributes.cc",
"graph_transformations/resolve_multiply_by_zero.cc",
"graph_transformations/resolve_pad_attributes.cc",
"graph_transformations/resolve_padv2_attributes.cc",
+ "graph_transformations/resolve_reduce_attributes.cc",
"graph_transformations/resolve_reorder_axes.cc",
"graph_transformations/resolve_reshape_attributes.cc",
"graph_transformations/resolve_slice_attributes.cc",
@@ -335,6 +339,7 @@ cc_library(
tf_cc_test(
name = "import_tensorflow_test",
srcs = ["import_tensorflow_test.cc"],
+ tags = ["no_oss"],
deps = [
":toco_tooling",
"//tensorflow/core:framework",
@@ -374,6 +379,7 @@ cc_library(
tf_cc_test(
name = "tooling_util_test",
srcs = ["tooling_util_test.cc"],
+ tags = ["no_oss"],
deps = [
":model",
":tooling_util",
@@ -408,6 +414,7 @@ tf_cc_test(
data = [
"toco_port_test.cc",
],
+ tags = ["no_oss"],
deps = [
":toco_port",
"@com_google_googletest//:gtest_main",