MCPcopy Create free account
hub / github.com/ROCm/AMDMIGraphX / process

Method process

src/targets/gpu/driver/parser.cpp:64–76  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

62}
63
64void parser::process(const value& v)
65{
66 if(not v.is_object())
67 error("Input is not an object");
68 parser p{};
69 p.load_settings(v);
70 for(auto&& pp : v)
71 {
72 if(pp.get_key() == "settings")
73 continue;
74 get_action(pp.get_key())(p, pp.without_key());
75 }
76}
77
78} // namespace driver
79} // namespace gpu

Callers

nothing calls this directly

Calls 5

errorFunction · 0.85
get_actionFunction · 0.85
is_objectMethod · 0.80
load_settingsMethod · 0.80
without_keyMethod · 0.80

Tested by

no test coverage detected