504 lines
15 KiB
Python
504 lines
15 KiB
Python
package(default_visibility = ["//tensorflow:internal"])
|
|
|
|
licenses(["notice"]) # Apache 2.0
|
|
|
|
exports_files(["LICENSE"])
|
|
|
|
load("//tensorflow:tensorflow.bzl", "py_test")
|
|
|
|
py_test(
|
|
name = "batch_dataset_op_test",
|
|
size = "small",
|
|
srcs = ["batch_dataset_op_test.py"],
|
|
srcs_version = "PY2AND3",
|
|
tags = ["no_pip"],
|
|
deps = [
|
|
":dataset_serialization_test",
|
|
"//tensorflow/contrib/data/python/ops:dataset_ops",
|
|
"//tensorflow/contrib/data/python/ops:transformation_ops",
|
|
"//tensorflow/python:array_ops",
|
|
"//tensorflow/python:client_testlib",
|
|
"//tensorflow/python:constant_op",
|
|
"//tensorflow/python:dtypes",
|
|
"//tensorflow/python:errors",
|
|
"//tensorflow/python:math_ops",
|
|
"//tensorflow/python:sparse_tensor",
|
|
"//tensorflow/python:string_ops",
|
|
"//tensorflow/python:tensor_shape",
|
|
"//tensorflow/python:util",
|
|
"//third_party/py/numpy",
|
|
],
|
|
)
|
|
|
|
py_test(
|
|
name = "bucketing_test",
|
|
size = "small",
|
|
srcs = ["bucketing_test.py"],
|
|
srcs_version = "PY2AND3",
|
|
deps = [
|
|
"//tensorflow/contrib/data/python/ops:dataset_ops",
|
|
"//tensorflow/contrib/data/python/ops:transformation_ops",
|
|
"//tensorflow/python:array_ops",
|
|
"//tensorflow/python:client_testlib",
|
|
"//tensorflow/python:constant_op",
|
|
"//tensorflow/python:dtypes",
|
|
"//tensorflow/python:errors",
|
|
"//tensorflow/python:framework_ops",
|
|
"//tensorflow/python:math_ops",
|
|
"//tensorflow/python:string_ops",
|
|
"//tensorflow/python:tensor_shape",
|
|
"//third_party/py/numpy",
|
|
],
|
|
)
|
|
|
|
py_test(
|
|
name = "cache_dataset_op_test",
|
|
size = "small",
|
|
srcs = ["cache_dataset_op_test.py"],
|
|
srcs_version = "PY2AND3",
|
|
deps = [
|
|
"//tensorflow/contrib/data/python/ops:dataset_ops",
|
|
"//tensorflow/python:array_ops",
|
|
"//tensorflow/python:client_testlib",
|
|
"//tensorflow/python:constant_op",
|
|
"//tensorflow/python:dtypes",
|
|
"//tensorflow/python:errors",
|
|
"//tensorflow/python:variables",
|
|
"//tensorflow/python/data/ops:iterator_ops",
|
|
"//third_party/py/numpy",
|
|
],
|
|
)
|
|
|
|
py_test(
|
|
name = "concatenate_dataset_op_test",
|
|
size = "small",
|
|
srcs = ["concatenate_dataset_op_test.py"],
|
|
srcs_version = "PY2AND3",
|
|
deps = [
|
|
"//tensorflow/contrib/data/python/ops:dataset_ops",
|
|
"//tensorflow/contrib/data/python/ops:iterator_ops",
|
|
"//tensorflow/python:client_testlib",
|
|
"//tensorflow/python:errors",
|
|
"//tensorflow/python:framework_ops",
|
|
"//tensorflow/python:tensor_shape",
|
|
"//tensorflow/python:training",
|
|
"//tensorflow/python/data/util:nest",
|
|
"//third_party/py/numpy",
|
|
],
|
|
)
|
|
|
|
py_test(
|
|
name = "dataset_constructor_op_test",
|
|
size = "small",
|
|
srcs = ["dataset_constructor_op_test.py"],
|
|
srcs_version = "PY2AND3",
|
|
tags = [
|
|
"manual",
|
|
"nomac", # b/62040583
|
|
],
|
|
deps = [
|
|
":dataset_serialization_test",
|
|
"//tensorflow/contrib/data/python/ops:dataset_ops",
|
|
"//tensorflow/contrib/data/python/ops:transformation_ops",
|
|
"//tensorflow/core:protos_all_py",
|
|
"//tensorflow/python:array_ops",
|
|
"//tensorflow/python:client_testlib",
|
|
"//tensorflow/python:dtypes",
|
|
"//tensorflow/python:errors",
|
|
"//tensorflow/python:framework_ops",
|
|
"//tensorflow/python:math_ops",
|
|
"//tensorflow/python:resource_variable_ops",
|
|
"//tensorflow/python:session",
|
|
"//tensorflow/python:sparse_tensor",
|
|
"//tensorflow/python/data/util:nest",
|
|
"//third_party/py/numpy",
|
|
],
|
|
)
|
|
|
|
py_library(
|
|
name = "dataset_serialization_test",
|
|
testonly = 1,
|
|
srcs = [
|
|
"dataset_serialization_test_base.py",
|
|
],
|
|
srcs_version = "PY2AND3",
|
|
deps = [
|
|
"//tensorflow/contrib/data/python/ops:iterator_ops",
|
|
"//tensorflow/python:client_testlib",
|
|
"//tensorflow/python:errors",
|
|
"//tensorflow/python:framework_ops",
|
|
"//tensorflow/python:platform",
|
|
"//tensorflow/python:sparse_tensor",
|
|
"//tensorflow/python:training",
|
|
"//tensorflow/python:util",
|
|
"//tensorflow/python:variables",
|
|
"//tensorflow/python/data/ops:iterator_ops",
|
|
"//third_party/py/numpy",
|
|
],
|
|
)
|
|
|
|
py_test(
|
|
name = "filter_dataset_op_test",
|
|
size = "small",
|
|
srcs = ["filter_dataset_op_test.py"],
|
|
srcs_version = "PY2AND3",
|
|
deps = [
|
|
"//tensorflow/contrib/data/python/ops:dataset_ops",
|
|
"//tensorflow/python:array_ops",
|
|
"//tensorflow/python:client_testlib",
|
|
"//tensorflow/python:dtypes",
|
|
"//tensorflow/python:errors",
|
|
"//tensorflow/python:functional_ops",
|
|
"//tensorflow/python:math_ops",
|
|
"//third_party/py/numpy",
|
|
],
|
|
)
|
|
|
|
py_test(
|
|
name = "flat_map_dataset_op_test",
|
|
size = "small",
|
|
srcs = ["flat_map_dataset_op_test.py"],
|
|
srcs_version = "PY2AND3",
|
|
deps = [
|
|
":dataset_serialization_test",
|
|
"//tensorflow/contrib/data/python/ops:dataset_ops",
|
|
"//tensorflow/python:array_ops",
|
|
"//tensorflow/python:client_testlib",
|
|
"//tensorflow/python:constant_op",
|
|
"//tensorflow/python:dtypes",
|
|
"//tensorflow/python:errors",
|
|
"//tensorflow/python:function",
|
|
"//tensorflow/python:math_ops",
|
|
"//tensorflow/python:random_ops",
|
|
"//tensorflow/python:session",
|
|
"//tensorflow/python:training",
|
|
"//tensorflow/python:variable_scope",
|
|
"//third_party/py/numpy",
|
|
],
|
|
)
|
|
|
|
py_test(
|
|
name = "interleave_dataset_op_test",
|
|
size = "small",
|
|
srcs = ["interleave_dataset_op_test.py"],
|
|
srcs_version = "PY2AND3",
|
|
tags = [
|
|
"manual", # b/67958761
|
|
],
|
|
deps = [
|
|
":dataset_serialization_test",
|
|
"//tensorflow/contrib/data/python/ops:dataset_ops",
|
|
"//tensorflow/contrib/data/python/ops:transformation_ops",
|
|
"//tensorflow/python:array_ops",
|
|
"//tensorflow/python:client",
|
|
"//tensorflow/python:client_testlib",
|
|
"//tensorflow/python:dtypes",
|
|
"//tensorflow/python:errors",
|
|
"//tensorflow/python:math_ops",
|
|
"//tensorflow/python:script_ops",
|
|
"//tensorflow/python:sparse_ops",
|
|
"//tensorflow/python:sparse_tensor",
|
|
"//tensorflow/python:training",
|
|
"//third_party/py/numpy",
|
|
],
|
|
)
|
|
|
|
py_test(
|
|
name = "iterator_ops_cluster_test",
|
|
size = "small",
|
|
srcs = ["iterator_ops_cluster_test.py"],
|
|
srcs_version = "PY2AND3",
|
|
tags = ["no_windows"],
|
|
deps = [
|
|
"//tensorflow/contrib/data/python/ops:dataset_ops",
|
|
"//tensorflow/core:protos_all_py",
|
|
"//tensorflow/python:array_ops",
|
|
"//tensorflow/python:client_testlib",
|
|
"//tensorflow/python:dtypes",
|
|
"//tensorflow/python:errors",
|
|
"//tensorflow/python:framework_ops",
|
|
"//tensorflow/python:framework_test_lib",
|
|
"//tensorflow/python:function",
|
|
"//tensorflow/python:functional_ops",
|
|
"//tensorflow/python:session",
|
|
"//tensorflow/python/data/ops:iterator_ops",
|
|
],
|
|
)
|
|
|
|
py_test(
|
|
name = "iterator_ops_test",
|
|
size = "small",
|
|
srcs = ["iterator_ops_test.py"],
|
|
srcs_version = "PY2AND3",
|
|
deps = [
|
|
"//tensorflow/contrib/data/python/ops:dataset_ops",
|
|
"//tensorflow/contrib/data/python/ops:readers",
|
|
"//tensorflow/core:protos_all_py",
|
|
"//tensorflow/python:array_ops",
|
|
"//tensorflow/python:client_testlib",
|
|
"//tensorflow/python:constant_op",
|
|
"//tensorflow/python:dataset_ops_gen",
|
|
"//tensorflow/python:dtypes",
|
|
"//tensorflow/python:errors",
|
|
"//tensorflow/python:framework_ops",
|
|
"//tensorflow/python:framework_test_lib",
|
|
"//tensorflow/python:function",
|
|
"//tensorflow/python:functional_ops",
|
|
"//tensorflow/python:gradients",
|
|
"//tensorflow/python:io_ops",
|
|
"//tensorflow/python:math_ops",
|
|
"//tensorflow/python:parsing_ops",
|
|
"//tensorflow/python:script_ops",
|
|
"//tensorflow/python:session",
|
|
"//tensorflow/python:training",
|
|
"//tensorflow/python/data/ops:iterator_ops",
|
|
"//third_party/py/numpy",
|
|
],
|
|
)
|
|
|
|
py_test(
|
|
name = "list_files_dataset_op_test",
|
|
size = "small",
|
|
srcs = ["list_files_dataset_op_test.py"],
|
|
srcs_version = "PY2AND3",
|
|
deps = [
|
|
"//tensorflow/contrib/data/python/ops:dataset_ops",
|
|
"//tensorflow/python:array_ops",
|
|
"//tensorflow/python:client_testlib",
|
|
"//tensorflow/python:dtypes",
|
|
"//tensorflow/python:errors",
|
|
"//tensorflow/python:util",
|
|
],
|
|
)
|
|
|
|
py_test(
|
|
name = "map_dataset_op_test",
|
|
size = "small",
|
|
srcs = ["map_dataset_op_test.py"],
|
|
srcs_version = "PY2AND3",
|
|
deps = [
|
|
":dataset_serialization_test",
|
|
"//tensorflow/contrib/data/python/ops:dataset_ops",
|
|
"//tensorflow/contrib/data/python/ops:transformation_ops",
|
|
"//tensorflow/python:array_ops",
|
|
"//tensorflow/python:client_testlib",
|
|
"//tensorflow/python:constant_op",
|
|
"//tensorflow/python:data_flow_ops",
|
|
"//tensorflow/python:dtypes",
|
|
"//tensorflow/python:errors",
|
|
"//tensorflow/python:framework_ops",
|
|
"//tensorflow/python:function",
|
|
"//tensorflow/python:functional_ops",
|
|
"//tensorflow/python:io_ops",
|
|
"//tensorflow/python:lookup_ops",
|
|
"//tensorflow/python:math_ops",
|
|
"//tensorflow/python:random_ops",
|
|
"//tensorflow/python:script_ops",
|
|
"//tensorflow/python:sparse_ops",
|
|
"//tensorflow/python:sparse_tensor",
|
|
"//tensorflow/python:string_ops",
|
|
"//tensorflow/python:util",
|
|
"//tensorflow/python:variable_scope",
|
|
"//third_party/py/numpy",
|
|
],
|
|
)
|
|
|
|
py_test(
|
|
name = "range_dataset_op_test",
|
|
size = "small",
|
|
srcs = ["range_dataset_op_test.py"],
|
|
srcs_version = "PY2AND3",
|
|
deps = [
|
|
"//tensorflow/contrib/data/python/ops:dataset_ops",
|
|
"//tensorflow/contrib/data/python/ops:iterator_ops",
|
|
"//tensorflow/contrib/data/python/ops:transformation_ops",
|
|
"//tensorflow/python:array_ops",
|
|
"//tensorflow/python:client_testlib",
|
|
"//tensorflow/python:constant_op",
|
|
"//tensorflow/python:dataset_ops_gen",
|
|
"//tensorflow/python:dtypes",
|
|
"//tensorflow/python:errors",
|
|
"//tensorflow/python:framework_ops",
|
|
"//tensorflow/python:io_ops",
|
|
"//tensorflow/python:parsing_ops",
|
|
"//tensorflow/python:platform",
|
|
"//tensorflow/python:tensor_shape",
|
|
"//tensorflow/python:training",
|
|
"//tensorflow/python:variables",
|
|
"//tensorflow/python/data/ops:iterator_ops",
|
|
],
|
|
)
|
|
|
|
py_test(
|
|
name = "reader_dataset_ops_test",
|
|
size = "small",
|
|
srcs = ["reader_dataset_ops_test.py"],
|
|
srcs_version = "PY2AND3",
|
|
deps = [
|
|
":dataset_serialization_test",
|
|
"//tensorflow/contrib/data/python/ops:readers",
|
|
"//tensorflow/core:protos_all_py",
|
|
"//tensorflow/python:array_ops",
|
|
"//tensorflow/python:client_testlib",
|
|
"//tensorflow/python:constant_op",
|
|
"//tensorflow/python:dtypes",
|
|
"//tensorflow/python:errors",
|
|
"//tensorflow/python:framework_ops",
|
|
"//tensorflow/python:lib",
|
|
"//tensorflow/python:parsing_ops",
|
|
"//tensorflow/python:util",
|
|
"//tensorflow/python/data/ops:iterator_ops",
|
|
],
|
|
)
|
|
|
|
py_test(
|
|
name = "resample_test",
|
|
size = "medium",
|
|
srcs = ["resample_test.py"],
|
|
shard_count = 2,
|
|
srcs_version = "PY2AND3",
|
|
tags = ["noasan"],
|
|
deps = [
|
|
"//tensorflow/contrib/data/python/ops:dataset_ops",
|
|
"//tensorflow/contrib/data/python/ops:transformation_ops",
|
|
"//tensorflow/python:client_testlib",
|
|
"//tensorflow/python:errors",
|
|
"//tensorflow/python:string_ops",
|
|
"//tensorflow/python:util",
|
|
"//third_party/py/numpy",
|
|
],
|
|
)
|
|
|
|
py_test(
|
|
name = "sequence_dataset_op_test",
|
|
size = "small",
|
|
srcs = ["sequence_dataset_op_test.py"],
|
|
srcs_version = "PY2AND3",
|
|
tags = ["no_pip"],
|
|
deps = [
|
|
":dataset_serialization_test",
|
|
"//tensorflow/contrib/data/python/ops:dataset_ops",
|
|
"//tensorflow/python:array_ops",
|
|
"//tensorflow/python:client_testlib",
|
|
"//tensorflow/python:dtypes",
|
|
"//tensorflow/python:errors",
|
|
"//third_party/py/numpy",
|
|
],
|
|
)
|
|
|
|
py_test(
|
|
name = "shard_dataset_op_test",
|
|
size = "small",
|
|
srcs = ["shard_dataset_op_test.py"],
|
|
srcs_version = "PY2AND3",
|
|
deps = [
|
|
"//tensorflow/contrib/data/python/ops:dataset_ops",
|
|
"//tensorflow/python:client_testlib",
|
|
"//tensorflow/python:errors",
|
|
],
|
|
)
|
|
|
|
py_test(
|
|
name = "shuffle_dataset_op_test",
|
|
size = "small",
|
|
srcs = ["shuffle_dataset_op_test.py"],
|
|
srcs_version = "PY2AND3",
|
|
deps = [
|
|
"//tensorflow/contrib/data/python/ops:dataset_ops",
|
|
"//tensorflow/contrib/data/python/ops:iterator_ops",
|
|
"//tensorflow/python:array_ops",
|
|
"//tensorflow/python:client_testlib",
|
|
"//tensorflow/python:constant_op",
|
|
"//tensorflow/python:dtypes",
|
|
"//tensorflow/python:errors",
|
|
"//tensorflow/python:framework_ops",
|
|
"//tensorflow/python:platform",
|
|
"//tensorflow/python:training",
|
|
"//tensorflow/python/data/ops:dataset_ops",
|
|
"//tensorflow/python/data/ops:iterator_ops",
|
|
"//third_party/py/numpy",
|
|
],
|
|
)
|
|
|
|
py_test(
|
|
name = "sql_dataset_op_test",
|
|
size = "small",
|
|
srcs = ["sql_dataset_op_test.py"],
|
|
srcs_version = "PY2AND3",
|
|
deps = [
|
|
"//tensorflow/contrib/data/python/ops:readers",
|
|
"//tensorflow/python:array_ops",
|
|
"//tensorflow/python:client_testlib",
|
|
"//tensorflow/python:dtypes",
|
|
"//tensorflow/python:errors",
|
|
],
|
|
)
|
|
|
|
py_test(
|
|
name = "stats_dataset_ops_test",
|
|
size = "small",
|
|
srcs = ["stats_dataset_ops_test.py"],
|
|
srcs_version = "PY2AND3",
|
|
deps = [
|
|
"//tensorflow/contrib/data/python/ops:dataset_ops",
|
|
"//tensorflow/contrib/data/python/ops:transformation_ops",
|
|
"//tensorflow/python:client_testlib",
|
|
"//tensorflow/python:errors",
|
|
],
|
|
)
|
|
|
|
py_test(
|
|
name = "zip_dataset_op_test",
|
|
size = "small",
|
|
srcs = ["zip_dataset_op_test.py"],
|
|
srcs_version = "PY2AND3",
|
|
tags = ["no_pip"],
|
|
deps = [
|
|
":dataset_serialization_test",
|
|
"//tensorflow/contrib/data/python/ops:dataset_ops",
|
|
"//tensorflow/python:array_ops",
|
|
"//tensorflow/python:client_testlib",
|
|
"//tensorflow/python:dtypes",
|
|
"//tensorflow/python:errors",
|
|
"//third_party/py/numpy",
|
|
],
|
|
)
|
|
|
|
py_test(
|
|
name = "prefetching_ops_test",
|
|
size = "small",
|
|
srcs = ["prefetching_ops_test.py"],
|
|
srcs_version = "PY2AND3",
|
|
tags = [
|
|
"manual",
|
|
"no_oss", # b/68785503
|
|
],
|
|
deps = [
|
|
"//tensorflow/contrib/data/python/ops:prefetching_py",
|
|
"//tensorflow/core:protos_all_py",
|
|
"//tensorflow/python:client_testlib",
|
|
"//tensorflow/python:constant_op",
|
|
"//tensorflow/python:dtypes",
|
|
"//tensorflow/python:framework_ops",
|
|
"//tensorflow/python:framework_test_lib",
|
|
"//tensorflow/python:function",
|
|
"//tensorflow/python:resource_variable_ops",
|
|
"//tensorflow/python/data/ops:dataset_ops",
|
|
"//tensorflow/python/data/ops:iterator_ops",
|
|
],
|
|
)
|
|
|
|
filegroup(
|
|
name = "all_files",
|
|
srcs = glob(
|
|
include = [
|
|
"**/*",
|
|
],
|
|
exclude = [
|
|
"**/METADATA",
|
|
"**/OWNERS",
|
|
],
|
|
),
|
|
visibility = ["//tensorflow:__subpackages__"],
|
|
)
|