aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/tensorrt/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/contrib/tensorrt/BUILD')
-rw-r--r--tensorflow/contrib/tensorrt/BUILD44
1 files changed, 40 insertions, 4 deletions
diff --git a/tensorflow/contrib/tensorrt/BUILD b/tensorflow/contrib/tensorrt/BUILD
index 3b7b68f61b..c832c6f2e0 100644
--- a/tensorflow/contrib/tensorrt/BUILD
+++ b/tensorflow/contrib/tensorrt/BUILD
@@ -47,7 +47,10 @@ tf_cuda_cc_test(
tf_custom_op_library(
name = "python/ops/_trt_engine_op.so",
- srcs = ["ops/trt_engine_op.cc"],
+ srcs = [
+ "ops/trt_calib_op.cc",
+ "ops/trt_engine_op.cc",
+ ],
deps = [
":trt_engine_op_kernel",
":trt_shape_function",
@@ -71,11 +74,18 @@ tf_cuda_library(
cc_library(
name = "trt_engine_op_kernel",
- srcs = ["kernels/trt_engine_op.cc"],
- hdrs = ["kernels/trt_engine_op.h"],
+ srcs = [
+ "kernels/trt_calib_op.cc",
+ "kernels/trt_engine_op.cc",
+ ],
+ hdrs = [
+ "kernels/trt_calib_op.h",
+ "kernels/trt_engine_op.h",
+ ],
copts = tf_copts(),
deps = [
":trt_logging",
+ ":trt_resources",
"//tensorflow/core:gpu_headers_lib",
"//tensorflow/core:lib_proto_parsing",
"//tensorflow/core:stream_executor_headers_lib",
@@ -87,7 +97,10 @@ cc_library(
)
tf_gen_op_libs(
- op_lib_names = ["trt_engine_op"],
+ op_lib_names = [
+ "trt_engine_op",
+ "trt_calib_op",
+ ],
deps = if_tensorrt([
"@local_config_tensorrt//:nv_infer",
]),
@@ -109,6 +122,7 @@ tf_gen_op_wrapper_py(
name = "trt_engine_op",
gen_locally = True,
deps = [
+ ":trt_calib_op_op_lib",
":trt_engine_op_op_lib",
":trt_logging",
":trt_shape_function",
@@ -172,6 +186,27 @@ tf_py_wrap_cc(
],
)
+tf_cuda_library(
+ name = "trt_resources",
+ srcs = [
+ "resources/trt_int8_calibrator.cc",
+ "resources/trt_resource_manager.cc",
+ ],
+ hdrs = [
+ "resources/trt_int8_calibrator.h",
+ "resources/trt_resource_manager.h",
+ "resources/trt_resources.h",
+ ],
+ deps = [
+ ":trt_logging",
+ "//tensorflow/core:framework_headers_lib",
+ "//tensorflow/core:framework_lite",
+ "//tensorflow/core:lib_proto_parsing",
+ ] + if_tensorrt([
+ "@local_config_tensorrt//:nv_infer",
+ ]),
+)
+
# Library for the node-level conversion portion of TensorRT operation creation
tf_cuda_library(
name = "trt_conversion",
@@ -186,6 +221,7 @@ tf_cuda_library(
deps = [
":segment",
":trt_logging",
+ ":trt_resources",
"//tensorflow/core/grappler:grappler_item",
"//tensorflow/core/grappler:utils",
"//tensorflow/core:framework",