19 lines
609 B
Plaintext
19 lines
609 B
Plaintext
|
|
//===----------------------------------------------------------------------===//
|
||
|
|
//
|
||
|
|
// Part of libcu++, the C++ Standard Library for your entire system,
|
||
|
|
// 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.
|
||
|
|
//
|
||
|
|
//===----------------------------------------------------------------------===//
|
||
|
|
|
||
|
|
#include <nv/target>
|
||
|
|
|
||
|
|
#ifdef __CUDACC_TILE__
|
||
|
|
__tile__
|
||
|
|
#endif // __CUDACC_TILE__
|
||
|
|
__host__ __device__ void
|
||
|
|
fn()
|
||
|
|
{}
|