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

Function command_line

tests/validate_examples/RunExample.cpp:66–74  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

64namespace
65{
66std::string command_line(int argc, char **argv)
67{
68 std::stringstream ss;
69 for (int i = 0; i < argc; i++)
70 {
71 ss << argv[i] << " ";
72 }
73 return ss.str();
74}
75
76template <bool validate>
77class ExampleTest : public arm_compute::test::framework::TestCase

Callers 1

run_exampleFunction · 0.70

Calls 1

strMethod · 0.80

Tested by

no test coverage detected