"...targets/git@developer.sourcefind.cn:gaoqiong/migraphx.git" did not exist on "1599d5531e6d8d9bb0535c840a87ac23b2d7eba6"
contiguous.cpp 446 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
} // inline namespace MIGRAPH_INLINE_NS
18
} // namespace migraph