From 709ddec37ff87e6087097ed6e49526dac21dcbc9 Mon Sep 17 00:00:00 2001 From: Michael Schellenberger Costa Date: Mon, 2 Sep 2024 19:14:54 +0200 Subject: [PATCH] Improvements to the Cuda Core C library infrastructure (#2336) * 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 * Revert "Move towards libfmt, to allow different host compilers" This reverts commit 3bd8d9513c195a03b76f3fb7fcf470a25b9446f1. --------- Co-authored-by: Leo Fang --- ci/inspect_changes.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ci/inspect_changes.sh b/ci/inspect_changes.sh index c56252bdd4f..72c37ba9c57 100755 --- a/ci/inspect_changes.sh +++ b/ci/inspect_changes.sh @@ -27,6 +27,7 @@ subprojects=( thrust cudax pycuda + c ) # ...and their dependencies: @@ -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=( @@ -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,