rule (tf_py_logged_benchmark). PiperOrigin-RevId: 291757705 Change-Id: I4a06879e4ba1e7e22d65477cae63a844e9640847
120 lines
2.7 KiB
Python
120 lines
2.7 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",
|
|
"run_and_gather_logs_lib.py",
|
|
])
|
|
|
|
py_library(
|
|
name = "system_info_lib",
|
|
srcs = [
|
|
"gpu_info_lib.py",
|
|
"system_info_lib.py",
|
|
],
|
|
srcs_version = "PY2AND3",
|
|
deps = [
|
|
"//tensorflow:tensorflow_py",
|
|
"//tensorflow/core:protos_all_py",
|
|
"//tensorflow/python:client",
|
|
"//tensorflow/python:errors",
|
|
"//tensorflow/python:platform",
|
|
"@six_archive//:six",
|
|
],
|
|
)
|
|
|
|
py_binary(
|
|
name = "system_info",
|
|
srcs = ["system_info.py"],
|
|
python_version = "PY3",
|
|
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",
|
|
"@six_archive//:six",
|
|
],
|
|
)
|
|
|
|
py_binary(
|
|
name = "run_and_gather_logs",
|
|
srcs = ["run_and_gather_logs.py"],
|
|
python_version = "PY3",
|
|
srcs_version = "PY2AND3",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
":run_and_gather_logs_main_lib",
|
|
"@six_archive//:six",
|
|
],
|
|
)
|
|
|
|
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",
|
|
"@six_archive//:six",
|
|
],
|
|
)
|
|
|
|
# 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"],
|
|
# 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",
|
|
)
|
|
|
|
tf_py_logged_benchmark(
|
|
name = "sparse_csr_matrix_ops_benchmark",
|
|
target = "//tensorflow/python/kernel_tests/linalg/sparse:csr_sparse_matrix_ops_test",
|
|
)
|