Bug#864639: marked as done (nvidia-kernel-dkms: please support parallel builds)

2017-08-12 Thread Debian Bug Tracking System
Your message dated Sat, 12 Aug 2017 16:47:08 +
with message-id 
and subject line Bug#864639: fixed in nvidia-graphics-drivers 375.82-1~deb9u1
has caused the Debian Bug report #864639,
regarding nvidia-kernel-dkms: please support parallel builds
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
864639: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=864639
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: nvidia-kernel-dkms
Version: 375.66-1
Severity: wishlist
Tags: upstream

Hi,

the nvidia driver consists of several files that can be compiled in
parallel, but the dkms.conf file specifically forces a single-threaded build
even if dkms would pass make(1) a -j flag. (Also, while I'm sure there once
was a reason for setting CCACHE_DISABLE=1, does it still apply?)

On my system, -j8 results in a dramatic improvement (build time decreases
from about 7 minutes to about 1 minute).

In dkms.conf, I changed

MAKE[0]="unset ARCH; env CCACHE_DISABLE=1 NV_VERBOSE=1 \
make modules KERNEL_UNAME=${kernelver}"

to

MAKE[0]="unset ARCH; env CCACHE_DISABLE=1 NV_VERBOSE=1 \
make -j8 modules KERNEL_UNAME=${kernelver}"

and got a nice speed boost (which adds up if you have several kernels
installed).

I haven't tested it, but maybe the following would work:

[ -x /usr/bin/nproc ] && JOBS="-j$(nproc)"
MAKE[0]="unset ARCH; env CCACHE_DISABLE=1 NV_VERBOSE=1 \
make $JOBS modules KERNEL_UNAME=${kernelver}"

Andras

-- 
If everyone needs to think outside the box, maybe the box needs fixing.
--- End Message ---
--- Begin Message ---
Source: nvidia-graphics-drivers
Source-Version: 375.82-1~deb9u1

