|
Posted at 4/4/2017 08:00:26
Only Author
2#
First of all it's "libOpenCL.so".
I don't know for certain in your case, but I'd install or build from the source mesa.
On my Gentoo AMD system lib OpenCl.so is at /usr/lib64/OpenCL/vendors/mesa/libOpenCL.so .
I Can switch is to the ocl-icd version at /usr/lib64/OpenCL/vendors/ocl-icd/libOpenCL.so .
Ocl-icd at: http://forge.imag.fr/projects/ocl-icd/
Mesa at: https://www.mesa3d.org/
If you can ls(1) those files, or locate them with, say, find(1), like this:
- find /usr/lib* -name libOpenCL.so
Copy the code
then your problem is in the application that is not properly linked against libOpenCL.so .
You may also need to link the libOpenCL.so and other related ones to someplace else using your distro's cool tools (you did not mention what distro you are using, so I don't know what tools you'd need or use).
If you have another issue, such as loading them then that points to something else.
All this being said, I really am not certain what your exact error is because you did not provide the command and it's output, just a truncated error message. I'm assuming that you got error 2, which reads something like:
- Cannot load libOpenCl.so: No such file or Directory.
Copy the code
|
|