HomeSort by relevance Sort by last modified time
    Searched refs:image_grad_x (Results 1 - 2 of 2) sorted by null

  /external/tensorflow/tensorflow/core/kernels/
crop_and_resize_op_gpu.cu.cc 285 float image_grad_x = (1 - y_lerp) * (top_right - top_left) + local
290 image_grad_x *= top_grad;
303 dx1 = image_grad_x * (image_width - 1 - x * width_ratio);
304 dx2 = image_grad_x * (x * width_ratio);
306 dx1 = image_grad_x * 0.5 * (image_width - 1);
307 dx2 = image_grad_x * 0.5 * (image_width - 1);
crop_and_resize_op.cc 640 float image_grad_x = (1 - y_lerp) * (top_right - top_left) + local
645 image_grad_x *= top_grad;
658 image_grad_x * (image_width - 1 - x * width_ratio);
659 grads_boxes(b, 3) += image_grad_x * (x * width_ratio);
661 grads_boxes(b, 1) += image_grad_x * 0.5 * (image_width - 1);
662 grads_boxes(b, 3) += image_grad_x * 0.5 * (image_width - 1);

Completed in 479 milliseconds