MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / Ceil

Function Ceil

tensorflow/lite/kernels/internal/optimized/optimized_ops.h:3937–3943  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3935}
3936
3937inline 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
3946inline void ResizeBilinearKernel(const float* input_ptr, int32 depth,

Callers

nothing calls this directly

Calls 2

ceilClass · 0.85
MapAsVectorFunction · 0.70

Tested by

no test coverage detected