MCPcopy Create free account
hub / github.com/ROCm/AMDMIGraphX / make_array

Function make_array

src/include/migraphx/array.hpp:60–63  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

58
59template <class Result = void, class... Ts, MIGRAPHX_REQUIRES((sizeof...(Ts) > 0))>
60constexpr std::array<detail::array_type_t<Result, Ts...>, sizeof...(Ts)> make_array(Ts&&... xs)
61{
62 return {static_cast<detail::array_type_t<Result, Ts...>>(std::forward<Ts>(xs))...};
63}
64
65constexpr std::array<int, 0> make_array() { return {}; }
66

Callers 3

rearray_implFunction · 0.70
TEST_CASEFunction · 0.50
split_dimMethod · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected