MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / BuildError

Class BuildError

include/CL/opencl.hpp:2594–2607  ·  view source on GitHub ↗

* Exception class for build errors to carry build info */

Source from the content-addressed store, hash-verified

2592* Exception class for build errors to carry build info
2593*/
2594class BuildError : public Error
2595{
2596private:
2597 BuildLogType buildLogs;
2598public:
2599 BuildError(cl_int err, const char * errStr, const BuildLogType &vec) : Error(err, errStr), buildLogs(vec)
2600 {
2601 }
2602
2603 BuildLogType getBuildLog() const
2604 {
2605 return buildLogs;
2606 }
2607};
2608namespace detail {
2609 static inline cl_int buildErrHandler(
2610 cl_int err,

Callers 1

buildErrHandlerFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected