Shape function for binary operators that broadcast their inputs. Tested by ops/math_ops_test.cc.
| 327 | // Shape function for binary operators that broadcast their inputs. |
| 328 | // Tested by ops/math_ops_test.cc. |
| 329 | inline Status BroadcastBinaryOpShapeFn(InferenceContext* c) { |
| 330 | return BroadcastBinaryOpOutputShapeFn(c, 0); |
| 331 | } |
| 332 | |
| 333 | // Shape function for random operations. |
| 334 | Status RandomShape(shape_inference::InferenceContext* c); |
no test coverage detected