| 1767 | } |
| 1768 | |
| 1769 | Status RandomShape(shape_inference::InferenceContext* c) { |
| 1770 | shape_inference::ShapeHandle out; |
| 1771 | TF_RETURN_IF_ERROR(c->MakeShapeFromShapeTensor(0, &out)); |
| 1772 | c->set_output(0, out); |
| 1773 | return Status::OK(); |
| 1774 | } |
| 1775 | |
| 1776 | Status UnsortedSegmentReductionShapeFn(InferenceContext* c) { |
| 1777 | ShapeHandle s_data = c->input(0); |
no test coverage detected