forked from tensorflow/tensorflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate TensorFlow Lite out of tensorflow/contrib
This change moves //tensorflow/contrib/lite to //tensorflow/lite in preparation for TensorFlow 2.0's deprecation of contrib/. If you refer to TF Lite build targets or headers, you will need to update them manually. If you use TF Lite from the TensorFlow python package, "tf.contrib.lite" now points to "tf.lite". Please update your imports as soon as possible. For more details, see https://groups.google.com/a/tensorflow.org/forum/#!topic/tflite/iIIXOTOFvwQ @angersson and @aselle are conducting this migration. Please contact them if you have any further questions. PiperOrigin-RevId: 219536476
- Loading branch information
1 parent
0f8f062
commit 61c6c84
Showing
1,205 changed files
with
4,284 additions
and
4,242 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
107 changes: 0 additions & 107 deletions
107
tensorflow/contrib/lite/experimental/micro/kernels/BUILD
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,186 +1,12 @@ | ||
licenses(["notice"]) # Apache 2.0 | ||
|
||
package(default_visibility = ["//tensorflow:internal"]) | ||
|
||
load("//tensorflow:tensorflow.bzl", "py_test") | ||
|
||
filegroup( | ||
name = "interpreter_test_data", | ||
srcs = glob(["**/testdata/*"]), | ||
visibility = ["//tensorflow:__subpackages__"], | ||
) | ||
|
||
py_library( | ||
name = "interpreter", | ||
srcs = [ | ||
"interpreter.py", | ||
], | ||
srcs_version = "PY2AND3", | ||
visibility = ["//visibility:public"], | ||
deps = [ | ||
"//tensorflow/contrib/lite/python/interpreter_wrapper:tensorflow_wrap_interpreter_wrapper", | ||
"//tensorflow/python:util", | ||
"//third_party/py/numpy", | ||
], | ||
) | ||
|
||
py_test( | ||
name = "interpreter_test", | ||
srcs = ["interpreter_test.py"], | ||
data = [":interpreter_test_data"], | ||
srcs_version = "PY2AND3", | ||
tags = ["no_oss"], | ||
deps = [ | ||
":interpreter", | ||
"//tensorflow/python:client_testlib", | ||
"//tensorflow/python:framework_test_lib", | ||
"//tensorflow/python:platform", | ||
"//third_party/py/numpy", | ||
], | ||
) | ||
|
||
py_binary( | ||
name = "tflite_convert", | ||
srcs = ["tflite_convert.py"], | ||
srcs_version = "PY2AND3", | ||
visibility = ["//visibility:public"], | ||
deps = [ | ||
":lite", | ||
], | ||
) | ||
licenses(["notice"]) | ||
|
||
# DO NOT USE THIS TARGET. TensorFlow Lite has moved to tensorflow/lite. | ||
py_library( | ||
name = "lite", | ||
srcs = ["lite.py"], | ||
srcs_version = "PY2AND3", | ||
visibility = ["//visibility:public"], | ||
deps = [ | ||
":convert", | ||
":convert_saved_model", | ||
":interpreter", | ||
":lite_constants", | ||
":op_hint", | ||
"//tensorflow/python:graph_util", | ||
"//tensorflow/python/keras", | ||
"//tensorflow/python/saved_model:constants", | ||
"//tensorflow/python/saved_model:loader", | ||
], | ||
) | ||
|
||
py_test( | ||
name = "lite_test", | ||
srcs = ["lite_test.py"], | ||
data = ["@tflite_mobilenet_ssd_quant_protobuf//:tflite_graph.pb"], | ||
srcs = ["__init__.py"], | ||
srcs_version = "PY2AND3", | ||
tags = [ | ||
"no_oss", | ||
"no_windows", | ||
], | ||
deps = [ | ||
":lite", | ||
"//tensorflow/python:client_testlib", | ||
"//tensorflow/python:framework_test_lib", | ||
], | ||
) | ||
|
||
py_library( | ||
name = "lite_constants", | ||
srcs = ["lite_constants.py"], | ||
srcs_version = "PY2AND3", | ||
deps = [ | ||
"//tensorflow/contrib/lite/toco:toco_flags_proto_py", | ||
], | ||
) | ||
|
||
py_library( | ||
name = "convert", | ||
srcs = ["convert.py"], | ||
srcs_version = "PY2AND3", | ||
visibility = ["//visibility:public"], | ||
deps = [ | ||
":lite_constants", | ||
"//tensorflow/contrib/lite/toco:model_flags_proto_py", | ||
"//tensorflow/contrib/lite/toco:toco_flags_proto_py", | ||
"//tensorflow/contrib/lite/toco/python:tensorflow_wrap_toco", | ||
"//tensorflow/contrib/lite/toco/python:toco_from_protos", | ||
"//tensorflow/python:platform", | ||
], | ||
) | ||
|
||
py_library( | ||
name = "op_hint", | ||
srcs = ["op_hint.py"], | ||
srcs_version = "PY2AND3", | ||
visibility = ["//visibility:public"], | ||
deps = [ | ||
"//tensorflow/contrib/framework:framework_py", | ||
"//tensorflow/contrib/graph_editor:graph_editor_py", | ||
"//tensorflow/core:protos_all_py", | ||
"//tensorflow/python:framework", | ||
"//tensorflow/python:platform", | ||
"//tensorflow/python:util", | ||
], | ||
) | ||
|
||
py_test( | ||
name = "convert_test", | ||
srcs = ["convert_test.py"], | ||
srcs_version = "PY2AND3", | ||
deps = [ | ||
":convert", | ||
":interpreter", | ||
":op_hint", | ||
"//tensorflow/python:array_ops", | ||
"//tensorflow/python:client_testlib", | ||
"//tensorflow/python:dtypes", | ||
"//tensorflow/python:platform_test", | ||
"//tensorflow/python:session", | ||
], | ||
) | ||
|
||
py_library( | ||
name = "convert_saved_model", | ||
srcs = ["convert_saved_model.py"], | ||
srcs_version = "PY2AND3", | ||
visibility = ["//tensorflow/contrib/lite:__subpackages__"], | ||
deps = [ | ||
":convert", | ||
"//tensorflow/python:graph_util", | ||
"//tensorflow/python:platform", | ||
"//tensorflow/python/saved_model", | ||
], | ||
) | ||
|
||
py_binary( | ||
name = "create_custom_op", | ||
srcs = ["create_custom_op.py"], | ||
srcs_version = "PY2AND3", | ||
visibility = ["//visibility:public"], | ||
deps = [ | ||
"//tensorflow/contrib/framework:framework_py", | ||
"//tensorflow/core:protos_all_py", | ||
"//tensorflow/python:platform", | ||
"@absl_py//absl/flags", | ||
], | ||
) | ||
|
||
py_test( | ||
name = "convert_saved_model_test", | ||
srcs = ["convert_saved_model_test.py"], | ||
srcs_version = "PY2AND3", | ||
tags = [ | ||
"no_windows", | ||
], | ||
visibility = ["//visibility:public"], | ||
deps = [ | ||
":convert_saved_model", | ||
"//tensorflow/python:client_testlib", | ||
"//tensorflow/python:layers", | ||
"//tensorflow/python:nn", | ||
"//tensorflow/python:platform_test", | ||
"//tensorflow/python:session", | ||
"//tensorflow/python/keras", | ||
"//tensorflow/python/ops/losses", | ||
"//tensorflow/python/saved_model", | ||
"//tensorflow/lite/python:lite", | ||
], | ||
) |
Oops, something went wrong.