Skip to content

Commit 7635cbc

Browse files
committed
Add missing Copyright (and SPDX-License-Identifier) lines under cuda_bindings/
1 parent 5a74980 commit 7635cbc

19 files changed

Lines changed: 58 additions & 0 deletions

File tree

cuda_bindings/MANIFEST.in

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) 2024-2025, NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED.
2+
# SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE
3+
14
recursive-include cuda/ *.pyx *.pxd *.pxi
25
# at least with setuptools 75.0.0 this folder was added erroneously
36
# to the payload, causing file copying to the build environment failed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) 2021-2025, NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED.
2+
# SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE
3+
14
[pytest]
25
required_plugins = pytest-benchmark
36
addopts = --benchmark-skip

cuda_bindings/cuda/ccuda.pxd

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) 2024-2025, NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED.
2+
# SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE
3+
14
from cuda.bindings.cydriver cimport *
25

36
cdef extern from *:

cuda_bindings/cuda/ccuda.pyx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) 2024-2025, NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED.
2+
# SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE
3+
14
from cuda.bindings.cydriver cimport *
25
from cuda.bindings import cydriver
36
__pyx_capi__ = cydriver.__pyx_capi__

cuda_bindings/cuda/ccudart.pxd

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) 2024-2025, NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED.
2+
# SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE
3+
14
from cuda.bindings.cyruntime cimport *
25

36
cdef extern from *:

cuda_bindings/cuda/ccudart.pyx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) 2024-2025, NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED.
2+
# SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE
3+
14
from cuda.bindings.cyruntime cimport *
25
from cuda.bindings import cyruntime
36
__pyx_capi__ = cyruntime.__pyx_capi__

cuda_bindings/cuda/cnvrtc.pxd

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) 2024-2025, NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED.
2+
# SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE
3+
14
from cuda.bindings.cynvrtc cimport *
25

36
cdef extern from *:

cuda_bindings/cuda/cnvrtc.pyx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) 2024-2025, NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED.
2+
# SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE
3+
14
from cuda.bindings.cynvrtc cimport *
25
from cuda.bindings import cynvrtc
36
__pyx_capi__ = cynvrtc.__pyx_capi__

cuda_bindings/cuda/cuda.pyx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) 2024-2025, NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED.
2+
# SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE
3+
14
import warnings as _warnings
25

36
from cuda.bindings.driver import *

cuda_bindings/cuda/cudart.pyx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) 2024-2025, NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED.
2+
# SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE
3+
14
import warnings as _warnings
25

36
from cuda.bindings.runtime import *

0 commit comments

Comments
 (0)