libcudacxx 1.9.0-3 source package in Ubuntu

Changelog

libcudacxx (1.9.0-3) unstable; urgency=medium

  * Cherry-pick parts of upstream commit e8dc6b8 to fix building CUDA 12
    samples.

 -- Andreas Beckmann <email address hidden>  Tue, 04 Jul 2023 13:51:16 +0200

Upload details

Uploaded by:
Debian NVIDIA Maintainers
Uploaded to:
Sid
Original maintainer:
Debian NVIDIA Maintainers
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Noble release universe misc
Mantic release universe misc

Builds

Mantic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libcudacxx_1.9.0-3.dsc 2.0 KiB aa0496fb253141b25cba7fffcd28b2a6bf3b4f47295301a27d7c809e6b9f168c
libcudacxx_1.9.0.orig.tar.gz 4.4 MiB 05b1435ad65f5bdef1bb8d1eb29dc8f0f7df34c01d77bf8686687a4603588bce
libcudacxx_1.9.0-3.debian.tar.xz 6.2 KiB 91c16c9f702c06ec958ae79cc54dda391a4c71b602ad46cac20a714d8ff69b31

Available diffs

No changes file available.

Binary packages built by this source

libcu++-dev: 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;