Intel® oneAPI Math Kernel Library
Ask questions and share information with other developers who use Intel® Math Kernel Library.
Announcements
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.
7234 Discussions

OneAPI sample Matrix_mul_sycl exit with code -1073741819

PTA
Beginner
545 Views

Question: What is wrong with my installation?

Below is my environment:

  • windows 10
  • visual studio 2019 - 16.11
  • OneAPI tookkit:
    • Basekit-2024.1.0.595
    • Basekit_32bit 2024.1.0.228
    • HPCkit-2024.1.0.561

Matrix_mul result:

Device: Intel(R) UHD Graphics
Problem size: c(150,600) = a(150,300) * b(300,600)

.....\source\repos\Matrix_Multiply3\x64\Debug\matrix_mul_sycl.exe (process 19228) exited with code -1073741819.
Press any key to close this window . . .

 

 

0 Kudos
1 Reply
Mahan
Moderator
492 Views

Based on the context provided, the error code -1073741819 (0xC0000005) is equivalent to the CL_OUT_OF_RESOURCES error code in OpenCL. This typically indicates that the GPU device ran out of available resources, such as global memory or shared local memory (SLM), when trying to execute the SYCL kernel.

0 Kudos
Reply