Skip to content

Commit

Permalink
Improvements to the Cuda Core C library infrastructure (#2336)
Browse files Browse the repository at this point in the history
* Move towards libfmt, to allow different host compilers

* Try and filter changes to Cuda C library

* Update ci/inspect_changes.sh

Co-authored-by: Leo Fang <[email protected]>

* Revert "Move towards libfmt, to allow different host compilers"

This reverts commit 3bd8d95.

---------

Co-authored-by: Leo Fang <[email protected]>
  • Loading branch information
miscco and leofang authored Sep 2, 2024
1 parent 0a40182 commit 709ddec
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ci/inspect_changes.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ subprojects=(
thrust
cudax
pycuda
c
)

# ...and their dependencies:
Expand All @@ -36,7 +37,8 @@ declare -A dependencies=(
[cub]="cccl libcudacxx thrust"
[thrust]="cccl libcudacxx cub"
[cudax]="cccl libcudacxx"
[pycuda]="cccl libcudacxx cub thrust cudax"
[pycuda]="cccl libcudacxx cub thrust c"
[c]="cccl libcudacxx cub"
)

declare -A project_names=(
Expand All @@ -46,6 +48,7 @@ declare -A project_names=(
[thrust]="Thrust"
[cudax]="CUDA Experimental"
[pycuda]="pycuda"
[c]="CUDA C Core Library "
)

# By default, the project directory is assumed to be the same as the subproject name,
Expand Down

0 comments on commit 709ddec

Please sign in to comment.