File size: 645 Bytes
76f9669 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | # SPDX-FileCopyrightText: Copyright (c) 2024-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE
from cuda.bindings.cynvrtc cimport *
cdef extern from *:
"""
#ifdef _MSC_VER
#pragma message ( "The cuda.cnvrtc module is deprecated and will be removed in a future release, " \
"please switch to use the cuda.bindings.cynvrtc module instead." )
#else
#warning The cuda.cnvrtc module is deprecated and will be removed in a future release, \
please switch to use the cuda.bindings.cynvrtc module instead.
#endif
"""
|