1e36af0daa
Portable OpenCL aims to be an efficient open source (MIT-licensed) implementation of the OpenCL 1.2 standard. pocl uses Clang as an OpenCL C frontend and LLVM for the kernel compiler implementation, and as a portability layer. Thus, if your desired target has an LLVM backend, it should be able to get OpenCL support easily by using pocl. PR: 171914 Submitted by: O.Hartmann <ohartmann@walstatt.org> (based on)
12 lines
400 B
Text
12 lines
400 B
Text
|
|
Deadlocks (freezes) on FreeBSD:
|
|
|
|
OpenCL applications using pocl on FreeBSD must be compiled with
|
|
options CFLAGS+=-pthread or CXXFLAGS+=-pthread, otherwise someone risk
|
|
that a library may not initialize the threading on BSD independently,
|
|
even if an ICD loader is used.
|
|
|
|
See:
|
|
http://www.freebsd.org/cgi/query-pr.cgi?pr=163512
|
|
|
|
(Source: http://portablecl.org/docs/html/faq.html?highlight=freebsd)
|