CLBlast/include
Ivan Shapovalov b98af44fcf treewide: use C++ exceptions properly
Since the codebase is designed around proper C++ idioms such as RAII, it
makes sense to only use C++ exceptions internally instead of mixing
exceptions and error codes. The exceptions are now caught at top level
to preserve compatibility with the existing error code-based API.

Note that we deliberately do not catch C++ runtime errors (such as
`std::bad_alloc`) nor logic errors (aka failed assertions) because no
actual handling can ever happen for such errors.

However, in the C interface we do catch _all_ exceptions (...) and
convert them into a wild-card error code.
2016-10-22 08:45:25 +03:00
..
clblast.h treewide: use C++ exceptions properly 2016-10-22 08:45:25 +03:00
clblast_c.h treewide: use C++ exceptions properly 2016-10-22 08:45:25 +03:00
clblast_half.h Added support for compiling the library, the client, and the samples under MSVC 2013 2016-10-10 22:45:39 +02:00