Searched refs:strides_h (Results 1 – 3 of 3) sorted by relevance
/external/tensorflow/tensorflow/lite/delegates/gpu/common/ |
D | operation_parser.cc | 37 absl::Status CheckKernelsAndStrides(int kernel_h, int kernel_w, int strides_h, in CheckKernelsAndStrides() argument 40 RETURN_IF_ERROR(CheckStrides(strides_h, strides_w)); in CheckKernelsAndStrides() 55 absl::Status CheckStrides(int strides_h, int strides_w) { in CheckStrides() argument 56 if (strides_h <= 0 || strides_w <= 0) { in CheckStrides() 58 absl::StrCat("Incorrect stride values: stride_height = ", strides_h, in CheckStrides()
|
D | operation_parser.h | 53 absl::Status CheckKernelsAndStrides(int kernel_h, int kernel_w, int strides_h, 57 absl::Status CheckStrides(int strides_h, int strides_w);
|
D | model_builder.cc | 94 absl::Status CheckStridesAndDilation(int strides_h, int strides_w, in CheckStridesAndDilation() argument 96 RETURN_IF_ERROR(CheckStrides(strides_h, strides_w)); in CheckStridesAndDilation()
|