Sparse-checkout from NVIDIA/cccl main branch to complete cccl_upstream: Added: - python/cuda_cccl/ (226 files) — Python bindings for device-level algorithms Critical for muh toolchain: cuda.compute.reduce_into, scan, radix_sort, etc. Includes 204 .py files with full test coverage for all 27 algorithms - ci/ (163 files) — Build/test infrastructure build_cub.sh, test_cub.sh, build_and_test_targets.sh, matrix.yaml Directly maps to our [INFRA-CI] and [INFRA-BUILD] items - .agent/skills/ (7 files) — NVIDIA's own agent skills for CCCL cccl-style/SKILL.md, cccl-test/SKILL.md, sass-diff/SKILL.md - docs/ (491 files) — Official CCCL documentation CI references, CMake guides, Python compute docs, libcudacxx PTX docs - test/ (12 files) — Top-level integration tests (cuda_smoke, stdpar) - Root configs: .clang-format, .clang-tidy, CONTRIBUTING.md, pyproject.toml - CLAUDE.md symlink → AGENTS.md (NVIDIA's standard) cccl_upstream now mirrors full NVIDIA/cccl structure: Before: 42M (cub + thrust + libcudacxx + cudax + c + examples + benchmarks) After: 53M (+python +ci +docs +.agent +test +configs) This completes the CCCL base needed for: - [muh-bench] items: ci/util/build_and_test_targets.sh for targeted builds - [CCCL-verify] items: python/cuda_cccl/tests/ as reference implementations - [CCCL-test] items: ci/test_cub.sh, ci/test_thrust.sh - Agent workflow: .agent/skills/ for consistent style and test patterns
67 lines
1.9 KiB
Bash
Executable File
67 lines
1.9 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
if [[ -z "${GITHUB_ACTIONS:-}" ]]; then
|
|
echo "This script must be run in a GitHub Actions environment." >&2
|
|
exit 1
|
|
fi
|
|
|
|
ci_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
readonly ci_dir
|
|
repo_root="$(cd "${ci_dir}/.." && pwd)"
|
|
readonly repo_root
|
|
|
|
cd "$repo_root"
|
|
|
|
usage=$(cat <<EOF
|
|
Usage: $0 <job_id> <exit code>
|
|
EOF
|
|
)
|
|
|
|
if [[ "$#" -ne 2 ]]; then
|
|
echo "Error: Invalid number of arguments." >&2
|
|
echo "$usage" >&2
|
|
exit 1
|
|
fi
|
|
|
|
job_id="$1"
|
|
exit_code="$2"
|
|
|
|
# Collect workflow-related artifacts -- success state, sccache info, etc.
|
|
# These are unpacked and parsed in the workflow-results action.
|
|
|
|
source ci/util/artifacts/common.sh
|
|
|
|
# The root of the shared artifact structure:
|
|
jobs_artifact_dir="$ARTIFACT_UPLOAD_STAGE/jobs"
|
|
|
|
# This job's artifact directory:
|
|
job_artifacts="$jobs_artifact_dir/$job_id"
|
|
mkdir -p "$job_artifacts"
|
|
|
|
if [[ "$exit_code" -eq 0 ]]; then
|
|
touch "$job_artifacts/success"
|
|
fi
|
|
|
|
# Finds a matching file in the root and copies it to the artifact directory.
|
|
find_and_copy_job_artifact_from() {
|
|
root="$1"
|
|
name="$2"
|
|
if find "$root"/ -maxdepth 4 -name "$name" -type f -printf '' -quit 2>/dev/null; then
|
|
find "$root"/ -maxdepth 4 -name "$name" -type f -print0 | xargs -0 -P4 -I% cp -v % "$job_artifacts"/
|
|
else
|
|
echo "No file matching '$name' found in '$root'."
|
|
return 1
|
|
fi
|
|
}
|
|
|
|
find_and_copy_job_artifact_from /tmp "sccache*.log" || : # Nonfatal if not found
|
|
find_and_copy_job_artifact_from build "sccache_stats.json" || : # Nonfatal if not found
|
|
find_and_copy_job_artifact_from build ".ninja_log" || : # Nonfatal if not found
|
|
find_and_copy_job_artifact_from build "build.ninja" || : # Nonfatal if not found
|
|
find_and_copy_job_artifact_from build "rules.ninja" || : # Nonfatal if not found
|
|
find_and_copy_job_artifact_from build "ctest.log" || : # Nonfatal if not found
|
|
|
|
ci/util/artifacts/upload/register.sh "zz_jobs-$job_id" "$jobs_artifact_dir"
|