Loading [MathJax]/extensions/TeX/AMSsymbols.js
Open3D (C++ API)  0.19.0
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Data Structures | Functions
open3d::core::sy Namespace Reference

Data Structures

struct  SYCLDevice
 SYCL device properties. More...
 
class  SYCLContext
 

Functions

OPEN3D_DLL_LOCAL std::string GetDeviceTypeName (const sycl::device &device)
 
int SYCLDemo ()
 
void PrintSYCLDevices (bool print_all)
 
bool IsAvailable ()
 Returns true if there is at least one SYCL device available. More...
 
bool IsDeviceAvailable (const Device &device)
 Returns true if the specified SYCL device is available. More...
 
std::string GetDeviceType (const Device &device)
 
std::vector< DeviceGetAvailableSYCLDevices ()
 Return a list of available SYCL devices. More...
 
void enablePersistentJITCache ()
 

Function Documentation

◆ enablePersistentJITCache()

void open3d::core::sy::enablePersistentJITCache ( )

Enables the JIT cache for SYCL. This sets an environment variable and will affect the entire process and any child processes.

◆ GetAvailableSYCLDevices()

std::vector< Device > open3d::core::sy::GetAvailableSYCLDevices ( )

Return a list of available SYCL devices.

◆ GetDeviceType()

std::string open3d::core::sy::GetDeviceType ( const Device device)

Returns the device type (cpu / gpu / accelerator / custom) of the specified device as a string. Returns empty string if the device is not available.

◆ GetDeviceTypeName()

OPEN3D_DLL_LOCAL std::string open3d::core::sy::GetDeviceTypeName ( const sycl::device &  device)

◆ IsAvailable()

bool open3d::core::sy::IsAvailable ( )

Returns true if there is at least one SYCL device available.

◆ IsDeviceAvailable()

bool open3d::core::sy::IsDeviceAvailable ( const Device device)

Returns true if the specified SYCL device is available.

◆ PrintSYCLDevices()

void open3d::core::sy::PrintSYCLDevices ( bool  print_all = false)

Print available SYCL devices.

Parameters
print_allIf true, prints all SYCL devices. Otherwise, prints only devices that are available for Open3D.

◆ SYCLDemo()

int open3d::core::sy::SYCLDemo ( )

Runs simple SYCL test program for sanity checks.

Returns
Retuns 0 if successful.