HomeSort by relevance Sort by last modified time
    Searched defs:in_row_size (Results 1 - 3 of 3) sorted by null

  /external/tensorflow/tensorflow/core/kernels/
resize_bilinear_op.cc 118 const int64 in_row_size = in_width * channels; local
119 const int64 in_batch_num_values = in_height * in_row_size;
129 const T* ys_input_lower_ptr = input_b_ptr + ys[y].lower * in_row_size;
130 const T* ys_input_upper_ptr = input_b_ptr + ys[y].upper * in_row_size;
174 const T* ys_input_lower_ptr = input_b_ptr + ys[y].lower * in_row_size;
175 const T* ys_input_upper_ptr = input_b_ptr + ys[y].upper * in_row_size;
quantized_resize_bilinear_op_test.cc 120 const int64 in_row_size = in_width * channels; local
121 const int64 in_batch_num_values = in_height * in_row_size;
124 b * in_batch_num_values + std::get<0>(y_weight) * in_row_size;
126 b * in_batch_num_values + std::get<1>(y_weight) * in_row_size;
quantized_resize_bilinear_op.cc 475 const int64 in_row_size = in_width * channels; local
476 const int64 in_batch_num_values = in_height * in_row_size;
484 const T* ys_input_lower_ptr = input_b_ptr + ys.lower[y] * in_row_size;
485 const T* ys_input_upper_ptr = input_b_ptr + ys.upper[y] * in_row_size;
540 const int64 in_row_size = in_width * channels; local
541 const int64 in_batch_num_values = in_height * in_row_size;
551 input_b_ptr + ys.lower[y] * in_row_size;
553 input_b_ptr + ys.upper[y] * in_row_size;
601 const int64 in_row_size = in_width * channels; local
602 const int64 in_batch_num_values = in_height * in_row_size;
    [all...]

Completed in 70 milliseconds