-
Notifications
You must be signed in to change notification settings - Fork 837
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from lukeyeager/deb
Deb packaging
- Loading branch information
Showing
11 changed files
with
72 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
/*.debhelper.log | ||
/*.debhelper | ||
/*.substvars | ||
/tmp/ | ||
/files | ||
/libnccl1/ | ||
/libnccl-dev/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
nccl (1.0.2-2) trusty; urgency=medium | ||
|
||
* Packages are now libnccl1 and libnccl-dev | ||
|
||
-- Luke Yeager <[email protected]> Fri, 18 Dec 2015 13:45:16 -0800 | ||
|
||
nccl (1.0.2) trusty; urgency=medium | ||
|
||
* Merged latest upstream changes. | ||
|
||
-- Boris Fomitchev <[email protected]> Tue, 15 Dec 2015 14:52:01 -0800 | ||
|
||
nccl (1.0.1) trusty; urgency=medium | ||
|
||
* Initial release. | ||
|
||
-- Boris Fomitchev <[email protected]> Mon, 14 Dec 2015 09:52:01 -0800 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
Source: nccl | ||
Section: universe/libs | ||
Maintainer: Boris Fomitchev <[email protected]> | ||
Priority: optional | ||
Build-depends: debhelper(>=9), cuda-toolkit-7-0, | ||
cuda-curand-dev-7-0, cuda-cublas-dev-7-0, cuda-cudart-dev-7-0, cuda-ld-conf-7-0 | ||
Standards-Version: 3.9.5 | ||
|
||
Package: libnccl1 | ||
Section: universe/libs | ||
Architecture: amd64 | ||
Depends: ${misc:Depends}, ${shlibs:Depends}, | ||
cuda-curand-7-0, cuda-cublas-7-0, cuda-cudart-7-0, cuda-ld-conf-7-0 | ||
Description: NVIDIA Communication Collectives Library (NCCL) Runtime | ||
NCCL (pronounced "Nickel") is a stand-alone library of standard collective | ||
communication routines,such as all-gather, reduce, broadcast, etc., that have | ||
been optimized to achieve high bandwidth over PCIe. NCCL supports up to eight | ||
GPUs and can be used in either single- or multi-process (e.g., MPI) | ||
applications. | ||
|
||
Package: libnccl-dev | ||
Section: universe/libdevel | ||
Architecture: amd64 | ||
Depends: ${misc:Depends}, ${shlibs:Depends}, libnccl1 (= ${binary:Version}) | ||
Description: NVIDIA Communication Collectives Library (NCCL) Development Files | ||
NCCL (pronounced "Nickel") is a stand-alone library of standard collective | ||
communication routines,such as all-gather, reduce, broadcast, etc., that have | ||
been optimized to achieve high bandwidth over PCIe. NCCL supports up to eight | ||
GPUs and can be used in either single- or multi-process (e.g., MPI) | ||
applications. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../LICENSE.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
include/nccl.h usr/include | ||
lib/libnccl.so usr/lib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
lib/libnccl.so.1 usr/lib | ||
lib/libnccl.so.1.0.2 usr/lib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/usr/bin/make -f | ||
|
||
%: | ||
dh $@ --parallel | ||
|
||
override_dh_auto_install: | ||
PREFIX=debian/tmp dh_auto_install | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
libcudart 7.0 cuda-cudart-7-0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3.0 (native) |