source: x/installing/intel-media-driver.xml@ 47c79b5

12.0 12.1 12.2 gimp3 kea ken/TL2024 ken/tuningfonts lazarus plabs/newcss python3.11 rahul/power-profiles-daemon renodr/vulkan-addition trunk xry111/for-12.3 xry111/llvm18 xry111/spidermonkey128 xry111/xf86-video-removal
Last change on this file since 47c79b5 was 88cf4eb, checked in by Douglas R. Reno <renodr@…>, 15 months ago

Update to intel-media-driver-23.2.4

  • Property mode set to 100644
File size: 6.5 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY intel-media-driver-version "23.2.4">
8
9 <!ENTITY intel-media-driver-download-http "https://github.com/intel/media-driver/archive/refs/tags/intel-media-&intel-media-driver-version;.tar.gz">
10 <!ENTITY intel-media-driver-download-ftp " ">
11 <!ENTITY intel-media-driver-md5sum "68ded8a286c01c1c70fd73925279d12b">
12 <!ENTITY intel-media-driver-size "27 MB">
13 <!ENTITY intel-media-driver-buildsize "2.4 GB (358 MB installed)">
14 <!ENTITY intel-media-driver-time "10 SBU (with parallelism=4)">
15
16]>
17
18 <sect2 id="intel-media-driver" xreflabel="intel-media-driver-&intel-media-driver-version;">
19
20 <sect2info>
21 <date>$Date$</date>
22 </sect2info>
23
24 <title>intel-media-driver-&intel-media-driver-version;</title>
25
26 <indexterm zone="intel-media-driver">
27 <primary sortas="a-intel-media-driver">intel-media-driver</primary>
28 </indexterm>
29
30 <sect3 role="package">
31 <title>Introduction to intel-media-driver</title>
32
33 <para>
34 The <application>intel-media-driver</application> package provides a
35 VA API driver for Intel GPUs that are provided with Broadwell CPUs and
36 higher. This includes support for a variety of codecs.
37 </para>
38
39 &lfs113_checked;
40
41 <bridgehead renderas="sect4">Package Information</bridgehead>
42 <itemizedlist spacing="compact">
43 <listitem>
44 <para>
45 Download (HTTP): <ulink url="&intel-media-driver-download-http;"/>
46 </para>
47 </listitem>
48 <listitem>
49 <para>
50 Download (FTP): <ulink url="&intel-media-driver-download-ftp;"/>
51 </para>
52 </listitem>
53 <listitem>
54 <para>
55 Download MD5 sum: &intel-media-driver-md5sum;
56 </para>
57 </listitem>
58 <listitem>
59 <para>
60 Download size: &intel-media-driver-size;
61 </para>
62 </listitem>
63 <listitem>
64 <para>
65 Estimated disk space required: &intel-media-driver-buildsize;
66 </para>
67 </listitem>
68 <listitem>
69 <para>
70 Estimated build time: &intel-media-driver-time;
71 </para>
72 </listitem>
73 </itemizedlist>
74
75<!--
76 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
77 <itemizedlist spacing="compact">
78 <listitem>
79 <para>
80 Required patch:
81 <ulink url="&patch-root;/intel-media-driver-&intel-media-driver-version;-upstream_fixes-1.patch"/>
82 </para>
83 </listitem>
84 </itemizedlist>
85-->
86
87 <note>
88 <para>
89 The tarball <filename>intel-media-&intel-media-driver-version;.tar.gz</filename>
90 will extract to the directory
91 <filename class="directory">media-driver-intel-media-&intel-media-driver-version;</filename>.
92 </para>
93 </note>
94
95 <bridgehead renderas="sect4">intel-media-driver Dependencies</bridgehead>
96
97 <bridgehead renderas="sect5">Required</bridgehead>
98 <para role="required">
99 <xref linkend="cmake"/>,
100 <xref linkend="intel-gmmlib"/>, and
101 <xref linkend="libva"/>
102 </para>
103
104 </sect3>
105
106 <sect3 role="installation">
107 <title>Installation of intel-media-driver</title>
108
109 <note>
110 <para>
111 This package takes a long time to build because it compiles code
112 specific to each individual generation of Intel GPUs and for a
113 variety of media codecs.
114 </para>
115
116 <!-- This reduce the size of iHD_drv_video.so from 319M to 157M
117 for me. -->
118 <para>
119 If you know the model of your Intel GPU, you can pass the
120 <option>-D{GEN{8,9,10,11,12},MTL}=OFF</option> option to the
121 <command>cmake</command> command but leaving the option for your
122 GPU out. Note that the <quote>GEN</quote> number here is the
123 generation of the GPU, not the CPU. For example, with an Intel
124 Core i7-1065G7 CPU shipping a 11th-generation Intel GPU, the
125 <option>-D{GEN{8,9,10,12},MTL}=OFF</option> option can be used
126 so the code specific to the other generations of Intel GPUs won't
127 be built.
128 </para>
129 </note>
130
131<!--
132 <para>
133 First, fix a few build failures with GCC-13:
134 </para>
135
136 <screen><userinput remap="pre">patch -Np1 -i ../intel-media-driver-&intel-media-driver-version;-upstream_fixes-1.patch</userinput></screen>
137-->
138
139 <para>
140 Install <application>intel-media-driver</application> by running the
141 following commands:
142 </para>
143
144<screen><userinput>mkdir build &amp;&amp;
145cd build &amp;&amp;
146
147cmake -DCMAKE_INSTALL_PREFIX=$XORG_PREFIX \
148 -DINSTALL_DRIVER_SYSCONF=OFF \
149 -DBUILD_TYPE=Release \
150 -Wno-dev .. &amp;&amp;
151make</userinput></screen>
152
153 <para>
154 This package does not come with a test suite.
155 </para>
156
157 <para>
158 Now, as the <systemitem class="username">root</systemitem> user:
159 </para>
160
161<screen role="root"><userinput>make install</userinput></screen>
162
163 </sect3>
164
165 <sect3 role="content">
166 <title>Contents</title>
167
168 <segmentedlist>
169 <segtitle>Installed Programs</segtitle>
170 <segtitle>Installed Libraries</segtitle>
171 <segtitle>Installed Drivers</segtitle>
172 <segtitle>Installed Directories</segtitle>
173
174 <seglistitem>
175 <seg>
176 None
177 </seg>
178 <seg>
179 libigfxcmrt.so
180 </seg>
181 <seg>
182 iHD_drv_video.so
183 </seg>
184 <seg>
185 /usr/include/igfxcmrt
186 </seg>
187 </seglistitem>
188 </segmentedlist>
189
190 <variablelist>
191 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
192 <?dbfo list-presentation="list"?>
193 <?dbhtml list-presentation="table"?>
194
195 <varlistentry id="libigfxcmrt">
196 <term><filename class="libraryfile">libigfxcmrt.so</filename></term>
197 <listitem>
198 <para>
199 provides API functions which allow running GPU kernels on the
200 render engine
201 </para>
202 <indexterm zone="intel-media-driver libigfxcmrt">
203 <primary sortas="c-libigfxcmrt">libigfxcmrt.so</primary>
204 </indexterm>
205 </listitem>
206 </varlistentry>
207
208 </variablelist>
209
210 </sect3>
211
212 </sect2>
Note: See TracBrowser for help on using the repository browser.