MCPcopy Create free account
hub / github.com/ARM-software/armnn / GetBackendIdsAsString

Method GetBackendIdsAsString

src/armnn/BackendRegistry.cpp:85–100  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

83}
84
85std::string BackendRegistry::GetBackendIdsAsString() const
86{
87 static const std::string delimitator = ", ";
88
89 std::stringstream output;
90 for (auto& backendId : GetBackendIds())
91 {
92 if (output.tellp() != std::streampos(0))
93 {
94 output << delimitator;
95 }
96 output << backendId;
97 }
98
99 return output.str();
100}
101
102void BackendRegistry::Swap(BackendRegistry& instance, BackendRegistry::FactoryStorage& other)
103{

Callers 5

AddCommandLineOptionsMethod · 0.80
mainFunction · 0.80
mainFunction · 0.80
print_helpFunction · 0.80
ProgramOptionsMethod · 0.80

Calls 1

strMethod · 0.45

Tested by

no test coverage detected