Skip to content

Commit dfd52b3

Browse files
committed
Add missing SPDX-License-Identifier lines in *.py files.
1 parent ca75900 commit dfd52b3

29 files changed

Lines changed: 34 additions & 39 deletions

.spdx-ignore

Lines changed: 0 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,8 @@ cuda_core/cuda/core/experimental/dlpack.h
1414

1515
.github/copy-pr-bot.yaml
1616
cuda_bindings/MANIFEST.in
17-
cuda_bindings/benchmarks/conftest.py
18-
cuda_bindings/benchmarks/kernels.py
1917
cuda_bindings/benchmarks/pytest.ini
20-
cuda_bindings/benchmarks/test_cupy.py
21-
cuda_bindings/benchmarks/test_launch_latency.py
22-
cuda_bindings/benchmarks/test_numba.py
23-
cuda_bindings/benchmarks/test_pointer_attributes.py
2418
cuda_bindings/cuda/bindings/__init__.pxd
25-
cuda_bindings/cuda/bindings/__init__.py
26-
cuda_bindings/cuda/bindings/_bindings/__init__.py
2719
cuda_bindings/cuda/bindings/_bindings/cydriver.pxd.in
2820
cuda_bindings/cuda/bindings/_bindings/cydriver.pyx.in
2921
cuda_bindings/cuda/bindings/_bindings/cynvrtc.pxd.in
@@ -35,9 +27,6 @@ cuda_bindings/cuda/bindings/_bindings/cyruntime_ptds.pyx.in
3527
cuda_bindings/cuda/bindings/_bindings/loader.cpp
3628
cuda_bindings/cuda/bindings/_bindings/loader.h
3729
cuda_bindings/cuda/bindings/_bindings/loader.pxd
38-
cuda_bindings/cuda/bindings/_internal/__init__.py
39-
cuda_bindings/cuda/bindings/_lib/__init__.py
40-
cuda_bindings/cuda/bindings/_lib/cyruntime/__init__.py
4130
cuda_bindings/cuda/bindings/_lib/cyruntime/cyruntime.pxd.in
4231
cuda_bindings/cuda/bindings/_lib/cyruntime/cyruntime.pyx.in
4332
cuda_bindings/cuda/bindings/_lib/cyruntime/utils.pxd.in
@@ -48,7 +37,6 @@ cuda_bindings/cuda/bindings/_lib/param_packer.h
4837
cuda_bindings/cuda/bindings/_lib/param_packer.pxd
4938
cuda_bindings/cuda/bindings/_lib/utils.pxd.in
5039
cuda_bindings/cuda/bindings/_lib/utils.pyx.in
51-
cuda_bindings/cuda/bindings/_version.py
5240
cuda_bindings/cuda/bindings/cydriver.pxd.in
5341
cuda_bindings/cuda/bindings/cydriver.pyx.in
5442
cuda_bindings/cuda/bindings/cynvrtc.pxd.in
@@ -76,41 +64,20 @@ cuda_bindings/docs/Makefile
7664
cuda_bindings/docs/build_docs.sh
7765
cuda_bindings/docs/make.bat
7866
cuda_bindings/docs/source/_static/javascripts/version_dropdown.js
79-
cuda_bindings/docs/source/conf.py
8067
cuda_bindings/site-packages/_cuda_bindings_redirector.pth
81-
cuda_bindings/site-packages/_cuda_bindings_redirector.py
8268
cuda_bindings/tests/cython/build_tests.bat
8369
cuda_bindings/tests/cython/build_tests.sh
8470
cuda_bindings/tests/cython/test_ccuda.pyx
8571
cuda_bindings/tests/cython/test_ccudart.pyx
86-
cuda_bindings/tests/cython/test_cython.py
8772
cuda_bindings/tests/cython/test_interoperability_cython.pyx
8873
cuda_bindings/tests/pytest.ini
89-
cuda_bindings/tests/test_cuda.py
90-
cuda_bindings/tests/test_cudart.py
91-
cuda_bindings/tests/test_interoperability.py
92-
cuda_bindings/tests/test_kernelParams.py
93-
cuda_bindings/tests/test_nvrtc.py
9474
cuda_core/cuda/core/__init__.pxd
9575
cuda_core/docs/Makefile
9676
cuda_core/docs/build_docs.sh
9777
cuda_core/docs/source/_static/javascripts/version_dropdown.js
98-
cuda_core/tests/conftest.py
9978
cuda_core/tests/cython/build_tests.sh
100-
cuda_core/tests/example_tests/__init__.py
101-
cuda_core/tests/example_tests/test_basic_examples.py
102-
cuda_core/tests/example_tests/utils.py
103-
cuda_core/tests/test_context.py
104-
cuda_core/tests/test_device.py
105-
cuda_core/tests/test_event.py
106-
cuda_core/tests/test_launcher.py
107-
cuda_core/tests/test_memory.py
108-
cuda_core/tests/test_module.py
109-
cuda_core/tests/test_stream.py
110-
cuda_core/tests/test_system.py
11179
cuda_python/docs/Makefile
11280
cuda_python/docs/build_all_docs.sh
11381
cuda_python/docs/build_docs.sh
11482
cuda_python/docs/environment-docs.yml
11583
cuda_python/docs/source/_static/javascripts/version_dropdown.js
116-
cuda_python/docs/source/conf.py

