Squashed feature branch:
* Added CUDA support * Performance improvements * API improvements * Added "depth" parameter to GEMM * Android cross-compilation
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
#include "atidlas/exception/operation_not_supported.h"
|
||||
#include "isaac/exception/operation_not_supported.h"
|
||||
|
||||
namespace atidlas
|
||||
namespace isaac
|
||||
{
|
||||
|
||||
operation_not_supported_exception::operation_not_supported_exception() : message_()
|
||||
{}
|
||||
|
||||
operation_not_supported_exception::operation_not_supported_exception(std::string message) :
|
||||
message_("ATIDLAS: Internal error: The internal generator cannot handle the operation provided: " + 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(); }
|
||||
|
Reference in New Issue
Block a user