Skip to content

Commit fca4d15

Browse files
authored
Merge pull request #44 from hershpa/patch-11
docker: Use all available cores to build pmt
2 parents 61bc815 + 9fb1430 commit fca4d15

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docker/intel-dgpu-driver.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ ARG KERNEL_FULL_VERSION
2020
WORKDIR /build
2121

2222
# Building cse(MEI) driver. We are disabling this for now as it is not currently used.
23-
# RUN git clone -b ${CSE_RELEASE} --single-branch https://github.com/intel-gpu/intel-gpu-cse-backports.git && cd intel-gpu-cse-backports && export OS_TYPE=rhel_8 && export OS_VERSION="8.6" && make modules && make modules_install
23+
# RUN git clone -b ${CSE_RELEASE} --single-branch https://github.com/intel-gpu/intel-gpu-cse-backports.git && cd intel-gpu-cse-backports && export OS_TYPE=rhel_8 && export OS_VERSION="8.6" && make -j $(nproc) modules && make modules_install
2424

2525
# Building pmt(VSEC) driver
2626
RUN git clone -b ${PMT_RELEASE} --single-branch https://github.com/intel-gpu/intel-gpu-pmt-backports.git \
2727
&& cd intel-gpu-pmt-backports \
2828
&& install -D LICENSE /licenses/pmt/LICENSE \
2929
&& export OS_TYPE=rhel_8 && export OS_VERSION="8.6" \
30-
&& make modules && make modules_install
30+
&& make -j $(nproc) modules && make modules_install
3131

3232
# Building i915 driver
3333
RUN git clone -b ${I915_RELEASE} --single-branch https://github.com/intel-gpu/intel-gpu-i915-backports.git \

0 commit comments

Comments
 (0)