(g, *args, **kwargs)
| 500 | |
| 501 | |
| 502 | def _apply_op(g, *args, **kwargs): |
| 503 | op = g.create_op(*args, **kwargs) |
| 504 | if len(op.outputs) == 1: |
| 505 | return op.outputs[0] |
| 506 | else: |
| 507 | return op.outputs |
| 508 | |
| 509 | |
| 510 | class OperationTest(test_util.TensorFlowTestCase): |
no test coverage detected