File tree Expand file tree Collapse file tree 1 file changed +0
-23
lines changed
sycl/include/CL/sycl/access Expand file tree Collapse file tree 1 file changed +0
-23
lines changed Original file line number Diff line number Diff line change @@ -76,29 +76,6 @@ constexpr bool modeWritesNewData(access::mode m) {
76
76
#define __OPENCL_PRIVATE_AS__
77
77
#endif
78
78
79
- template <typename dataT, access::target accessTarget>
80
- struct DeviceValueType ;
81
-
82
- template <typename dataT>
83
- struct DeviceValueType <dataT, access::target::global_buffer> {
84
- using type = __OPENCL_GLOBAL_AS__ dataT;
85
- };
86
-
87
- template <typename dataT>
88
- struct DeviceValueType <dataT, access::target::constant_buffer> {
89
- using type = __OPENCL_CONSTANT_AS__ dataT;
90
- };
91
-
92
- template <typename dataT>
93
- struct DeviceValueType <dataT, access::target::local> {
94
- using type = __OPENCL_LOCAL_AS__ dataT;
95
- };
96
-
97
- template <typename dataT>
98
- struct DeviceValueType <dataT, access::target::host_buffer> {
99
- using type = dataT;
100
- };
101
-
102
79
template <access::target accessTarget> struct TargetToAS {
103
80
constexpr static access::address_space AS =
104
81
access::address_space::global_space;
You can’t perform that action at this time.
0 commit comments