contiguous.cpp 321 Bytes
Newer Older
1

2
#include <migraph/gpu/device/contiguous.hpp>
Paul's avatar
Paul committed
3
#include <migraph/gpu/device/unary.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(argument arg, argument result)
10
{
Paul's avatar
Paul committed
11
    unary_nonstandard(arg, result, [](auto x) { return x; });
12
13
}

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