contiguous.cpp 439 Bytes
Newer Older
1

2
#include <migraph/gpu/device/contiguous.hpp>
3
#include <migraph/gpu/device/nary.hpp>
4
5

namespace migraph {
6
inline namespace MIGRAPH_INLINE_NS {
Paul's avatar
Paul committed
7
namespace gpu {
8
namespace device {
9

Paul's avatar
Paul committed
10
void contiguous(hipStream_t stream, argument result, argument arg)
11
{
Paul's avatar
Paul committed
12
    nary_nonstandard(stream, std::move(result), std::move(arg))([](auto x) { return x; });
13
14
}

15
} // namespace device
Paul's avatar
Paul committed
16
} // namespace gpu
17
} // namespace MIGRAPH_INLINE_NS
18
} // namespace migraph