cuda_bindings/benchmarks/conftest.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Copyright 2021-2025 NVIDIA Corporation. All rights reserved.
2+
# SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE
23
#
34
# Please refer to the NVIDIA end user license agreement (EULA) associated
45
# with this source code for terms and conditions that govern your use of

cuda_bindings/benchmarks/kernels.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Copyright 2021-2025 NVIDIA Corporation. All rights reserved.
2+
# SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE
23
#
34
# Please refer to the NVIDIA end user license agreement (EULA) associated
45
# with this source code for terms and conditions that govern your use of

cuda_bindings/benchmarks/test_cupy.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Copyright 2021-2025 NVIDIA Corporation. All rights reserved.
2+
# SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE
23
#
34
# Please refer to the NVIDIA end user license agreement (EULA) associated
45
# with this source code for terms and conditions that govern your use of

cuda_bindings/benchmarks/test_launch_latency.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Copyright 2021-2025 NVIDIA Corporation. All rights reserved.
2+
# SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE
23
#
34
# Please refer to the NVIDIA end user license agreement (EULA) associated
45
# with this source code for terms and conditions that govern your use of

cuda_bindings/benchmarks/test_numba.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Copyright 2021-2025 NVIDIA Corporation. All rights reserved.
2+
# SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE
23
#
34
# Please refer to the NVIDIA end user license agreement (EULA) associated
45
# with this source code for terms and conditions that govern your use of

cuda_bindings/benchmarks/test_pointer_attributes.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Copyright 2021-2025 NVIDIA Corporation. All rights reserved.
2+
# SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE
23
#
34
# Please refer to the NVIDIA end user license agreement (EULA) associated
45
# with this source code for terms and conditions that govern your use of
Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
11
# Copyright 2024 NVIDIA Corporation. All rights reserved.
2-
#
3-
# Please refer to the NVIDIA end user license agreement (EULA) associated
4-
# with this source code for terms and conditions that govern your use of
5-
# this software. Any use, reproduction, disclosure, or distribution of
6-
# this software and related documentation outside the terms of the EULA
7-
# is strictly prohibited.
2+
# SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE
83

94
from cuda.bindings._version import __version__

cuda_bindings/cuda/bindings/_version.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Copyright 2024-2025 NVIDIA Corporation. All rights reserved.
2+
# SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE
23
#
34
# Please refer to the NVIDIA end user license agreement (EULA) associated
45
# with this source code for terms and conditions that govern your use of

cuda_bindings/docs/source/conf.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) 2012-2025, NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED.
2+
# SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE
3+
14
# Configuration file for the Sphinx documentation builder.
25
#
36
# This file only contains a selection of the most common options. For a full

0 commit comments

Comments
 (0)