D | error.hpp | 61 error(cl_int code, std::string what = "") : in error() argument 62 std::runtime_error(what), code(code) { in error() 75 invalid_build_options_error(const std::string &what = "") : in invalid_build_options_error() argument 76 error(CL_INVALID_BUILD_OPTIONS, what) {} in invalid_build_options_error() 81 build_error(const std::string &what = "") : in build_error() argument 82 error(CL_BUILD_PROGRAM_FAILURE, what) {} in build_error() 91 invalid_object_error(std::string what = "") : in invalid_object_error() argument 92 error(CL_INVALID_COMMAND_QUEUE, what) {} in invalid_object_error() 98 invalid_object_error(std::string what = "") : in invalid_object_error() argument 99 error(CL_INVALID_CONTEXT, what) {} in invalid_object_error() [all …]
|