MCPcopy Create free account
hub / github.com/arrayfire/arrayfire / generateAllTypesRagged

Function generateAllTypesRagged

test/reduce.cpp:2094–2103  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2092// clang-format on
2093
2094vector<ragged_params *> generateAllTypesRagged() {
2095 vector<ragged_params *> out;
2096 vector<vector<ragged_params *>> tmp{
2097 genRaggedRangeTests<int, int>(), genRaggedRangeTests<float, float>(),
2098 genRaggedRangeTests<double, double>(),
2099 genRaggedRangeTests<half_float::half, half_float::half>()};
2100
2101 for (auto &v : tmp) { copy(begin(v), end(v), back_inserter(out)); }
2102 return out;
2103}
2104
2105template<typename TestClass>
2106string testNameGeneratorRagged(

Callers 1

reduce.cppFile · 0.85

Calls 3

beginFunction · 0.85
endFunction · 0.85
copyFunction · 0.50

Tested by

no test coverage detected