You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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]>
Copy file name to clipboardexpand all lines: CONTRIBUTING.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
2
2
# Contributing to CCCL
3
3
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)!
5
5
6
6
Looking for ideas for your first contribution? Check out: 
0 commit comments