(tensor_list)
| 628 | |
| 629 | |
| 630 | def _validate(tensor_list): |
| 631 | tensor_list = ops.convert_n_to_tensor_or_indexed_slices(tensor_list) |
| 632 | if not tensor_list: |
| 633 | raise ValueError("Expected at least one tensor in batch().") |
| 634 | return tensor_list |
| 635 | |
| 636 | |
| 637 | def _validate_join(tensor_list_list): |
no outgoing calls
no test coverage detected