* Added CUDA support * Performance improvements * API improvements * Added "depth" parameter to GEMM * Android cross-compilation
19 lines
550 B
C++
19 lines
550 B
C++
#include "isaac/exception/operation_not_supported.h"
|
|
|
|
namespace isaac
|
|
{
|
|
|
|
operation_not_supported_exception::operation_not_supported_exception() : message_()
|
|
{}
|
|
|
|
operation_not_supported_exception::operation_not_supported_exception(std::string message) :
|
|
message_("ISAAC: Internal error: The internal generator cannot handle the operation provided: " + message) {}
|
|
|
|
const char* operation_not_supported_exception::what() const throw()
|
|
{ return message_.c_str(); }
|
|
|
|
operation_not_supported_exception::~operation_not_supported_exception() throw()
|
|
{}
|
|
|
|
}
|