pycauset 0.5.1.dev2__tar.gz → 0.5.1.dev104__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.
- pycauset-0.5.1.dev104/.github/workflows/ci.yml +53 -0
- pycauset-0.5.1.dev104/.github/workflows/publish.yml +119 -0
- pycauset-0.5.1.dev104/.gitignore +133 -0
- pycauset-0.5.1.dev104/BENCHMARKS.md +183 -0
- pycauset-0.5.1.dev104/CHANGELOG.md +78 -0
- pycauset-0.5.1.dev104/CMakeLists.txt +617 -0
- pycauset-0.5.1.dev104/LICENSE +21 -0
- pycauset-0.5.1.dev104/PKG-INFO +149 -0
- pycauset-0.5.1.dev104/README.md +125 -0
- pycauset-0.5.1.dev104/THIRD_PARTY_NOTICES.md +43 -0
- pycauset-0.5.1.dev104/benchmarks/bench.py +182 -0
- pycauset-0.5.1.dev104/benchmarks/bench_coverage.py +212 -0
- pycauset-0.5.1.dev104/benchmarks/bench_ram.py +68 -0
- pycauset-0.5.1.dev104/benchmarks/bench_structures.py +93 -0
- pycauset-0.5.1.dev104/benchmarks/benchmark_io_smoke.py +53 -0
- pycauset-0.5.1.dev104/benchmarks/benchmark_numpy_parity.py +250 -0
- pycauset-0.5.1.dev104/benchmarks/plot.py +75 -0
- pycauset-0.5.1.dev104/documentation/dev/Warnings & Exceptions.md +133 -0
- pycauset-0.5.1.dev104/documentation/docs/assets/benchmarks/speedup_by_op.png +0 -0
- pycauset-0.5.1.dev104/documentation/docs/assets/benchmarks/time_eigen_svd.png +0 -0
- pycauset-0.5.1.dev104/documentation/docs/assets/benchmarks/time_elem_dot.png +0 -0
- pycauset-0.5.1.dev104/documentation/docs/assets/benchmarks/time_matmul_fact.png +0 -0
- pycauset-0.5.1.dev104/documentation/docs/assets/gallery/cylinder_embedding.png +0 -0
- pycauset-0.5.1.dev104/documentation/docs/assets/gallery/diamond_embedding.png +0 -0
- pycauset-0.5.1.dev104/documentation/docs/assets/gallery/diamond_hasse.png +0 -0
- pycauset-0.5.1.dev104/documentation/docs/assets/logo/favicon.png +0 -0
- pycauset-0.5.1.dev104/documentation/docs/assets/logo/favicon_old.png +0 -0
- pycauset-0.5.1.dev104/documentation/docs/assets/logo/logo.pdn +0 -0
- pycauset-0.5.1.dev104/documentation/docs/assets/logo/logo.png +0 -0
- pycauset-0.5.1.dev104/documentation/docs/classes/matrix/index.md +28 -0
- pycauset-0.5.1.dev104/documentation/docs/classes/matrix/pycauset.AntiSymmetricMatrix.md +41 -0
- pycauset-0.5.1.dev104/documentation/docs/classes/matrix/pycauset.DiagonalMatrix.md +54 -0
- pycauset-0.5.1.dev104/documentation/docs/classes/matrix/pycauset.MatrixBase.md +133 -0
- pycauset-0.5.1.dev104/documentation/docs/classes/matrix/pycauset.SymmetricMatrix.md +47 -0
- pycauset-0.5.1.dev104/documentation/docs/classes/spacetime/index.md +8 -0
- pycauset-0.5.1.dev104/documentation/docs/classes/spacetime/pycauset.CausalSpacetime.md +25 -0
- pycauset-0.5.1.dev104/documentation/docs/classes/spacetime/pycauset.spacetime.MinkowskiBox.md +73 -0
- pycauset-0.5.1.dev104/documentation/docs/classes/spacetime/pycauset.spacetime.MinkowskiCylinder.md +75 -0
- pycauset-0.5.1.dev104/documentation/docs/classes/spacetime/pycauset.spacetime.MinkowskiDiamond.md +54 -0
- pycauset-0.5.1.dev104/documentation/docs/classes/spacetime/pycauset.spacetime.md +10 -0
- pycauset-0.5.1.dev104/documentation/docs/functions/index.md +77 -0
- pycauset-0.5.1.dev104/documentation/docs/functions/pycauset.antisymmetric.md +37 -0
- pycauset-0.5.1.dev104/documentation/docs/functions/pycauset.asarray.md +68 -0
- pycauset-0.5.1.dev104/documentation/docs/functions/pycauset.bitwise_and.md +22 -0
- pycauset-0.5.1.dev104/documentation/docs/functions/pycauset.bitwise_nand.md +23 -0
- pycauset-0.5.1.dev104/documentation/docs/functions/pycauset.bitwise_nor.md +23 -0
- pycauset-0.5.1.dev104/documentation/docs/functions/pycauset.bitwise_or.md +21 -0
- pycauset-0.5.1.dev104/documentation/docs/functions/pycauset.bitwise_xnor.md +23 -0
- pycauset-0.5.1.dev104/documentation/docs/functions/pycauset.bitwise_xor.md +21 -0
- pycauset-0.5.1.dev104/documentation/docs/functions/pycauset.cholesky.md +16 -0
- pycauset-0.5.1.dev104/documentation/docs/functions/pycauset.cross.md +34 -0
- pycauset-0.5.1.dev104/documentation/docs/functions/pycauset.cuda.benchmark.md +66 -0
- pycauset-0.5.1.dev104/documentation/docs/functions/pycauset.cuda.current_device.md +42 -0
- pycauset-0.5.1.dev104/documentation/docs/functions/pycauset.cuda.disable.md +42 -0
- pycauset-0.5.1.dev104/documentation/docs/functions/pycauset.cuda.enable.md +60 -0
- pycauset-0.5.1.dev104/documentation/docs/functions/pycauset.cuda.force_backend.md +56 -0
- pycauset-0.5.1.dev104/documentation/docs/functions/pycauset.cuda.is_available.md +39 -0
- pycauset-0.5.1.dev104/documentation/docs/functions/pycauset.cuda.set_pinning_budget.md +46 -0
- pycauset-0.5.1.dev104/documentation/docs/functions/pycauset.determinant.md +39 -0
- pycauset-0.5.1.dev104/documentation/docs/functions/pycauset.diagonal.md +30 -0
- pycauset-0.5.1.dev104/documentation/docs/functions/pycauset.eigvals_arnoldi.md +24 -0
- pycauset-0.5.1.dev104/documentation/docs/functions/pycauset.load_matrix.md +20 -0
- pycauset-0.5.1.dev104/documentation/docs/functions/pycauset.load_npy.md +21 -0
- pycauset-0.5.1.dev104/documentation/docs/functions/pycauset.load_npz.md +21 -0
- pycauset-0.5.1.dev104/documentation/docs/functions/pycauset.matrix_power.md +39 -0
- pycauset-0.5.1.dev104/documentation/docs/functions/pycauset.matrix_rank.md +39 -0
- pycauset-0.5.1.dev104/documentation/docs/functions/pycauset.outer.md +30 -0
- pycauset-0.5.1.dev104/documentation/docs/functions/pycauset.qr.md +34 -0
- pycauset-0.5.1.dev104/documentation/docs/functions/pycauset.save_npy.md +23 -0
- pycauset-0.5.1.dev104/documentation/docs/functions/pycauset.save_npz.md +24 -0
- pycauset-0.5.1.dev104/documentation/docs/functions/pycauset.svdvals.md +33 -0
- pycauset-0.5.1.dev104/documentation/docs/functions/pycauset.symmetric.md +36 -0
- pycauset-0.5.1.dev104/documentation/docs/functions/pycauset.trace.md +38 -0
- pycauset-0.5.1.dev104/documentation/docs/functions/pycauset.vecdot.md +33 -0
- pycauset-0.5.1.dev104/documentation/docs/index.md +32 -0
- pycauset-0.5.1.dev104/documentation/docs/parameters/index.md +5 -0
- pycauset-0.5.1.dev104/documentation/docs/parameters/pycauset.pinning_budget.md +18 -0
- pycauset-0.5.1.dev104/documentation/guides/Advanced Usage.md +78 -0
- pycauset-0.5.1.dev104/documentation/guides/Installation.md +55 -0
- pycauset-0.5.1.dev104/documentation/guides/Performance Guide.md +246 -0
- pycauset-0.5.1.dev104/documentation/guides/Visualization.md +130 -0
- pycauset-0.5.1.dev104/documentation/guides/release1/dtypes.md +87 -0
- pycauset-0.5.1.dev104/documentation/index.md +91 -0
- pycauset-0.5.1.dev104/documentation/internals/Algorithms.md +126 -0
- pycauset-0.5.1.dev104/documentation/internals/Block Matrices.md +170 -0
- pycauset-0.5.1.dev104/documentation/internals/Compute Architecture.md +398 -0
- pycauset-0.5.1.dev104/documentation/internals/DTYPE_COMPLEX_OVERFLOW_PLAN.md +576 -0
- pycauset-0.5.1.dev104/documentation/internals/DType System.md +153 -0
- pycauset-0.5.1.dev104/documentation/internals/Streaming Manager.md +140 -0
- pycauset-0.5.1.dev104/documentation/internals/plans/OPTIMIZATION_STATUS.md +139 -0
- pycauset-0.5.1.dev104/documentation/internals/plans/R1_CPU_PLAN.md +415 -0
- pycauset-0.5.1.dev104/documentation/internals/plans/R1_EXECUTION.md +154 -0
- pycauset-0.5.1.dev104/documentation/internals/plans/R1_POLISH.md +33 -0
- pycauset-0.5.1.dev104/documentation/internals/plans/SUPPORT_READINESS_FRAMEWORK.md +424 -0
- pycauset-0.5.1.dev104/documentation/internals/plans/TODO.md +509 -0
- pycauset-0.5.1.dev104/documentation/internals/plans/completed/R1_CPU_PLAN.md +415 -0
- pycauset-0.5.1.dev104/documentation/internals/plans/completed/R1_GPU_PLAN.md +120 -0
- pycauset-0.5.1.dev104/documentation/internals/plans/completed/R1_NUMPY_PLAN.md +340 -0
- pycauset-0.5.1.dev104/documentation/project/Philosophy.md +35 -0
- pycauset-0.5.1.dev104/documentation/project/plans/R2_API_DESIGN.md +333 -0
- pycauset-0.5.1.dev104/documentation/project/plans/R2_FIELDS_PHYSICS.md +136 -0
- pycauset-0.5.1.dev104/documentation/project/plans/R2_PLAN_MAP.md +318 -0
- pycauset-0.5.1.dev104/documentation/project/plans/R2_ROADMAP.md +467 -0
- pycauset-0.5.1.dev104/documentation/project/plans/R2_SPACETIME_CREATION.md +193 -0
- pycauset-0.5.1.dev104/documentation/project/plans/R2_SPACETIME_LIBRARY.md +120 -0
- pycauset-0.5.1.dev104/documentation/project/plans/index.md +13 -0
- pycauset-0.5.1.dev104/documentation/project/protocols/Adding Operations.md +281 -0
- pycauset-0.5.1.dev104/include/pycauset/compute/AutoSolver.hpp +132 -0
- pycauset-0.5.1.dev104/include/pycauset/compute/ComputeContext.hpp +49 -0
- pycauset-0.5.1.dev104/include/pycauset/compute/ComputeDevice.hpp +129 -0
- pycauset-0.5.1.dev104/include/pycauset/compute/ComputeWorker.hpp +65 -0
- pycauset-0.5.1.dev104/include/pycauset/compute/ComputeWorkerExtensionTemplate.hpp +35 -0
- pycauset-0.5.1.dev104/include/pycauset/compute/HardwareProfile.hpp +36 -0
- pycauset-0.5.1.dev104/include/pycauset/compute/MatrixPropertyTraits.hpp +61 -0
- pycauset-0.5.1.dev104/include/pycauset/compute/StreamingManager.hpp +56 -0
- pycauset-0.5.1.dev104/include/pycauset/compute/WorkloadPartitioner.hpp +25 -0
- pycauset-0.5.1.dev104/include/pycauset/compute/cpu/CpuComputeWorker.hpp +38 -0
- pycauset-0.5.1.dev104/include/pycauset/compute/cpu/CpuDevice.hpp +74 -0
- pycauset-0.5.1.dev104/include/pycauset/compute/cpu/CpuSolver.hpp +84 -0
- pycauset-0.5.1.dev104/include/pycauset/core/MemoryGovernor.hpp +219 -0
- pycauset-0.5.1.dev104/include/pycauset/core/OpRegistry.hpp +34 -0
- pycauset-0.5.1.dev104/include/pycauset/core/PersistentObject.hpp +172 -0
- pycauset-0.5.1.dev104/include/pycauset/core/PropertyFlags.hpp +35 -0
- pycauset-0.5.1.dev104/include/pycauset/core/SystemUtils.hpp +32 -0
- pycauset-0.5.1.dev104/include/pycauset/math/LinearAlgebra.hpp +66 -0
- pycauset-0.5.1.dev104/include/pycauset/matrix/ComplexFloat16Matrix.hpp +231 -0
- pycauset-0.5.1.dev104/include/pycauset/matrix/DenseMatrix.hpp +561 -0
- pycauset-0.5.1.dev104/include/pycauset/matrix/TriangularMatrix.hpp +280 -0
- pycauset-0.5.1.dev104/include/pycauset/vector/ComplexFloat16Vector.hpp +171 -0
- pycauset-0.5.1.dev104/mkdocs.yml +303 -0
- pycauset-0.5.1.dev104/mockups/spacetime_studio_mockup.html +557 -0
- pycauset-0.5.1.dev104/overrides/main.html +647 -0
- pycauset-0.5.1.dev104/overrides/partials/header.html +84 -0
- pycauset-0.5.1.dev104/pyproject.toml +81 -0
- pycauset-0.5.1.dev104/python/pycauset/__init__.py +2160 -0
- pycauset-0.5.1.dev104/python/pycauset/__init__.pyi +340 -0
- pycauset-0.5.1.dev104/python/pycauset/_internal/big_blob_cache.py +159 -0
- pycauset-0.5.1.dev104/python/pycauset/_internal/blockmatrix.py +852 -0
- pycauset-0.5.1.dev104/python/pycauset/_internal/dense_python.py +90 -0
- pycauset-0.5.1.dev104/python/pycauset/_internal/export_guard.py +317 -0
- pycauset-0.5.1.dev104/python/pycauset/_internal/factories.py +247 -0
- pycauset-0.5.1.dev104/python/pycauset/_internal/formatting.py +104 -0
- pycauset-0.5.1.dev104/python/pycauset/_internal/interop.py +47 -0
- pycauset-0.5.1.dev104/python/pycauset/_internal/lazy_ufunc.py +72 -0
- pycauset-0.5.1.dev104/python/pycauset/_internal/linalg_cache.py +140 -0
- pycauset-0.5.1.dev104/python/pycauset/_internal/matrix_api.py +590 -0
- pycauset-0.5.1.dev104/python/pycauset/_internal/native.py +128 -0
- pycauset-0.5.1.dev104/python/pycauset/_internal/ops.py +1581 -0
- pycauset-0.5.1.dev104/python/pycauset/_internal/patching.py +102 -0
- pycauset-0.5.1.dev104/python/pycauset/_internal/persistence.py +1661 -0
- pycauset-0.5.1.dev104/python/pycauset/_internal/properties.py +1194 -0
- pycauset-0.5.1.dev104/python/pycauset/_internal/runtime.py +127 -0
- pycauset-0.5.1.dev104/python/pycauset/_internal/thunks.py +125 -0
- pycauset-0.5.1.dev104/python/pycauset/_version.py +24 -0
- pycauset-0.5.1.dev104/python/pycauset/causet.py +167 -0
- pycauset-0.5.1.dev104/python/pycauset/cuda.py +45 -0
- pycauset-0.5.1.dev104/python/pycauset/field.py +217 -0
- pycauset-0.5.1.dev104/python/pycauset/spacetime.py +134 -0
- pycauset-0.5.1.dev104/python/pycauset/vis.py +344 -0
- pycauset-0.5.1.dev104/src/accelerators/cuda/ArnoldiDriver.cu +146 -0
- pycauset-0.5.1.dev104/src/accelerators/cuda/ArnoldiDriver.hpp +20 -0
- pycauset-0.5.1.dev104/src/accelerators/cuda/CholeskyDriver.cu +141 -0
- pycauset-0.5.1.dev104/src/accelerators/cuda/CholeskyDriver.hpp +19 -0
- pycauset-0.5.1.dev104/src/accelerators/cuda/CudaDevice.cu +1379 -0
- pycauset-0.5.1.dev104/src/accelerators/cuda/CudaDevice.hpp +167 -0
- pycauset-0.5.1.dev104/src/accelerators/cuda/CudaFuture.hpp +49 -0
- pycauset-0.5.1.dev104/src/accelerators/cuda/MatmulDriver.cu +27 -0
- pycauset-0.5.1.dev104/src/accelerators/cuda/MatmulDriver.hpp +30 -0
- pycauset-0.5.1.dev104/src/accelerators/cuda/ScopedPinner.hpp +44 -0
- pycauset-0.5.1.dev104/src/bindings/bind_complex.cpp +174 -0
- pycauset-0.5.1.dev104/src/bindings/bind_core.cpp +273 -0
- pycauset-0.5.1.dev104/src/bindings/bind_expression.cpp +260 -0
- pycauset-0.5.1.dev104/src/bindings/bind_math.cpp +52 -0
- pycauset-0.5.1.dev104/src/bindings/bind_matrix.cpp +4692 -0
- pycauset-0.5.1.dev104/src/bindings/bind_op_registry.cpp +23 -0
- pycauset-0.5.1.dev104/src/bindings/bind_vector.cpp +1371 -0
- pycauset-0.5.1.dev104/src/bindings/bindings_common.hpp +15 -0
- pycauset-0.5.1.dev104/src/bindings.cpp +25 -0
- pycauset-0.5.1.dev104/src/compute/AutoSolver.cpp +928 -0
- pycauset-0.5.1.dev104/src/compute/ComputeContext.cpp +125 -0
- pycauset-0.5.1.dev104/src/compute/StreamingManager.cpp +328 -0
- pycauset-0.5.1.dev104/src/compute/WorkloadPartitioner.cpp +70 -0
- pycauset-0.5.1.dev104/src/compute/cpu/CpuComputeWorker.cpp +45 -0
- pycauset-0.5.1.dev104/src/compute/cpu/CpuDevice.cpp +221 -0
- pycauset-0.5.1.dev104/src/compute/cpu/CpuSolver.cpp +5448 -0
- pycauset-0.5.1.dev104/src/core/MemoryGovernor.cpp +322 -0
- pycauset-0.5.1.dev104/src/core/MemoryMapper.cpp +653 -0
- pycauset-0.5.1.dev104/src/core/OpRegistration.cpp +200 -0
- pycauset-0.5.1.dev104/src/core/SystemUtils.cpp +91 -0
- pycauset-0.5.1.dev104/src/math/LinearAlgebra.cpp +1051 -0
- pycauset-0.5.1.dev104/tests/python/phase3_4_verification.py +110 -0
- pycauset-0.5.1.dev104/tests/python/test_backing_dir_api.py +59 -0
- pycauset-0.5.1.dev104/tests/python/test_cuda_hardware_profile_mock.py +33 -0
- pycauset-0.5.1.dev104/tests/python/test_edge_cases_core.py +287 -0
- pycauset-0.5.1.dev104/tests/python/test_eig_general_cpu.py +101 -0
- pycauset-0.5.1.dev104/tests/python/test_eigen_block_matrix.py +105 -0
- pycauset-0.5.1.dev104/tests/python/test_eigen_caching.py +128 -0
- pycauset-0.5.1.dev104/tests/python/test_eigen_cpu.py +97 -0
- pycauset-0.5.1.dev104/tests/python/test_eigen_op_contract.py +79 -0
- pycauset-0.5.1.dev104/tests/python/test_eigen_streaming.py +147 -0
- pycauset-0.5.1.dev104/tests/python/test_factorizations.py +99 -0
- pycauset-0.5.1.dev104/tests/python/test_gpu.py +300 -0
- pycauset-0.5.1.dev104/tests/python/test_hybrid_correctness_suite.py +87 -0
- pycauset-0.5.1.dev104/tests/python/test_hybrid_matmul.py +59 -0
- pycauset-0.5.1.dev104/tests/python/test_inverse_cpu.py +35 -0
- pycauset-0.5.1.dev104/tests/python/test_inverse_cpu_block.py +45 -0
- pycauset-0.5.1.dev104/tests/python/test_known_bugs.py +42 -0
- pycauset-0.5.1.dev104/tests/python/test_linalg_phase_g_endpoints.py +115 -0
- pycauset-0.5.1.dev104/tests/python/test_phase7_op_contract.py +119 -0
- pycauset-0.5.1.dev104/tests/python/test_public_api.py +91 -0
- pycauset-0.5.1.dev104/tests/python/test_ram_storage.py +98 -0
- pycauset-0.5.1.dev104/tests/python/test_registry_binding.py +40 -0
- pycauset-0.5.1.dev104/tests/python/test_symmetric.py +292 -0
- pycauset-0.5.1.dev104/tests/test_cpu_worker_contract.cpp +68 -0
- pycauset-0.5.1.dev104/tests/test_op_registry.cpp +46 -0
- pycauset-0.5.1.dev104/tools/check_native_exports.py +162 -0
- pycauset-0.5.1.dev104/tools/stress_100gb_matrix.py +73 -0
- pycauset-0.5.1.dev2/.github/workflows/publish.yml +0 -117
- pycauset-0.5.1.dev2/.gitignore +0 -111
- pycauset-0.5.1.dev2/CMakeLists.txt +0 -594
- pycauset-0.5.1.dev2/PKG-INFO +0 -142
- pycauset-0.5.1.dev2/README.md +0 -121
- pycauset-0.5.1.dev2/documentation/dev/Warnings & Exceptions.md +0 -133
- pycauset-0.5.1.dev2/documentation/docs/classes/matrix/index.md +0 -26
- pycauset-0.5.1.dev2/documentation/docs/classes/matrix/pycauset.MatrixBase.md +0 -131
- pycauset-0.5.1.dev2/documentation/docs/classes/matrix/pycauset.SymmetricMatrix.md +0 -35
- pycauset-0.5.1.dev2/documentation/docs/classes/spacetime/index.md +0 -8
- pycauset-0.5.1.dev2/documentation/docs/classes/spacetime/pycauset.spacetime.CausalSpacetime.md +0 -29
- pycauset-0.5.1.dev2/documentation/docs/classes/spacetime/pycauset.spacetime.MinkowskiBox.md +0 -73
- pycauset-0.5.1.dev2/documentation/docs/classes/spacetime/pycauset.spacetime.MinkowskiCylinder.md +0 -75
- pycauset-0.5.1.dev2/documentation/docs/classes/spacetime/pycauset.spacetime.MinkowskiDiamond.md +0 -54
- pycauset-0.5.1.dev2/documentation/docs/classes/spacetime/pycauset.spacetime.md +0 -10
- pycauset-0.5.1.dev2/documentation/docs/functions/index.md +0 -43
- pycauset-0.5.1.dev2/documentation/docs/functions/pycauset.cholesky.md +0 -3
- pycauset-0.5.1.dev2/documentation/docs/functions/pycauset.eigvals_arnoldi.md +0 -5
- pycauset-0.5.1.dev2/documentation/docs/index.md +0 -26
- pycauset-0.5.1.dev2/documentation/docs/parameters/index.md +0 -4
- pycauset-0.5.1.dev2/documentation/guides/Installation.md +0 -102
- pycauset-0.5.1.dev2/documentation/guides/Performance Guide.md +0 -145
- pycauset-0.5.1.dev2/documentation/guides/Visualization.md +0 -130
- pycauset-0.5.1.dev2/documentation/guides/release1/dtypes.md +0 -87
- pycauset-0.5.1.dev2/documentation/index.md +0 -50
- pycauset-0.5.1.dev2/documentation/internals/Algorithms.md +0 -117
- pycauset-0.5.1.dev2/documentation/internals/Block Matrices.md +0 -170
- pycauset-0.5.1.dev2/documentation/internals/Compute Architecture.md +0 -238
- pycauset-0.5.1.dev2/documentation/internals/DTYPE_COMPLEX_OVERFLOW_PLAN.md +0 -569
- pycauset-0.5.1.dev2/documentation/internals/DType System.md +0 -153
- pycauset-0.5.1.dev2/documentation/internals/Streaming Manager.md +0 -65
- pycauset-0.5.1.dev2/documentation/internals/plans/R1_GPU_PLAN.md +0 -108
- pycauset-0.5.1.dev2/documentation/internals/plans/R1_POLISH.md +0 -35
- pycauset-0.5.1.dev2/documentation/internals/plans/SUPPORT_READINESS_FRAMEWORK.md +0 -397
- pycauset-0.5.1.dev2/documentation/internals/plans/TODO.md +0 -474
- pycauset-0.5.1.dev2/documentation/internals/plans/completed/R1_NUMPY_PLAN.md +0 -340
- pycauset-0.5.1.dev2/documentation/project/Philosophy.md +0 -62
- pycauset-0.5.1.dev2/documentation/project/protocols/Adding Operations.md +0 -165
- pycauset-0.5.1.dev2/include/pycauset/compute/AutoSolver.hpp +0 -96
- pycauset-0.5.1.dev2/include/pycauset/compute/ComputeContext.hpp +0 -40
- pycauset-0.5.1.dev2/include/pycauset/compute/ComputeDevice.hpp +0 -90
- pycauset-0.5.1.dev2/include/pycauset/compute/cpu/CpuDevice.hpp +0 -59
- pycauset-0.5.1.dev2/include/pycauset/compute/cpu/CpuSolver.hpp +0 -63
- pycauset-0.5.1.dev2/include/pycauset/core/MemoryGovernor.hpp +0 -193
- pycauset-0.5.1.dev2/include/pycauset/core/PersistentObject.hpp +0 -156
- pycauset-0.5.1.dev2/include/pycauset/core/SystemUtils.hpp +0 -24
- pycauset-0.5.1.dev2/include/pycauset/math/LinearAlgebra.hpp +0 -54
- pycauset-0.5.1.dev2/include/pycauset/matrix/ComplexFloat16Matrix.hpp +0 -224
- pycauset-0.5.1.dev2/include/pycauset/matrix/DenseMatrix.hpp +0 -454
- pycauset-0.5.1.dev2/include/pycauset/matrix/TriangularMatrix.hpp +0 -273
- pycauset-0.5.1.dev2/include/pycauset/vector/ComplexFloat16Vector.hpp +0 -164
- pycauset-0.5.1.dev2/mkdocs.yml +0 -275
- pycauset-0.5.1.dev2/overrides/main.html +0 -153
- pycauset-0.5.1.dev2/pyproject.toml +0 -54
- pycauset-0.5.1.dev2/python/pycauset/__init__.py +0 -1834
- pycauset-0.5.1.dev2/python/pycauset/__init__.pyi +0 -321
- pycauset-0.5.1.dev2/python/pycauset/_internal/big_blob_cache.py +0 -156
- pycauset-0.5.1.dev2/python/pycauset/_internal/blockmatrix.py +0 -778
- pycauset-0.5.1.dev2/python/pycauset/_internal/dense_python.py +0 -90
- pycauset-0.5.1.dev2/python/pycauset/_internal/export_guard.py +0 -302
- pycauset-0.5.1.dev2/python/pycauset/_internal/factories.py +0 -247
- pycauset-0.5.1.dev2/python/pycauset/_internal/formatting.py +0 -105
- pycauset-0.5.1.dev2/python/pycauset/_internal/interop.py +0 -44
- pycauset-0.5.1.dev2/python/pycauset/_internal/lazy_ufunc.py +0 -70
- pycauset-0.5.1.dev2/python/pycauset/_internal/linalg_cache.py +0 -141
- pycauset-0.5.1.dev2/python/pycauset/_internal/matrix_api.py +0 -549
- pycauset-0.5.1.dev2/python/pycauset/_internal/native.py +0 -125
- pycauset-0.5.1.dev2/python/pycauset/_internal/ops.py +0 -932
- pycauset-0.5.1.dev2/python/pycauset/_internal/patching.py +0 -103
- pycauset-0.5.1.dev2/python/pycauset/_internal/persistence.py +0 -1591
- pycauset-0.5.1.dev2/python/pycauset/_internal/properties.py +0 -1146
- pycauset-0.5.1.dev2/python/pycauset/_internal/runtime.py +0 -120
- pycauset-0.5.1.dev2/python/pycauset/_internal/thunks.py +0 -126
- pycauset-0.5.1.dev2/python/pycauset/_version.py +0 -34
- pycauset-0.5.1.dev2/python/pycauset/causet.py +0 -167
- pycauset-0.5.1.dev2/python/pycauset/field.py +0 -215
- pycauset-0.5.1.dev2/python/pycauset/spacetime.py +0 -135
- pycauset-0.5.1.dev2/python/pycauset/vis.py +0 -341
- pycauset-0.5.1.dev2/src/accelerators/cuda/CudaDevice.cu +0 -1031
- pycauset-0.5.1.dev2/src/accelerators/cuda/CudaDevice.hpp +0 -146
- pycauset-0.5.1.dev2/src/bindings/bind_complex.cpp +0 -174
- pycauset-0.5.1.dev2/src/bindings/bind_core.cpp +0 -231
- pycauset-0.5.1.dev2/src/bindings/bind_expression.cpp +0 -176
- pycauset-0.5.1.dev2/src/bindings/bind_matrix.cpp +0 -4274
- pycauset-0.5.1.dev2/src/bindings/bind_vector.cpp +0 -1368
- pycauset-0.5.1.dev2/src/bindings/bindings_common.hpp +0 -13
- pycauset-0.5.1.dev2/src/bindings.cpp +0 -23
- pycauset-0.5.1.dev2/src/compute/AutoSolver.cpp +0 -474
- pycauset-0.5.1.dev2/src/compute/ComputeContext.cpp +0 -109
- pycauset-0.5.1.dev2/src/compute/cpu/CpuDevice.cpp +0 -125
- pycauset-0.5.1.dev2/src/compute/cpu/CpuSolver.cpp +0 -4451
- pycauset-0.5.1.dev2/src/core/MemoryGovernor.cpp +0 -291
- pycauset-0.5.1.dev2/src/core/MemoryMapper.cpp +0 -652
- pycauset-0.5.1.dev2/src/core/SystemUtils.cpp +0 -69
- pycauset-0.5.1.dev2/src/math/LinearAlgebra.cpp +0 -871
- pycauset-0.5.1.dev2/tests/manual/test.py +0 -9
- pycauset-0.5.1.dev2/tests/python/test_backing_dir_api.py +0 -46
- pycauset-0.5.1.dev2/tests/python/test_gpu.py +0 -300
- pycauset-0.5.1.dev2/tests/python/test_linalg_phase_g_endpoints.py +0 -100
- pycauset-0.5.1.dev2/tests/python/test_ram_storage.py +0 -85
- pycauset-0.5.1.dev2/tools/check_native_exports.py +0 -162
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/.github/workflows/docs.yml +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/dev/Bindings & Dispatch.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/dev/Build System.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/dev/Codebase Structure.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/dev/PyCauset Container Format.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/dev/Python Internals.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/dev/Repository Hygiene.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/dev/Restructure Plan.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/dev/Square-only Assumptions.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/dev/Storage Semantics.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/dev/Streaming Manager.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/dev/Testing & Benchmarks.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/dev/index.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/dev/performance_optimizations.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/assets/logo/logo-text-colour.png +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/assets/logo/logo-text-colour.xcf +0 -0
- /pycauset-0.5.1.dev2/documentation/docs/assets/logo/logo-text.png → /pycauset-0.5.1.dev104/documentation/docs/assets/logo/logo-text-monochrome.png +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/assets/logo/logo.xcf +0 -0
- /pycauset-0.5.1.dev2/documentation/docs/assets/logo/logo.png → /pycauset-0.5.1.dev104/documentation/docs/assets/logo/logo_old.png +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/classes/AntiSymmetricMatrix.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/classes/SymmetricMatrix.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/classes/core/index.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/classes/core/pycauset.PersistentObject.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/classes/field/index.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/classes/field/pycauset.field.Field.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/classes/field/pycauset.field.ScalarField.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/classes/index.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/classes/matrix/pycauset.ComplexFloat16Matrix.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/classes/matrix/pycauset.ComplexFloat32Matrix.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/classes/matrix/pycauset.ComplexFloat64Matrix.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/classes/matrix/pycauset.DenseBitMatrix.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/classes/matrix/pycauset.Float16Matrix.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/classes/matrix/pycauset.Float32Matrix.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/classes/matrix/pycauset.FloatMatrix.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/classes/matrix/pycauset.IdentityMatrix.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/classes/matrix/pycauset.Int16Matrix.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/classes/matrix/pycauset.Int64Matrix.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/classes/matrix/pycauset.Int8Matrix.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/classes/matrix/pycauset.IntegerMatrix.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/classes/matrix/pycauset.TriangularBitMatrix.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/classes/matrix/pycauset.TriangularFloatMatrix.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/classes/matrix/pycauset.TriangularIntegerMatrix.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/classes/matrix/pycauset.TriangularMatrix.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/classes/matrix/pycauset.UInt16Matrix.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/classes/matrix/pycauset.UInt32Matrix.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/classes/matrix/pycauset.UInt64Matrix.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/classes/matrix/pycauset.UInt8Matrix.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/classes/spacetime/pycauset.CausalSet.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/classes/vector/index.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/classes/vector/pycauset.BitVector.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/classes/vector/pycauset.ComplexFloat16Vector.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/classes/vector/pycauset.ComplexFloat32Vector.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/classes/vector/pycauset.ComplexFloat64Vector.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/classes/vector/pycauset.Float16Vector.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/classes/vector/pycauset.Float32Vector.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/classes/vector/pycauset.FloatVector.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/classes/vector/pycauset.Int16Vector.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/classes/vector/pycauset.Int64Vector.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/classes/vector/pycauset.Int8Vector.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/classes/vector/pycauset.IntegerVector.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/classes/vector/pycauset.UInt16Vector.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/classes/vector/pycauset.UInt32Vector.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/classes/vector/pycauset.UInt64Vector.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/classes/vector/pycauset.UInt8Vector.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/classes/vector/pycauset.UnitVector.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/classes/vector/pycauset.VectorBase.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/functions/pycauset.I.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/functions/pycauset.bitwise_not.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/functions/pycauset.causal_matrix.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/functions/pycauset.causet.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/functions/pycauset.compute_k.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/functions/pycauset.compute_k_matrix.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/functions/pycauset.cond.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/functions/pycauset.convert_file.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/functions/pycauset.divide.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/functions/pycauset.dot.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/functions/pycauset.eig.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/functions/pycauset.eigh.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/functions/pycauset.eigvals.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/functions/pycauset.eigvals_skew.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/functions/pycauset.eigvalsh.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/functions/pycauset.empty.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/functions/pycauset.get_memory_threshold.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/functions/pycauset.get_num_threads.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/functions/pycauset.get_precision_mode.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/functions/pycauset.identity.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/functions/pycauset.invert.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/functions/pycauset.load.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/functions/pycauset.lstsq.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/functions/pycauset.lu.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/functions/pycauset.matmul.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/functions/pycauset.matrix.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/functions/pycauset.norm.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/functions/pycauset.ones.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/functions/pycauset.pinv.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/functions/pycauset.precision_mode.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/functions/pycauset.save.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/functions/pycauset.set_backing_dir.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/functions/pycauset.set_export_max_bytes.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/functions/pycauset.set_memory_threshold.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/functions/pycauset.set_num_threads.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/functions/pycauset.set_precision_mode.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/functions/pycauset.slogdet.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/functions/pycauset.solve.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/functions/pycauset.solve_triangular.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/functions/pycauset.sum.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/functions/pycauset.svd.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/functions/pycauset.to_numpy.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/functions/pycauset.vector.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/functions/pycauset.zeros.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/parameters/pycauset.keep_temp_files.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/parameters/pycauset.seed.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/pycauset.vis/index.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/pycauset.vis/plot_causal_matrix.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/pycauset.vis/plot_embedding.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/docs/pycauset.vis/plot_hasse.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/guides/Causal Sets.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/guides/Field Theory.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/guides/Linear Algebra Operations.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/guides/Matrix Guide.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/guides/Numpy Integration.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/guides/NxM Support.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/guides/Spacetime.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/guides/Storage and Memory.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/guides/User Guide.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/guides/Vector Guide.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/guides/index.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/guides/performance.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/guides/release1/index.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/guides/release1/linalg.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/guides/release1/properties.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/guides/release1/shapes.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/guides/release1/storage.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/internals/CooperativeArchitecture.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/internals/LazyEvaluation.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/internals/Memory and Data.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/internals/MemoryArchitecture.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/internals/index.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/internals/plans/BLAS_INTEGRATION_PLAN.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/internals/plans/R1_NUMPY_PLAN.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/internals/plans/completed/DTYPE_COMPLEX_OVERFLOW_PLAN.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/internals/plans/completed/R1_BLOCKMATRIX_PLAN.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/internals/plans/completed/R1_IO_PLAN.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/internals/plans/completed/R1_LAZY.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/internals/plans/completed/R1_LINALG_PLAN.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/internals/plans/completed/R1_PERF.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/internals/plans/completed/R1_PROPERTIES_PLAN.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/internals/plans/completed/R1_SAFETY.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/internals/plans/completed/R1_SHAPES_PLAN.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/internals/plans/completed/R1_STORAGE_PLAN.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/internals/plans/completed/Restructure Plan.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/internals/plans/phase1_inventory.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/project/Contributing.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/project/Public API Contract.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/project/index.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/project/protocols/Adding Types.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/project/protocols/Documentation Protocol.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/project/protocols/NumPy Alignment Protocol.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/project/protocols/Pre-alpha Policy.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/project/protocols/Release Process.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/project/protocols/Testing and Bug Tracking.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/documentation/project/protocols/index.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/Cholesky +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/CholmodSupport +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/Core +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/Dense +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/Eigen +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/Eigenvalues +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/Geometry +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/Householder +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/IterativeLinearSolvers +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/Jacobi +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/KLUSupport +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/LU +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/MetisSupport +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/OrderingMethods +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/PaStiXSupport +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/PardisoSupport +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/QR +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/QtAlignedMalloc +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/SPQRSupport +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/SVD +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/Sparse +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/SparseCholesky +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/SparseCore +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/SparseLU +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/SparseQR +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/StdDeque +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/StdList +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/StdVector +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/SuperLUSupport +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/UmfPackSupport +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Cholesky/LDLT.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Cholesky/LLT.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Cholesky/LLT_LAPACKE.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/CholmodSupport/CholmodSupport.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/ArithmeticSequence.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/Array.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/ArrayBase.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/ArrayWrapper.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/Assign.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/AssignEvaluator.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/Assign_MKL.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/BandMatrix.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/Block.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/BooleanRedux.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/CommaInitializer.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/ConditionEstimator.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/CoreEvaluators.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/CoreIterators.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/CwiseBinaryOp.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/CwiseNullaryOp.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/CwiseTernaryOp.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/CwiseUnaryOp.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/CwiseUnaryView.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/DenseBase.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/DenseCoeffsBase.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/DenseStorage.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/Diagonal.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/DiagonalMatrix.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/DiagonalProduct.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/Dot.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/EigenBase.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/ForceAlignedAccess.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/Fuzzy.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/GeneralProduct.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/GenericPacketMath.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/GlobalFunctions.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/IO.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/IndexedView.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/Inverse.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/Map.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/MapBase.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/MathFunctions.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/MathFunctionsImpl.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/Matrix.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/MatrixBase.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/NestByValue.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/NoAlias.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/NumTraits.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/PartialReduxEvaluator.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/PermutationMatrix.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/PlainObjectBase.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/Product.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/ProductEvaluators.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/Random.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/Redux.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/Ref.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/Replicate.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/Reshaped.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/ReturnByValue.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/Reverse.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/Select.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/SelfAdjointView.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/SelfCwiseBinaryOp.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/Solve.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/SolveTriangular.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/SolverBase.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/StableNorm.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/StlIterators.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/Stride.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/Swap.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/Transpose.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/Transpositions.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/TriangularMatrix.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/VectorBlock.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/VectorwiseOp.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/Visitor.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/AVX/Complex.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/AVX/MathFunctions.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/AVX/PacketMath.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/AVX/TypeCasting.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/AVX512/Complex.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/AVX512/MathFunctions.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/AVX512/PacketMath.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/AVX512/TypeCasting.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/AltiVec/Complex.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/AltiVec/MathFunctions.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/AltiVec/MatrixProduct.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/AltiVec/MatrixProductCommon.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/AltiVec/MatrixProductMMA.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/AltiVec/PacketMath.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/CUDA/Complex.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/Default/BFloat16.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/Default/ConjHelper.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/Default/GenericPacketMathFunctions.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/Default/GenericPacketMathFunctionsFwd.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/Default/Half.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/Default/Settings.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/Default/TypeCasting.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/GPU/MathFunctions.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/GPU/PacketMath.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/GPU/TypeCasting.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/HIP/hcc/math_constants.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/MSA/Complex.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/MSA/MathFunctions.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/MSA/PacketMath.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/NEON/Complex.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/NEON/GeneralBlockPanelKernel.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/NEON/MathFunctions.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/NEON/PacketMath.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/NEON/TypeCasting.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/SSE/Complex.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/SSE/MathFunctions.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/SSE/PacketMath.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/SSE/TypeCasting.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/SVE/MathFunctions.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/SVE/PacketMath.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/SVE/TypeCasting.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/SYCL/InteropHeaders.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/SYCL/MathFunctions.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/SYCL/PacketMath.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/SYCL/SyclMemoryModel.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/SYCL/TypeCasting.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/ZVector/Complex.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/ZVector/MathFunctions.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/arch/ZVector/PacketMath.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/functors/AssignmentFunctors.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/functors/BinaryFunctors.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/functors/NullaryFunctors.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/functors/StlFunctors.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/functors/TernaryFunctors.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/functors/UnaryFunctors.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/products/GeneralBlockPanelKernel.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrix.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/products/GeneralMatrixVector.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/products/Parallelizer.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/products/SelfadjointMatrixMatrix.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/products/SelfadjointMatrixVector.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/products/SelfadjointProduct.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/products/SelfadjointRank2Update.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/products/TriangularMatrixMatrix.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/products/TriangularMatrixVector.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/products/TriangularSolverMatrix.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/products/TriangularSolverVector.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/util/BlasUtil.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/util/ConfigureVectorization.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/util/Constants.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/util/DisableStupidWarnings.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/util/ForwardDeclarations.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/util/IndexedViewHelper.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/util/IntegralConstant.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/util/MKL_support.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/util/Macros.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/util/Memory.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/util/Meta.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/util/NonMPL2.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/util/ReenableStupidWarnings.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/util/ReshapedHelper.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/util/StaticAssert.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/util/SymbolicIndex.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Core/util/XprHelper.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Eigenvalues/ComplexEigenSolver.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Eigenvalues/ComplexSchur.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Eigenvalues/EigenSolver.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Eigenvalues/HessenbergDecomposition.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Eigenvalues/RealQZ.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Eigenvalues/RealSchur.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Eigenvalues/Tridiagonalization.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Geometry/AlignedBox.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Geometry/AngleAxis.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Geometry/EulerAngles.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Geometry/Homogeneous.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Geometry/Hyperplane.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Geometry/OrthoMethods.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Geometry/ParametrizedLine.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Geometry/Quaternion.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Geometry/Rotation2D.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Geometry/RotationBase.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Geometry/Scaling.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Geometry/Transform.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Geometry/Translation.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Geometry/Umeyama.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Geometry/arch/Geometry_SIMD.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Householder/BlockHouseholder.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Householder/Householder.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Householder/HouseholderSequence.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/Jacobi/Jacobi.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/KLUSupport/KLUSupport.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/LU/Determinant.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/LU/FullPivLU.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/LU/InverseImpl.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/LU/PartialPivLU.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/LU/PartialPivLU_LAPACKE.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/LU/arch/InverseSize4.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/MetisSupport/MetisSupport.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/OrderingMethods/Amd.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/OrderingMethods/Eigen_Colamd.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/OrderingMethods/Ordering.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/PaStiXSupport/PaStiXSupport.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/PardisoSupport/PardisoSupport.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/QR/ColPivHouseholderQR.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/QR/CompleteOrthogonalDecomposition.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/QR/FullPivHouseholderQR.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/QR/HouseholderQR.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/QR/HouseholderQR_LAPACKE.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SVD/BDCSVD.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SVD/JacobiSVD.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SVD/JacobiSVD_LAPACKE.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SVD/SVDBase.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SVD/UpperBidiagonalization.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseCholesky/SimplicialCholesky.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseCore/AmbiVector.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseCore/CompressedStorage.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseCore/MappedSparseMatrix.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseCore/SparseAssign.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseCore/SparseBlock.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseCore/SparseColEtree.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseCore/SparseCompressedBase.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseCore/SparseCwiseBinaryOp.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseCore/SparseCwiseUnaryOp.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseCore/SparseDenseProduct.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseCore/SparseDiagonalProduct.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseCore/SparseDot.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseCore/SparseFuzzy.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseCore/SparseMap.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseCore/SparseMatrix.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseCore/SparseMatrixBase.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseCore/SparsePermutation.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseCore/SparseProduct.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseCore/SparseRedux.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseCore/SparseRef.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseCore/SparseSelfAdjointView.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseCore/SparseSolverBase.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseCore/SparseSparseProductWithPruning.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseCore/SparseTranspose.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseCore/SparseTriangularView.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseCore/SparseUtil.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseCore/SparseVector.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseCore/SparseView.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseCore/TriangularSolver.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseLU/SparseLU.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseLU/SparseLUImpl.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseLU/SparseLU_Memory.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseLU/SparseLU_Structs.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseLU/SparseLU_Utils.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseLU/SparseLU_column_bmod.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseLU/SparseLU_column_dfs.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseLU/SparseLU_gemm_kernel.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseLU/SparseLU_kernel_bmod.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseLU/SparseLU_panel_bmod.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseLU/SparseLU_panel_dfs.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseLU/SparseLU_pivotL.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseLU/SparseLU_pruneL.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseLU/SparseLU_relax_snode.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SparseQR/SparseQR.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/StlSupport/StdDeque.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/StlSupport/StdList.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/StlSupport/StdVector.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/StlSupport/details.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/SuperLUSupport/SuperLUSupport.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/UmfPackSupport/UmfPackSupport.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/misc/Image.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/misc/Kernel.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/misc/RealSvd2x2.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/misc/blas.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/misc/lapack.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/misc/lapacke.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/misc/lapacke_mangling.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/plugins/ArrayCwiseBinaryOps.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/plugins/ArrayCwiseUnaryOps.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/plugins/BlockMethods.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/plugins/CommonCwiseBinaryOps.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/plugins/CommonCwiseUnaryOps.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/plugins/IndexedViewMethods.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/plugins/MatrixCwiseBinaryOps.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/plugins/MatrixCwiseUnaryOps.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/Eigen/src/plugins/ReshapedMethods.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/signature_of_eigen3_matrix_library +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/AdolcForward +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/AlignedVector3 +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/ArpackSupport +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/AutoDiff +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/BVH +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/Tensor +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/TensorSymmetry +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/ThreadPool +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/Tensor.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorArgMax.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorAssign.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorBase.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorBlock.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorBroadcasting.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorChipping.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorConcatenation.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionBlocking.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionCuda.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionGpu.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionMapper.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionSycl.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionThreadPool.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorConversion.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorConvolution.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorConvolutionSycl.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorCostModel.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorCustomOp.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDevice.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceCuda.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceDefault.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceGpu.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceSycl.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceThreadPool.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDimensionList.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDimensions.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorEvalTo.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorEvaluator.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorExecutor.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorExpr.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorFFT.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorFixedSize.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorForcedEval.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorForwardDeclarations.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorFunctors.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorGenerator.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorGlobalFunctions.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorGpuHipCudaDefines.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorGpuHipCudaUndefines.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorIO.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorImagePatch.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorIndexList.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorInflation.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorInitializer.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorIntDiv.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorLayoutSwap.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMacros.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMap.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMeta.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorPadding.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorPatch.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorRandom.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReduction.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReductionCuda.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReductionGpu.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReductionSycl.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorRef.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReverse.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorScan.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorScanSycl.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorShuffling.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorStorage.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorStriding.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorTrace.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorTraits.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorUInt128.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorVolumePatch.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/DynamicSymmetry.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/StaticSymmetry.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/Symmetry.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/util/TemplateGroupTheory.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/Barrier.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/EventCount.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/NonBlockingThreadPool.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/RunQueue.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadCancel.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadEnvironment.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadLocal.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadPoolInterface.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadYield.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/util/CXX11Meta.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/util/CXX11Workarounds.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/util/EmulateArray.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/CXX11/src/util/MaxSizeVector.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/EulerAngles +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/FFT +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/IterativeSolvers +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/KroneckerProduct +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/LevenbergMarquardt +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/MPRealSupport +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/MatrixFunctions +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/MoreVectorization +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/NonLinearOptimization +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/NumericalDiff +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/OpenGLSupport +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/Polynomials +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/Skyline +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/SparseExtra +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/SpecialFunctions +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/Splines +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/AutoDiff/AutoDiffJacobian.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/AutoDiff/AutoDiffScalar.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/AutoDiff/AutoDiffVector.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/BVH/BVAlgorithms.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/BVH/KdBVH.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/Eigenvalues/ArpackSelfAdjointEigenSolver.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/EulerAngles/EulerAngles.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/EulerAngles/EulerSystem.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/FFT/ei_fftw_impl.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/FFT/ei_kissfft_impl.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/IterativeSolvers/ConstrainedConjGrad.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/IterativeSolvers/DGMRES.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/IterativeSolvers/GMRES.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/IterativeSolvers/IDRS.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/IterativeSolvers/IncompleteLU.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/IterativeSolvers/IterationController.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/IterativeSolvers/MINRES.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/IterativeSolvers/Scaling.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMcovar.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMonestep.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMpar.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMqrsolv.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LevenbergMarquardt.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixFunction.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixLogarithm.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixPower.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixSquareRoot.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/MatrixFunctions/StemFunction.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/MoreVectorization/MathFunctions.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/HybridNonLinearSolver.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/LevenbergMarquardt.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/chkder.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/covar.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/dogleg.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/fdjac1.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/lmpar.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/qrsolv.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/r1mpyq.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/r1updt.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/rwupdt.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/NumericalDiff/NumericalDiff.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/Polynomials/Companion.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/Polynomials/PolynomialSolver.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/Polynomials/PolynomialUtils.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/Skyline/SkylineInplaceLU.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/Skyline/SkylineMatrix.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/Skyline/SkylineMatrixBase.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/Skyline/SkylineProduct.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/Skyline/SkylineStorage.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/Skyline/SkylineUtil.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/SparseExtra/BlockOfDynamicSparseMatrix.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/SparseExtra/BlockSparseMatrix.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/SparseExtra/DynamicSparseMatrix.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/SparseExtra/MarketIO.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/SparseExtra/MatrixMarketIterator.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/SparseExtra/RandomSetter.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsArrayAPI.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsBFloat16.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsFunctors.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsHalf.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsImpl.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsPacketMath.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/HipVectorCompatibility.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsArrayAPI.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsBFloat16.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsFunctors.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsHalf.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsImpl.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsPacketMath.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/AVX/BesselFunctions.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/AVX/SpecialFunctions.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/AVX512/BesselFunctions.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/AVX512/SpecialFunctions.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/GPU/SpecialFunctions.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/NEON/BesselFunctions.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/NEON/SpecialFunctions.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/Splines/Spline.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/Splines/SplineFitting.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/eigen3/unsupported/Eigen/src/Splines/SplineFwd.h +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/pycauset/causet/Spacetime.hpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/pycauset/causet/Sprinkler.hpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/pycauset/compute/AcceleratorConfig.hpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/pycauset/core/DebugTrace.hpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/pycauset/core/Float16.hpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/pycauset/core/IOAccelerator.hpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/pycauset/core/MatrixTraits.hpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/pycauset/core/MatrixTypeResolver.hpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/pycauset/core/MemoryHints.hpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/pycauset/core/MemoryMapper.hpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/pycauset/core/Nvtx.hpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/pycauset/core/ObjectFactory.hpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/pycauset/core/ParallelUtils.hpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/pycauset/core/PromotionResolver.hpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/pycauset/core/ScalarUtils.hpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/pycauset/core/StorageUtils.hpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/pycauset/core/StructureResolver.hpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/pycauset/core/Types.hpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/pycauset/math/Eigen.hpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/pycauset/matrix/DenseBitMatrix.hpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/pycauset/matrix/DiagonalMatrix.hpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/pycauset/matrix/IdentityMatrix.hpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/pycauset/matrix/MatrixBase.hpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/pycauset/matrix/MatrixOps.hpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/pycauset/matrix/SymmetricMatrix.hpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/pycauset/matrix/TriangularBitMatrix.hpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/pycauset/matrix/expression/BinaryExpression.hpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/pycauset/matrix/expression/Functors.hpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/pycauset/matrix/expression/MatrixExpression.hpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/pycauset/matrix/expression/MatrixExpressionWrapper.hpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/pycauset/matrix/expression/MatrixRefExpression.hpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/pycauset/matrix/expression/README.md +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/pycauset/matrix/expression/ScalarExpression.hpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/pycauset/matrix/expression/UnaryExpression.hpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/pycauset/vector/DenseVector.hpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/pycauset/vector/UnitVector.hpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/include/pycauset/vector/VectorBase.hpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/python/pycauset/_internal/__init__.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/python/pycauset/_internal/coercion.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/python/pycauset/_internal/dtypes.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/python/pycauset/_internal/io_observability.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/python/pycauset/_internal/native_threshold.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/python/pycauset/_internal/storage_debug.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/python/pycauset/_internal/streaming_manager.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/python/pycauset/_internal/submatrix_view.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/python/pycauset/_internal/support_matrix.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/python/pycauset/_internal/warnings.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/python/pycauset/_storage.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/requirements-docs.txt +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/share/eigen3/cmake/Eigen3Config.cmake +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/share/eigen3/cmake/Eigen3ConfigVersion.cmake +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/share/eigen3/cmake/Eigen3Targets.cmake +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/share/eigen3/cmake/UseEigen3.cmake +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/src/accelerators/cuda/AsyncStreamer.hpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/src/accelerators/cuda/CudaSolver.cu +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/src/accelerators/cuda/CudaSolver.hpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/src/bindings/bind_causet.cpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/src/bindings/binding_warnings.cpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/src/bindings/binding_warnings.hpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/src/bindings/numpy_export_guard.hpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/src/causet/Sprinkler.cpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/src/core/DebugTrace.cpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/src/core/IOAccelerator.cpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/src/core/ObjectFactory.cpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/src/core/ParallelUtils.cpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/src/core/PersistentObject.cpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/src/core/PromotionResolver.cpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/src/core/StorageUtils.cpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/src/main.cpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/src/math/Eigen.cpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/src/matrix/DenseBitMatrix.cpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/src/matrix/MatrixBase.cpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/src/matrix/MatrixOps.cpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/src/matrix/TriangularBitMatrix.cpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/src/matrix/TriangularMatrix.cpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/src/vector/DenseVector.cpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/src/vector/VectorBase.cpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/manual/interface_check.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/manual/test_new_vis.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/manual/test_spacetimes.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/__init__.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/debug_load.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_arnoldi.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_behaviour.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_bit_mixed_fastpaths.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_blockmatrix_phase_b.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_blockmatrix_phase_c_refine.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_blockmatrix_phase_c_views.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_blockmatrix_phase_d_elementwise.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_blockmatrix_phase_d_thunks.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_blockmatrix_phase_e_persistence.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_blockmatrix_phase_f_integration.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_blockmatrix_phase_h_hardening.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_caching.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_complex_float_dtypes.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_complex_scalar.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_complex_vector_dtypes.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_conjugation.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_convert_file.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_coordinates.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_factories_scalar_rejection.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_field.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_float_types.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_float_underpromotion_warning.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_gpu_features.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_identity.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_inner_product_types.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_integer_matmul_overflow_risk_warning.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_integer_matmul_overflow_warning.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_interface.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_interop_extensive.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_inverse_correctness.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_inverse_extensive.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_io_consistency.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_io_observability.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_k_matrix.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_lazy_evaluation.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_lazy_ops_comprehensive.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_matmul_transpose.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_matrix_hierarchy.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_matrix_transpose.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_norm.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_numpy_conversion_policy.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_numpy_import_max_in_ram_bytes.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_numpy_integration.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_numpy_interop.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_numpy_interop_ergonomics.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_numpy_vector_complex_import.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_operations.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_operations_extensive.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_outofcore_general.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_outofcore_lu.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_pauli_jordan_spectrum.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_phase1_inventory.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_promotion_resolver.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_properties_compatibility.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_properties_dispatch.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_properties_effect_summary_mutations.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_properties_effective_structure.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_properties_mutation_invalidation.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_properties_operator_wiring.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_properties_persistence.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_properties_propagation.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_r1_safety_comprehensive.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_scalar_optimization.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_scale_first_bit_guard.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_skew.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_skew_comprehensive.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_snapshot_phase1_roundtrip.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_snapshot_phase2_metadata_stability.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_spacetime.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_spacetime_extensive.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_storage.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_storage_crash_consistency.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_storage_debug_tool.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_storage_extensive.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_storage_hard_break.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_streaming_manager.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_sum.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_support_matrix.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_temp_storage_lifecycle.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_transposed_vectors.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_typed_numpy_constructors.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_types_extensive.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_unit_vector.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_vector.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_vectors_advanced.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/python/test_vis.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/stability/comprehensive_stability.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/test_cow.cpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/test_io_accelerator.cpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/test_lazy_comprehensive.cpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/test_lazy_evaluation.cpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/test_memory_governor.cpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/test_parallel_utils.cpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tests/test_symmetric_matrix.cpp +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tools/build.ps1 +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tools/check_support_matrix.py +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tools/install_cuda12.ps1 +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tools/release.ps1 +0 -0
- {pycauset-0.5.1.dev2 → pycauset-0.5.1.dev104}/tools/run_python_tests.ps1 +0 -0
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
name: CI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [main]
|
|
6
|
+
pull_request:
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
test:
|
|
10
|
+
name: ${{ matrix.os }} · py${{ matrix.python-version }}
|
|
11
|
+
runs-on: ${{ matrix.os }}
|
|
12
|
+
strategy:
|
|
13
|
+
fail-fast: false
|
|
14
|
+
matrix:
|
|
15
|
+
os: [ubuntu-latest, macos-15, windows-latest]
|
|
16
|
+
python-version: ["3.12"]
|
|
17
|
+
|
|
18
|
+
steps:
|
|
19
|
+
- uses: actions/checkout@v4
|
|
20
|
+
with:
|
|
21
|
+
fetch-depth: 0 # setuptools_scm needs full history + tags to detect the version
|
|
22
|
+
|
|
23
|
+
- uses: actions/setup-python@v5
|
|
24
|
+
with:
|
|
25
|
+
python-version: ${{ matrix.python-version }}
|
|
26
|
+
|
|
27
|
+
- name: Install system OpenBLAS (Linux)
|
|
28
|
+
if: runner.os == 'Linux'
|
|
29
|
+
run: |
|
|
30
|
+
sudo apt-get update
|
|
31
|
+
sudo apt-get install -y libopenblas-dev liblapacke-dev gfortran
|
|
32
|
+
|
|
33
|
+
- name: Install system OpenBLAS (macOS)
|
|
34
|
+
if: runner.os == 'macOS'
|
|
35
|
+
run: brew install openblas
|
|
36
|
+
|
|
37
|
+
- name: Install Python build/test dependencies
|
|
38
|
+
run: |
|
|
39
|
+
python -m pip install --upgrade pip
|
|
40
|
+
python -m pip install pytest
|
|
41
|
+
|
|
42
|
+
- name: Build and install pycauset
|
|
43
|
+
run: python -m pip install .
|
|
44
|
+
|
|
45
|
+
- name: Deploy native extension into source tree
|
|
46
|
+
# The test suite adds the repo's python/ dir to sys.path and imports the
|
|
47
|
+
# package from there, but pip installs the compiled _pycauset extension and
|
|
48
|
+
# its DLLs into site-packages. Copy the native artifacts next to the source
|
|
49
|
+
# so the tests find them.
|
|
50
|
+
run: python -c "import pycauset, pathlib, shutil; sp = pathlib.Path(pycauset.__file__).parent; dst = pathlib.Path('python/pycauset'); [shutil.copy2(str(f), str(dst / f.name)) for pat in ('*.pyd','*.so','*.dylib','*.dll') for f in sp.glob(pat)]; libs = sp / 'libs'; shutil.copytree(str(libs), str(dst / 'libs'), dirs_exist_ok=True) if libs.exists() else None"
|
|
51
|
+
|
|
52
|
+
- name: Run tests
|
|
53
|
+
run: python -m pytest tests/python -q
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
name: Publish to PyPI.
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: ["main"]
|
|
6
|
+
release:
|
|
7
|
+
types: [published]
|
|
8
|
+
workflow_dispatch:
|
|
9
|
+
|
|
10
|
+
permissions:
|
|
11
|
+
contents: write
|
|
12
|
+
id-token: write
|
|
13
|
+
|
|
14
|
+
jobs:
|
|
15
|
+
build_wheels:
|
|
16
|
+
name: Build wheels on ${{ matrix.os }}
|
|
17
|
+
runs-on: ${{ matrix.os }}
|
|
18
|
+
strategy:
|
|
19
|
+
matrix:
|
|
20
|
+
os: [ubuntu-latest, windows-latest, macos-15]
|
|
21
|
+
|
|
22
|
+
steps:
|
|
23
|
+
- uses: actions/checkout@v4
|
|
24
|
+
with:
|
|
25
|
+
fetch-depth: 0 # Required for setuptools_scm to find tags
|
|
26
|
+
|
|
27
|
+
# Setup ccache to speed up re-compilation
|
|
28
|
+
- name: Setup ccache
|
|
29
|
+
uses: hendrikmuhs/ccache-action@v1.2
|
|
30
|
+
with:
|
|
31
|
+
key: ${{ matrix.os }}-ccache
|
|
32
|
+
update-package-index: true
|
|
33
|
+
|
|
34
|
+
- name: Build wheels
|
|
35
|
+
uses: pypa/cibuildwheel@v2.21.3
|
|
36
|
+
env:
|
|
37
|
+
# Configure cibuildwheel to build for Python 3.8+
|
|
38
|
+
# Skip 32-bit builds (Linux i686 is skipped by pattern, Windows 32-bit by ARCHS config)
|
|
39
|
+
CIBW_SKIP: "cp36-* cp37-* pp* *i686* *-musllinux*"
|
|
40
|
+
|
|
41
|
+
# Pass specific hints to CMake via environment variables to help FindPython
|
|
42
|
+
# scikit-build-core usually handles this, but explicit hints prevent "found 3.8 but wanted 3.11" errors
|
|
43
|
+
|
|
44
|
+
# Windows: Build only 64-bit wheels (avoids OpenBLAS 32/64 bit mismatch and speeds up CI)
|
|
45
|
+
CIBW_ARCHS_WINDOWS: "auto64"
|
|
46
|
+
CIBW_ENVIRONMENT_WINDOWS: "CMAKE_ARGS='-DPython_FIND_STRATEGY=LOCATION'"
|
|
47
|
+
|
|
48
|
+
# Linux: Use manylinux_2_28 (AlmaLinux 8) and install GCC 12 via gcc-toolset.
|
|
49
|
+
# This ensures full C++20 support (including <bit>, char8_t, <filesystem>).
|
|
50
|
+
CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_28
|
|
51
|
+
CIBW_MANYLINUX_AARCH64_IMAGE: manylinux_2_28
|
|
52
|
+
|
|
53
|
+
# Install GCC 12 on Linux before build
|
|
54
|
+
# We also install openblas-devel to avoid building it from source (which fails and is slow)
|
|
55
|
+
# and lapack-devel for the LAPACKE C-interface header (CpuSolver.cpp includes <lapacke.h>).
|
|
56
|
+
# The wheels will bundle the library via auditwheel
|
|
57
|
+
CIBW_BEFORE_ALL_LINUX: "yum install -y epel-release && yum install -y gcc-toolset-12-gcc gcc-toolset-12-gcc-c++ libatomic openblas-devel lapack-devel ccache"
|
|
58
|
+
|
|
59
|
+
# Point the build to use GCC 12
|
|
60
|
+
CIBW_ENVIRONMENT_LINUX: "CMAKE_ARGS='-DPython_FIND_STRATEGY=LOCATION' CC='/opt/rh/gcc-toolset-12/root/usr/bin/gcc' CXX='/opt/rh/gcc-toolset-12/root/usr/bin/g++' PATH=\"/usr/lib64/ccache:$PATH\""
|
|
61
|
+
|
|
62
|
+
# macOS: Install build dependencies.
|
|
63
|
+
# OpenBLAS and libomp are needed for the C++ extension.
|
|
64
|
+
CIBW_BEFORE_ALL_MACOS: "brew install libomp openblas ccache"
|
|
65
|
+
|
|
66
|
+
# macOS: Env Setup
|
|
67
|
+
# 1. Point to Homebrew locations for headers/libs (Apple Silicon uses /opt/homebrew, Intel uses /usr/local)
|
|
68
|
+
# 2. Add ccache to PATH (checking both potential locations)
|
|
69
|
+
# 3. MACOSX_DEPLOYMENT_TARGET must match the Homebrew bottles on the runner.
|
|
70
|
+
# We pin the runner to macos-15 so Homebrew builds against macOS 15 and the
|
|
71
|
+
# wheel supports macOS 15+, instead of being dragged to the newest runner OS.
|
|
72
|
+
CIBW_ENVIRONMENT_MACOS: >
|
|
73
|
+
MACOSX_DEPLOYMENT_TARGET="15.0"
|
|
74
|
+
CMAKE_ARGS='-DPython_FIND_STRATEGY=LOCATION'
|
|
75
|
+
CC="clang"
|
|
76
|
+
CXX="clang++"
|
|
77
|
+
CFLAGS="-Xpreprocessor -fopenmp -I/opt/homebrew/opt/libomp/include -I/usr/local/opt/libomp/include"
|
|
78
|
+
CXXFLAGS="-Xpreprocessor -fopenmp -I/opt/homebrew/opt/libomp/include -I/usr/local/opt/libomp/include"
|
|
79
|
+
LDFLAGS="-L/opt/homebrew/opt/libomp/lib -L/usr/local/opt/libomp/lib -lomp"
|
|
80
|
+
PATH="/opt/homebrew/opt/ccache/libexec:/usr/local/opt/ccache/libexec:$PATH"
|
|
81
|
+
|
|
82
|
+
- uses: actions/upload-artifact@v4
|
|
83
|
+
if: ${{ !env.ACT }}
|
|
84
|
+
with:
|
|
85
|
+
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
|
|
86
|
+
path: ./wheelhouse/*.whl
|
|
87
|
+
|
|
88
|
+
build_sdist:
|
|
89
|
+
name: Build source distribution
|
|
90
|
+
runs-on: ubuntu-latest
|
|
91
|
+
steps:
|
|
92
|
+
- uses: actions/checkout@v4
|
|
93
|
+
with:
|
|
94
|
+
fetch-depth: 0
|
|
95
|
+
|
|
96
|
+
- name: Build sdist
|
|
97
|
+
run: pipx run build --sdist
|
|
98
|
+
|
|
99
|
+
- uses: actions/upload-artifact@v4
|
|
100
|
+
with:
|
|
101
|
+
name: cibw-sdist
|
|
102
|
+
path: dist/*.tar.gz
|
|
103
|
+
|
|
104
|
+
publish_to_pypi:
|
|
105
|
+
needs: [build_wheels, build_sdist]
|
|
106
|
+
runs-on: ubuntu-latest
|
|
107
|
+
environment:
|
|
108
|
+
name: pypi
|
|
109
|
+
url: https://pypi.org/p/pycauset
|
|
110
|
+
permissions:
|
|
111
|
+
id-token: write
|
|
112
|
+
steps:
|
|
113
|
+
- uses: actions/download-artifact@v4
|
|
114
|
+
with:
|
|
115
|
+
pattern: cibw-*
|
|
116
|
+
path: dist
|
|
117
|
+
merge-multiple: true
|
|
118
|
+
|
|
119
|
+
- uses: pypa/gh-action-pypi-publish@release/v1
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
# --- Python ---
|
|
2
|
+
test.py
|
|
3
|
+
__pycache__/
|
|
4
|
+
*.py[cod]
|
|
5
|
+
*$py.class
|
|
6
|
+
*.so
|
|
7
|
+
*.pyd
|
|
8
|
+
.Python
|
|
9
|
+
build/
|
|
10
|
+
develop-eggs/
|
|
11
|
+
dist/
|
|
12
|
+
downloads/
|
|
13
|
+
eggs/
|
|
14
|
+
.eggs/
|
|
15
|
+
lib/
|
|
16
|
+
lib64/
|
|
17
|
+
parts/
|
|
18
|
+
sdist/
|
|
19
|
+
var/
|
|
20
|
+
wheels/
|
|
21
|
+
share/python-wheels/
|
|
22
|
+
*.egg-info/
|
|
23
|
+
.installed.cfg
|
|
24
|
+
*.egg
|
|
25
|
+
MANIFEST
|
|
26
|
+
|
|
27
|
+
# --- Generated Version File ---
|
|
28
|
+
python/pycauset/_version.py
|
|
29
|
+
|
|
30
|
+
# --- Virtual Environments ---
|
|
31
|
+
.env
|
|
32
|
+
.venv
|
|
33
|
+
env/
|
|
34
|
+
venv/
|
|
35
|
+
ENV/
|
|
36
|
+
env.bak/
|
|
37
|
+
venv.bak/
|
|
38
|
+
|
|
39
|
+
# --- Testing & Coverage ---
|
|
40
|
+
.pytest_cache/
|
|
41
|
+
.coverage
|
|
42
|
+
htmlcov/
|
|
43
|
+
.tox/
|
|
44
|
+
.nox/
|
|
45
|
+
|
|
46
|
+
# --- C++ / CMake / Visual Studio ---
|
|
47
|
+
CMakeCache.txt
|
|
48
|
+
CMakeFiles/
|
|
49
|
+
cmake_install.cmake
|
|
50
|
+
Makefile
|
|
51
|
+
*.vcxproj
|
|
52
|
+
*.vcxproj.filters
|
|
53
|
+
*.vcxproj.user
|
|
54
|
+
*.sln
|
|
55
|
+
*.slnx
|
|
56
|
+
*.dir/
|
|
57
|
+
*.lib
|
|
58
|
+
*.exp
|
|
59
|
+
*.dll
|
|
60
|
+
*.exe
|
|
61
|
+
*.pdb
|
|
62
|
+
*.ilk
|
|
63
|
+
*.obj
|
|
64
|
+
*.iobj
|
|
65
|
+
*.ipdb
|
|
66
|
+
*.tlog
|
|
67
|
+
_deps/
|
|
68
|
+
x64/
|
|
69
|
+
x86/
|
|
70
|
+
Debug/
|
|
71
|
+
Release/
|
|
72
|
+
RelWithDebInfo/
|
|
73
|
+
MinSizeRel/
|
|
74
|
+
out/
|
|
75
|
+
|
|
76
|
+
# --- IDEs / Editors ---
|
|
77
|
+
.vscode/
|
|
78
|
+
.idea/
|
|
79
|
+
*.swp
|
|
80
|
+
*.swo
|
|
81
|
+
*~
|
|
82
|
+
|
|
83
|
+
# --- Project Specific ---
|
|
84
|
+
benchmarks/*
|
|
85
|
+
!benchmarks/*.py
|
|
86
|
+
# Scratch/exploration benchmark scripts superseded by the canonical suite
|
|
87
|
+
# (bench.py, bench_coverage.py, bench_structures.py, bench_ram.py, plot.py).
|
|
88
|
+
# Kept on disk but not tracked.
|
|
89
|
+
benchmarks/benchmark_*.py
|
|
90
|
+
benchmarks/comprehensive_benchmark.py
|
|
91
|
+
benchmarks/debug_matmul.py
|
|
92
|
+
benchmarks/inspect_temp.py
|
|
93
|
+
benchmarks/stress_test_memory_system.py
|
|
94
|
+
# Explicitly tracked harnesses referenced by documentation/dev/Testing & Benchmarks.md.
|
|
95
|
+
!benchmarks/benchmark_numpy_parity.py
|
|
96
|
+
!benchmarks/benchmark_io_smoke.py
|
|
97
|
+
.pycauset/
|
|
98
|
+
*.pycauset
|
|
99
|
+
storage/
|
|
100
|
+
site/
|
|
101
|
+
|
|
102
|
+
# --- CTest output ---
|
|
103
|
+
Testing/
|
|
104
|
+
|
|
105
|
+
# --- Local binary artifacts (accidental) ---
|
|
106
|
+
/test_f32
|
|
107
|
+
/test_f32_2
|
|
108
|
+
/test_f32_res
|
|
109
|
+
/test_arnoldi_f32
|
|
110
|
+
/test_complex_scalar
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
documentation/dev/Agent Bootstrap.md
|
|
114
|
+
documentation/.obsidian/
|
|
115
|
+
documentation/internals/CURRENT_MISSION.md
|
|
116
|
+
4_Build wheels.txt
|
|
117
|
+
|
|
118
|
+
# --- Local Build Artifacts ---
|
|
119
|
+
.ccache/
|
|
120
|
+
wheelhouse/
|
|
121
|
+
tools/bin/
|
|
122
|
+
event.json
|
|
123
|
+
bin/
|
|
124
|
+
tools/test_release_locally.sh
|
|
125
|
+
|
|
126
|
+
# --- Stray artifacts (de-AI-ification) ---
|
|
127
|
+
/_vals
|
|
128
|
+
/_vecs
|
|
129
|
+
/_codeql_detected_source_root
|
|
130
|
+
/tmp_debug_cache/
|
|
131
|
+
/.pycauset_stability/
|
|
132
|
+
/tmp_verification_phase3_4/
|
|
133
|
+
build_*/
|
|
@@ -0,0 +1,183 @@
|
|
|
1
|
+
# PyCauset Benchmarks
|
|
2
|
+
|
|
3
|
+
Measured performance of PyCauset against NumPy, for every operation that has a
|
|
4
|
+
direct NumPy equivalent. These numbers are reproducible on your machine:
|
|
5
|
+
|
|
6
|
+
```
|
|
7
|
+
python benchmarks/bench.py --large
|
|
8
|
+
python benchmarks/plot.py
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Methodology
|
|
12
|
+
|
|
13
|
+
- **Hardware:** Intel Core i9-10850K (10 cores @ 3.6 GHz), 32 GB RAM, Windows 11.
|
|
14
|
+
- **Versions:** NumPy 2.3.5 (OpenBLAS), PyCauset 0.5.1 (OpenBLAS 0.3.26).
|
|
15
|
+
- **Timing:** `time.perf_counter`, best-of-N per operation (fewer repeats at large n).
|
|
16
|
+
- **Dtype:** dense float64.
|
|
17
|
+
- **Ratio:** `numpy_time / pycauset_time`. Values above 1.0x mean PyCauset is faster.
|
|
18
|
+
|
|
19
|
+
## Dtype coverage (correctness)
|
|
20
|
+
|
|
21
|
+
`benchmarks/bench_coverage.py` checks every operation against NumPy across all
|
|
22
|
+
supported dtypes and classifies each cell as `ok`, `by-design` (documented error), or
|
|
23
|
+
`WRONG`. Current status: every operation passes all its supported dtypes.
|
|
24
|
+
|
|
25
|
+
| op | dtypes | result |
|
|
26
|
+
|---|---|---|
|
|
27
|
+
| matmul, add, norm, trace | 14 (bit + all int/uint + all float/complex) | all ok |
|
|
28
|
+
| invert, solve, cholesky, svdvals, matrix_rank, determinant, eigvalsh | 4 (float32/64, complex64/128) | all ok |
|
|
29
|
+
| matrix_power, outer | 6 (float/complex + int32/64) | all ok |
|
|
30
|
+
|
|
31
|
+
## Structural shortcuts (instant metadata calculations)
|
|
32
|
+
|
|
33
|
+
PyCauset stores semantic metadata on matrices (properties-as-gospel). When a matrix is
|
|
34
|
+
marked as identity, diagonal, triangular, or zero, operations that would otherwise be
|
|
35
|
+
O(n^3) reduce to O(1) or O(n) closed forms. Measured at n=800 (shortcut vs the general
|
|
36
|
+
path on identical data, via `benchmarks/bench_structures.py`):
|
|
37
|
+
|
|
38
|
+
| operation on a structured matrix | shortcut vs general | NumPy does |
|
|
39
|
+
|---|---|---|
|
|
40
|
+
| `matrix_rank(identity)` | 700x faster | full SVD |
|
|
41
|
+
| `matrix_rank(diagonal)` | 126x faster | full SVD |
|
|
42
|
+
| `matrix_rank(triangular)` | 157x faster | full SVD |
|
|
43
|
+
| `norm(identity)` | 314x faster | full Frobenius pass |
|
|
44
|
+
| `norm(diagonal)` | 734x faster | full Frobenius pass |
|
|
45
|
+
| `determinant(identity/diagonal/triangular)` | 200-240x faster | LU |
|
|
46
|
+
| `matrix_power(identity/zero)` | 200-240x faster | repeated matmul |
|
|
47
|
+
| `invert(identity)` | 24x faster | LU |
|
|
48
|
+
|
|
49
|
+
This is where PyCauset wins even though its dense kernels run at NumPy parity: a large
|
|
50
|
+
identity or diagonal matrix gets an answer instantly instead of spending seconds on an
|
|
51
|
+
SVD or LU factorization, and NumPy has no equivalent metadata shortcut at all.
|
|
52
|
+
|
|
53
|
+
## Symmetric / anti-symmetric storage (2x smaller)
|
|
54
|
+
|
|
55
|
+
`pycauset.symmetric(data)` and `pycauset.antisymmetric(data)` construct native
|
|
56
|
+
`SymmetricMatrix` / `AntiSymmetricMatrix` objects that store only the upper triangle
|
|
57
|
+
(including the diagonal), so an n x n float64 matrix costs roughly n(n+1)/2 elements
|
|
58
|
+
instead of n^2. For large n this is about a 2x reduction in RAM and disk footprint,
|
|
59
|
+
independent of the out-of-core threshold, and `to_numpy`/`save`/`load` reconstruct the
|
|
60
|
+
full matrix on demand. Optimization of symmetric/antisymmetric kernels is part of the
|
|
61
|
+
post-R1 program.
|
|
62
|
+
|
|
63
|
+
## Summary
|
|
64
|
+
|
|
65
|
+
PyCauset's dense kernels run on the same OpenBLAS/LAPACK backend as NumPy, so the
|
|
66
|
+
realistic goal is parity, not a large speedup. At large sizes PyCauset matches or
|
|
67
|
+
edges ahead of NumPy on matmul, eigenvalues, and Cholesky. The current gaps are SVD
|
|
68
|
+
(about 2x, from the row-major transpose) and elementwise materialization, both tracked
|
|
69
|
+
for the post-R1 program.
|
|
70
|
+
|
|
71
|
+
## The reason to use PyCauset: it scales past RAM
|
|
72
|
+
|
|
73
|
+
NumPy keeps every array in RAM, so a square float64 matrix is capped by memory: on a
|
|
74
|
+
16 GB machine that is about 46340 x 46340 (16.2 GB), and beyond that NumPy raises
|
|
75
|
+
`MemoryError`. PyCauset memory-maps to disk beyond a RAM budget, so its RAM usage is
|
|
76
|
+
bounded by your threshold and the matrix can be far larger than RAM.
|
|
77
|
+
|
|
78
|
+
| RAM budget | max n (NumPy) | PyCauset |
|
|
79
|
+
|---|---|---|
|
|
80
|
+
| 4 GB | 23170 x 23170 | unbounded (disk-backed) |
|
|
81
|
+
| 8 GB | 32768 x 32768 | unbounded (disk-backed) |
|
|
82
|
+
| 16 GB | 46340 x 46340 | unbounded (disk-backed) |
|
|
83
|
+
| 32 GB | 65536 x 65536 | unbounded (disk-backed) |
|
|
84
|
+
| 64 GB | 92681 x 92681 | unbounded (disk-backed) |
|
|
85
|
+
|
|
86
|
+
Demonstration (run `python benchmarks/bench_ram.py`): a 12000 x 12000 float64 matrix is
|
|
87
|
+
1.07 GB; NumPy holds all of it in RAM, while PyCauset with a 256 MB budget stores it on
|
|
88
|
+
disk and still computes `trace(identity) = 12000` correctly. This is the regime where
|
|
89
|
+
PyCauset does something NumPy cannot, which is the practical reason to use it even where
|
|
90
|
+
NumPy is a bit faster on in-memory matrices.
|
|
91
|
+
|
|
92
|
+
## Time vs n
|
|
93
|
+
|
|
94
|
+

|
|
95
|
+
|
|
96
|
+

|
|
97
|
+
|
|
98
|
+

|
|
99
|
+
|
|
100
|
+
## Speedup by operation
|
|
101
|
+
|
|
102
|
+

|
|
103
|
+
|
|
104
|
+
## Dense float64 matmul (C = A @ B)
|
|
105
|
+
|
|
106
|
+
| n | NumPy | PyCauset | speedup |
|
|
107
|
+
|---|---|---|---|
|
|
108
|
+
| 256 | 1.9ms | 4.0ms | 0.46x |
|
|
109
|
+
| 512 | 7.2ms | 10.4ms | 0.69x |
|
|
110
|
+
| 1024 | 32.5ms | 42.6ms | 0.76x |
|
|
111
|
+
| 2048 | 173.7ms | 188.9ms | 0.92x |
|
|
112
|
+
| 4096 | 968.9ms | 990.4ms | 0.98x |
|
|
113
|
+
| 8192 | 6.11s | 5.92s | **1.03x** |
|
|
114
|
+
|
|
115
|
+
Matmul crosses parity around n = 4096 and edges ahead at n = 8192. Small sizes carry
|
|
116
|
+
fixed Python dispatch overhead.
|
|
117
|
+
|
|
118
|
+
## Dense float64 factorizations
|
|
119
|
+
|
|
120
|
+
| op | n | NumPy | PyCauset | speedup |
|
|
121
|
+
|---|---|---|---|---|
|
|
122
|
+
| inverse | 256 | 4.2ms | 4.9ms | 0.86x |
|
|
123
|
+
| inverse | 512 | 12.4ms | 13.6ms | 0.92x |
|
|
124
|
+
| inverse | 1024 | 66.8ms | 94.4ms | 0.71x |
|
|
125
|
+
| inverse | 2048 | 348.3ms | 371.7ms | 0.94x |
|
|
126
|
+
| inverse | 4096 | 1.71s | 2.22s | 0.77x |
|
|
127
|
+
| solve | 256 | 1.4ms | 2.6ms | 0.54x |
|
|
128
|
+
| solve | 512 | 6.0ms | 9.2ms | 0.65x |
|
|
129
|
+
| solve | 1024 | 31.5ms | 40.2ms | 0.78x |
|
|
130
|
+
| solve | 2048 | 190.8ms | 261.8ms | 0.73x |
|
|
131
|
+
| solve | 4096 | 1.19s | 1.46s | 0.81x |
|
|
132
|
+
| cholesky | 256 | 2.0ms | 2.8ms | 0.71x |
|
|
133
|
+
| cholesky | 512 | 7.3ms | 9.4ms | 0.77x |
|
|
134
|
+
| cholesky | 1024 | 35.4ms | 46.8ms | 0.75x |
|
|
135
|
+
| cholesky | 2048 | 173.5ms | 165.9ms | **1.05x** |
|
|
136
|
+
| cholesky | 4096 | 959.5ms | 1.01s | 0.95x |
|
|
137
|
+
| svd | 256 | 19.2ms | 25.7ms | 0.75x |
|
|
138
|
+
| svd | 512 | 67.2ms | 193.3ms | 0.35x |
|
|
139
|
+
| svd | 1024 | 315.6ms | 541.3ms | 0.58x |
|
|
140
|
+
| svd | 2048 | 2.42s | 4.74s | 0.51x |
|
|
141
|
+
|
|
142
|
+
Inverse, solve, and Cholesky are competitive (0.7x to 1.05x). SVD now uses the same
|
|
143
|
+
divide-and-conquer LAPACK routine (`gesdd`) as NumPy; the remaining roughly 2x gap is the
|
|
144
|
+
row-major transpose overhead and is tracked for the post-R1 program.
|
|
145
|
+
|
|
146
|
+
## Dense float64 eigenvalues
|
|
147
|
+
|
|
148
|
+
| op | n | NumPy | PyCauset | speedup |
|
|
149
|
+
|---|---|---|---|---|
|
|
150
|
+
| eigh | 256 | 11.0ms | 13.0ms | 0.84x |
|
|
151
|
+
| eigh | 512 | 46.7ms | 49.1ms | 0.95x |
|
|
152
|
+
| eigh | 1024 | 157.8ms | 161.6ms | 0.98x |
|
|
153
|
+
| eigh | 2048 | 840.4ms | 831.1ms | **1.01x** |
|
|
154
|
+
| eigvalsh | 256 | 6.5ms | 7.6ms | 0.86x |
|
|
155
|
+
| eigvalsh | 512 | 32.2ms | 33.8ms | 0.95x |
|
|
156
|
+
| eigvalsh | 1024 | 107.9ms | 109.0ms | 0.99x |
|
|
157
|
+
| eigvalsh | 2048 | 447.7ms | 465.4ms | 0.96x |
|
|
158
|
+
|
|
159
|
+
Eigenvalue routines reach parity (0.95x to 1.01x) across the measured range.
|
|
160
|
+
|
|
161
|
+
## Elementwise add and dot
|
|
162
|
+
|
|
163
|
+
| op | n | NumPy | PyCauset | speedup |
|
|
164
|
+
|---|---|---|---|---|
|
|
165
|
+
| add | 1024 | 28.6ms | 51.3ms | 0.56x |
|
|
166
|
+
| add | 2048 | 107.1ms | 193.0ms | 0.55x |
|
|
167
|
+
| add | 4096 | 440.6ms | 811.4ms | 0.54x |
|
|
168
|
+
| add | 8192 | 1.91s | 3.18s | 0.60x |
|
|
169
|
+
| dot | 100000 | 0.087ms | 0.014ms | **6.21x** |
|
|
170
|
+
| dot | 1000000 | 0.168ms | 0.210ms | 0.80x |
|
|
171
|
+
| dot | 10000000 | 5.72ms | 6.05ms | 0.95x |
|
|
172
|
+
|
|
173
|
+
Dot is at parity or faster (vectors are pre-constructed; the earlier gap was vector
|
|
174
|
+
construction overhead, not the dot itself). Elementwise add remains below parity because
|
|
175
|
+
the lazy-expression materialization path is not yet SIMD-optimized; it is a post-R1 target.
|
|
176
|
+
|
|
177
|
+
## What this means
|
|
178
|
+
|
|
179
|
+
- **Matmul, eigenvalues, Cholesky, and dot** match or beat NumPy at large sizes.
|
|
180
|
+
- **Inverse and solve** are competitive, within 25% of NumPy.
|
|
181
|
+
- **SVD** is roughly 2x slower (down from 25x after switching to `gesdd`); the row-major
|
|
182
|
+
overhead and elementwise add are the concrete targets for the post-R1
|
|
183
|
+
"greater than 0.90x NumPy" program (tracked in `TODO.md`).
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to PyCauset are documented in this file. The project follows
|
|
4
|
+
[Semantic Versioning](https://semver.org/). The documentation's **"Release 1 (R1)"**
|
|
5
|
+
milestone corresponds to **v0.5.1**.
|
|
6
|
+
|
|
7
|
+
## [Unreleased]: R1 (target v0.5.1)
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
- `pinv`: Moore-Penrose pseudoinverse (normal-equations baseline + NumPy SVD fallback).
|
|
11
|
+
- `load_matrix(path)`: alias of `load`.
|
|
12
|
+
- `svdvals`, `matrix_rank`, `matrix_power`, `outer`: NumPy-equivalent linalg
|
|
13
|
+
operations, each with structural shortcuts where a closed form exists (rank of
|
|
14
|
+
identity/diagonal/triangular, power of identity/zero/diagonal, norm of identity/zero).
|
|
15
|
+
- `bitwise_and`, `bitwise_or`, `bitwise_xor`, `bitwise_nand`, `bitwise_nor`,
|
|
16
|
+
`bitwise_xnor`: elementwise logic operations on bit matrices/vectors, always returning
|
|
17
|
+
a bit structure (DenseBitMatrix/BitVector).
|
|
18
|
+
- `cross`: 3D cross product.
|
|
19
|
+
- `vecdot`: conjugate dot product (complex-aware inner product).
|
|
20
|
+
- `symmetric(data)` and `antisymmetric(data)`: validated constructors for symmetric
|
|
21
|
+
(`A == A.T`) and anti-symmetric (`A == -A.T`) matrices. Float input produces a native
|
|
22
|
+
`SymmetricMatrix`/`AntiSymmetricMatrix` with packed upper-triangle storage (roughly 2x
|
|
23
|
+
smaller than dense); integer/bool input produces a dense matrix with
|
|
24
|
+
`is_symmetric`/`is_anti_symmetric` asserted (exact storage, no packing in R1).
|
|
25
|
+
- `diagonal(data)`: constructs a `DiagonalMatrix` from a 1D vector of entries or a 2D
|
|
26
|
+
square matrix (extracting its diagonal).
|
|
27
|
+
- Complete per-operation support-status registry (`OpRegistry`) now covering the vector
|
|
28
|
+
and vector-scalar ops (`dot`, `add_vector`, `subtract_vector`, `outer`, `add_scalar`,
|
|
29
|
+
`mul_scalar`) in addition to the matrix ops.
|
|
30
|
+
- `LICENSE` (MIT) and `THIRD_PARTY_NOTICES.md` (Eigen MPL2, OpenBLAS BSD, pybind11 BSD,
|
|
31
|
+
googletest BSD, build-time deps, CUDA-not-bundled).
|
|
32
|
+
- GitHub Actions CI matrix (`ci.yml`): Windows / macOS / Linux on Python 3.12.
|
|
33
|
+
- Benchmark harness (`benchmarks/bench.py`, `benchmarks/plot.py`) with graphs, and the
|
|
34
|
+
out-of-core RAM-limit demo (`benchmarks/bench_ram.py`).
|
|
35
|
+
|
|
36
|
+
### Fixed
|
|
37
|
+
- `norm(matrix, ord=2)` now returns the spectral norm (largest singular value); it
|
|
38
|
+
previously returned the Frobenius norm for `ord=2`.
|
|
39
|
+
- `np.asarray(IdentityMatrix)` no longer raises `TypeError: data type 'identity' not
|
|
40
|
+
understood`; identity matrices export as float64.
|
|
41
|
+
- Structural shortcuts now trigger for native structural types: `matrix_rank` of an
|
|
42
|
+
`IdentityMatrix`/`DiagonalMatrix` uses a closed form instead of an SVD.
|
|
43
|
+
- `SymmetricMatrix`/`AntiSymmetricMatrix` (present in the native core but previously
|
|
44
|
+
unreachable from Python) are now integrated end to end: recognized by the structure
|
|
45
|
+
system (no longer "general"), exported to NumPy without `TypeError: data type
|
|
46
|
+
'symmetric' not understood`, routed through a dense float64 fallback in `matmul`
|
|
47
|
+
(no longer `Unsupported matrix multiplication types`), and round-tripped by
|
|
48
|
+
`save()`/`load()` (no longer `Unknown matrix type: None`).
|
|
49
|
+
- Documentation/export completeness: `dot`, `load`, `load_matrix`, `to_numpy`,
|
|
50
|
+
`set_export_max_bytes`, `CausalSet`, and `TriangularMatrix` were documented and
|
|
51
|
+
callable but missing from `__all__`, so `from pycauset import *` dropped them; they
|
|
52
|
+
are now exported. Reference pages were added for `cross`, `determinant`,
|
|
53
|
+
`matrix_power`, `matrix_rank`, `outer`, `qr`, `svdvals`, `trace`, `vecdot`, the six
|
|
54
|
+
`bitwise_*` ops, and `DiagonalMatrix`.
|
|
55
|
+
- `CausalSpacetime` is documented at its real location (`pycauset.CausalSpacetime`, a
|
|
56
|
+
native abstract type with no R1 constructor/methods), not the non-existent
|
|
57
|
+
`pycauset.spacetime.CausalSpacetime`.
|
|
58
|
+
- Dense `float64` `solve` and `lu` now route through LAPACK (`dgesv`/`dgetrf`) instead of
|
|
59
|
+
a naive scalar Gaussian elimination; this also made the float64 path consistent with the
|
|
60
|
+
float32 path and with NumPy's singularity behavior.
|
|
61
|
+
- `matrix([[1+2j, …]])` (complex *list* input) now constructs a real complex matrix
|
|
62
|
+
(`ComplexFloat64Matrix`) instead of a broken abstract `Matrix` with no dtype.
|
|
63
|
+
- `matrix(ndarray, backing_file=…)` no longer silently returns an in-memory matrix; it
|
|
64
|
+
raises a clear `TypeError` directing users to `save()`/`load()`.
|
|
65
|
+
- SIMD kernels are baseline-safe: `-march=native` removed and per-function
|
|
66
|
+
`__attribute__((target(...)))` added, so built binaries no longer crash with an illegal
|
|
67
|
+
instruction on CPUs without AVX2/AVX-512.
|
|
68
|
+
- Eigen decomposition correctness across a `save()`/`load()` round-trip is now pinned.
|
|
69
|
+
|
|
70
|
+
### Changed
|
|
71
|
+
- Integer overflow policy is now documented and explicit: elementwise integer arithmetic
|
|
72
|
+
wraps silently (C/NumPy two's-complement semantics), while `matmul` reductions raise
|
|
73
|
+
`OverflowError`. (Previously the docs promised "hard error everywhere" but only `matmul`
|
|
74
|
+
actually enforced it.)
|
|
75
|
+
- `__all__` no longer star-exports internal native machinery (`LazyMatrix`, `lazy_*`,
|
|
76
|
+
`MemoryGovernor`, `IOAccelerator`, `OpContract`, `OpRegistry`, `get_storage_root`,
|
|
77
|
+
`set_storage_root`, `make_coordinates`, `sprinkle`). These stay reachable as
|
|
78
|
+
`pycauset.<name>` for advanced use, but are no longer presented as public API.
|