31#ifndef DW_FRAMEWORK_CHANNEL_NVSCIHELPER_HPP_
32#define DW_FRAMEWORK_CHANNEL_NVSCIHELPER_HPP_
35#include <nvscierror.h>
37#include <dwshared/dwfoundation/dw/core/base/ExceptionWithStatus.hpp>
38#include <dwshared/dwfoundation/dw/core/logger/Logger.hpp>
51#define FRWK_CHECK_NVSCI_ERROR(e) \
53 NvSciError FRWK_CHECK_NVSCI_ERROR_ret{(e)}; \
54 if (NvSciError_Success != FRWK_CHECK_NVSCI_ERROR_ret) \
56 DW_LOGE << "Failed with " << dw::framework::nvSciGetErrorName(static_cast<uint32_t>(FRWK_CHECK_NVSCI_ERROR_ret)) \
57 << "(" << static_cast<uint32_t>(FRWK_CHECK_NVSCI_ERROR_ret) << ")" \
58 << " in " << __FILE__ \
59 << ":" << __LINE__ << Logger::State::endl; \
60 if (NvSciError_Timeout == FRWK_CHECK_NVSCI_ERROR_ret) \
61 throw dw::core::ExceptionWithStatus(DW_TIME_OUT, "NvSci API Timeout"); \
63 throw dw::core::ExceptionWithStatus(DW_INTERNAL_ERROR, "NvSci internal error occured"); \
const char * nvSciGetEventName(uint32_t event)
const char * nvSciGetErrorName(uint32_t error)