Files
triton-tvm-ffi/include/exception.h
T
2026-01-28 02:16:10 +08:00

21 lines
348 B
C++

#ifndef TRITON_TVM_FFI_EXCEPTION_H_
#define TRITON_TVM_FFI_EXCEPTION_H_
#include <cuda.h>
#include <exception>
namespace triton_tvm_ffi {
class CUDAException : public std::exception {
public:
CUDAException(CUresult code);
const char *what() const noexcept override;
private:
const CUresult code;
};
} // namespace triton_tvm_ffi
#endif