Home
last modified time | relevance | path

Searched refs:is_dilated (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/pytorch/aten/src/ATen/native/mkldnn/xpu/
H A DConv.cpp34 bool is_dilated() const;
67 bool ConvParams::is_dilated() const { in is_dilated() function in at::native::xpu::impl::ConvParams
68 bool is_dilated = false; in is_dilated() local
70 is_dilated |= (d != 1); in is_dilated()
72 return is_dilated; in is_dilated()
/aosp_15_r20/external/pytorch/aten/src/ATen/native/
H A DConvolution.cpp305 bool is_dilated() const { in is_dilated() function
306 bool is_dilated = false; in is_dilated() local
308 is_dilated |= (d != 1); in is_dilated()
310 return is_dilated; in is_dilated()
388 !is_dilated() && in use_cpu_depthwise3x3_winograd()
446 if (deterministic && is_dilated()) { in use_cudnn()
450 if (is_dilated()) { in use_cudnn()
474 !is_dilated() && // no dilation supported in use_cudnn_depthwise()
490 !is_dilated() && // no dilation supported in use_cudnn_depthwise()
513 …&& !(groups > 1 && is_dilated()) // MIOpen currently does not support dilation with groups of size… in use_miopen()
[all …]