cuquantum-python-jax 0.0.1__tar.gz → 0.0.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {cuquantum_python_jax-0.0.1/cuquantum_python_jax.egg-info → cuquantum_python_jax-0.0.2}/PKG-INFO +1 -1
- {cuquantum_python_jax-0.0.1 → cuquantum_python_jax-0.0.2}/cuquantum/densitymat/jax/cppsrc/CMakeLists.txt +8 -2
- {cuquantum_python_jax-0.0.1 → cuquantum_python_jax-0.0.2/cuquantum_python_jax.egg-info}/PKG-INFO +1 -1
- {cuquantum_python_jax-0.0.1 → cuquantum_python_jax-0.0.2}/pyproject.toml +1 -1
- {cuquantum_python_jax-0.0.1 → cuquantum_python_jax-0.0.2}/setup.py +1 -1
- {cuquantum_python_jax-0.0.1 → cuquantum_python_jax-0.0.2}/LICENSE +0 -0
- {cuquantum_python_jax-0.0.1 → cuquantum_python_jax-0.0.2}/MANIFEST.in +0 -0
- {cuquantum_python_jax-0.0.1 → cuquantum_python_jax-0.0.2}/README.md +0 -0
- {cuquantum_python_jax-0.0.1 → cuquantum_python_jax-0.0.2}/cuquantum/densitymat/jax/__init__.py +0 -0
- {cuquantum_python_jax-0.0.1 → cuquantum_python_jax-0.0.2}/cuquantum/densitymat/jax/cppsrc/cudensitymat_jax.cpp +0 -0
- {cuquantum_python_jax-0.0.1 → cuquantum_python_jax-0.0.2}/cuquantum/densitymat/jax/cppsrc/cudensitymat_jax.h +0 -0
- {cuquantum_python_jax-0.0.1 → cuquantum_python_jax-0.0.2}/cuquantum/densitymat/jax/cppsrc/pybind.cpp +0 -0
- {cuquantum_python_jax-0.0.1 → cuquantum_python_jax-0.0.2}/cuquantum/densitymat/jax/cppsrc/utils.h +0 -0
- {cuquantum_python_jax-0.0.1 → cuquantum_python_jax-0.0.2}/cuquantum/densitymat/jax/operator_action.py +0 -0
- {cuquantum_python_jax-0.0.1 → cuquantum_python_jax-0.0.2}/cuquantum/densitymat/jax/pysrc/__init__.py +0 -0
- {cuquantum_python_jax-0.0.1 → cuquantum_python_jax-0.0.2}/cuquantum/densitymat/jax/pysrc/base.py +0 -0
- {cuquantum_python_jax-0.0.1 → cuquantum_python_jax-0.0.2}/cuquantum/densitymat/jax/pysrc/context.py +0 -0
- {cuquantum_python_jax-0.0.1 → cuquantum_python_jax-0.0.2}/cuquantum/densitymat/jax/pysrc/operator_action.py +0 -0
- {cuquantum_python_jax-0.0.1 → cuquantum_python_jax-0.0.2}/cuquantum/densitymat/jax/pysrc/operators.py +0 -0
- {cuquantum_python_jax-0.0.1 → cuquantum_python_jax-0.0.2}/cuquantum_python_jax.egg-info/SOURCES.txt +0 -0
- {cuquantum_python_jax-0.0.1 → cuquantum_python_jax-0.0.2}/cuquantum_python_jax.egg-info/dependency_links.txt +0 -0
- {cuquantum_python_jax-0.0.1 → cuquantum_python_jax-0.0.2}/cuquantum_python_jax.egg-info/not-zip-safe +0 -0
- {cuquantum_python_jax-0.0.1 → cuquantum_python_jax-0.0.2}/cuquantum_python_jax.egg-info/requires.txt +0 -0
- {cuquantum_python_jax-0.0.1 → cuquantum_python_jax-0.0.2}/cuquantum_python_jax.egg-info/top_level.txt +0 -0
- {cuquantum_python_jax-0.0.1 → cuquantum_python_jax-0.0.2}/setup.cfg +0 -0
|
@@ -8,7 +8,7 @@ project(cudensitymat_jax LANGUAGES CXX)
|
|
|
8
8
|
set(CMAKE_CXX_STANDARD 17)
|
|
9
9
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
10
10
|
|
|
11
|
-
find_package(Python3 REQUIRED
|
|
11
|
+
find_package(Python3 REQUIRED COMPONENTS Interpreter Development)
|
|
12
12
|
message(STATUS "Python executable: ${Python3_EXECUTABLE}")
|
|
13
13
|
|
|
14
14
|
find_package(CUDAToolkit REQUIRED)
|
|
@@ -43,7 +43,7 @@ find_package(pybind11 REQUIRED)
|
|
|
43
43
|
|
|
44
44
|
# FIXME: This should be made more robust and moved to setup.py.
|
|
45
45
|
execute_process(
|
|
46
|
-
COMMAND ${Python3_EXECUTABLE} -c "import
|
|
46
|
+
COMMAND ${Python3_EXECUTABLE} -c "import os; import cuquantum; print(os.path.dirname(cuquantum.__file__))"
|
|
47
47
|
OUTPUT_STRIP_TRAILING_WHITESPACE
|
|
48
48
|
OUTPUT_VARIABLE CUQUANTUM_PYTHON_ROOT
|
|
49
49
|
)
|
|
@@ -85,6 +85,12 @@ else()
|
|
|
85
85
|
message(STATUS "cuDensityMat library: ${CUDENSITYMAT_LIBRARY}")
|
|
86
86
|
endif()
|
|
87
87
|
|
|
88
|
+
set_target_properties(
|
|
89
|
+
${PROJECT_NAME}
|
|
90
|
+
PROPERTIES
|
|
91
|
+
BUILD_RPATH "$ORIGIN"
|
|
92
|
+
)
|
|
93
|
+
|
|
88
94
|
target_link_libraries(
|
|
89
95
|
${PROJECT_NAME}
|
|
90
96
|
PRIVATE
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
[build-system]
|
|
2
|
-
requires = ["setuptools>=77.0.3", "wheel", "build", "jax[cuda12-local]>=0.5,<0.7", "pybind11"]
|
|
2
|
+
requires = ["setuptools>=77.0.3", "wheel", "build", "jax[cuda12-local]>=0.5,<0.7", "pybind11", "cuquantum-python-cu12~=25.09"]
|
|
3
3
|
build-backend = "setuptools.build_meta"
|
|
@@ -75,7 +75,7 @@ description = "NVIDIA cuQuantum Python JAX"
|
|
|
75
75
|
with open(os.path.join(os.path.dirname(__file__), "README.md"), encoding="utf-8") as f:
|
|
76
76
|
long_description = f.read()
|
|
77
77
|
|
|
78
|
-
__version__ = "0.0.
|
|
78
|
+
__version__ = "0.0.2"
|
|
79
79
|
|
|
80
80
|
setup(
|
|
81
81
|
name="cuquantum-python-jax",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cuquantum_python_jax-0.0.1 → cuquantum_python_jax-0.0.2}/cuquantum/densitymat/jax/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cuquantum_python_jax-0.0.1 → cuquantum_python_jax-0.0.2}/cuquantum/densitymat/jax/cppsrc/pybind.cpp
RENAMED
|
File without changes
|
{cuquantum_python_jax-0.0.1 → cuquantum_python_jax-0.0.2}/cuquantum/densitymat/jax/cppsrc/utils.h
RENAMED
|
File without changes
|
|
File without changes
|
{cuquantum_python_jax-0.0.1 → cuquantum_python_jax-0.0.2}/cuquantum/densitymat/jax/pysrc/__init__.py
RENAMED
|
File without changes
|
{cuquantum_python_jax-0.0.1 → cuquantum_python_jax-0.0.2}/cuquantum/densitymat/jax/pysrc/base.py
RENAMED
|
File without changes
|
{cuquantum_python_jax-0.0.1 → cuquantum_python_jax-0.0.2}/cuquantum/densitymat/jax/pysrc/context.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cuquantum_python_jax-0.0.1 → cuquantum_python_jax-0.0.2}/cuquantum_python_jax.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{cuquantum_python_jax-0.0.1 → cuquantum_python_jax-0.0.2}/cuquantum_python_jax.egg-info/not-zip-safe
RENAMED
|
File without changes
|
{cuquantum_python_jax-0.0.1 → cuquantum_python_jax-0.0.2}/cuquantum_python_jax.egg-info/requires.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|