OWL
OptiX7 Wrapper Library
|
#include <Buffer.h>
Classes | |
struct | DeviceData |
struct | DeviceDataForBuffers |
struct | DeviceDataForCopyableData |
struct | DeviceDataForTextures |
Public Types | |
typedef std::shared_ptr< DeviceBuffer > | SP |
![]() | |
typedef std::shared_ptr< Buffer > | SP |
![]() | |
typedef std::shared_ptr< ContextObject > | SP |
![]() | |
typedef std::shared_ptr< Object > | SP |
Public Member Functions | |
DeviceBuffer (Context *const context, OWLDataType type) | |
std::string | toString () const override |
DeviceData & | getDD (const DeviceContext::SP &device) const |
void | resize (size_t newElementCount) override |
void | upload (const void *hostPtr) override |
void | upload (const int deviceID, const void *hostPtr) override |
RegisteredObject::DeviceData::SP | createOn (const DeviceContext::SP &device) 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 () |
Additional Inherited Members | |
![]() | |
const OWLDataType | type |
size_t | elementCount { 0 } |
![]() | |
int | ID |
ObjectRegistry & | registry |
![]() | |
Context *const | context |
![]() | |
const size_t | uniqueID |
std::vector< DeviceData::SP > | deviceData |
![]() | |
static std::atomic< uint64_t > | nextAvailableID |
a device-side buffer that has its own cuda-malloc'ed memory on each device. DeviceBuffers are fastest to access on the device, BUT* are not visible on the host, and are replicated in the sense that changing to a device buffer on one GPU will not be visible on other GPUs
typedef std::shared_ptr<DeviceBuffer> owl::DeviceBuffer::SP |
owl::DeviceBuffer::DeviceBuffer | ( | Context *const | context, |
OWLDataType | type | ||
) |
contructor - creates the right device data type based on content type
|
override |
creates the device-specific data for this group
|
inline |
get reference to given device-specific data for this object
|
overridevirtual |
resize this buffer - actual work will get done in DeviceData
Implements owl::Buffer.
|
overridevirtual |
pretty-printer, for debugging
Reimplemented from owl::Buffer.
|
overridevirtual |
upload to only ONE device - only makes sense for device buffers
Implements owl::Buffer.
|
overridevirtual |
upload to device data(s) of that buffer - actual work will get done in DeviceData
Implements owl::Buffer.