OWL
OptiX7 Wrapper Library
|
#include <LaunchParams.h>
Classes | |
struct | DeviceData |
Public Types | |
typedef std::shared_ptr< LaunchParams > | SP |
![]() | |
typedef std::shared_ptr< SBTObject > | SP |
![]() | |
typedef std::shared_ptr< ContextObject > | SP |
![]() | |
typedef std::shared_ptr< Object > | SP |
Public Member Functions | |
LaunchParams (Context *const context, LaunchParamsType::SP type) | |
std::string | toString () const override |
CUstream | getCudaStream (const DeviceContext::SP &device) |
RegisteredObject::DeviceData::SP | createOn (const DeviceContext::SP &device) override |
DeviceData & | getDD (const DeviceContext::SP &device) const |
void | sync () |
![]() | |
SBTObject (Context *const context, ObjectRegistry ®istry, std::shared_ptr< LaunchParamsType > type) | |
virtual std::string | toString () const |
![]() | |
SBTObjectBase (Context *const context, ObjectRegistry ®istry, std::shared_ptr< SBTObjectType > type) | |
bool | hasVariable (const std::string &name) |
Variable::SP | getVariable (const std::string &name) |
void | writeVariables (uint8_t *sbtEntry, const DeviceContext::SP &device) const |
![]() | |
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 | |
![]() | |
std::shared_ptr< LaunchParamsType > const | type |
![]() | |
const std::vector< Variable::SP > | variables |
std::shared_ptr< SBTObjectType > const | type |
![]() | |
int | ID |
ObjectRegistry & | registry |
![]() | |
Context *const | context |
![]() | |
const size_t | uniqueID |
std::vector< DeviceData::SP > | deviceData |
![]() | |
static std::atomic< uint64_t > | nextAvailableID |
an object that stores the variables used for building the launch params data - this is all this object does: store values and write them when requested
typedef std::shared_ptr<LaunchParams> owl::LaunchParams::SP |
owl::LaunchParams::LaunchParams | ( | Context *const | context, |
LaunchParamsType::SP | type | ||
) |
create a new instenace of given launch param type
|
override |
creates the device-specific data for this group
CUstream owl::LaunchParams::getCudaStream | ( | const DeviceContext::SP & | device | ) |
returns the cuda stream associated with this launch params object (for given device, since each device has a different one. Note this stream is different from the default optix context stream to allow asynchronous use of launhc params - ie, each set of launchparams has its oww stream and can thus be used/launched independently of other launchparam-based launches
|
inline |
get reference to given device-specific data for this object
void owl::LaunchParams::sync | ( | ) |
wait for the latest launch done with these launch params to complete, by syncing on the stream associated with these params
|
overridevirtual |
pretty-printer, for printf-debugging
Reimplemented from owl::Object.