Atri Bhattacharya
904f092fdf
Prepare for RPM 4.20 OBS-URL: https://build.opensuse.org/request/show/1153351 OBS-URL: https://build.opensuse.org/package/show/science/pocl?expand=0&rev=77
146 lines
4.7 KiB
RPMSpec
146 lines
4.7 KiB
RPMSpec
#
|
|
# spec file for package pocl
|
|
#
|
|
# Copyright (c) 2023 SUSE LLC
|
|
# Copyright (c) 2014 Guillaume GARDET <guillaume@opensuse.org>
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define sover 2
|
|
Name: pocl
|
|
Version: 3.1
|
|
Release: 0
|
|
Summary: Portable Computing Language - an OpenCL implementation
|
|
# The whole code is under MIT
|
|
# except include/utlist.h which is under BSD (and unbundled)
|
|
License: MIT
|
|
Group: Development/Tools/Other
|
|
URL: http://portablecl.org/
|
|
Source0: https://github.com/pocl/pocl/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
|
Source99: pocl-rpmlintrc
|
|
Patch0: link_against_libclang-cpp_so.patch
|
|
# PATCH-FIX-UPSTREAM - pocl-llvm16.patch - enables support for LLVM 16
|
|
# https://github.com/pocl/pocl/commit/20d1bfa9bfd301964f7b2fc6d7f4589dd04e1b5c
|
|
# https://github.com/pocl/pocl/commit/bf50f0052e4248cd1acfaaa8da95c5e4ca52f815
|
|
Patch1: pocl-llvm16.patch
|
|
BuildRequires: cmake
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: ninja
|
|
BuildRequires: ocl-icd-devel
|
|
BuildRequires: opencl-headers
|
|
BuildRequires: pkgconfig
|
|
%if 0%{?suse_version} <= 1500 && 0%{?sle_version} > 150500
|
|
BuildRequires: ((clang-devel >= 6.0.0 with clang-devel < 17) or clang15-devel)
|
|
%else
|
|
BuildRequires: ((clang-devel >= 6.0.0 with clang-devel < 17) or clang16-devel)
|
|
%endif
|
|
BuildRequires: pkgconfig(hwloc)
|
|
# PPC has limited support/testing from upstream
|
|
# s390(x) is also not supported, so use ExclusiveArch
|
|
ExclusiveArch: %{ix86} x86_64 %{arm} aarch64 riscv64
|
|
|
|
%description
|
|
Portable Computing Language (pocl) is an implementation of the OpenCL standard
|
|
which can be adapted for new targets and devices, both for homogeneous CPU and
|
|
heterogenous GPUs/accelerators.
|
|
|
|
pocl uses Clang as an OpenCL C frontend and LLVM for the kernel compiler
|
|
implementation, and as a portability layer. If your desired target has an LLVM
|
|
backend, it should be possible to get OpenCL support by using pocl.
|
|
|
|
pocl yields improved performance portability by using a kernel compiler that
|
|
can generate multi-work-item work-group functions that exploit various types of
|
|
parallel hardware resources, such as VLIW, superscalar, SIMD, SIMT, multicore
|
|
and multithread.
|
|
|
|
%package -n libpocl%{sover}
|
|
Summary: Shared Library part of pocl
|
|
Group: System/Libraries
|
|
|
|
%description -n libpocl%{sover}
|
|
Portable Computing Language (pocl) is an implementation of the OpenCL standard
|
|
which can be adapted for new targets and devices, both for homogeneous CPU and
|
|
heterogenous GPUs/accelerators.
|
|
|
|
This subpackage contains the shared library part of pocl.
|
|
|
|
%package devel
|
|
Summary: Development files for the Portable Computing Language
|
|
Group: Development/Languages/Other
|
|
Requires: %{name} = %{version}
|
|
Requires: libpocl%{sover} = %{version}
|
|
Requires: opencl-headers >= 2.2
|
|
|
|
%description devel
|
|
Portable Computing Language (pocl) is an implementation of the OpenCL standard
|
|
which can be adapted for new targets and devices, both for homogeneous CPU and
|
|
heterogenous GPUs/accelerators.
|
|
|
|
This subpackage provides the development files needed for pocl.
|
|
|
|
%prep
|
|
%autosetup -p1
|
|
|
|
%build
|
|
%define __builder ninja
|
|
%cmake \
|
|
-DENABLE_CUDA=0 \
|
|
-DENABLE_ICD=ON \
|
|
-DPOCL_INSTALL_ICD_VENDORDIR=%{_datadir}/OpenCL/vendors \
|
|
%ifarch %{ix86} x86_64
|
|
-DKERNELLIB_HOST_CPU_VARIANTS=distro \
|
|
%endif
|
|
%ifarch %{arm}
|
|
-DLLC_HOST_CPU=cortex-a9 \
|
|
%endif
|
|
%ifarch aarch64
|
|
-DLLC_HOST_CPU=cortex-a53 \
|
|
%endif
|
|
%ifarch riscv64
|
|
-DLLC_HOST_CPU=generic-rv64 \
|
|
%endif
|
|
%if 0%{?suse_version} <= 1500 && 0%{?sle_version} <= 150300
|
|
-DCMAKE_INSTALL_LIBDIR:PATH=%{_lib} \
|
|
%endif
|
|
-DWITH_LLVM_CONFIG=%{_bindir}/llvm-config
|
|
|
|
%cmake_build
|
|
|
|
%install
|
|
%cmake_install
|
|
|
|
%post -n libpocl%{sover} -p /sbin/ldconfig
|
|
%postun -n libpocl%{sover} -p /sbin/ldconfig
|
|
|
|
%files
|
|
%doc CHANGES README.* doc/sphinx/source/*.rst
|
|
%license LICENSE
|
|
%dir %{_datadir}/OpenCL/
|
|
%dir %{_datadir}/OpenCL/vendors
|
|
%{_datadir}/OpenCL/vendors/pocl.icd
|
|
%{_bindir}/poclcc
|
|
%dir %{_libdir}/pocl/
|
|
%{_libdir}/pocl/libpocl-devices-basic.so
|
|
%{_libdir}/pocl/libpocl-devices-pthread.so
|
|
%{_datadir}/pocl/
|
|
|
|
%files -n libpocl%{sover}
|
|
%{_libdir}/libpocl.so.%{sover}*
|
|
|
|
%files devel
|
|
%{_libdir}/libpocl.so
|
|
%{_libdir}/pkgconfig/pocl.pc
|
|
|
|
%changelog
|