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

Function combine

tests/framework/datasets/CartesianProductDataset.h:176–179  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

174 */
175template <typename T, typename U>
176CartesianProductDataset<T, U> combine(T &&dataset1, U &&dataset2)
177{
178 return CartesianProductDataset<T, U>(std::forward<T>(dataset1), std::forward<U>(dataset2));
179}
180
181/** Helper function to create a @ref CartesianProductDataset.
182 *

Calls

no outgoing calls

Tested by

no test coverage detected