• Home
  • Raw
  • Download

Lines Matching refs:src_width

190     const unsigned int src_width    = src.shape().x();  in compute_reduction_operation()  local
215 for(unsigned int x = 0; x < src_width; ++x) in compute_reduction_operation()
217 const int in_offset = du * src_height * src_width + x; in compute_reduction_operation()
218 const int out_offset = du * src_width + x; in compute_reduction_operation()
221 … reduce_operation_arg_min_max<T, OT>(src_row_ptr, reduce_elems, op, src_width) : in compute_reduction_operation()
222 … reduce_operation<T, OT>(src_row_ptr, reduce_elems, op, src_width, policy); in compute_reduction_operation()
232 for(unsigned int x = 0; x < src_width; ++x) in compute_reduction_operation()
236 … const int in_offset = du * src_depth * src_height * src_width + y * src_width + x; in compute_reduction_operation()
237 const int out_offset = du * src_width * src_height + y * src_width + x; in compute_reduction_operation()
240 … reduce_operation_arg_min_max<T, OT>(src_row_ptr, reduce_elems, op, src_width * src_height) : in compute_reduction_operation()
241 … reduce_operation<T, OT>(src_row_ptr, reduce_elems, op, src_width * src_height, policy); in compute_reduction_operation()
256 for(unsigned int x = 0; x < src_width; ++x) in compute_reduction_operation()
258 …et = du * src_batch * src_depth * src_height * src_width + z * src_width * src_height + y * src_… in compute_reduction_operation()
259 … int out_offset = du * src_depth * src_height * src_width + z * src_width * src_height + y * src_… in compute_reduction_operation()
262 …reduce_operation_arg_min_max<T, OT>(src_row_ptr, reduce_elems, op, src_width * src_height * src_de… in compute_reduction_operation()
263 …reduce_operation<T, OT>(src_row_ptr, reduce_elems, op, src_width * src_height * src_depth, policy); in compute_reduction_operation()