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

Function HasBaseDilation

tensorflow/compiler/xla/window_util.cc:176–183  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

174}
175
176bool HasBaseDilation(const Window& window) {
177 for (const auto& dim : window.dimensions()) {
178 if (dim.base_dilation() != 1) {
179 return true;
180 }
181 }
182 return false;
183}
184
185bool HasWindowDilation(const Window& window) {
186 for (const auto& dim : window.dimensions()) {

Callers 8

ToStringFunction · 0.85
HasDilationFunction · 0.85
HandleReduceWindowMethod · 0.85
SimplifyConvToDotMethod · 0.85
ToCategoryMethod · 0.85
MatchBackwardInputFunction · 0.85

Calls 1

dimensionsMethod · 0.45

Tested by

no test coverage detected