Skip to content

Commit c365ac1

Browse files
committed
Merge branch 'fix_header' into 'main'
Unified copyright and license statements See merge request cuda-hpc-libraries/cuquantum-sdk/cuquantum-public!7
2 parents 0be6fa9 + 7251ce6 commit c365ac1

File tree

111 files changed

+384
-627
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

111 files changed

+384
-627
lines changed

LICENSE

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
BSD-3-Clause
2-
3-
Copyright (c) 2022 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
1+
Copyright (c) 2021-2022 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2+
SPDX-License-Identifier: BSD-3-Clause
43

54
Redistribution and use in source and binary forms, with or without
65
modification, are permitted provided that the following conditions are met:

python/LICENSE

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
BSD-3-Clause
2-
31
Copyright (c) 2022 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2+
SPDX-License-Identifier: BSD-3-Clause
43

54
Redistribution and use in source and binary forms, with or without
65
modification, are permitted provided that the following conditions are met:

python/cuquantum/__init__.pxd

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Copyright (c) 2021-2022, NVIDIA CORPORATION & AFFILIATES
2+
#
3+
# SPDX-License-Identifier: BSD-3-Clause

python/cuquantum/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (c) 2021-2022, NVIDIA CORPORATION & AFFILIATES
2+
#
3+
# SPDX-License-Identifier: BSD-3-Clause
4+
15
from cuquantum import custatevec
26
from cuquantum import cutensornet
37
from cuquantum.cutensornet import (

python/cuquantum/_version.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (c) 2021-2022, NVIDIA CORPORATION & AFFILIATES
2+
#
3+
# SPDX-License-Identifier: BSD-3-Clause
4+
15
# Note: cuQuantum Python follows the cuQuantum SDK version, which is now
26
# switched to YY.MM and is different from individual libraries' (semantic)
37
# versioning scheme.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1+
# Copyright (c) 2021-2022, NVIDIA CORPORATION & AFFILIATES
2+
#
3+
# SPDX-License-Identifier: BSD-3-Clause
4+
15
from cuquantum.custatevec.custatevec import *

python/cuquantum/custatevec/custatevec.pxd

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
# TODO: Ultimately, everything should be auto-generated using
2-
# the scripts from the CUDA Python team
1+
# Copyright (c) 2021-2022, NVIDIA CORPORATION & AFFILIATES
2+
#
3+
# SPDX-License-Identifier: BSD-3-Clause
34

45
from libc.stdint cimport intptr_t, int32_t, uint32_t, int64_t
56

python/cuquantum/custatevec/custatevec.pyx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (c) 2021-2022, NVIDIA CORPORATION & AFFILIATES
2+
#
3+
# SPDX-License-Identifier: BSD-3-Clause
4+
15
# distutils: language = c++
26

37
cimport cython

python/cuquantum/cutensornet/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (c) 2021-2022, NVIDIA CORPORATION & AFFILIATES
2+
#
3+
# SPDX-License-Identifier: BSD-3-Clause
4+
15
from cuquantum.cutensornet.cutensornet import *
26
from cuquantum.cutensornet.configuration import *
37
from cuquantum.cutensornet.memory import *
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Copyright (c) 2021-2022, NVIDIA CORPORATION & AFFILIATES
2+
#
3+
# SPDX-License-Identifier: BSD-3-Clause

0 commit comments

Comments
 (0)