Coverage for cuda / core / typing.py: 100.00%
3 statements
« prev ^ index » next coverage.py v7.13.5, created at 2026-04-29 01:27 +0000
« prev ^ index » next coverage.py v7.13.5, created at 2026-04-29 01:27 +0000
1# SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2#
3# SPDX-License-Identifier: Apache-2.0
5"""Public type aliases and protocols used in cuda.core API signatures."""
7from cuda.core._memory._buffer import DevicePointerT 1a
8from cuda.core._stream import IsStreamT 1a
10__all__ = [ 1a
11 "DevicePointerT",
12 "IsStreamT",
13]