MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / ScatterNdTensorShape

Function ScatterNdTensorShape

tensorflow/core/ops/array_ops.cc:3293–3301  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3291}
3292
3293Status 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

Callers

nothing calls this directly

Calls 3

ScatterNdShapeHelperFunction · 0.85
WithRankAtLeastMethod · 0.80
inputMethod · 0.45

Tested by

no test coverage detected