本文整理汇总了C++中DataSpace::getElementCount方法的典型用法代码示例。如果您正苦于以下问题:C++ DataSpace::getElementCount方法的具体用法?C++ DataSpace::getElementCount怎么用?C++ DataSpace::getElementCount使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DataSpace
的用法示例。
在下文中一共展示了DataSpace::getElementCount方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: HostBufferIntern
/**
* constructor
* @param dataSpace DataSpace describing the size of the HostBufferIntern to be created
*/
HostBufferIntern(DataSpace<DIM> dataSpace) throw (std::bad_alloc) :
HostBuffer<TYPE, DIM>(dataSpace),
pointer(NULL),ownPointer(true)
{
CUDA_CHECK(cudaMallocHost(&pointer, dataSpace.getElementCount() * sizeof (TYPE)));
reset(false);
}
示例2: init
virtual void init()
{
// __startAtomicTransaction(__getTransactionEvent());
size_t current_size = host->getCurrentSize();
DataSpace<DIM> hostCurrentSize = host->getCurrentDataSpace(current_size);
if (host->is1D() && device->is1D())
fastCopy(host->getPointer(), device->getPointer(), hostCurrentSize.getElementCount());
else
copy(hostCurrentSize);
device->setCurrentSize(current_size);
this->activate();
// __setTransactionEvent(__endTransaction());
}
示例3: Buffer
/**
* constructor
* @param dataSpace description of spread of any dimension
*/
Buffer(DataSpace<DIM> dataSpace) :
data_space(dataSpace),data1D(true)
{
CUDA_CHECK(cudaMallocHost(¤t_size, sizeof (size_t)));
*current_size = dataSpace.getElementCount();
}