MCPcopy Create free account
hub / github.com/Tiiny-AI/PowerInfer / clamp

Function clamp

common/train.cpp:177–179  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

175}
176
177int clamp(const int v, const int min, const int max) {
178 return ((v < min) ? (min) : (v > max) ? (max) : v);
179}
180
181float fclamp(const float v, const float min, const float max) {
182 return ((v < min) ? (min) : (v > max) ? (max) : v);

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected