We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 468bc13 commit 313dbe7Copy full SHA for 313dbe7
third_party/intel/backend/driver.c
@@ -201,6 +201,8 @@ static PyObject *loadBinary(PyObject *self, PyObject *args) {
201
try {
202
ctx = platform.ext_oneapi_get_default_context();
203
} catch (const std::runtime_error &ex) {
204
+ // This exception is thrown on Windows because ext_oneapi_get_default_context
205
+ // is not implemented. But it can be safely ignored it seems.
206
#if _DEBUG
207
std::cout << "ERROR: " << ex.what() << std::endl;
208
#endif
0 commit comments