MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / uint_val

Function uint_val

src/runtime/CL/mlgo/MLGOParser.cpp:319–328  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

317}
318
319unsigned int uint_val(TokenStream &in, bool &valid)
320{
321 LOG_TOKEN_POS(in, pos);
322 int val = CHECK_DEFAULT(int_val(in, valid), valid, 0);
323 if (val < 0)
324 {
325 FAIL_WITH_MSG_DEFAULT(valid, 0, pos, "Expect unsigned int token");
326 }
327 return static_cast<unsigned int>(val);
328}
329
330float float_val(TokenStream &in, bool &valid)
331{

Callers 6

gemm_versionFunction · 0.85
gemm_config_nativeFunction · 0.85
gemm_config_reshapedFunction · 0.85
heuristics_table_entryFunction · 0.85
heuristic_treeFunction · 0.85

Calls 1

int_valFunction · 0.85

Tested by

no test coverage detected