Coverage for cuda / core / experimental / _launch_config.pxd: 100%
0 statements
« prev ^ index » next coverage.py v7.13.0, created at 2025-12-10 01:19 +0000
« prev ^ index » next coverage.py v7.13.0, created at 2025-12-10 01:19 +0000
1# SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2#
3# SPDX-License-Identifier: Apache-2.0
6cdef bint _inited
7cdef bint _use_ex
9cdef void _lazy_init() except *
11cdef class LaunchConfig:
12 """Customizable launch options."""
13 cdef public tuple grid
14 cdef public tuple cluster
15 cdef public tuple block
16 cdef public int shmem_size
17 cdef public bint cooperative_launch
19cpdef object _to_native_launch_config(LaunchConfig config)