Skip to content

Commit

Permalink
sync with internal repo1 (commit 8963e92db)
Browse files Browse the repository at this point in the history
  • Loading branch information
leofang committed Jul 13, 2023
1 parent fbe0291 commit de5658f
Show file tree
Hide file tree
Showing 15 changed files with 21 additions and 17 deletions.
2 changes: 1 addition & 1 deletion extra/custatevec/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## MPI Comm Plugin Extension

The first version of [multi-node state vector simulator](https://docs.nvidia.com/cuda/cuquantum/latest/appliance/qiskit.html) has been released in cuQuantum Appliance 22.11. It currently supports a limited set of versions of OpenMPI and MPICH. Other MPI libraries are supported by using an extension module called as External CommPlugin.
The first version of [multi-node state vector simulator](https://docs.nvidia.com/cuda/cuquantum/latest/appliance/qiskit.html) has been released in cuQuantum Appliance 22.11. It currently supports a limited set of versions of Open MPI and MPICH. Other MPI libraries are supported by using an extension module (called External CommPlugin).
External CommPlugin is a small shared object that wraps MPI functions. A customer needs to build its own external CommPlugin and link it to the MPI library of its preference to create a shared object. Then, by specifying appropriate options to the simulator, the compiled shared object is dynamically loaded to use the MPI library for inter-process communications.

## Prerequisite
Expand Down
2 changes: 1 addition & 1 deletion python/samples/custatevec/batched_abs2sum.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES
# Copyright (c) 2023, NVIDIA CORPORATION & AFFILIATES
#
# SPDX-License-Identifier: BSD-3-Clause

Expand Down
2 changes: 1 addition & 1 deletion python/samples/custatevec/batched_collapse.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES
# Copyright (c) 2023, NVIDIA CORPORATION & AFFILIATES
#
# SPDX-License-Identifier: BSD-3-Clause

Expand Down
2 changes: 1 addition & 1 deletion python/samples/custatevec/batched_gate_application.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES
# Copyright (c) 2023, NVIDIA CORPORATION & AFFILIATES
#
# SPDX-License-Identifier: BSD-3-Clause

Expand Down
2 changes: 1 addition & 1 deletion python/samples/custatevec/batched_measure.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES
# Copyright (c) 2023, NVIDIA CORPORATION & AFFILIATES
#
# SPDX-License-Identifier: BSD-3-Clause

Expand Down
2 changes: 1 addition & 1 deletion python/samples/custatevec/initialize_sv.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES
# Copyright (c) 2023, NVIDIA CORPORATION & AFFILIATES
#
# SPDX-License-Identifier: BSD-3-Clause

Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
project_urls={
"Bug Tracker": "https://github.com/NVIDIA/cuQuantum/issues",
"User Forum": "https://github.com/NVIDIA/cuQuantum/discussions",
"Documentation": "https://docs.nvidia.com/cuda/cuquantum/python/",
"Documentation": "https://docs.nvidia.com/cuda/cuquantum/latest/python/",
"Source Code": "https://github.com/NVIDIA/cuQuantum",
},
author="NVIDIA Corporation",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Copyright (c) 2022-2023, NVIDIA CORPORATION & AFFILIATES
#
# SPDX-License-Identifier: BSD-3-Clause

import re
import sys
import threading
Expand Down
4 changes: 2 additions & 2 deletions samples/custatevec/batched_abs2sum.cu
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES.
* Copyright (c) 2023, NVIDIA CORPORATION & AFFILIATES.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
Expand Down Expand Up @@ -79,4 +79,4 @@ int main(void) {
printf("abs2sum_batched example FAILED: wrong result\n");
return EXIT_FAILURE;
}
}
}
2 changes: 1 addition & 1 deletion samples/custatevec/batched_collapse.cu
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES.
* Copyright (c) 2023, NVIDIA CORPORATION & AFFILIATES.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
Expand Down
4 changes: 2 additions & 2 deletions samples/custatevec/batched_gate_application.cu
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES.
* Copyright (c) 2023, NVIDIA CORPORATION & AFFILIATES.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
Expand Down Expand Up @@ -106,4 +106,4 @@ int main(void) {
return EXIT_FAILURE;
}

}
}
4 changes: 2 additions & 2 deletions samples/custatevec/batched_measure.cu
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES.
* Copyright (c) 2023, NVIDIA CORPORATION & AFFILIATES.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
Expand Down Expand Up @@ -89,4 +89,4 @@ int main(void) {
printf("measure_batched example FAILED: wrong result\n");
return EXIT_FAILURE;
}
}
}
2 changes: 1 addition & 1 deletion samples/custatevec/initialize_sv.cu
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES.
* Copyright (c) 2023, NVIDIA CORPORATION & AFFILIATES.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
Expand Down
2 changes: 1 addition & 1 deletion samples/cutensornet/high_level/marginal_example.cu
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES.
/* Copyright (c) 2023, NVIDIA CORPORATION & AFFILIATES.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
Expand Down
2 changes: 1 addition & 1 deletion samples/cutensornet/high_level/sampling_example.cu
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES.
/* Copyright (c) 2023, NVIDIA CORPORATION & AFFILIATES.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
Expand Down

0 comments on commit de5658f

Please sign in to comment.