1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
Source: libcudacxx
Section: libdevel
Priority: optional
Maintainer: Debian NVIDIA Maintainers <pkg-nvidia-devel@lists.alioth.debian.org>
Uploaders:
Andreas Beckmann <anbe@debian.org>,
Build-Depends:
debhelper-compat (= 13),
cmake,
python3,
Rules-Requires-Root: no
Standards-Version: 4.6.2
Homepage: https://github.com/NVIDIA/libcudacxx
Vcs-Browser: https://salsa.debian.org/nvidia-team/libcudacxx
Vcs-Git: https://salsa.debian.org/nvidia-team/libcudacxx.git
Package: libcu++-dev
Architecture: all
Multi-Arch: foreign
Depends:
${misc:Depends},
Breaks:
nvidia-cuda-dev (<< 11.6.2-5~),
nvidia-cuda-dev (= 11.7.0-1),
nvidia-cuda-dev (= 11.7.1-1),
Replaces:
nvidia-cuda-dev (<< 11.6.2-5~),
nvidia-cuda-dev (= 11.7.0-1),
nvidia-cuda-dev (= 11.7.1-1),
Description: NVIDIA C++ Standard Library
libcu++ provides a heterogeneous implementation of the C++ Standard Library
that can be used in and between CPU and GPU code.
.
Using libcu++ is as simple as using the C++ Standard Library.
All that is needed is adding 'cuda/std/' to the start of the Standard
Library includes and 'cuda::' before any uses of 'std::':
.
* #include <cuda/std/atomic>
* cuda::std::atomic<int> x;
|