"vscode:/vscode.git/clone" did not exist on "f1f60be1a6980f621f43bcbf50478880a21afcf0"
contiguous.cpp 341 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

9
void contiguous(argument result, argument arg)
10
{
Paul's avatar
Paul committed
11
    nary_nonstandard(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