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

Function HasOverlappingWindow

tensorflow/compiler/xla/window_util.cc:225–232  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

223}
224
225bool HasOverlappingWindow(const Window& window) {
226 for (const auto& dim : window.dimensions()) {
227 if (dim.size() > dim.stride()) {
228 return true;
229 }
230 }
231 return false;
232}
233
234int64 DilatedBound(int64 bound, int64 dilation) {
235 CHECK_GE(bound, 0);

Callers 1

TESTFunction · 0.85

Calls 3

dimensionsMethod · 0.45
sizeMethod · 0.45
strideMethod · 0.45

Tested by 1

TESTFunction · 0.68