| 3281 | } |
| 3282 | |
| 3283 | Status ScatterNdShape(InferenceContext* c) { |
| 3284 | ShapeHandle indices_shape; |
| 3285 | TF_RETURN_IF_ERROR(c->WithRankAtLeast(c->input(0), 1, &indices_shape)); |
| 3286 | ShapeHandle updates_shape; |
| 3287 | TF_RETURN_IF_ERROR(c->WithRankAtLeast(c->input(1), 1, &updates_shape)); |
| 3288 | ShapeHandle output_shape; |
| 3289 | TF_RETURN_IF_ERROR(c->MakeShapeFromShapeTensor(2, &output_shape)); |
| 3290 | return ScatterNdShapeHelper(c, indices_shape, updates_shape, output_shape); |
| 3291 | } |
| 3292 | |
| 3293 | Status ScatterNdTensorShape(InferenceContext* c) { |
| 3294 | ShapeHandle output_shape; |
nothing calls this directly
no test coverage detected