| 3927 | } |
| 3928 | |
| 3929 | inline void Floor(const RuntimeShape& input_shape, const float* input_data, |
| 3930 | const RuntimeShape& output_shape, float* output_data) { |
| 3931 | gemmlowp::ScopedProfilingLabel label("Floor"); |
| 3932 | auto input_map = MapAsVector(input_data, input_shape); |
| 3933 | auto output_map = MapAsVector(output_data, output_shape); |
| 3934 | output_map.array() = Eigen::floor(input_map.array()); |
| 3935 | } |
| 3936 | |
| 3937 | inline void Ceil(const RuntimeShape& input_shape, const float* input_data, |
| 3938 | const RuntimeShape& output_shape, float* output_data) { |
nothing calls this directly
no test coverage detected