19 lines
712 B
Plaintext
19 lines
712 B
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) 2025 NVIDIA CORPORATION & AFFILIATES.
|
||
|
|
//
|
||
|
|
//===----------------------------------------------------------------------===//
|
||
|
|
|
||
|
|
#ifndef _CUDAX_LIBRARY
|
||
|
|
#define _CUDAX_LIBRARY
|
||
|
|
|
||
|
|
#include <cuda/experimental/__kernel/kernel_ref.cuh>
|
||
|
|
#include <cuda/experimental/__library/library.cuh>
|
||
|
|
#include <cuda/experimental/__library/library_ref.cuh>
|
||
|
|
|
||
|
|
#endif // _CUDAX_LIBRARY
|