synchronization.nvidia.hpp.in 256 Bytes
Newer Older
Chao Liu's avatar
Chao Liu committed
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef CK_SYNCHRONIZATION_NVIDIA_HPP
#define CK_SYNCHRONIZATION_NVIDIA_HPP

#include "config.hpp"

namespace ck {

__device__ void block_sync_lds() { __syncthreads(); }

__device__ void block_sync_lds_vmem() { __syncthreads(); }

} // namespace ck
#endif