Squashed feature branch:

* Added CUDA support
 * Performance improvements
 * API improvements
 * Added "depth" parameter to GEMM
 * Android cross-compilation
This commit is contained in:
Philippe Tillet
2015-04-29 15:50:57 -04:00
parent 5ff16bfcb6
commit cf5028d55b
3819 changed files with 7080 additions and 2916 deletions

View File

@@ -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(); }