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

Function gpu_priority

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

Source from the content-addressed store, hash-verified

622}
623
624void gpu_priority(TokenStream &in, bool &valid)
625{
626 LOG_TOKEN_POS(in, pos);
627 if (accept_text(in, "best-performance"))
628 {
629 ;
630 }
631 else if (accept_text(in, "best-memory-usage"))
632 {
633 ;
634 }
635 else
636 {
637 FAIL_WITH_MSG(valid, pos, "Expect gpu priority");
638 }
639}
640
641void gpu_behavior(TokenStream &in, bool &valid)
642{

Callers 1

heuristics_table_entryFunction · 0.85

Calls 1

accept_textFunction · 0.85

Tested by

no test coverage detected