Skip to content

Commit 725954c

Browse files
rwgkmiscco
andauthored
Replace a few more instances of CUDA C++ Core Libraries with CUDA Core Compute Libraries`. (#2447)
* Do not include our own string.h file (#2444) That might conflict with the host standard library * Programmatically (`sed`) replace `CUDA C++ Core Libraries` with CUDA Core Compute Libraries`. NO MANUAL CHANGES. Command used: ``` for fn in `git grep 'CUDA C++ Core Libraries' | cut -d':' -f1 | uniq`; do sed -i .bak 's/CUDA C++ Core Libraries/CUDA Core Compute Libraries/g' $fn; done ``` * Extend `=======================` line in .rst file to match new name. * Revert changes in all .cuh, .cu, .h, .cpp files. Rationale: These files actually have a C++-specific license. It's left for later to change the license and the notices together. * Revert changes in docs/ subdirectory. --------- Co-authored-by: Michael Schellenberger Costa <[email protected]>
1 parent 0521015 commit 725954c

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/ISSUE_TEMPLATE/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ contact_links:
33
- name: Question
44
url: https://github.com/NVIDIA/cccl/discussions
55
about: Check out our Discussions page to ask and answer questions.
6-
- name: CUDA C++ Core Libraries Discord
6+
- name: CUDA Core Compute Libraries Discord
77
url: https://discord.gg/nvidiadeveloper
88
about: Come chat about using and contributing to CCCL!

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# Contributing to CCCL
33

4-
Thank you for your interest in contributing to the CUDA C++ Core Libraries (CCCL)!
4+
Thank you for your interest in contributing to the CUDA Core Compute Libraries (CCCL)!
55

66
Looking for ideas for your first contribution? Check out: ![GitHub Issues or Pull Requests by label](https://img.shields.io/github/issues/nvidia/cccl/good%20first%20issue)
77

c/include/cccl/c/reduce.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//===----------------------------------------------------------------------===//
22
//
3-
// Part of CUDA Experimental in CUDA C++ Core Libraries,
3+
// Part of CUDA Experimental in CUDA Core Compute Libraries,
44
// under the Apache License v2.0 with LLVM Exceptions.
55
// See https://llvm.org/LICENSE.txt for license information.
66
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception

c/include/cccl/c/types.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//===----------------------------------------------------------------------===//
22
//
3-
// Part of CUDA Experimental in CUDA C++ Core Libraries,
3+
// Part of CUDA Experimental in CUDA Core Compute Libraries,
44
// under the Apache License v2.0 with LLVM Exceptions.
55
// See https://llvm.org/LICENSE.txt for license information.
66
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception

cudax/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
## CUDA Experimental: Library for experimental features in CUDA C++ Core Libraries.
2-
CUDA Experimental serves as a distribution channel for features that are considered experimental in the CUDA C++ Core Libraries.
1+
## CUDA Experimental: Library for experimental features in CUDA Core Compute Libraries.
2+
CUDA Experimental serves as a distribution channel for features that are considered experimental in the CUDA Core Compute Libraries.
33
Some of them are still actively designed or developed and their API is evolving.
44
Some of them are specific to one hardware architecture and are still looking for a generic and forward compatible exposure.
55
Finally, some of them need to prove useful enough to deserve long term support.

0 commit comments

Comments
 (0)