26#include "GPUReconstructionAvailableBackends.h"
48 if (
type != DeviceType::CPU) {
49 GPUError(
"Cannot create GPUReconstruction for a non-CPU device if DEBUG_STREAMER are enabled");
53 if (
type == DeviceType::CPU) {
57 if (loader && (
retVal = (*loader)->GetPtr(cfg))) {
65 }
else if (
type != DeviceType::CPU) {
80 if (
type == DeviceType::CPU) {
84 return loader !=
nullptr && (*loader)->LoadLibrary() == 0;
90 if (
type == DeviceType::CPU) {
92 }
else if (
type == DeviceType::CUDA) {
96 }
else if (
type == DeviceType::HIP) {
100 }
else if (
type == DeviceType::OCL) {
105 GPUError(
"Error: Invalid device type %u", (uint32_t)
type);
117 if (t == DeviceType::INVALID_DEVICE) {
118 GPUError(
"Invalid device type: %s",
type);
132int32_t GPUReconstruction::LibraryLoader::LoadLibrary()
134 static std::mutex mut;
135 std::lock_guard<std::mutex> lock(mut);
143 if (hGPULib ==
nullptr) {
145 GPUImportant(
"The following error occured during dlopen: %s", dlerror());
147 GPUError(
"Error Opening cagpu library for GPU Tracker (%s)", mLibName);
151 if (createFunc ==
nullptr) {
152 GPUError(
"Error fetching entry function in GPU library\n");
156 mGPULib = (
void*)(
size_t)hGPULib;
157 mGPUEntry = createFunc;
158 GPUInfo(
"GPU Tracker library loaded and GPU tracker object created sucessfully");
169 if (mGPUEntry ==
nullptr) {
178 if (mGPUEntry ==
nullptr) {
static DeviceType GetDeviceType(const char *type)
static constexpr const char *const DEVICE_TYPE_NAMES[]
LibraryLoader(const LibraryLoader &)=delete
static std::shared_ptr< LibraryLoader > sLibHIP
GPUDataTypes::DeviceType DeviceType
static std::shared_ptr< LibraryLoader > * GetLibraryInstance(DeviceType type, bool verbose)
static bool CheckInstanceAvailable(DeviceType type, bool verbose)
static std::shared_ptr< LibraryLoader > sLibOCL
static GPUReconstruction * CreateInstance(const GPUSettingsDeviceBackend &cfg)
static GPUReconstruction * GPUReconstruction_Create_CPU(const GPUSettingsDeviceBackend &cfg)
static std::shared_ptr< LibraryLoader > sLibCUDA
GLint GLint GLsizei GLint GLenum GLenum type
#define LIBRARY_EXTENSION
#define LIBRARY_LOAD(name)
GPUReconstruction * master