]> git.pld-linux.org Git - packages/clAmdBlas.git/blob - clAmdBlas.spec
- new; distribution restricted
[packages/clAmdBlas.git] / clAmdBlas.spec
1 Summary:        AMD Accelerated Parallel Processing BLAS Library
2 Summary(pl.UTF-8):      Akcelerowana, zrównoleglona wersja biblioteki BLAS firmy AMD
3 Name:           clAmdBlas
4 Version:        1.8.291
5 Release:        1
6 License:        AMD EULA
7 Group:          Libraries
8 # download using form at URL
9 Source0:        %{name}%{version}.tar.gz
10 # NoSource0-md5:        ad5d5cfbdd8253c9b2b57f3225bbb42d
11 NoSource:       0
12 URL:            http://developer.amd.com/tools/heterogeneous-computing/amd-accelerated-parallel-processing-math-libraries/
13 ExclusiveArch:  %{ix86} %{x8664}
14 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
15
16 %description
17 AMD Accelerated Parallel Processing Math Libraries are software
18 libraries containing FFT and BLAS functions written in OpenCL and
19 designed to run on AMD GPUs. The libraries support running on CPU
20 devices to facilitate debugging and multicore programming.
21
22 This package contains BLAS library with complete set of L2 & L3
23 routines for BLAS.
24
25 %description -l pl.UTF-8
26 AMD APPML (Accelerated Parallel Processing Math Libraries -
27 akcelerowane, zrównoleglone biblioteki matematyczne) to biblioteki
28 programowe zawierające funkcje FFT i BLAS napisane z użyciem OpenCL i
29 zaprojektowane do uruchamiania na procesorach graficznych (GPU) firmy
30 AMD. Biblioteki obsługują uruchamianie na CPU w celu ułatwienia
31 diagnostyki i programowania wielordzeniowego.
32
33 Ten pakiet zawiera bibliotekę BLAS z pełnym zbiorem procedur BLAS L2 i
34 L3.
35
36 %package devel
37 Summary:        Header files for OpenCL AMD BLAS library
38 Summary(pl.UTF-8):      Pliki nagłówkowe biblioteki OpenCL AMD BLAS
39 Group:          Development/Libraries
40 Requires:       %{name} = %{version}-%{release}
41 Requires:       OpenCL-devel
42
43 %description devel
44 Header files for OpenCL AMD BLAS library.
45
46 %description devel -l pl.UTF-8
47 Pliki nagłówkowe biblioteki OpenCL AMD BLAS.
48
49 %prep
50 %setup -q -c
51
52 tar xf %{name}-%{version}-Linux.tar.gz
53
54 %install
55 rm -rf $RPM_BUILD_ROOT
56 install -d $RPM_BUILD_ROOT{%{_libdir},%{_includedir}}
57
58 cp -p include/*.h $RPM_BUILD_ROOT%{_includedir}
59
60 %ifarch %{ix86}
61 cp -dp lib32/lib*.so* $RPM_BUILD_ROOT%{_libdir}
62 %endif
63
64 %ifarch %{x8664}
65 cp -dp lib64/lib*.so* $RPM_BUILD_ROOT%{_libdir}
66 %endif
67
68 %clean
69 rm -rf $RPM_BUILD_ROOT
70
71 %post   -p /sbin/ldconfig
72 %postun -p /sbin/ldconfig
73
74 %files
75 %defattr(644,root,root,755)
76 %doc clAmdBlas-{EULA,README}.txt
77 %attr(755,root,root) %{_libdir}/libclAmdBlas.so.*.*.*
78 %attr(755,root,root) %ghost %{_libdir}/libclAmdBlas.so.1
79
80 %files devel
81 %defattr(644,root,root,755)
82 %doc doc/clAmdBlas.refman.pdf
83 %attr(755,root,root) %{_libdir}/libclAmdBlas.so
84 %{_includedir}/clAmdBlas*.h
This page took 0.258621 seconds and 3 git commands to generate.