aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/tensorrt/test/tf_trt_integration_test.py
blob: 0403b652d72877196c3537a3181529aeeb997395 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
# Copyright 2018 The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================
"""Script to test TF-TensorRT integration."""

from __future__ import absolute_import
from __future__ import division
from __future__ import print_function

import warnings
import numpy as np

from tensorflow.contrib import tensorrt as trt
from tensorflow.core.protobuf import config_pb2 as cpb2
from tensorflow.python.framework import constant_op as cop
from tensorflow.python.framework import dtypes as dtypes
from tensorflow.python.framework import importer as importer
from tensorflow.python.framework import ops as ops
from tensorflow.python.framework import test_util
from tensorflow.python.ops import array_ops as aops
from tensorflow.python.ops import nn as nn
from tensorflow.python.ops import nn_ops as nn_ops
from tensorflow.python.platform import googletest


class IntegrationTest(test_util.TensorFlowTestCase):
  """Class to test Tensorflow-TensorRT integration."""

  def setUp(self):
    """Setup method."""
    super(IntegrationTest, self).setUp()
    warnings.simplefilter("always")
    inp_dims = (100, 24, 24, 2)
    self._input = np.random.random_sample(inp_dims)
    self._original_graph = self.get_simple_graph_def()
    self._gpu_options = cpb2.GPUOptions(per_process_gpu_memory_fraction=0.50)
    self._config = cpb2.ConfigProto(gpu_options=self._gpu_options)
    self._reference = self.run_graph(self._original_graph, self._input)

  def get_simple_graph_def(self):
    """Create a simple graph and return its graph_def."""
    g = ops.Graph()
    with g.as_default():
      a = aops.placeholder(
          dtype=dtypes.float32, shape=(None, 24, 24, 2), name="input")
      e = cop.constant(
          [[[[1., 0.5, 4., 6., 0.5, 1.], [1., 0.5, 1., 1., 0.5, 1.]]]],
          name="weights",
          dtype=dtypes.float32)
      conv = nn.conv2d(
          input=a, filter=e, strides=[1, 2, 2, 1], padding="SAME", name="conv")
      b = cop.constant(
          [4., 1.5, 2., 3., 5., 7.], name="bias", dtype=dtypes.float32)
      t = nn.bias_add(conv, b, name="biasAdd")
      relu = nn.relu(t, "relu")
      idty = aops.identity(relu, "ID")
      v = nn_ops.max_pool(
          idty, [1, 2, 2, 1], [1, 2, 2, 1], "VALID", name="max_pool")
      aops.squeeze(v, name="output")
    return g.as_graph_def()

  def run_graph(self, gdef, dumm_inp):
    """Run given graphdef once."""
    ops.reset_default_graph()
    g = ops.Graph()
    with g.as_default():
      inp, out = importer.import_graph_def(
          graph_def=gdef, return_elements=["input", "output"])
      inp = inp.outputs[0]
      out = out.outputs[0]
    with self.test_session(
        graph=g, config=self._config, use_gpu=True, force_gpu=True) as sess:
      val = sess.run(out, {inp: dumm_inp})
    return val

  # Use real data that is representative of the inference dataset
  # for calibration. For this test script it is random data.
  def run_calibration(self, gdef, dumm_inp):
    """Run given calibration graph multiple times."""
    ops.reset_default_graph()
    g = ops.Graph()
    with g.as_default():
      inp, out = importer.import_graph_def(
          graph_def=gdef, return_elements=["input", "output"])
      inp = inp.outputs[0]
      out = out.outputs[0]
      # run over real calibration data here, we are mimicking a calibration
      # set of 30 different batches. Use as much calibration data as you want
    with self.test_session(
        graph=g, config=self._config, use_gpu=True, force_gpu=True) as sess:
      for _ in range(30):
        val = sess.run(out, {inp: dumm_inp})
    return val

  def get_trt_graph(self, mode):
    """Return trt converted graph."""
    if mode in ["FP32", "FP16", "INT8"]:
      return trt.create_inference_graph(
          input_graph_def=self._original_graph,
          outputs=["output"],
          max_batch_size=self._input.shape[0],
          max_workspace_size_bytes=1 << 25,
          precision_mode=mode,  # TRT Engine precision "FP32","FP16" or "INT8"
          minimum_segment_size=2  # minimum number of nodes in an engine
      )
    return None

  def testFP32(self):
    """Test FP32 conversion. Results should be identical to native case."""
    trt_graph = self.get_trt_graph("FP32")
    result = self.run_graph(trt_graph, self._input)
    self.assertAllEqual(self._reference, result)
    result1 = self.run_graph(trt_graph, self._input)
    self.assertAllEqual(result1, result)

  def testFP16(self):
    """Test FP16 conversion. Results may be different from native case."""
    trt_graph = self.get_trt_graph("FP16")
    result = self.run_graph(trt_graph, self._input)
    self.assertAllClose(self._reference, result, rtol=1.e-03)
    result1 = self.run_graph(trt_graph, self._input)
    self.assertAllEqual(result1, result)

  def testINT8(self):
    """Test INT8 conversion. Results may be different from native case."""
    calib_graph = self.get_trt_graph("INT8")
    result = self.run_calibration(calib_graph, self._input)
    self.assertAllEqual(self._reference, result)
    int8_graph = trt.calib_graph_to_infer_graph(calib_graph)
    result = self.run_graph(int8_graph, self._input)
    self.assertAllClose(self._reference, result, rtol=1.e-03)
    result1 = self.run_graph(int8_graph, self._input)
    self.assertAllEqual(result1, result)


if __name__ == "__main__":
  googletest.main()