Files
triton/lib/exception/operation_not_supported.cpp
Philippe Tillet cf5028d55b Squashed feature branch:
* Added CUDA support
 * Performance improvements
 * API improvements
 * Added "depth" parameter to GEMM
 * Android cross-compilation
2015-04-29 15:52:21 -04:00

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()
{}
}