(tensor_list_list)
| 635 | |
| 636 | |
| 637 | def _validate_join(tensor_list_list): |
| 638 | tensor_list_list = [ops.convert_n_to_tensor_or_indexed_slices(tl) |
| 639 | for tl in tensor_list_list] |
| 640 | if not tensor_list_list: |
| 641 | raise ValueError("Expected at least one input in batch_join().") |
| 642 | return tensor_list_list |
| 643 | |
| 644 | |
| 645 | def _validate_keep_input(keep_input, enqueue_many): |
no outgoing calls
no test coverage detected