Point Cloud Library (PCL)  1.14.0-dev
cache.hpp
1 
2 
3 
4 //will contain a lot of load/store utils
5 
6 namespace pcl
7 {
8  namespace device
9  {
10  template<class T>
12  {
13  __device__ static T Invoke(const T* ptr)
14  {
15  //asm code insertion
16  asm(...);
17  }
18  };
19 
20  }
21 
22 }
static __device__ T Invoke(const T *ptr)
Definition: cache.hpp:13