File size: 10,030 Bytes
76f9669 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 | # SPDX-FileCopyrightText: Copyright (c) 2024-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
#
# SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE
#
# This code was automatically generated across versions from 12.0.1 to 12.9.1. Do not modify it directly.
cimport cython # NOQA
from ._internal.utils cimport (get_resource_ptr, get_nested_resource_ptr, nested_resource, nullable_unique_ptr,
get_buffer_pointer, get_resource_ptrs)
from enum import IntEnum as _IntEnum
from libcpp.vector cimport vector
###############################################################################
# Enum
###############################################################################
class Result(_IntEnum):
"""See `nvJitLinkResult`."""
SUCCESS = NVJITLINK_SUCCESS
ERROR_UNRECOGNIZED_OPTION = NVJITLINK_ERROR_UNRECOGNIZED_OPTION
ERROR_MISSING_ARCH = NVJITLINK_ERROR_MISSING_ARCH
ERROR_INVALID_INPUT = NVJITLINK_ERROR_INVALID_INPUT
ERROR_PTX_COMPILE = NVJITLINK_ERROR_PTX_COMPILE
ERROR_NVVM_COMPILE = NVJITLINK_ERROR_NVVM_COMPILE
ERROR_INTERNAL = NVJITLINK_ERROR_INTERNAL
ERROR_THREADPOOL = NVJITLINK_ERROR_THREADPOOL
ERROR_UNRECOGNIZED_INPUT = NVJITLINK_ERROR_UNRECOGNIZED_INPUT
ERROR_FINALIZE = NVJITLINK_ERROR_FINALIZE
ERROR_NULL_INPUT = NVJITLINK_ERROR_NULL_INPUT
ERROR_INCOMPATIBLE_OPTIONS = NVJITLINK_ERROR_INCOMPATIBLE_OPTIONS
ERROR_INCORRECT_INPUT_TYPE = NVJITLINK_ERROR_INCORRECT_INPUT_TYPE
ERROR_ARCH_MISMATCH = NVJITLINK_ERROR_ARCH_MISMATCH
ERROR_OUTDATED_LIBRARY = NVJITLINK_ERROR_OUTDATED_LIBRARY
ERROR_MISSING_FATBIN = NVJITLINK_ERROR_MISSING_FATBIN
ERROR_UNRECOGNIZED_ARCH = NVJITLINK_ERROR_UNRECOGNIZED_ARCH
ERROR_UNSUPPORTED_ARCH = NVJITLINK_ERROR_UNSUPPORTED_ARCH
ERROR_LTO_NOT_ENABLED = NVJITLINK_ERROR_LTO_NOT_ENABLED
class InputType(_IntEnum):
"""See `nvJitLinkInputType`."""
NONE = NVJITLINK_INPUT_NONE
CUBIN = NVJITLINK_INPUT_CUBIN
PTX = NVJITLINK_INPUT_PTX
LTOIR = NVJITLINK_INPUT_LTOIR
FATBIN = NVJITLINK_INPUT_FATBIN
OBJECT = NVJITLINK_INPUT_OBJECT
LIBRARY = NVJITLINK_INPUT_LIBRARY
INDEX = NVJITLINK_INPUT_INDEX
ANY = NVJITLINK_INPUT_ANY
###############################################################################
# Error handling
###############################################################################
class nvJitLinkError(Exception):
def __init__(self, status):
self.status = status
s = Result(status)
cdef str err = f"{s.name} ({s.value})"
super(nvJitLinkError, self).__init__(err)
def __reduce__(self):
return (type(self), (self.status,))
@cython.profile(False)
cdef int check_status(int status) except 1 nogil:
if status != 0:
with gil:
raise nvJitLinkError(status)
return status
###############################################################################
# Wrapper functions
###############################################################################
cpdef destroy(intptr_t handle):
"""nvJitLinkDestroy frees the memory associated with the given handle.
Args:
handle (intptr_t): nvJitLink handle.
.. seealso:: `nvJitLinkDestroy`
"""
cdef Handle h = <Handle>handle
with nogil:
status = nvJitLinkDestroy(&h)
check_status(status)
cpdef intptr_t create(uint32_t num_options, options) except -1:
"""nvJitLinkCreate creates an instance of nvJitLinkHandle with the given input options, and sets the output parameter ``handle``.
Args:
num_options (uint32_t): Number of options passed.
options (object): Array of size ``num_options`` of option strings. It can be:
- an :class:`int` as the pointer address to the nested sequence, or
- a Python sequence of :class:`int`\s, each of which is a pointer address
to a valid sequence of 'char', or
- a nested Python sequence of ``str``.
Returns:
intptr_t: Address of nvJitLink handle.
.. seealso:: `nvJitLinkCreate`
"""
cdef nested_resource[ char ] _options_
get_nested_resource_ptr[char](_options_, options, <char*>NULL)
cdef Handle handle
with nogil:
status = nvJitLinkCreate(&handle, num_options, <const char**>(_options_.ptrs.data()))
check_status(status)
return <intptr_t>handle
cpdef add_data(intptr_t handle, int input_type, data, size_t size, name):
"""nvJitLinkAddData adds data image to the link.
Args:
handle (intptr_t): nvJitLink handle.
input_type (InputType): kind of input.
data (bytes): pointer to data image in memory.
size (size_t): size of the data.
name (str): name of input object.
.. seealso:: `nvJitLinkAddData`
"""
cdef void* _data_ = get_buffer_pointer(data, size, readonly=True)
if not isinstance(name, str):
raise TypeError("name must be a Python str")
cdef bytes _temp_name_ = (<str>name).encode()
cdef char* _name_ = _temp_name_
with nogil:
status = nvJitLinkAddData(<Handle>handle, <_InputType>input_type, <const void*>_data_, size, <const char*>_name_)
check_status(status)
cpdef add_file(intptr_t handle, int input_type, file_name):
"""nvJitLinkAddFile reads data from file and links it in.
Args:
handle (intptr_t): nvJitLink handle.
input_type (InputType): kind of input.
file_name (str): name of file.
.. seealso:: `nvJitLinkAddFile`
"""
if not isinstance(file_name, str):
raise TypeError("file_name must be a Python str")
cdef bytes _temp_file_name_ = (<str>file_name).encode()
cdef char* _file_name_ = _temp_file_name_
with nogil:
status = nvJitLinkAddFile(<Handle>handle, <_InputType>input_type, <const char*>_file_name_)
check_status(status)
cpdef complete(intptr_t handle):
"""nvJitLinkComplete does the actual link.
Args:
handle (intptr_t): nvJitLink handle.
.. seealso:: `nvJitLinkComplete`
"""
with nogil:
status = nvJitLinkComplete(<Handle>handle)
check_status(status)
cpdef size_t get_linked_cubin_size(intptr_t handle) except? 0:
"""nvJitLinkGetLinkedCubinSize gets the size of the linked cubin.
Args:
handle (intptr_t): nvJitLink handle.
Returns:
size_t: Size of the linked cubin.
.. seealso:: `nvJitLinkGetLinkedCubinSize`
"""
cdef size_t size
with nogil:
status = nvJitLinkGetLinkedCubinSize(<Handle>handle, &size)
check_status(status)
return size
cpdef get_linked_cubin(intptr_t handle, cubin):
"""nvJitLinkGetLinkedCubin gets the linked cubin.
Args:
handle (intptr_t): nvJitLink handle.
cubin (bytes): The linked cubin.
.. seealso:: `nvJitLinkGetLinkedCubin`
"""
cdef void* _cubin_ = get_buffer_pointer(cubin, -1, readonly=False)
with nogil:
status = nvJitLinkGetLinkedCubin(<Handle>handle, <void*>_cubin_)
check_status(status)
cpdef size_t get_linked_ptx_size(intptr_t handle) except? 0:
"""nvJitLinkGetLinkedPtxSize gets the size of the linked ptx.
Args:
handle (intptr_t): nvJitLink handle.
Returns:
size_t: Size of the linked PTX.
.. seealso:: `nvJitLinkGetLinkedPtxSize`
"""
cdef size_t size
with nogil:
status = nvJitLinkGetLinkedPtxSize(<Handle>handle, &size)
check_status(status)
return size
cpdef get_linked_ptx(intptr_t handle, ptx):
"""nvJitLinkGetLinkedPtx gets the linked ptx.
Args:
handle (intptr_t): nvJitLink handle.
ptx (bytes): The linked PTX.
.. seealso:: `nvJitLinkGetLinkedPtx`
"""
cdef void* _ptx_ = get_buffer_pointer(ptx, -1, readonly=False)
with nogil:
status = nvJitLinkGetLinkedPtx(<Handle>handle, <char*>_ptx_)
check_status(status)
cpdef size_t get_error_log_size(intptr_t handle) except? 0:
"""nvJitLinkGetErrorLogSize gets the size of the error log.
Args:
handle (intptr_t): nvJitLink handle.
Returns:
size_t: Size of the error log.
.. seealso:: `nvJitLinkGetErrorLogSize`
"""
cdef size_t size
with nogil:
status = nvJitLinkGetErrorLogSize(<Handle>handle, &size)
check_status(status)
return size
cpdef get_error_log(intptr_t handle, log):
"""nvJitLinkGetErrorLog puts any error messages in the log.
Args:
handle (intptr_t): nvJitLink handle.
log (bytes): The error log.
.. seealso:: `nvJitLinkGetErrorLog`
"""
cdef void* _log_ = get_buffer_pointer(log, -1, readonly=False)
with nogil:
status = nvJitLinkGetErrorLog(<Handle>handle, <char*>_log_)
check_status(status)
cpdef size_t get_info_log_size(intptr_t handle) except? 0:
"""nvJitLinkGetInfoLogSize gets the size of the info log.
Args:
handle (intptr_t): nvJitLink handle.
Returns:
size_t: Size of the info log.
.. seealso:: `nvJitLinkGetInfoLogSize`
"""
cdef size_t size
with nogil:
status = nvJitLinkGetInfoLogSize(<Handle>handle, &size)
check_status(status)
return size
cpdef get_info_log(intptr_t handle, log):
"""nvJitLinkGetInfoLog puts any info messages in the log.
Args:
handle (intptr_t): nvJitLink handle.
log (bytes): The info log.
.. seealso:: `nvJitLinkGetInfoLog`
"""
cdef void* _log_ = get_buffer_pointer(log, -1, readonly=False)
with nogil:
status = nvJitLinkGetInfoLog(<Handle>handle, <char*>_log_)
check_status(status)
cpdef tuple version():
"""nvJitLinkVersion returns the current version of nvJitLink.
Returns:
A 2-tuple containing:
- unsigned int: The major version.
- unsigned int: The minor version.
.. seealso:: `nvJitLinkVersion`
"""
cdef unsigned int major
cdef unsigned int minor
with nogil:
status = nvJitLinkVersion(&major, &minor)
check_status(status)
return (major, minor)
|