Skip to content

Commit

Permalink
fix log message
Browse files Browse the repository at this point in the history
  • Loading branch information
Gleethos committed Dec 16, 2024
1 parent c3fd20f commit cdbf573
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/neureka/devices/opencl/OpenCLPlatform.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public OpenCLPlatform(cl_platform_id pid)
String vendor = OpenCLDevice.Query.getString(pid, CL_PLATFORM_VENDOR);
String platformName = OpenCLDevice.Query.getString(pid, CL_PLATFORM_NAME);
_LOG.warn(
"Could not find any OpenCL devices for platform '{}' with id '0x{}' on vendor '{}'.",
"Could not find any OpenCL devices for platform '{}' with id '0x{}' from vendor '{}'. \n" +
"Although an OpenCL platform is present, it does not seem to find any devices. \n" +
"Does your hardware support OpenCL? \n",
platformName, Long.toHexString(pid.getNativePointer()), vendor,
Expand Down

0 comments on commit cdbf573

Please sign in to comment.