(self)
| 107 | |
| 108 | @unittest.skipIf(not workspace.C.use_trt, "No TensortRT support") |
| 109 | def test_relu_graph_simple(self): |
| 110 | X = np.random.randn(1, 1, 3, 2).astype(np.float32) |
| 111 | self._test_relu_graph(X, 1, 50) |
| 112 | |
| 113 | |
| 114 | @unittest.skipIf(not workspace.C.use_trt, "No TensortRT support") |
nothing calls this directly
no test coverage detected