| 1491 | } |
| 1492 | |
| 1493 | Status UnknownShape(shape_inference::InferenceContext* c) { |
| 1494 | for (int i = 0; i < c->num_outputs(); ++i) { |
| 1495 | c->set_output(i, c->UnknownShape()); |
| 1496 | } |
| 1497 | return Status::OK(); |
| 1498 | } |
| 1499 | |
| 1500 | template <typename T> |
| 1501 | Status ReductionShapeHelper(const Tensor* reduction_indices_t, |
no test coverage detected