OWL
OptiX7 Wrapper Library
|
#include <Buffer.h>
Public Types | |
typedef std::shared_ptr< HostPinnedBuffer > | SP |
![]() | |
typedef std::shared_ptr< Buffer > | SP |
![]() | |
typedef std::shared_ptr< ContextObject > | SP |
![]() | |
typedef std::shared_ptr< Object > | SP |
Public Member Functions | |
HostPinnedBuffer (Context *const context, OWLDataType type) | |
std::string | toString () const override |
void | resize (size_t newElementCount) override |
void | upload (const void *hostPtr) override |
void | upload (const int deviceID, const void *hostPtr) override |
![]() | |
Buffer (Context *const context, OWLDataType type) | |
virtual | ~Buffer () |
Buffer::DeviceData & | getDD (const DeviceContext::SP &device) const |
const void * | getPointer (const DeviceContext::SP &device) const |
size_t | getElementCount () const |
size_t | sizeInBytes () const |
RegisteredObject::DeviceData::SP | createOn (const DeviceContext::SP &device) override |
void | destroy () |
![]() | |
RegisteredObject (Context *const context, ObjectRegistry ®istry) | |
~RegisteredObject () | |
![]() | |
ContextObject (Context *const context) | |
std::string | toString () const override |
![]() | |
Object () | |
virtual DeviceData::SP | createOn (const std::shared_ptr< DeviceContext > &device) |
void | createDeviceData (const std::vector< std::shared_ptr< DeviceContext >> &devices) |
template<typename T > | |
std::shared_ptr< T > | as () |
Public Attributes | |
void * | cudaHostPinnedMem { 0 } |
![]() | |
const OWLDataType | type |
size_t | elementCount { 0 } |
![]() | |
int | ID |
ObjectRegistry & | registry |
![]() | |
Context *const | context |
![]() | |
const size_t | uniqueID |
std::vector< DeviceData::SP > | deviceData |
Additional Inherited Members | |
![]() | |
static std::atomic< uint64_t > | nextAvailableID |
a buffer that uses CUDA host-pinned memory. only makes sense for copyable data types
typedef std::shared_ptr<HostPinnedBuffer> owl::HostPinnedBuffer::SP |
owl::HostPinnedBuffer::HostPinnedBuffer | ( | Context *const | context, |
OWLDataType | type | ||
) |
|
overridevirtual |
resize buffer to new num elements
Implements owl::Buffer.
|
overridevirtual |
pretty-printer, for debugging
Reimplemented from owl::Buffer.
|
overridevirtual |
upload data from host, to only given device ID
Implements owl::Buffer.
|
overridevirtual |
upload data from host, using as many bytes as required by elemnetCount and dataSize
Implements owl::Buffer.
void* owl::HostPinnedBuffer::cudaHostPinnedMem { 0 } |
pointer to the (shared) cuda pinned mem - this gets alloced once and is valid on both host and devices