contiguous.cpp 423 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 version_1 {
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
Shucai Xiao's avatar
Shucai Xiao committed
17
} // namespace version_1
18
} // namespace migraph