Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.12-rc0 cherry-pick request: Disable tensorrt:unary_test in OSS since it crashes with SEGV. #22754

Merged
merged 1 commit into from
Oct 4, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
20 changes: 19 additions & 1 deletion tensorflow/contrib/tensorrt/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,6 @@ cuda_py_tests(
"test/multi_connection_neighbor_engine_test.py",
"test/neighboring_engine_test.py",
"test/rank_two_test.py",
"test/unary_test.py",
"test/vgg_block_nchw_test.py",
"test/vgg_block_test.py",
],
Expand All @@ -471,6 +470,25 @@ cuda_py_tests(
],
)

cuda_py_tests(
name = "tf_trt_integration_test_no_oss",
srcs = [
"test/unary_test.py",
],
additional_deps = [
":tf_trt_integration_test_base",
"//tensorflow/python:client_testlib",
"//tensorflow/python:framework_test_lib",
],
tags = [
"no_cuda_on_cpu_tap",
"no_oss", # TODO(b/117274186): re-enable in OSS after crash fixed
"no_pip", # TODO(b/117274186): re-enable in OSS after crash fixed
"no_windows",
"nomac",
],
)

cc_library(
name = "utils",
srcs = ["convert/utils.cc"],
Expand Down