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

Function HasWindowDilation

tensorflow/compiler/xla/window_util.cc:185–192  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

183}
184
185bool HasWindowDilation(const Window& window) {
186 for (const auto& dim : window.dimensions()) {
187 if (dim.window_dilation() != 1) {
188 return true;
189 }
190 }
191 return false;
192}
193
194bool HasWindowReversal(const Window& window) {
195 for (const auto& dim : window.dimensions()) {

Callers 6

ToStringFunction · 0.85
HasDilationFunction · 0.85
ToCategoryMethod · 0.85
MaybePaddedKernelFunction · 0.85
MatchBackwardFilterFunction · 0.85

Calls 1

dimensionsMethod · 0.45

Tested by

no test coverage detected