| 3291 | } |
| 3292 | |
| 3293 | Status ScatterNdTensorShape(InferenceContext* c) { |
| 3294 | ShapeHandle output_shape; |
| 3295 | TF_RETURN_IF_ERROR(c->WithRankAtLeast(c->input(0), 1, &output_shape)); |
| 3296 | ShapeHandle indices_shape; |
| 3297 | TF_RETURN_IF_ERROR(c->WithRankAtLeast(c->input(1), 1, &indices_shape)); |
| 3298 | ShapeHandle updates_shape; |
| 3299 | TF_RETURN_IF_ERROR(c->WithRankAtLeast(c->input(2), 1, &updates_shape)); |
| 3300 | return ScatterNdShapeHelper(c, indices_shape, updates_shape, output_shape); |
| 3301 | } |
| 3302 | |
| 3303 | } // namespace |
| 3304 |
nothing calls this directly
no test coverage detected