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

Function concat

tests/framework/datasets/JoinDataset.h:158–161  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

156 */
157template <typename T, typename U>
158JoinDataset<T, U> concat(T &&dataset1, U &&dataset2)
159{
160 return JoinDataset<T, U>(std::forward<T>(dataset1), std::forward<U>(dataset2));
161}
162
163template <typename T, typename U, typename V, typename... Rest>
164auto concat(T &&dataset1, U &&dataset2, V &&dataset3, Rest &&...rest)

Callers 15

Permute.cppFile · 0.85
Transpose.cppFile · 0.85
Gather.cppFile · 0.85
FillBorder.cppFile · 0.85
Flatten.cppFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected