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

#include <forstio/remote/remote.hpp>

#define __HIP_PLATFORM_AMD__
#include <hip/hip_runtime.h>

namespace saw {
namespace rmt {
struct Hip {};
}
namespace encode {
template<typename Inner>
struct Hip {};
}

template<>
class remote<rmt::Hip>;

template<typename T>
class device;

}