blob: a143ddfb9f6cf241d2f49f22df8fc247fb581030 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
_CLC_OVERLOAD _CLC_DEF event_t async_work_group_copy(
local __CLC_GENTYPE *dst,
const global __CLC_GENTYPE *src,
size_t num_gentypes,
event_t event) {
return async_work_group_strided_copy(dst, src, num_gentypes, 1, event);
}
_CLC_OVERLOAD _CLC_DEF event_t async_work_group_copy(
global __CLC_GENTYPE *dst,
const local __CLC_GENTYPE *src,
size_t num_gentypes,
event_t event) {
return async_work_group_strided_copy(dst, src, num_gentypes, 1, event);
}
|