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

Function UnchangedShape

tensorflow/core/framework/common_shape_fns.cc:213–220  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

211}
212
213Status UnchangedShape(shape_inference::InferenceContext* c) {
214 c->set_output(0, c->input(0));
215 auto* handle_data = c->input_handle_shapes_and_types(0);
216 if (handle_data != nullptr) {
217 c->set_output_handle_shapes_and_types(0, *handle_data);
218 }
219 return Status::OK();
220}
221
222Status MatMulShape(shape_inference::InferenceContext* c) {
223 ShapeHandle a;

Callers 7

image_ops.ccFile · 0.85
nn_ops.ccFile · 0.85
array_ops.ccFile · 0.85
mkl_array_ops.ccFile · 0.85
manip_ops.ccFile · 0.85
image_ops.ccFile · 0.85
math_ops.ccFile · 0.85

Calls 4

set_outputMethod · 0.45
inputMethod · 0.45

Tested by

no test coverage detected