CCCL (CUDA C++ Core Libraries) provides: - CUB: device/block/warp-level GPU primitives (reduce, scan, sort, topk) - Thrust: high-level parallel algorithms (transform_reduce, sort, scan) - libcudacxx: CUDA C++ standard library (atomics, barriers, memory) - cudax: experimental features (memory resources, allocators) - Tuning policies: per-SM hardware-specific algorithm parameters Competition optimization vectors mapped to CCCL: - Output TPS (83% weight): warp_reduce, block_reduce, device_topk - Input TPS (14% weight): device_scan, block_load, prefetch - Cache TPS (3% weight): prefix caching strategy patterns - Memory (0.9 util): pooled/cached/buddy allocators Source: https://github.com/NVIDIA/cccl (shallow clone, HEAD only) License: Apache-2.0
31 lines
1.3 KiB
Plaintext
31 lines
1.3 KiB
Plaintext
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Part of CUDA Experimental in CUDA C++ Core Libraries,
|
|
// under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
// SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef __CUDAX_GRAPH_CUH
|
|
#define __CUDAX_GRAPH_CUH
|
|
|
|
// IWYU pragma: begin_exports
|
|
#include <cuda/experimental/__graph/child_graph.cuh>
|
|
#include <cuda/experimental/__graph/conditional_node.cuh>
|
|
#include <cuda/experimental/__graph/copy_bytes.cuh>
|
|
#include <cuda/experimental/__graph/depends_on.cuh>
|
|
#include <cuda/experimental/__graph/fill_bytes.cuh>
|
|
#include <cuda/experimental/__graph/fwd.cuh>
|
|
#include <cuda/experimental/__graph/graph.cuh>
|
|
#include <cuda/experimental/__graph/graph_builder.cuh>
|
|
#include <cuda/experimental/__graph/graph_memory_resource.cuh>
|
|
#include <cuda/experimental/__graph/graph_node_ref.cuh>
|
|
#include <cuda/experimental/__graph/graph_node_type.cuh>
|
|
#include <cuda/experimental/__graph/host_launch.cuh>
|
|
#include <cuda/experimental/__graph/path_builder.cuh>
|
|
// IWYU pragma: end_exports
|
|
|
|
#endif // __CUDAX_GRAPH_CUH
|