miopen_exception Class — pytorch Architecture
Architecture documentation for the miopen_exception class in Exceptions.h from the pytorch codebase.
Entity Profile
Source Code
aten/src/ATen/miopen/Exceptions.h lines 10–19
class miopen_exception : public std::runtime_error {
public:
miopenStatus_t status;
miopen_exception(miopenStatus_t status, const char* msg)
: std::runtime_error(msg)
, status(status) {}
miopen_exception(miopenStatus_t status, const std::string& msg)
: std::runtime_error(msg)
, status(status) {}
};
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free