Point Cloud Library (PCL)
1.14.1-dev
utils
include
pcl
gpu
utils
device
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>
11
struct
NonCachedLoad
12
{
13
__device__
static
T
Invoke
(
const
T* ptr)
14
{
15
//asm code insertion
16
asm
(...);
17
}
18
};
19
20
}
21
22
}
pcl
Definition:
convolution.h:46
pcl::device::NonCachedLoad
Definition:
cache.hpp:12
pcl::device::NonCachedLoad::Invoke
static __device__ T Invoke(const T *ptr)
Definition:
cache.hpp:13