You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
428 B
16 lines
428 B
#include <clc/clc.h>
|
|
|
|
_CLC_DEF _CLC_OVERLOAD void mem_fence(cl_mem_fence_flags flags) {
|
|
if (flags & (CLK_GLOBAL_MEM_FENCE | CLK_LOCAL_MEM_FENCE))
|
|
__nvvm_membar_cta();
|
|
}
|
|
|
|
// We do not have separate mechanism for read and write fences.
|
|
_CLC_DEF _CLC_OVERLOAD void read_mem_fence(cl_mem_fence_flags flags) {
|
|
mem_fence(flags);
|
|
}
|
|
|
|
_CLC_DEF _CLC_OVERLOAD void write_mem_fence(cl_mem_fence_flags flags) {
|
|
mem_fence(flags);
|
|
}
|