Shape function for QuantizedConv2D-like operations
| 860 | |
| 861 | // Shape function for QuantizedConv2D-like operations |
| 862 | Status QuantizedConv2DShape(shape_inference::InferenceContext* c) { |
| 863 | return Conv2DShapeImpl(c, true, "padding_list"); |
| 864 | } |
| 865 | |
| 866 | // TODO(mjanusz): Unify all conv/pooling shape functions. |
| 867 | Status Conv3DShape(shape_inference::InferenceContext* c) { |
no test coverage detected