summaryrefslogtreecommitdiff
path: root/modules/remote-hip/c++/device.hpp
blob: 227ed1bcc162d8310f3c2f3bf4de2434c839848f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once

#include "common.hpp"

namespace saw {
/**
 * Represents a remote Sycl device.
 */
template<>
class device<rmt::Hip> final {
private:
public:
	device() = default;

	SAW_FORBID_COPY(device);
	SAW_FORBID_MOVE(device);
};

}