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

Function CeilQuotient

tensorflow/lite/kernels/internal/common.h:640–642  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

638// Returns the quotient a / b rounded up ('ceil') to the nearest integer.
639template <typename Integer>
640Integer CeilQuotient(Integer a, Integer b) {
641 return (a + b - 1) / b;
642}
643
644// This function is a copy of gemmlowp::HowManyThreads, copied when we dropped
645// the direct dependency of internal/optimized/ on gemmlowp.

Callers 5

CustomGemvFunction · 0.85
FullyConnectedAsGEMVFunction · 0.85
ShuffledFullyConnectedFunction · 0.85
ShuffledFullyConnectedFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected