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

Function GetWindowedOutputSize

tensorflow/core/framework/common_shape_fns.cc:86–98  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

84}
85
86Status GetWindowedOutputSize(int64 input_size, int64 filter_size, int64 stride,
87 Padding padding_type, int64* output_size,
88 int64* padding_size) {
89 if (padding_type == Padding::EXPLICIT) {
90 return errors::Internal(
91 "GetWindowedOutputSize does not handle EXPLICIT padding; call "
92 "GetWindowedOutputSizeVerbose instead");
93 }
94 int64 padding_after_unused;
95 return GetWindowedOutputSizeVerbose(input_size, filter_size, stride,
96 padding_type, output_size, padding_size,
97 &padding_after_unused);
98}
99
100Status GetWindowedOutputSizeV2(int64 input_size, int64 filter_size,
101 int64 dilation_rate, int64 stride,

Callers 15

Get3dOutputSizeFunction · 0.70
ComputeMethod · 0.50
ComputeMethod · 0.50
ParseSizesFunction · 0.50
ComputeMethod · 0.50
ComputeMethod · 0.50
PoolParametersMethod · 0.50
ComputeMethod · 0.50
ComputeMethod · 0.50
BM_ConvFloatFunction · 0.50

Calls 2

InternalFunction · 0.85

Tested by 6

BM_ConvFloatFunction · 0.40
BM_ConvFloatDepthwiseFunction · 0.40
BM_AvgPoolBkFunction · 0.40
BM_MaxPoolBkFunction · 0.40