| 3935 | } |
| 3936 | |
| 3937 | inline void Ceil(const RuntimeShape& input_shape, const float* input_data, |
| 3938 | const RuntimeShape& output_shape, float* output_data) { |
| 3939 | gemmlowp::ScopedProfilingLabel label("Ceil"); |
| 3940 | auto input_map = MapAsVector(input_data, input_shape); |
| 3941 | auto output_map = MapAsVector(output_data, output_shape); |
| 3942 | output_map.array() = Eigen::ceil(input_map.array()); |
| 3943 | } |
| 3944 | |
| 3945 | #ifdef USE_NEON |
| 3946 | inline void ResizeBilinearKernel(const float* input_ptr, int32 depth, |
nothing calls this directly
no test coverage detected