We believe that the bug you reported is fixed in the latest version of
nvidia-graphics-drivers, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 864...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Andreas Beckmann  (supplier of updated nvidia-graphics-drivers 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 09 Aug 2017 05:03:52 +0200
Source: nvidia-graphics-drivers
Binary: nvidia-driver nvidia-driver-bin nvidia-driver-libs 
nvidia-driver-libs-i386 xserver-xorg-video-nvidia nvidia-legacy-check 
libgldispatch0-nvidia libopengl0-glvnd-nvidia libglx0-glvnd-nvidia 
libglx-nvidia0 libgl1-glvnd-nvidia-glx libgl1-nvidia-glvnd-glx 
libgl1-nvidia-glx libnvidia-glcore libegl1-glvnd-nvidia libegl1-nvidia 
libegl-nvidia0 libgles1-glvnd-nvidia libgles1-nvidia libgles-nvidia1 
libgles2-glvnd-nvidia libgles2-nvidia libgles-nvidia2 libnvidia-eglcore 
nvidia-egl-common nvidia-egl-icd libnvidia-egl-wayland nvidia-vulkan-common 
nvidia-vulkan-icd libnvidia-cfg1 nvidia-alternative nvidia-kernel-support 
nvidia-kernel-dkms nvidia-kernel-source nvidia-vdpau-driver nvidia-smi 
nvidia-cuda-mps libcuda1 libcuda1-i386 libnvidia-compiler 
libnvidia-fatbinaryloader libnvidia-ptxjitcompiler libnvcuvid1 
libnvidia-encode1 libnvidia-ifr1 libnvidia-fbc1 libnvidia-ml1 
nvidia-opencl-common nvidia-opencl-icd nvidia-libopencl1 nvidia-detect
Architecture: source
Version: 375.82-1~deb9u1
Distribution: stretch
Urgency: high
Maintainer: Debian NVIDIA Maintainers 
Changed-By: Andreas Beckmann 
Description:
 libcuda1   - NVIDIA CUDA Driver Library${nvidia:LegacyDesc}
 libcuda1-i386 - NVIDIA CUDA 32-bit runtime library${nvidia:LegacyDesc}
 libegl-nvidia0 - NVIDIA binary EGL library${nvidia:LegacyDesc}
 libegl1-glvnd-nvidia - Vendor neutral GL dispatch library -- libEGL
 libegl1-nvidia - NVIDIA binary EGL library (non-GLVND 
variant)${nvidia:LegacyDesc}
 libgl1-glvnd-nvidia-glx - Vendor neutral GL dispatch library -- libGL
 libgl1-nvidia-glvnd-glx - NVIDIA binary OpenGL/GLX library (GLVND 
variant)${nvidia:LegacyDe
 libgl1-nvidia-glx - NVIDIA binary OpenGL/GLX library (non-GLVND 
variant)${nvidia:Lega
 libgldispatch0-nvidia - Vendor neutral GL dispatch library -- libGLdispatch
 libgles-nvidia1 - NVIDIA binary OpenGL|ES 1.x library${nvidia:LegacyDesc}
 libgles-nvidia2 - NVIDIA binary OpenGL|ES 2.x library${nvidia:LegacyDesc}
 

Bug#864639: marked as done (nvidia-kernel-dkms: please support parallel builds)

2017-07-26 Thread Debian Bug Tracking System
Your message dated Wed, 26 Jul 2017 21:19:24 +
with message-id 
and subject line Bug#864639: fixed in nvidia-graphics-drivers 375.82-1
has caused the Debian Bug report #864639,
regarding nvidia-kernel-dkms: please support parallel builds
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
864639: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=864639
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: nvidia-kernel-dkms
Version: 375.66-1
Severity: wishlist
Tags: upstream

Hi,

the nvidia driver consists of several files that can be compiled in
parallel, but the dkms.conf file specifically forces a single-threaded build
even if dkms would pass make(1) a -j flag. (Also, while I'm sure there once
was a reason for setting CCACHE_DISABLE=1, does it still apply?)

On my system, -j8 results in a dramatic improvement (build time decreases
from about 7 minutes to about 1 minute).

In dkms.conf, I changed

MAKE[0]="unset ARCH; env CCACHE_DISABLE=1 NV_VERBOSE=1 \
make modules KERNEL_UNAME=${kernelver}"

to

MAKE[0]="unset ARCH; env CCACHE_DISABLE=1 NV_VERBOSE=1 \
make -j8 modules KERNEL_UNAME=${kernelver}"

and got a nice speed boost (which adds up if you have several kernels
installed).

I haven't tested it, but maybe the following would work:

[ -x /usr/bin/nproc ] && JOBS="-j$(nproc)"
MAKE[0]="unset ARCH; env CCACHE_DISABLE=1 NV_VERBOSE=1 \
make $JOBS modules KERNEL_UNAME=${kernelver}"

Andras

-- 
If everyone needs to think outside the box, maybe the box needs fixing.
--- End Message ---
--- Begin Message ---
Source: nvidia-graphics-drivers
Source-Version: 375.82-1

We believe that the bug you reported is fixed in the latest version of
nvidia-graphics-drivers, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 864...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Luca Boccassi  (supplier of updated 
nvidia-graphics-drivers package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 26 Jul 2017 21:42:00 +0100
Source: nvidia-graphics-drivers
Binary: nvidia-driver nvidia-driver-bin nvidia-driver-libs 
nvidia-driver-libs-i386 xserver-xorg-video-nvidia nvidia-legacy-check 
libgldispatch0-nvidia libopengl0-glvnd-nvidia libglx0-glvnd-nvidia 
libglx-nvidia0 libgl1-glvnd-nvidia-glx libgl1-nvidia-glvnd-glx 
libgl1-nvidia-glx libnvidia-glcore libegl1-glvnd-nvidia libegl1-nvidia 
libegl-nvidia0 libgles1-glvnd-nvidia libgles1-nvidia libgles-nvidia1 
libgles2-glvnd-nvidia libgles2-nvidia libgles-nvidia2 libnvidia-eglcore 
nvidia-egl-common nvidia-egl-icd libnvidia-egl-wayland nvidia-vulkan-common 
nvidia-vulkan-icd libnvidia-cfg1 nvidia-alternative nvidia-kernel-support 
nvidia-kernel-dkms nvidia-kernel-source nvidia-vdpau-driver nvidia-smi 
nvidia-cuda-mps libcuda1 libcuda1-i386 libnvidia-compiler 
libnvidia-fatbinaryloader libnvidia-ptxjitcompiler libnvcuvid1 
libnvidia-encode1 libnvidia-ifr1 libnvidia-fbc1 libnvidia-ml1 
nvidia-opencl-common nvidia-opencl-icd nvidia-libopencl1 nvidia-detect
Architecture: source
Version: 375.82-1
Distribution: unstable
Urgency: high
Maintainer: Debian NVIDIA Maintainers 
Changed-By: Luca Boccassi 
Description:
 libcuda1   - NVIDIA CUDA Driver Library${nvidia:LegacyDesc}
 libcuda1-i386 - NVIDIA CUDA 32-bit runtime library${nvidia:LegacyDesc}
 libegl-nvidia0 - NVIDIA binary EGL library${nvidia:LegacyDesc}
 libegl1-glvnd-nvidia - Vendor neutral GL dispatch library -- libEGL
 libegl1-nvidia - NVIDIA binary EGL library (non-GLVND 
variant)${nvidia:LegacyDesc}
 libgl1-glvnd-nvidia-glx - Vendor neutral GL dispatch library -- libGL
 libgl1-nvidia-glvnd-glx - NVIDIA binary OpenGL/GLX library (GLVND 
variant)${nvidia:LegacyDe
 libgl1-nvidia-glx - NVIDIA binary OpenGL/GLX library (non-GLVND 
variant)${nvidia:Lega
 libgldispatch0-nvidia - Vendor neutral GL dispatch library -- libGLdispatch
 libgles-nvidia1 - NVIDIA binary OpenGL|ES 1.x library${nvidia:LegacyDesc}
 libgles-nvidia2 - NVIDIA binary OpenGL|ES 2.x library${nvidia:LegacyDesc}
 

Bug#864639: marked as done (nvidia-kernel-dkms: please support parallel builds)

2017-07-01 Thread Debian Bug Tracking System
Your message dated Sat, 01 Jul 2017 23:23:38 +
with message-id 
and subject line Bug#864639: fixed in nvidia-graphics-drivers-legacy-340xx 
340.102-2
has caused the Debian Bug report #864639,
regarding nvidia-kernel-dkms: please support parallel builds
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
864639: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=864639
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: nvidia-kernel-dkms
Version: 375.66-1
Severity: wishlist
Tags: upstream

Hi,

the nvidia driver consists of several files that can be compiled in
parallel, but the dkms.conf file specifically forces a single-threaded build
even if dkms would pass make(1) a -j flag. (Also, while I'm sure there once
was a reason for setting CCACHE_DISABLE=1, does it still apply?)

On my system, -j8 results in a dramatic improvement (build time decreases
from about 7 minutes to about 1 minute).

In dkms.conf, I changed

MAKE[0]="unset ARCH; env CCACHE_DISABLE=1 NV_VERBOSE=1 \
make modules KERNEL_UNAME=${kernelver}"

to

MAKE[0]="unset ARCH; env CCACHE_DISABLE=1 NV_VERBOSE=1 \
make -j8 modules KERNEL_UNAME=${kernelver}"

and got a nice speed boost (which adds up if you have several kernels
installed).

I haven't tested it, but maybe the following would work:

[ -x /usr/bin/nproc ] && JOBS="-j$(nproc)"
MAKE[0]="unset ARCH; env CCACHE_DISABLE=1 NV_VERBOSE=1 \
make $JOBS modules KERNEL_UNAME=${kernelver}"

Andras

-- 
If everyone needs to think outside the box, maybe the box needs fixing.
--- End Message ---
--- Begin Message ---
Source: nvidia-graphics-drivers-legacy-340xx
Source-Version: 340.102-2

We believe that the bug you reported is fixed in the latest version of
nvidia-graphics-drivers-legacy-340xx, which is due to be installed in the 
Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 864...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Andreas Beckmann  (supplier of updated 
nvidia-graphics-drivers-legacy-340xx package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 02 Jul 2017 00:26:32 +0200
Source: nvidia-graphics-drivers-legacy-340xx
Binary: nvidia-legacy-340xx-driver nvidia-legacy-340xx-driver-bin 
nvidia-legacy-340xx-driver-libs nvidia-legacy-340xx-driver-libs-i386 
xserver-xorg-video-nvidia-legacy-340xx libgl1-nvidia-legacy-340xx-glx 
libnvidia-legacy-340xx-glcore libegl1-nvidia-legacy-340xx 
libgles1-nvidia-legacy-340xx libgles2-nvidia-legacy-340xx 
libnvidia-legacy-340xx-eglcore libnvidia-legacy-340xx-cfg1 
nvidia-legacy-340xx-alternative nvidia-legacy-340xx-kernel-support 
nvidia-legacy-340xx-kernel-dkms nvidia-legacy-340xx-kernel-source 
nvidia-legacy-340xx-vdpau-driver nvidia-legacy-340xx-smi 
libnvidia-legacy-340xx-cuda1 libnvidia-legacy-340xx-cuda1-i386 
libnvidia-legacy-340xx-compiler libnvidia-legacy-340xx-nvcuvid1 
libnvidia-legacy-340xx-encode1 libnvidia-legacy-340xx-ifr1 
libnvidia-legacy-340xx-fbc1 libnvidia-legacy-340xx-ml1 
nvidia-legacy-340xx-opencl-icd
Architecture: source
Version: 340.102-2
Distribution: unstable
Urgency: medium
Maintainer: Debian NVIDIA Maintainers 
Changed-By: Andreas Beckmann 
Description:
 libegl1-nvidia-legacy-340xx - NVIDIA binary EGL library${nvidia:LegacyDesc}
 libgl1-nvidia-legacy-340xx-glx - NVIDIA binary OpenGL/GLX 
library${nvidia:LegacyDesc}
 libgles1-nvidia-legacy-340xx - NVIDIA binary OpenGL|ES 1.x 
library${nvidia:LegacyDesc}
 libgles2-nvidia-legacy-340xx - NVIDIA binary OpenGL|ES 2.x 
library${nvidia:LegacyDesc}
 libnvidia-legacy-340xx-cfg1 - NVIDIA binary OpenGL/GLX configuration 
library${nvidia:LegacyDesc
 libnvidia-legacy-340xx-compiler - NVIDIA runtime compiler 
library${nvidia:LegacyDesc}
 libnvidia-legacy-340xx-cuda1 - NVIDIA CUDA Driver Library${nvidia:LegacyDesc}
 libnvidia-legacy-340xx-cuda1-i386 - NVIDIA CUDA 32-bit runtime 
library${nvidia:LegacyDesc}
 libnvidia-legacy-340xx-eglcore - NVIDIA binary EGL core 
libraries${nvidia:LegacyDesc}
 libnvidia-legacy-340xx-encode1 - NVENC Video Encoding runtime 
library${nvidia:LegacyDesc}