(x)
| 282 | b = array_ops.constant([1.]) |
| 283 | |
| 284 | def _double_values(x): |
| 285 | custom = op_hint.OpHint("add_test") |
| 286 | x, = custom.add_inputs(x) |
| 287 | output = math_ops.multiply(x, x) |
| 288 | output, = custom.add_outputs(output) |
| 289 | return output |
| 290 | |
| 291 | output = array_ops.identity( |
| 292 | math_ops.add(_double_values(a), _double_values(b)), |
nothing calls this directly
no test coverage detected