"src/vscode:/vscode.git/clone" did not exist on "d655ef50472f6a2d4eccb810c7c5374a7ec4a538"
contiguous.cpp 369 Bytes
Newer Older
1

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

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

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

14
} // namespace device
Paul's avatar
Paul committed
15
} // namespace gpu
16
} // namespace migraph