Searched refs:in_y (Results 1 – 5 of 5) sorted by relevance
/frameworks/ml/nn/common/operations/internal/reference/ |
D | depthwiseconv_float.h | 57 const int in_y = in_y_origin + filter_y; in DepthwiseConv() local 60 if ((in_x >= 0) && (in_x < input_width) && (in_y >= 0) && in DepthwiseConv() 61 (in_y < input_height)) { in DepthwiseConv() 63 input_data[Offset(input_dims, ic, in_x, in_y, b)]; in DepthwiseConv()
|
D | depthwiseconv_uint8.h | 73 const int in_y = in_y_origin + filter_y; in DepthwiseConv() local 76 if ((in_x >= 0) && (in_x < input_width) && (in_y >= 0) && in DepthwiseConv() 77 (in_y < input_height)) { in DepthwiseConv() 79 input_data[Offset(input_dims, ic, in_x, in_y, b)]; in DepthwiseConv()
|
D | reference_ops.h | 191 const int in_y = in_y_origin + filter_y; in Conv() local 194 if ((in_x >= 0) && (in_x < input_width) && (in_y >= 0) && in Conv() 195 (in_y < input_height)) { in Conv() 197 in_x, in_y, batch)]; in Conv() 262 const int in_y = in_y_origin + filter_y; in Conv() local 265 if ((in_x >= 0) && (in_x < input_width) && (in_y >= 0) && in Conv() 266 (in_y < input_height)) { in Conv() 268 in_x, in_y, batch)]; in Conv() 1234 const int in_y = in_y_origin + filter_y; in AveragePool() local 1236 input_data[Offset(input_dims, channel, in_x, in_y, batch)]; in AveragePool() [all …]
|
/frameworks/ml/nn/common/operations/internal/optimized/ |
D | depthwiseconv_float.h | 713 const int in_y = in_y_origin + filter_y; 715 input_data + in_y * input_dims.strides[2] +
|
D | depthwiseconv_uint8.h | 1462 const int in_y = in_y_origin + filter_y; 1465 input_data + in_y * input_dims.strides[2] +
|