21 lines
750 B
Plaintext
21 lines
750 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_LAUNCH___
|
||
|
|
#define __CUDAX_LAUNCH___
|
||
|
|
|
||
|
|
#include <cuda/__launch/configuration.h>
|
||
|
|
#include <cuda/__stream/launch_transform.h>
|
||
|
|
|
||
|
|
#include <cuda/experimental/__launch/launch.cuh>
|
||
|
|
#include <cuda/experimental/__launch/param_kind.cuh>
|
||
|
|
|
||
|
|
#endif // __CUDAX_LAUNCH___
|