Home
last modified time | relevance | path

Searched refs:online_compile_error (Results 1 – 3 of 3) sorted by relevance

/libCEED/backends/sycl/ !
H A Donline_compiler.sycl.cpp110 if (!OclocLibrary) throw online_compile_error("Cannot load ocloc library: " + OclocLibraryName); in compileToSPIRV()
127 …throw online_compile_error(std::string("Found incompatible version of ocloc library: (") + std::to… in compileToSPIRV()
132 if (!CompileToSPIRVHandle) throw online_compile_error("Cannot load oclocInvoke() function"); in compileToSPIRV()
134 … if (!FreeSPIRVOutputsHandle) throw online_compile_error("Cannot load oclocFreeOutput() function"); in compileToSPIRV()
177 …if (CompileError) throw online_compile_error("ocloc reported compilation errors: {\n" + CompileLog… in compileToSPIRV()
178 if (SpirV.empty()) throw online_compile_error("Unexpected output: ocloc did not return SPIR-V"); in compileToSPIRV()
179 if (MemFreeError) throw online_compile_error("ocloc cannot safely free resources"); in compileToSPIRV()
189 …throw online_compile_error(std::string("The output format version (") + Version + ") is not suppor… in compile()
200 …throw online_compile_error(std::string("The output format version (") + Version + ") is not suppor… in compile()
H A Donline_compiler.hpp63 class online_compile_error : public sycl::exception { class
65 online_compile_error() = default;
66online_compile_error(const std::string &Msg) : sycl::exception(make_error_code(errc::invalid), Msg… in online_compile_error() function in sycl::ext::libceed::online_compile_error
H A Dceed-sycl-compile.sycl.cpp77 } catch (sycl::ext::libceed::online_compile_error &e) {