(x, b)
| 323 | tensor_spec.TensorSpec(shape=(), dtype=dtypes.bool) |
| 324 | ]) |
| 325 | def model(x, b): |
| 326 | return control_flow_ops.cond( |
| 327 | b, true_fn=lambda: true_fn(x), false_fn=lambda: false_fn(x)) |
| 328 | |
| 329 | concrete_func = model.get_concrete_function() |
| 330 |
nothing calls this directly
no test coverage detected