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

Function create_vector

tests/validation/UNIT/WindowIterator.cpp:58–66  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

56
57template <typename T>
58std::vector<T> create_vector(std::initializer_list<T> list_objs)
59{
60 std::vector<T> vec_objs;
61 for (auto it : list_objs)
62 {
63 vec_objs.push_back(it);
64 }
65 return vec_objs;
66}
67
68DATA_TEST_CASE(
69 WholeWindow,

Callers 1

WindowIterator.cppFile · 0.85

Calls 1

push_backMethod · 0.80

Tested by

no test coverage detected