Searched refs:ys_ (Results 1 – 4 of 4) sorted by relevance
/external/tensorflow/tensorflow/core/kernels/image/ |
D | resize_bilinear_op.cc | 146 : input_(input), ys_(output_height), xs_(output_width) { in ResizeBilinearGenerator() 150 output_height, input_height, height_scale, ys_.data()); in ResizeBilinearGenerator() 162 const float top_left = input_(b, ys_[y].lower, xs_[x].lower, c); in operator ()() 163 const float top_right = input_(b, ys_[y].lower, xs_[x].upper, c); in operator ()() 164 const float bottom_left = input_(b, ys_[y].upper, xs_[x].lower, c); in operator ()() 165 const float bottom_right = input_(b, ys_[y].upper, xs_[x].upper, c); in operator ()() 166 const float ys_lerp = ys_[y].lerp; in operator ()() 174 std::vector<CachedInterpolation> ys_, xs_; member in tensorflow::generator::ResizeBilinearGenerator
|
D | resize_nearest_neighbor_op.cc | 154 : input_(input), ys_(output_height), xs_(output_width) { in ResizeNearestNeighborGenerator() 158 output_height, input_height, height_scale, ys_.data()); in ResizeNearestNeighborGenerator() 170 const Eigen::Index in_y = ys_[y]; in operator ()() 177 std::vector<Eigen::Index> ys_, xs_; member in tensorflow::generator::ResizeNearestNeighborGenerator
|
/external/rust/crates/criterion/src/plot/plotters_backend/ |
D | pdf.rs | 128 let ys_ = Sample::new(&ys); in pdf_small() localVariable 130 let y_limit = ys_.max() * 1.1; in pdf_small()
|
/external/rust/crates/criterion/src/plot/gnuplot_backend/ |
D | pdf.rs | 243 let ys_ = Sample::new(&ys); in pdf_small() localVariable 245 let y_limit = ys_.max() * 1.1; in pdf_small()
|