1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522
|
.. _pocl-install:
============
Installation
============
Install Requirements
------------------------
In order to build pocl, you need the following support libraries and
tools:
* A supported version of LLVM & Clang (check release notes)
* development files for LLVM & Clang + their transitive dependencies
(e.g. libclang-dev, libllvm-dev, zlib1g-dev, libtinfo-dev...)
* CMake
* GNU make or ninja
* pkg-config
* pthread (should be installed by default)
* hwloc v1.0 or newer (e.g. libhwloc-dev) - optional
* python3 (for support of LLVM bitcode with SPIR target; optional but enabled by default)
* llvm-spirv (version-compatible with LLVM) and spirv-tools (optional;
required for SPIR-V support in CPU / CUDA; Vulkan driver supports SPIR-V through clspv)
Install requirements on Linux
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Note: For Ubuntu/Debian, PoCL supports the binary packages
from https://apt.llvm.org/ - these usually support more
(and newer) LLVM versions than Ubuntu/Debian.
.. highlight:: bash
Install requirements (e.g with LLVM 21) for Ubuntu/Debian::
export LLVM_VERSION=21
sudo apt install -y python3-dev libpython3-dev build-essential ocl-icd-libopencl1 \
cmake git pkg-config libclang-${LLVM_VERSION}-dev clang-${LLVM_VERSION} \
llvm-${LLVM_VERSION} make ninja-build ocl-icd-libopencl1 ocl-icd-dev \
ocl-icd-opencl-dev libhwloc-dev zlib1g zlib1g-dev clinfo dialog apt-utils \
libxml2-dev libclang-cpp${LLVM_VERSION}-dev libclang-cpp${LLVM_VERSION} \
llvm-${LLVM_VERSION}-dev
If LLVM is linked to PoCL statically (-DSTATIC_LLVM=ON cmake option, default OFF),
then the `libpolly-${LLVM_VERSION}-dev libzstd-dev` packages might be also needed
(at least on Ubuntu 22.04 with packages from apt.llvm.org).
Install requirements for Arch Linux::
pacman -S gcc patch hwloc cmake git pkg-config make ninja ocl-icd clang llvm llvm-libs clinfo opencl-headers
Install requirements for Fedora::
dnf install gcc gcc-c++ clinfo hwloc-devel hwloc-libs cmake git-core pkgconfig make ninja-build ocl-icd ocl-icd-devel clang clang-devel clang-libs llvm llvm-devel llvm-libs patch redhat-rpm-config findutils
There are also Dockerfiles available for a few most common linux
distributions in ``tools/docker``, looking into them might be helpful.
ICD / OpenCL 3.0 support
~~~~~~~~~~~~~~~~~~~~~~~~~~~
PoCL's build by default builds the runtime library, tests and examples.
The tests and examples cannot be built against ICD loader which doesn't
support OpenCL 3.0. In other words, they can only be built with disabled
ICD (linking directly to PoCL) or with ICD supporting OpenCL 3.0.
The loader in Ubuntu (ocl-icd) supports OpenCL 3.0 since version 2.3.0;
for Ubuntu earlier than 24.04, it can be installed from
this PPA: https://launchpad.net/~ocl-icd/+archive/ubuntu/ppa
If you don't have a sufficiently new ICD, and you want the tests/examples,
then either:
* disable building with ICD (-DENABLE_ICD=0)
* disable the tests & examples (-DENABLE_TESTS=0 -DENABLE_EXAMPLES=0)
Configure & Build
-----------------
CMake version 3.15 or higher is required.
The build+install is the usual CMake way::
cd <directory-with-pocl-sources>
mkdir build
cd build
cmake [-D<option>=<value> ...] ..
make && make install
To see the default detected values, run ``cmake ..`` without any options,
it will produce a summary.
Compiler support
~~~~~~~~~~~~~~~~~~~~~~~~
Since pocl includes a compiler for the kernels, it both compiles (producing
code) and is compiled (it consists of code). This distinction typically called
"host" and "target": The host is where pocl is running, the target is
where the OpenCL code will be running. These two systems can be wildly
different.
Host compiler used to compile pocl can be GCC or Clang; the target
compiler is always Clang+LLVM since pocl uses Clang/LLVM internally.
For host compiler, you should use the one which your LLVM was compiled
with (because the LLVM-related parts of pocl take LLVM's CXXFLAGS from
llvm-config and pass them to the host compiler).
Clang / LLVM: target compiler supported versions
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Note that pocl aims to support **the latest LLVM version** at the time
of pocl release, **plus the previous** LLVM version. All older LLVM
versions are supported with "best effort" basis; there might not be
CI continuously testing the code base nor anyone fixing their
possible breakage.
.. _pocl-cmake-variables:
CMake options
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
For multiple-item options like KERNELLIB_HOST_CPU_VARIANTS,
use ";" as separator (you'll have to escape it for bash).
- ``-DWITH_LLVM_CONFIG=<path-to-llvm-config>``
**IMPORTANT** Path to a llvm-config binary.
This determines the LLVM installation used by pocl.
If not specified, pocl will try to find and link against
llvm-config in PATH env var (usually means your system LLVM).
- ``-DSTATIC_LLVM`` pocl uses ``llvm-config --libs`` to get list of LLVM libraries
it should link to. With this flag enabled, it additionally passes ``--link-static``
to ``llvm-config``; otherwise it passes ``--link-shared``. Default is OFF (=shared).
- ``-DLLVM_SPIRV`` Path to a llvm-spirv binary of SPIRV-LLVM-Translator. Note that
only the builds of open-source Khronos Translator are supported, and the binary
must be built for the same LLVM version as PoCL is being built against. If not
given, PoCL will try to autodetect a llvm-spirv binary with suitable version.
Note that PoCL will also try to detect LLVMSPIRVLib library, and if found, it
will take precedence over llvm-spirv binary.
- ``-DENABLE_ICD`` By default pocl's buildsystem will try to find an ICD
and build pocl as a dynamic library named "libpocl". This option is useful
if you want to avoid ICD and build pocl directly as libOpenCL library.
See also :ref:`linking-with-icd`
- ``-DPOCL_INSTALL_<something>_DIR`` The equivalent of ``--bindir``,
``--sbindir`` etc fine-tuning of paths for autotools. See the beginning
of toplevel CMakeLists.txt for all the variables.
Note that if ``CMAKE_INSTALL_PREFIX`` equals ``/usr`` then pocl.icd is
installed to ``/etc/OpenCL/vendors``, otherwise it's installed to
``${CMAKE_INSTALL_PREFIX}/etc/OpenCL/vendors``.
- ``-DLLC_HOST_CPU=<something>``
Defaults to auto-detection via ``llc``. Run ``llc -mcpu=help``
for valid values. The CPU type is required to compile
the "target" (kernel library) part of CPU backend.
This variable overrides LLVM's autodetected host CPU at configure time.
Useful when llc fails to detect the CPU (often happens on non-x86
platforms, or x86 with CPU newer than LLVM).
Note that when this is set (set by default) and the
KERNELLIB_HOST_CPU_VARIANTS variable is not ``distro``,
pocl will first try to find compiled kernel library
for runtime-detected CPU then fallback to LLC_HOST_CPU.
This works well if pocl is run where it was built,
or the actual CPU is in the KERNELLIB_HOST_CPU_VARIANTS list,
or the actual CPU is >= LLC_HOST_CPU feature-wise;
otherwise it will likely fail with illegal instruction at runtime.
- ``-DKERNELLIB_HOST_CPU_VARIANTS`` You can control which CPUs the
"target" part of CPU backend will be built for.
Unlike LLC_HOST_CPU, this variable is useful if you plan
to build for multiple CPUs. Defaults to "native" which is
automagically replaced by LLC_HOST_CPU.
Available CPUs are listed by ``llc -mcpu=help``. See above for
runtime CPU detection rules.
Note that there's another available value on certain (x86, ppc) platforms.
If set to ``distro``, on x86, the KERNELLIB_HOST_CPU_VARIANTS variable will
be set up with a few preselected sse/avx variants covering 99.99% of x86
processors, and the runtime CPU detection is slightly altered: pocl
will find the suitable compiled library based on detected CPU features,
so it cannot fail (at worst it'll degrade to SSE2 library).
- ``-DLLC_TRIPLE=<something>`` Controls what target triple pocl is built for.
You can set this manually in case the autodetection fails.
Example value: ``x86_64-pc-linux-gnu``
- ``-DENABLE_TESTSUITES`` Which external (source outside pocl) testsuites to enable.
For the list of testsuites, see examples/CMakeLists.txt or the ``examples``
directory. Set to ``all`` and pocl will try to autodetect & enable everything
it can.
Note that you may build testsuites outside pocl's build tree, and test
multiple pocl builds with a single testsuite directory. To use this,
run cmake with ``-DTESTSUITE_BASEDIR=<tests-builddir>`` and ``-DTESTSUITE_SOURCE_BASEDIR=<tests-sourcedir>``.
The directory structure mirrors that of ``pocl/examples``. So to build e.g. AMD SDK 2.9
with ``-DTESTSUITE_BASEDIR=/home/pocltest-build -DTESTSUITE_SOURCE_BASEDIR=/home/pocltest-src``,
place the ``AMD-APP-SDK-v2.9-RC-lnx64.tgz`` file into ``/home/pocltest-src/AMDSDK2.9`` directory.
- ``-DENABLE_TESTS=ON/OFF`` enable/disable compilation of internal tests.
- ``-DENABLE_EXAMPLES=ON/OFF`` enable/disable compilation of all examples.
Disabling this makes ENABLE_TESTSUITES option unavailable.
- ``-DENABLE_POCLCC=ON/OFF`` enable/disable compilation of poclcc.
- ``-DENABLE_POCL_BUILDING=OFF``
When OFF, POCL_BUILDING option (which causes pocl to look for required
files in build / source directories) will be ignored
and pocl will always look in installed paths only.
- ``-DENABLE_CONFORMANCE=ON/OFF``
Ensures that certain build options which would result in non-conformant pocl
build stay disabled. Defaults to OFF. Note that this does not quarantee a
fully conformant build of pocl by itself. See :ref:`pocl-conformance` for details.
- ``-DENABLE_{A,L,T,UB}SAN`` - compiles pocl's host code (and tests
+ examples) with various sanitizers. Using more than one sanitizer at
a time is untested. Using together with ``-DENABLE_ICD=OFF -DENABLE_LOADABLE_DRIVERS=OFF``
is highly recommended to avoid issues with loading order of sanitizer libraries.
- ``-DENABLE_LTTNG=ON/OFF`` - compile pocl with LTTng support for tracing. Requires LTTng to be installed
on the host machine.
- ``-DENABLE_{CUDA,TCE,HSA,VULKAN,LEVEL0}=ON/OFF`` - enable various (non-CPU) backends.
Usually requires some additional build dependencies; see their documentation.
- ``-DPOCL_DEBUG_MESSAGES=ON`` - when disabled, pocl is compiled without
debug messages (POCL_DEBUG env var) support.
- ``-DEXAMPLES_USE_GIT_MASTER=ON`` - when enabled, examples (external
programs in ``examples/`` directory) are built from their git branches
(if available), as opposed to default: building from release tars.
- ``-DINTEL_SDE_AVX512=<PATH>``
Path to IntelĀ® Software Development Emulator. When this option is given,
the LLVM host CPU is forcibly set to 'skylake-avx512', and the internal
tests are run through the Emulator. Mostly useful to test AVX512.
- ``-DPOCL_ICD_ABSOLUTE_PATH=OFF``
The pocl.icd file (which the ICD loader uses to load the pocl lib)
by default has a full path to the installed libpocl.so file.
Set this option to OFF and pocl will only put the dynamic library
name into pocl.icd.
Advanced CMake options: using extra flags for the builtin library
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
All of these empty by default. There are hardcoded defaults which may
be overridden by setting these variables (rarely needed).
Extra parameters to llc
EXTRA_HOST_LLC_FLAGS
Extra parameters to clang
EXTRA_HOST_CLANG_FLAGS
Extra parameters to linker (links kernel to shared library
which is then dlopened):
EXTRA_HOST_LD_FLAGS
EXTRA_KERNEL_FLAGS
is applied to all kernel library compilation commands, IOW it's for
language-independent options
EXTRA_KERNEL_{C,CL,CXX}_FLAGS
cmake variables for per-language options for kernel library compilation
.. _pocl-without-llvm:
CMake: LLVM-less build
~~~~~~~~~~~~~~~~~~~~~~~~
You can build a runtime-only pocl to run prebuilt pocl binaries on a CPU driver,
or if you intend to only use PoCL with a driver that does not depend on LLVM.
When building a LLVM-less build with a CPU driver:
* First, build PoCL with LLVM somewhere.
* on that machine, set up env vars required for your device (if any), then
run ``bin/poclcc -l``. That should print something like::
LIST OF DEVICES:
0:
Vendor: AuthenticAMD
Name: pthread-AMD A10-7800 Radeon R7, 12 Compute Cores 4C+8G
Version: OpenCL 2.0 pocl HSTR: pthread-x86_64-unknown-linux-gnu-bdver3
The string after "HSTR:" is the device build hash.
* now build the LLVM-less pocl. You will need the device build hash from
previous step:
``cmake -DENABLE_LLVM=0 -DHOST_DEVICE_BUILD_HASH=<something> ...``
This is required because pocl binaries contain a device hash, and the LLVM-less
pocl needs to know which binaries it can load.
**NOTE**: If you've enabled the :ref:`almaif device <almaif_usage>`
, `HOST_DEVICE_BUILD_HASH` can be set to anything you want. Reason being, fixed function
accelerators don't require compiling OpenCL kernels, therefore, no hash will ever be matched.
Packaging PoCL
--------------------------------------
PoCL supports CPACK. Additionally, these CMake options are of interest:
- ``-DKERNELLIB_HOST_CPU_VARIANTS=distro``
to enable support for most multiple CPU families with runtime detection (cpu driver)
- ``-DPOCL_ICD_ABSOLUTE_PATH=OFF``
to not put absolute path into pocl.icd
- ``-DENABLE_POCL_BUILDING=OFF``
to disable embedding the build path into libpocl
- ``-DSTATIC_LLVM``
to link against Clang & LLVM static component libraries. This may help avoid
symbol clashes with other LLVM libraries linked in the same executable.
Cross-compiling PoCL
---------------------
It's now possible to cross-compile pocl on x86-64 to run on ARM/MIPS/RISC-V and
others. For ARM64 & RISC-V we have CMake Toolchain files accompanied by Dockerfiles
which cross-compile LLVM for the target machine. You can use the same Toolchain files
for cross-compiling PoCL for the target machine. The files can be found in
`tools/docker/LLVM/cross/`, the required preparation is described in each Dockerfile.
Building & running in Docker
-----------------------------
Required storage for standard pocl build is about 1.5 GB per container)
Build & start Pocl container
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* ``cd tools/docker``
* pick a Dockerfile from tools/docker, e.g. Fedora/default
* to build PoCL: ``sudo docker build -t TAG -f Fedora/default .``, where
TAG is a name you choose for the build (must be lowercase)
* to run the tests on the built PoCL: ``sudo docker run -t TAG``
* this will by default use master branch of pocl git; to use a different branch/commit,
run docker build with ``--build-arg GIT_COMMIT=<branch/commit>``
Dockerfiles
~~~~~~~~~~~~~~~~~~~~~~~~~~
Dockerfiles are named according to what they build, or the release they're based on:
* `default`: builds pocl, then runs the internal tests from build dir.
Uses latest release of a distribution, with whatever is the default version of LLVM.
* `distro`: does a distribution-friendly build: enables runtime detection of CPU,
installs pocl into system path, then runs the internal tests
* `<release>`: same as above, except uses specific release and specific LLVM version
(the latest available in that release).
* `conformance`: builds & installs Pocl, then runs conformance test suite
(the shortest version of it)
ARM 32/64bit support
-----------------------------
Status:
PoCL builds (as of Dec 2023) on ODROID XU3 and ODROID C2
and almost all tests pass.
ARM specific build notes:
* DO NOT use Clang/LLVM downloaded directly from llvm.org, they only work
on the distro where they were compiled. Ubuntu LTS these days ships multiple llvm
versions even quite recent ones; get Clang+LLVM from your distro's package
manager or build it yourself.
* LLVM might not recognize your cpu, in which case CMake will complain.
Run cmake with -DLLC_HOST_CPU=<yourcpu>. "yourcpu" must be something LLVM recognizes,
usually it's simply "cortex-aXX" like cortex-a15 etc. You can get the full list by
running `llc -mcpu=help`.
RISC-V support
-----------------------------
In general, RISC-V targets should work easily out of the box with the
newer Clang/LLVMs. Both natively building PoCL in a RISC-V host and
cross-compiling it in a development PC work.
General hints:
* It is advisable to avoid older LLVM and GCC versions
thanks to the much improved RISC-V support in the recent versions.
* LLVM might not recognize your CPU, in which case CMake will complain or
the bitcode library build will fail. To remediate this, add cmake parameter
-DLLC_HOST_CPU=<yourcpu>. "yourcpu" must be something LLVM recognizes,
for example "spacemit-x60". You can get the full list by
running `llc -mtriple=riscv64 -mcpu=help`.
* On RISC-V, PoCL additionally needs to pass a target ABI flag to the compiler to
ensure correct floating point ABI is used. There is some autodetection in PoCL
but it's not perfect, and Clang unfortunately does not always get the defaults
correctly. If you get errors related to linking double-float with soft-float
modules or similar, then most likely PoCL used the incorrect ABI. You can explicitly
specify the ABI to use with the HOST_CPU_TARGET_ABI CMake option (for example 'lp64d').
Board-specific notes are given in the following subsections.
Banana Pi F3
~~~~~~~~~~~~
This board should work out-of-the-box. It was tested with Debian's LLVM 20
packages both with a native and a cross build.
Defining the CMake LLC_HOST_CPU parameter to 'spacemit-x60' should suffice
for the native build after the basic PoCL build prerequisities have been
installed.
For the cross build, you can use the LLVM in your development PC as
long as it supports the RISC-V target. It doesn't have to be the only/default
target, the same LLVM you use for X86_64 development should work. Just
make sure you use the same LLVM version as installed in the development board.
You need the GNU cross compiler to build PoCL, which can be installed
in Debian based distros via package 'g++-14-riscv64-linux-gnu'.
Then, mount the root of the development board file system to some directory
in your disk. For example, mounting using sshfs:
.. code-block:: console
export BOARD_ROOT=$HOME/rv/root_fs
sshfs username@bananapie.host.name:/ $BOARD_ROOT
Then configure PoCL for a cross build and build it.
Provide the paths to the board LLVM and ICD loader so the compiler can link against them.
.. code-block:: console
export RISCV_CPU=spacemit-x60
export LLVM_NATIVE_HOME=$BOARD_ROOT/usr
export ICD_NATIVE_LIB=$BOARD_ROOT/usr/lib/riscv64-linux-gnu
export NATIVE_LIBS=${LLVM_NATIVE_HOME}:${ICD_NATIVE_LIB}
cd pocl_source_dir
mkdir build && cd build
cmake .. -DCMAKE_MAKE_PROGRAM=/usr/bin/make \
-DLLVM_CONFIG=$(which llvm-config-20) \
-DHOST_DEVICE_BUILD_HASH=riscv64-unknown-linux-gnu \
-DCMAKE_TOOLCHAIN_FILE=../ToolchainRISCV.cmake \
-DLLC_TRIPLE=riscv64-unknown-linux-gnu \
-DLLC_HOST_CPU=${RISCV_CPU} \
-DLLVM_HOST_TARGET=riscv64-unknown-linux-gnu \
-DCMAKE_PREFIX_PATH=${NATIVE_LIBS} \
-DCMAKE_INSTALL_PREFIX=${BOARD_ROOT}/local/ \
-DENABLE_ICD=ON \
-DENABLE_LOADABLE_DRIVERS=ON \
-DKERNELLIB_HOST_CPU_VARIANTS=${RISCV_CPU}
make -j5
Now you have a build directory which should be runnable in the board. You can
rsync it to the board and run it there.
One caveat is that if you run tests on board, the tests might refer
to files with full paths. This means that the location of the PoCL source
and build should be exact the same on the board and the development
host. You can use symlinks to workaround troubles with that.
Starfive VisionFive 2
~~~~~~~~~~~~~~~~~~~~~
The RISC-V support has been tested (in Dec 2023) on Starfive VisionFive 2
using an Ubuntu 23.10 preinstalled image with LLVM 17 and GCC 13.2. At
that time, 98% tests pass, 4 tests fail out of 253. In particular,
tests using printf with vector arguments were broken, but likely would
work with the current PoCL version with the rewritted printf.
PowerPC support
-----------------------------
PoCL is used to provide OpenCL on IBM AC922 computers
featuring IBM Power9 processors and Nvidia Tesla V100 GPU
interconnected with NVlink v2 (up to 72 GByte/s).
This has been tested under debian_11 and Ubuntu_20.04.
Officially, Nvidia does not support OpenCL on this platform
and the driver they are shipping is lacking the compiler part.
## Building tricks (as of 04/2023):
The PPC64le features 128-bit vector unit (Altivec/VSX) which
are easily confused by the C++ compiler with the C++ vector
instruction when using the compile option `-std=c++XX`.
The corresponding code usually fails compiling.
The trick is to pass the option `-std=gnu++XX`.
For example, when configuring pocl:
```
cmake .. -DLLVM_CXXFLAGS="-std=gnu++14 ..." -DENABLE_CUDA=ON
```
The full list of options for the CXXFLAGS is obtained with:
```
llvm-config --cxxflags|sed -e "s/std=c/std=gnu/"
```
Later on, the build continues with `make` ...
Note the CUDA option to enable the GPU support on those computers.
.. include:: android.rst
.. include:: windows.rst
|