STT-tensorflow/tensorflow/tools/test/BUILD
Penporn Koanantakool c299c279f7 Automated rollback of commit d741ce013f
PiperOrigin-RevId: 265989219
2019-08-28 14:43:35 -07:00

105 lines
2.4 KiB
Python

# Description:
# Tools for testing
load(
"//tensorflow/tools/test:performance.bzl",
"tf_cc_logged_benchmark",
"tf_py_logged_benchmark",
)
package(
default_visibility = ["//tensorflow:internal"],
licenses = ["notice"], # Apache 2.0
)
exports_files(["LICENSE"])
py_library(
name = "system_info_lib",
srcs = [
"gpu_info_lib.py",
"system_info_lib.py",
],
srcs_version = "PY2AND3",
deps = [
"//tensorflow/core:protos_all_py",
"//tensorflow/python:client",
"//tensorflow/python:errors",
"//tensorflow/python:platform",
],
)
py_binary(
name = "system_info",
srcs = ["system_info.py"],
python_version = "PY2",
srcs_version = "PY2AND3",
deps = [
":system_info_lib",
"//tensorflow/python:platform",
],
)
py_library(
name = "run_and_gather_logs_lib",
srcs = [
"run_and_gather_logs_lib.py",
],
srcs_version = "PY2AND3",
deps = [
":system_info_lib",
"//tensorflow/core:protos_all_py",
"//tensorflow/python:platform",
],
)
py_binary(
name = "run_and_gather_logs",
srcs = ["run_and_gather_logs.py"],
python_version = "PY2",
srcs_version = "PY2AND3",
visibility = ["//visibility:public"],
deps = [":run_and_gather_logs_main_lib"],
)
py_library(
name = "run_and_gather_logs_main_lib",
srcs = ["run_and_gather_logs.py"],
srcs_version = "PY2AND3",
visibility = ["//visibility:public"],
deps = [
":run_and_gather_logs_lib",
"//tensorflow/core:protos_all_py",
"//tensorflow/python:client_testlib",
"//tensorflow/python:platform",
],
)
# Unit test that calls run_and_gather_logs on a benchmark, and
# prints the result.
#cuda_py_test(
# name = "run_and_gather_logs_test",
# srcs = ["run_and_gather_logs.py"],
# additional_deps = [
# ":run_and_gather_logs",
# ],
# args = [
# "--test_name=" + "//tensorflow/core/kernels:cast_op_test",
# "--test_args=" + "'--benchmarks=BM_cpu_float'",
# ],
# data = [
# "//tensorflow/core/kernels:cast_op_test",
# ],
# main = "run_and_gather_logs.py",
#)
tf_cc_logged_benchmark(
name = "cast_op_benchmark",
target = "//tensorflow/core/kernels:cast_op_test_gpu",
)
tf_py_logged_benchmark(
name = "rnn_op_benchmark",
target = "//tensorflow/python/kernel_tests:rnn_test",
)