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

Function command_line

tests/benchmark_examples/RunExample.cpp:50–58  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

48namespace
49{
50std::string command_line(int argc, char **argv)
51{
52 std::stringstream ss;
53 for (int i = 0; i < argc; i++)
54 {
55 ss << argv[i] << " ";
56 }
57 return ss.str();
58}
59} // namespace
60namespace arm_compute
61{

Callers 1

run_exampleFunction · 0.70

Calls 1

strMethod · 0.80

Tested by

no test coverage detected