Shape function for Conv2D-like operations that do not support explicit padding.
| 855 | // Shape function for Conv2D-like operations that do not support explicit |
| 856 | // padding. |
| 857 | Status Conv2DShape(shape_inference::InferenceContext* c) { |
| 858 | return Conv2DShapeImpl(c, false); |
| 859 | } |
| 860 | |
| 861 | // Shape function for QuantizedConv2D-like operations |
| 862 | Status QuantizedConv2DShape(shape_inference::InferenceContext* c) { |
no test coverage detected