OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:original_y
(Results
1 - 1
of
1
) sorted by null
/external/tensorflow/tensorflow/core/kernels/
resize_bilinear_op_gpu.cu.cc
101
const float
original_y
= y * height_scale;
local
102
const int top_y_index = floorf(
original_y
);
103
const int bottom_y_index = (
original_y
< original_height - 1)
104
? ceilf(
original_y
)
106
const float y_lerp =
original_y
- top_y_index;
Completed in 269 milliseconds