pycauset 0.6.1.dev9__tar.gz → 0.6.1.dev13__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.6.1.dev9 → pycauset-0.6.1.dev13}/CHANGELOG.md +43 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/PKG-INFO +6 -6
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/README.md +5 -5
- pycauset-0.6.1.dev13/benchmarks/scenario_benchmarks.py +83 -0
- pycauset-0.6.1.dev13/documentation/dev/FINDINGS_EVERYDAY_SCENARIOS.md +141 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/dev/ONBOARDING_DTYPE_DEEP_DIVE.md +16 -11
- pycauset-0.6.1.dev13/documentation/docs/functions/pycauset.dot.md +53 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.empty.md +10 -4
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.matmul.md +4 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.ones.md +8 -5
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.zeros.md +7 -5
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/internals/plans/TODO.md +7 -5
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/python/pycauset/__init__.py +134 -65
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/python/pycauset/__init__.pyi +5 -4
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/python/pycauset/_internal/export_guard.py +2 -0
- pycauset-0.6.1.dev13/python/pycauset/_internal/lazy_allocation.py +200 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/python/pycauset/_internal/ops.py +22 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/python/pycauset/_internal/properties.py +5 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/python/pycauset/_version.py +3 -3
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/bindings/bind_matrix.cpp +19 -17
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/compute/cpu/CpuSolver.cpp +269 -61
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/math/LinearAlgebra.cpp +52 -1
- pycauset-0.6.1.dev13/tests/python/test_dtype_deep_dive.py +230 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_edge_cases_core.py +13 -8
- pycauset-0.6.1.dev13/tests/python/test_everyday_scenarios.py +144 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_r1_safety_comprehensive.py +11 -1
- pycauset-0.6.1.dev9/documentation/docs/functions/pycauset.dot.md +0 -49
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/.github/workflows/ci.yml +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/.github/workflows/docs.yml +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/.github/workflows/publish.yml +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/.gitignore +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/BENCHMARKS.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/CMakeLists.txt +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/LICENSE +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/THIRD_PARTY_NOTICES.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/benchmarks/bench.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/benchmarks/bench_coverage.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/benchmarks/bench_ram.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/benchmarks/bench_structures.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/benchmarks/benchmark_io_smoke.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/benchmarks/benchmark_numpy_parity.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/benchmarks/plot.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/dev/Bindings & Dispatch.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/dev/Build System.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/dev/Codebase Structure.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/dev/PyCauset Container Format.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/dev/Python Internals.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/dev/Repository Hygiene.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/dev/Restructure Plan.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/dev/Square-only Assumptions.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/dev/Storage Semantics.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/dev/Streaming Manager.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/dev/Testing & Benchmarks.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/dev/Warnings & Exceptions.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/dev/index.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/dev/performance_optimizations.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/assets/benchmarks/speedup_by_op.png +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/assets/benchmarks/time_eigen_svd.png +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/assets/benchmarks/time_elem_dot.png +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/assets/benchmarks/time_matmul_fact.png +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/assets/gallery/cylinder_embedding.png +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/assets/gallery/diamond_embedding.png +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/assets/gallery/diamond_hasse.png +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/assets/logo/favicon.png +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/assets/logo/favicon_old.png +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/assets/logo/logo-text-colour.png +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/assets/logo/logo-text-colour.xcf +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/assets/logo/logo-text-monochrome.png +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/assets/logo/logo.pdn +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/assets/logo/logo.png +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/assets/logo/logo.xcf +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/assets/logo/logo_old.png +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/AntiSymmetricMatrix.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/SymmetricMatrix.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/core/index.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/core/pycauset.PersistentObject.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/field/index.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/field/pycauset.field.Field.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/field/pycauset.field.ScalarField.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/index.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/matrix/index.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/matrix/pycauset.AntiSymmetricMatrix.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/matrix/pycauset.ComplexFloat16Matrix.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/matrix/pycauset.ComplexFloat32Matrix.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/matrix/pycauset.ComplexFloat64Matrix.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/matrix/pycauset.DenseBitMatrix.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/matrix/pycauset.DiagonalMatrix.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/matrix/pycauset.Float16Matrix.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/matrix/pycauset.Float32Matrix.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/matrix/pycauset.FloatMatrix.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/matrix/pycauset.IdentityMatrix.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/matrix/pycauset.Int16Matrix.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/matrix/pycauset.Int64Matrix.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/matrix/pycauset.Int8Matrix.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/matrix/pycauset.IntegerMatrix.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/matrix/pycauset.MatrixBase.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/matrix/pycauset.SymmetricMatrix.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/matrix/pycauset.TriangularBitMatrix.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/matrix/pycauset.TriangularFloatMatrix.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/matrix/pycauset.TriangularIntegerMatrix.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/matrix/pycauset.TriangularMatrix.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/matrix/pycauset.UInt16Matrix.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/matrix/pycauset.UInt32Matrix.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/matrix/pycauset.UInt64Matrix.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/matrix/pycauset.UInt8Matrix.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/spacetime/index.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/spacetime/pycauset.CausalSet.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/spacetime/pycauset.CausalSpacetime.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/spacetime/pycauset.spacetime.MinkowskiBox.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/spacetime/pycauset.spacetime.MinkowskiCylinder.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/spacetime/pycauset.spacetime.MinkowskiDiamond.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/spacetime/pycauset.spacetime.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/vector/index.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/vector/pycauset.BitVector.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/vector/pycauset.ComplexFloat16Vector.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/vector/pycauset.ComplexFloat32Vector.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/vector/pycauset.ComplexFloat64Vector.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/vector/pycauset.Float16Vector.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/vector/pycauset.Float32Vector.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/vector/pycauset.FloatVector.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/vector/pycauset.Int16Vector.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/vector/pycauset.Int64Vector.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/vector/pycauset.Int8Vector.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/vector/pycauset.IntegerVector.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/vector/pycauset.UInt16Vector.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/vector/pycauset.UInt32Vector.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/vector/pycauset.UInt64Vector.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/vector/pycauset.UInt8Vector.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/vector/pycauset.UnitVector.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/classes/vector/pycauset.VectorBase.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/index.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.I.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.antisymmetric.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.asarray.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.bitwise_and.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.bitwise_nand.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.bitwise_nor.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.bitwise_not.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.bitwise_or.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.bitwise_xnor.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.bitwise_xor.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.causal_matrix.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.causet.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.cholesky.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.compute_k.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.compute_k_matrix.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.cond.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.convert_file.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.cross.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.cuda.benchmark.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.cuda.current_device.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.cuda.disable.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.cuda.enable.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.cuda.force_backend.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.cuda.is_available.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.cuda.set_pinning_budget.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.det.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.determinant.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.diagonal.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.divide.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.eig.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.eigh.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.eigvals.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.eigvals_arnoldi.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.eigvals_skew.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.eigvalsh.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.get_memory_threshold.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.get_num_threads.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.get_precision_mode.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.identity.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.invert.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.load.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.load_matrix.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.load_npy.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.load_npz.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.lstsq.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.lu.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.matrix.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.matrix_power.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.matrix_rank.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.norm.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.outer.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.pinv.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.precision_mode.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.qr.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.rank.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.save.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.save_npy.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.save_npz.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.set_backing_dir.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.set_export_max_bytes.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.set_memory_threshold.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.set_num_threads.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.set_precision_mode.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.slogdet.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.solve.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.solve_triangular.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.sum.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.svd.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.svdvals.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.symmetric.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.to_numpy.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.trace.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.vecdot.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.vector.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/index.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/parameters/index.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/parameters/pycauset.keep_temp_files.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/parameters/pycauset.pinning_budget.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/parameters/pycauset.seed.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/pycauset.vis/index.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/pycauset.vis/plot_causal_matrix.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/pycauset.vis/plot_embedding.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/pycauset.vis/plot_hasse.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/guides/Advanced Usage.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/guides/Causal Sets.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/guides/Field Theory.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/guides/Installation.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/guides/Linear Algebra Operations.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/guides/Matrix Guide.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/guides/Numpy Integration.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/guides/NxM Support.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/guides/Performance Guide.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/guides/Spacetime.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/guides/Storage and Memory.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/guides/User Guide.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/guides/Vector Guide.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/guides/Visualization.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/guides/index.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/guides/performance.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/guides/release1/dtypes.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/guides/release1/index.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/guides/release1/linalg.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/guides/release1/properties.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/guides/release1/shapes.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/guides/release1/storage.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/index.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/internals/Algorithms.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/internals/Block Matrices.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/internals/Compute Architecture.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/internals/CooperativeArchitecture.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/internals/DTYPE_COMPLEX_OVERFLOW_PLAN.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/internals/DType System.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/internals/LazyEvaluation.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/internals/Memory and Data.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/internals/MemoryArchitecture.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/internals/Streaming Manager.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/internals/index.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/internals/plans/BLAS_INTEGRATION_PLAN.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/internals/plans/OPTIMIZATION_STATUS.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/internals/plans/R1_CPU_PLAN.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/internals/plans/R1_EXECUTION.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/internals/plans/R1_NUMPY_PLAN.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/internals/plans/R1_POLISH.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/internals/plans/SUPPORT_READINESS_FRAMEWORK.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/internals/plans/completed/DTYPE_COMPLEX_OVERFLOW_PLAN.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/internals/plans/completed/R1_BLOCKMATRIX_PLAN.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/internals/plans/completed/R1_CPU_PLAN.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/internals/plans/completed/R1_GPU_PLAN.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/internals/plans/completed/R1_IO_PLAN.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/internals/plans/completed/R1_LAZY.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/internals/plans/completed/R1_LINALG_PLAN.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/internals/plans/completed/R1_NUMPY_PLAN.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/internals/plans/completed/R1_PERF.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/internals/plans/completed/R1_PROPERTIES_PLAN.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/internals/plans/completed/R1_SAFETY.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/internals/plans/completed/R1_SHAPES_PLAN.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/internals/plans/completed/R1_STORAGE_PLAN.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/internals/plans/completed/Restructure Plan.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/internals/plans/phase1_inventory.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/project/Contributing.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/project/Philosophy.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/project/Public API Contract.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/project/index.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/project/plans/R2_API_DESIGN.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/project/plans/R2_FIELDS_PHYSICS.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/project/plans/R2_PLAN_MAP.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/project/plans/R2_ROADMAP.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/project/plans/R2_SPACETIME_CREATION.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/project/plans/R2_SPACETIME_LIBRARY.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/project/plans/index.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/project/protocols/Adding Operations.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/project/protocols/Adding Types.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/project/protocols/Documentation Protocol.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/project/protocols/NumPy Alignment Protocol.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/project/protocols/Pre-alpha Policy.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/project/protocols/Release Process.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/project/protocols/Testing and Bug Tracking.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/project/protocols/index.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/Cholesky +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/CholmodSupport +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/Core +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/Dense +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/Eigen +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/Eigenvalues +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/Geometry +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/Householder +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/IterativeLinearSolvers +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/Jacobi +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/KLUSupport +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/LU +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/MetisSupport +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/OrderingMethods +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/PaStiXSupport +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/PardisoSupport +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/QR +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/QtAlignedMalloc +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/SPQRSupport +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/SVD +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/Sparse +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/SparseCholesky +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/SparseCore +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/SparseLU +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/SparseQR +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/StdDeque +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/StdList +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/StdVector +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/SuperLUSupport +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/UmfPackSupport +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Cholesky/LDLT.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Cholesky/LLT.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Cholesky/LLT_LAPACKE.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/CholmodSupport/CholmodSupport.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/ArithmeticSequence.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/Array.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/ArrayBase.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/ArrayWrapper.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/Assign.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/AssignEvaluator.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/Assign_MKL.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/BandMatrix.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/Block.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/BooleanRedux.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/CommaInitializer.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/ConditionEstimator.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/CoreEvaluators.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/CoreIterators.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/CwiseBinaryOp.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/CwiseNullaryOp.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/CwiseTernaryOp.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/CwiseUnaryOp.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/CwiseUnaryView.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/DenseBase.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/DenseCoeffsBase.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/DenseStorage.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/Diagonal.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/DiagonalMatrix.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/DiagonalProduct.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/Dot.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/EigenBase.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/ForceAlignedAccess.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/Fuzzy.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/GeneralProduct.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/GenericPacketMath.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/GlobalFunctions.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/IO.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/IndexedView.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/Inverse.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/Map.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/MapBase.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/MathFunctions.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/MathFunctionsImpl.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/Matrix.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/MatrixBase.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/NestByValue.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/NoAlias.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/NumTraits.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/PartialReduxEvaluator.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/PermutationMatrix.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/PlainObjectBase.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/Product.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/ProductEvaluators.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/Random.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/Redux.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/Ref.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/Replicate.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/Reshaped.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/ReturnByValue.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/Reverse.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/Select.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/SelfAdjointView.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/SelfCwiseBinaryOp.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/Solve.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/SolveTriangular.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/SolverBase.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/StableNorm.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/StlIterators.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/Stride.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/Swap.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/Transpose.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/Transpositions.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/TriangularMatrix.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/VectorBlock.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/VectorwiseOp.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/Visitor.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/AVX/Complex.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/AVX/MathFunctions.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/AVX/PacketMath.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/AVX/TypeCasting.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/AVX512/Complex.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/AVX512/MathFunctions.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/AVX512/PacketMath.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/AVX512/TypeCasting.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/AltiVec/Complex.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/AltiVec/MathFunctions.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/AltiVec/MatrixProduct.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/AltiVec/MatrixProductCommon.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/AltiVec/MatrixProductMMA.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/AltiVec/PacketMath.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/CUDA/Complex.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/Default/BFloat16.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/Default/ConjHelper.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/Default/GenericPacketMathFunctions.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/Default/GenericPacketMathFunctionsFwd.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/Default/Half.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/Default/Settings.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/Default/TypeCasting.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/GPU/MathFunctions.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/GPU/PacketMath.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/GPU/TypeCasting.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/HIP/hcc/math_constants.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/MSA/Complex.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/MSA/MathFunctions.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/MSA/PacketMath.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/NEON/Complex.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/NEON/GeneralBlockPanelKernel.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/NEON/MathFunctions.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/NEON/PacketMath.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/NEON/TypeCasting.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/SSE/Complex.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/SSE/MathFunctions.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/SSE/PacketMath.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/SSE/TypeCasting.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/SVE/MathFunctions.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/SVE/PacketMath.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/SVE/TypeCasting.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/SYCL/InteropHeaders.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/SYCL/MathFunctions.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/SYCL/PacketMath.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/SYCL/SyclMemoryModel.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/SYCL/TypeCasting.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/ZVector/Complex.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/ZVector/MathFunctions.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/arch/ZVector/PacketMath.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/functors/AssignmentFunctors.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/functors/BinaryFunctors.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/functors/NullaryFunctors.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/functors/StlFunctors.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/functors/TernaryFunctors.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/functors/UnaryFunctors.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/products/GeneralBlockPanelKernel.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrix.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/products/GeneralMatrixVector.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/products/Parallelizer.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/products/SelfadjointMatrixMatrix.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/products/SelfadjointMatrixVector.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/products/SelfadjointProduct.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/products/SelfadjointRank2Update.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/products/TriangularMatrixMatrix.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/products/TriangularMatrixVector.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/products/TriangularSolverMatrix.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/products/TriangularSolverVector.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/util/BlasUtil.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/util/ConfigureVectorization.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/util/Constants.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/util/DisableStupidWarnings.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/util/ForwardDeclarations.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/util/IndexedViewHelper.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/util/IntegralConstant.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/util/MKL_support.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/util/Macros.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/util/Memory.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/util/Meta.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/util/NonMPL2.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/util/ReenableStupidWarnings.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/util/ReshapedHelper.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/util/StaticAssert.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/util/SymbolicIndex.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Core/util/XprHelper.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Eigenvalues/ComplexEigenSolver.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Eigenvalues/ComplexSchur.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Eigenvalues/EigenSolver.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Eigenvalues/HessenbergDecomposition.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Eigenvalues/RealQZ.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Eigenvalues/RealSchur.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Eigenvalues/Tridiagonalization.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Geometry/AlignedBox.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Geometry/AngleAxis.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Geometry/EulerAngles.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Geometry/Homogeneous.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Geometry/Hyperplane.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Geometry/OrthoMethods.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Geometry/ParametrizedLine.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Geometry/Quaternion.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Geometry/Rotation2D.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Geometry/RotationBase.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Geometry/Scaling.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Geometry/Transform.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Geometry/Translation.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Geometry/Umeyama.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Geometry/arch/Geometry_SIMD.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Householder/BlockHouseholder.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Householder/Householder.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Householder/HouseholderSequence.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/Jacobi/Jacobi.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/KLUSupport/KLUSupport.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/LU/Determinant.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/LU/FullPivLU.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/LU/InverseImpl.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/LU/PartialPivLU.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/LU/PartialPivLU_LAPACKE.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/LU/arch/InverseSize4.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/MetisSupport/MetisSupport.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/OrderingMethods/Amd.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/OrderingMethods/Eigen_Colamd.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/OrderingMethods/Ordering.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/PaStiXSupport/PaStiXSupport.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/PardisoSupport/PardisoSupport.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/QR/ColPivHouseholderQR.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/QR/CompleteOrthogonalDecomposition.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/QR/FullPivHouseholderQR.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/QR/HouseholderQR.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/QR/HouseholderQR_LAPACKE.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SVD/BDCSVD.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SVD/JacobiSVD.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SVD/JacobiSVD_LAPACKE.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SVD/SVDBase.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SVD/UpperBidiagonalization.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseCholesky/SimplicialCholesky.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseCore/AmbiVector.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseCore/CompressedStorage.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseCore/MappedSparseMatrix.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseCore/SparseAssign.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseCore/SparseBlock.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseCore/SparseColEtree.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseCore/SparseCompressedBase.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseCore/SparseCwiseBinaryOp.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseCore/SparseCwiseUnaryOp.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseCore/SparseDenseProduct.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseCore/SparseDiagonalProduct.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseCore/SparseDot.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseCore/SparseFuzzy.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseCore/SparseMap.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseCore/SparseMatrix.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseCore/SparseMatrixBase.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseCore/SparsePermutation.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseCore/SparseProduct.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseCore/SparseRedux.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseCore/SparseRef.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseCore/SparseSelfAdjointView.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseCore/SparseSolverBase.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseCore/SparseSparseProductWithPruning.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseCore/SparseTranspose.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseCore/SparseTriangularView.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseCore/SparseUtil.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseCore/SparseVector.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseCore/SparseView.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseCore/TriangularSolver.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseLU/SparseLU.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseLU/SparseLUImpl.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseLU/SparseLU_Memory.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseLU/SparseLU_Structs.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseLU/SparseLU_Utils.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseLU/SparseLU_column_bmod.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseLU/SparseLU_column_dfs.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseLU/SparseLU_gemm_kernel.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseLU/SparseLU_kernel_bmod.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseLU/SparseLU_panel_bmod.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseLU/SparseLU_panel_dfs.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseLU/SparseLU_pivotL.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseLU/SparseLU_pruneL.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseLU/SparseLU_relax_snode.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SparseQR/SparseQR.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/StlSupport/StdDeque.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/StlSupport/StdList.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/StlSupport/StdVector.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/StlSupport/details.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/SuperLUSupport/SuperLUSupport.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/UmfPackSupport/UmfPackSupport.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/misc/Image.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/misc/Kernel.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/misc/RealSvd2x2.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/misc/blas.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/misc/lapack.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/misc/lapacke.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/misc/lapacke_mangling.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/plugins/ArrayCwiseBinaryOps.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/plugins/ArrayCwiseUnaryOps.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/plugins/BlockMethods.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/plugins/CommonCwiseBinaryOps.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/plugins/CommonCwiseUnaryOps.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/plugins/IndexedViewMethods.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/plugins/MatrixCwiseBinaryOps.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/plugins/MatrixCwiseUnaryOps.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/Eigen/src/plugins/ReshapedMethods.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/signature_of_eigen3_matrix_library +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/AdolcForward +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/AlignedVector3 +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/ArpackSupport +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/AutoDiff +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/BVH +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/Tensor +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/TensorSymmetry +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/ThreadPool +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/Tensor.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorArgMax.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorAssign.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorBase.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorBlock.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorBroadcasting.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorChipping.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorConcatenation.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionBlocking.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionCuda.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionGpu.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionMapper.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionSycl.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionThreadPool.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorConversion.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorConvolution.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorConvolutionSycl.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorCostModel.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorCustomOp.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDevice.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceCuda.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceDefault.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceGpu.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceSycl.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceThreadPool.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDimensionList.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDimensions.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorEvalTo.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorEvaluator.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorExecutor.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorExpr.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorFFT.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorFixedSize.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorForcedEval.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorForwardDeclarations.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorFunctors.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorGenerator.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorGlobalFunctions.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorGpuHipCudaDefines.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorGpuHipCudaUndefines.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorIO.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorImagePatch.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorIndexList.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorInflation.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorInitializer.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorIntDiv.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorLayoutSwap.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMacros.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMap.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMeta.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorPadding.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorPatch.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorRandom.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReduction.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReductionCuda.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReductionGpu.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReductionSycl.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorRef.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReverse.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorScan.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorScanSycl.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorShuffling.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorStorage.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorStriding.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorTrace.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorTraits.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorUInt128.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorVolumePatch.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/DynamicSymmetry.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/StaticSymmetry.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/Symmetry.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/util/TemplateGroupTheory.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/Barrier.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/EventCount.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/NonBlockingThreadPool.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/RunQueue.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadCancel.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadEnvironment.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadLocal.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadPoolInterface.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadYield.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/util/CXX11Meta.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/util/CXX11Workarounds.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/util/EmulateArray.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/CXX11/src/util/MaxSizeVector.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/EulerAngles +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/FFT +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/IterativeSolvers +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/KroneckerProduct +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/LevenbergMarquardt +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/MPRealSupport +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/MatrixFunctions +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/MoreVectorization +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/NonLinearOptimization +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/NumericalDiff +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/OpenGLSupport +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/Polynomials +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/Skyline +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/SparseExtra +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/SpecialFunctions +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/Splines +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/AutoDiff/AutoDiffJacobian.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/AutoDiff/AutoDiffScalar.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/AutoDiff/AutoDiffVector.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/BVH/BVAlgorithms.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/BVH/KdBVH.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/Eigenvalues/ArpackSelfAdjointEigenSolver.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/EulerAngles/EulerAngles.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/EulerAngles/EulerSystem.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/FFT/ei_fftw_impl.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/FFT/ei_kissfft_impl.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/IterativeSolvers/ConstrainedConjGrad.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/IterativeSolvers/DGMRES.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/IterativeSolvers/GMRES.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/IterativeSolvers/IDRS.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/IterativeSolvers/IncompleteLU.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/IterativeSolvers/IterationController.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/IterativeSolvers/MINRES.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/IterativeSolvers/Scaling.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMcovar.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMonestep.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMpar.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMqrsolv.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LevenbergMarquardt.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixFunction.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixLogarithm.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixPower.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixSquareRoot.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/MatrixFunctions/StemFunction.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/MoreVectorization/MathFunctions.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/HybridNonLinearSolver.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/LevenbergMarquardt.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/chkder.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/covar.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/dogleg.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/fdjac1.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/lmpar.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/qrsolv.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/r1mpyq.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/r1updt.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/rwupdt.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/NumericalDiff/NumericalDiff.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/Polynomials/Companion.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/Polynomials/PolynomialSolver.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/Polynomials/PolynomialUtils.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/Skyline/SkylineInplaceLU.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/Skyline/SkylineMatrix.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/Skyline/SkylineMatrixBase.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/Skyline/SkylineProduct.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/Skyline/SkylineStorage.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/Skyline/SkylineUtil.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/SparseExtra/BlockOfDynamicSparseMatrix.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/SparseExtra/BlockSparseMatrix.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/SparseExtra/DynamicSparseMatrix.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/SparseExtra/MarketIO.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/SparseExtra/MatrixMarketIterator.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/SparseExtra/RandomSetter.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsArrayAPI.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsBFloat16.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsFunctors.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsHalf.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsImpl.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsPacketMath.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/HipVectorCompatibility.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsArrayAPI.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsBFloat16.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsFunctors.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsHalf.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsImpl.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsPacketMath.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/AVX/BesselFunctions.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/AVX/SpecialFunctions.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/AVX512/BesselFunctions.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/AVX512/SpecialFunctions.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/GPU/SpecialFunctions.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/NEON/BesselFunctions.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/NEON/SpecialFunctions.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/Splines/Spline.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/Splines/SplineFitting.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/eigen3/unsupported/Eigen/src/Splines/SplineFwd.h +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/causet/Spacetime.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/causet/Sprinkler.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/compute/AcceleratorConfig.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/compute/AutoSolver.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/compute/ComputeContext.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/compute/ComputeDevice.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/compute/ComputeWorker.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/compute/ComputeWorkerExtensionTemplate.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/compute/HardwareProfile.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/compute/MatrixPropertyTraits.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/compute/StreamingManager.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/compute/WorkloadPartitioner.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/compute/cpu/CpuComputeWorker.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/compute/cpu/CpuDevice.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/compute/cpu/CpuSolver.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/core/DebugTrace.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/core/Float16.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/core/IOAccelerator.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/core/MatrixTraits.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/core/MatrixTypeResolver.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/core/MemoryGovernor.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/core/MemoryHints.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/core/MemoryMapper.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/core/Nvtx.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/core/ObjectFactory.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/core/OpRegistry.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/core/ParallelUtils.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/core/PersistentObject.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/core/PromotionResolver.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/core/PropertyFlags.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/core/ScalarUtils.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/core/StorageUtils.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/core/StructureResolver.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/core/SystemUtils.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/core/Types.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/math/Eigen.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/math/LinearAlgebra.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/matrix/ComplexFloat16Matrix.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/matrix/DenseBitMatrix.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/matrix/DenseMatrix.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/matrix/DiagonalMatrix.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/matrix/IdentityMatrix.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/matrix/MatrixBase.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/matrix/MatrixOps.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/matrix/SymmetricMatrix.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/matrix/TriangularBitMatrix.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/matrix/TriangularMatrix.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/matrix/expression/BinaryExpression.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/matrix/expression/Functors.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/matrix/expression/MatrixExpression.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/matrix/expression/MatrixExpressionWrapper.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/matrix/expression/MatrixRefExpression.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/matrix/expression/README.md +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/matrix/expression/ScalarExpression.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/matrix/expression/UnaryExpression.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/vector/ComplexFloat16Vector.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/vector/DenseVector.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/vector/UnitVector.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/include/pycauset/vector/VectorBase.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/mkdocs.yml +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/mockups/spacetime_studio_mockup.html +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/overrides/main.html +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/overrides/partials/copyright.html +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/overrides/partials/header.html +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/pyproject.toml +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/python/pycauset/_internal/__init__.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/python/pycauset/_internal/big_blob_cache.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/python/pycauset/_internal/blockmatrix.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/python/pycauset/_internal/coercion.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/python/pycauset/_internal/dense_python.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/python/pycauset/_internal/dtypes.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/python/pycauset/_internal/factories.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/python/pycauset/_internal/formatting.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/python/pycauset/_internal/interop.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/python/pycauset/_internal/io_observability.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/python/pycauset/_internal/lazy_ufunc.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/python/pycauset/_internal/linalg_cache.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/python/pycauset/_internal/matrix_api.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/python/pycauset/_internal/native.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/python/pycauset/_internal/native_threshold.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/python/pycauset/_internal/patching.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/python/pycauset/_internal/persistence.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/python/pycauset/_internal/runtime.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/python/pycauset/_internal/storage_debug.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/python/pycauset/_internal/streaming_manager.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/python/pycauset/_internal/submatrix_view.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/python/pycauset/_internal/support_matrix.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/python/pycauset/_internal/thunks.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/python/pycauset/_internal/warnings.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/python/pycauset/_storage.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/python/pycauset/causet.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/python/pycauset/cuda.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/python/pycauset/field.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/python/pycauset/spacetime.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/python/pycauset/vis.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/requirements-docs.txt +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/scripts/make_r1_gallery.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/share/eigen3/cmake/Eigen3Config.cmake +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/share/eigen3/cmake/Eigen3ConfigVersion.cmake +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/share/eigen3/cmake/Eigen3Targets.cmake +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/share/eigen3/cmake/UseEigen3.cmake +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/accelerators/cuda/ArnoldiDriver.cu +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/accelerators/cuda/ArnoldiDriver.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/accelerators/cuda/AsyncStreamer.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/accelerators/cuda/CholeskyDriver.cu +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/accelerators/cuda/CholeskyDriver.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/accelerators/cuda/CudaDevice.cu +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/accelerators/cuda/CudaDevice.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/accelerators/cuda/CudaFuture.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/accelerators/cuda/CudaSolver.cu +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/accelerators/cuda/CudaSolver.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/accelerators/cuda/MatmulDriver.cu +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/accelerators/cuda/MatmulDriver.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/accelerators/cuda/ScopedPinner.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/bindings/bind_causet.cpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/bindings/bind_complex.cpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/bindings/bind_core.cpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/bindings/bind_expression.cpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/bindings/bind_math.cpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/bindings/bind_op_registry.cpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/bindings/bind_vector.cpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/bindings/binding_warnings.cpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/bindings/binding_warnings.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/bindings/bindings_common.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/bindings/numpy_export_guard.hpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/bindings.cpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/causet/Sprinkler.cpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/compute/AutoSolver.cpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/compute/ComputeContext.cpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/compute/StreamingManager.cpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/compute/WorkloadPartitioner.cpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/compute/cpu/CpuComputeWorker.cpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/compute/cpu/CpuDevice.cpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/core/DebugTrace.cpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/core/IOAccelerator.cpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/core/MemoryGovernor.cpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/core/MemoryMapper.cpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/core/ObjectFactory.cpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/core/OpRegistration.cpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/core/ParallelUtils.cpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/core/PersistentObject.cpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/core/PromotionResolver.cpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/core/StorageUtils.cpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/core/SystemUtils.cpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/main.cpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/math/Eigen.cpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/matrix/DenseBitMatrix.cpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/matrix/MatrixBase.cpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/matrix/MatrixOps.cpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/matrix/TriangularBitMatrix.cpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/matrix/TriangularMatrix.cpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/vector/DenseVector.cpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/src/vector/VectorBase.cpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/manual/interface_check.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/manual/test_new_vis.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/manual/test_spacetimes.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/__init__.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/debug_load.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/phase3_4_verification.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_arnoldi.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_backing_dir_api.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_behaviour.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_bit_mixed_fastpaths.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_blockmatrix_phase_b.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_blockmatrix_phase_c_refine.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_blockmatrix_phase_c_views.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_blockmatrix_phase_d_elementwise.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_blockmatrix_phase_d_thunks.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_blockmatrix_phase_e_persistence.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_blockmatrix_phase_f_integration.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_blockmatrix_phase_h_hardening.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_caching.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_complex_float_dtypes.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_complex_scalar.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_complex_vector_dtypes.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_conjugation.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_convert_file.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_coordinates.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_cuda_hardware_profile_mock.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_eig_general_cpu.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_eigen_block_matrix.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_eigen_caching.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_eigen_cpu.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_eigen_op_contract.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_eigen_streaming.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_factories_scalar_rejection.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_factorizations.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_field.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_float_types.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_float_underpromotion_warning.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_gpu.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_gpu_features.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_hybrid_correctness_suite.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_hybrid_matmul.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_identity.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_inner_product_types.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_integer_matmul_overflow_risk_warning.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_integer_matmul_overflow_warning.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_interface.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_interop_extensive.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_inverse_correctness.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_inverse_cpu.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_inverse_cpu_block.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_inverse_extensive.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_io_consistency.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_io_observability.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_k_matrix.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_known_bugs.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_lazy_evaluation.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_lazy_ops_comprehensive.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_linalg_phase_g_endpoints.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_matmul_transpose.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_matrix_hierarchy.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_matrix_transpose.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_norm.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_numpy_conversion_policy.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_numpy_import_max_in_ram_bytes.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_numpy_integration.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_numpy_interop.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_numpy_interop_ergonomics.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_numpy_vector_complex_import.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_operations.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_operations_extensive.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_outofcore_general.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_outofcore_lu.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_pauli_jordan_spectrum.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_phase1_inventory.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_phase7_op_contract.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_promotion_resolver.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_properties_compatibility.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_properties_dispatch.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_properties_effect_summary_mutations.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_properties_effective_structure.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_properties_mutation_invalidation.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_properties_operator_wiring.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_properties_persistence.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_properties_propagation.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_public_api.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_ram_storage.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_registry_binding.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_scalar_optimization.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_scale_first_bit_guard.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_skew.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_skew_comprehensive.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_snapshot_phase1_roundtrip.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_snapshot_phase2_metadata_stability.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_spacetime.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_spacetime_extensive.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_storage.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_storage_crash_consistency.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_storage_debug_tool.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_storage_extensive.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_storage_hard_break.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_streaming_manager.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_sum.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_support_matrix.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_symmetric.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_temp_storage_lifecycle.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_transposed_vectors.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_typed_numpy_constructors.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_types_extensive.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_unit_vector.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_vector.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_vectors_advanced.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/python/test_vis.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/stability/comprehensive_stability.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/test_cow.cpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/test_cpu_worker_contract.cpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/test_io_accelerator.cpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/test_lazy_comprehensive.cpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/test_lazy_evaluation.cpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/test_memory_governor.cpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/test_op_registry.cpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/test_parallel_utils.cpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tests/test_symmetric_matrix.cpp +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tools/build.ps1 +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tools/check_native_exports.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tools/check_support_matrix.py +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tools/install_cuda12.ps1 +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tools/release.ps1 +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tools/run_python_tests.ps1 +0 -0
- {pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/tools/stress_100gb_matrix.py +0 -0
|
@@ -34,8 +34,43 @@ milestone corresponds to **v0.5.1**.
|
|
|
34
34
|
- GitHub Actions CI matrix (`ci.yml`): Windows / macOS / Linux on Python 3.12.
|
|
35
35
|
- Benchmark harness (`benchmarks/bench.py`, `benchmarks/plot.py`) with graphs, and the
|
|
36
36
|
out-of-core RAM-limit demo (`benchmarks/bench_ram.py`).
|
|
37
|
+
- `bool`: alias for the `bool_` dtype token (both normalize to `"bool"`). `pc.bool`
|
|
38
|
+
now resolves and is star-exported; `bool_` remains for back-compat.
|
|
39
|
+
- `zeros`/`ones`/`empty` no longer require `dtype=`. With no dtype they return a
|
|
40
|
+
dtype-deferred wrapper that resolves to `int32` on first use (or to the dtype of
|
|
41
|
+
the first written value); a still-typeless `empty` raises on read/use.
|
|
42
|
+
- `dot(a, b)` now accepts matrices and matches `np.dot` semantics (vector-vector
|
|
43
|
+
scalar, matrix-matrix matmul, matrix-vector / vector-matrix products).
|
|
44
|
+
- "constant" structure registered in the properties/structure system
|
|
45
|
+
(`is_constant` + `constant_value`); `ones` without a dtype carries it.
|
|
46
|
+
- Everyday-use scenario tests (`tests/python/test_everyday_scenarios.py`), each
|
|
47
|
+
exercised in at least two ways and cross-checked against NumPy, plus a findings
|
|
48
|
+
note (`documentation/dev/FINDINGS_EVERYDAY_SCENARIOS.md`) and a scenario
|
|
49
|
+
benchmark script (`benchmarks/scenario_benchmarks.py`).
|
|
37
50
|
|
|
38
51
|
### Fixed
|
|
52
|
+
- Bool/bit matmul no longer raises `Unsupported matrix multiplication types`:
|
|
53
|
+
`DenseBitMatrix @ TriangularBitMatrix` and `TriangularBitMatrix @ DenseBitMatrix`
|
|
54
|
+
now promote to a dense `int32` result (bit x bit counting semantics).
|
|
55
|
+
- Cubing a causal matrix now works: `TriangularIntegerMatrix x TriangularBitMatrix`
|
|
56
|
+
and `TriangularIntegerMatrix x TriangularIntegerMatrix` matmul are supported
|
|
57
|
+
(native `int32` result), so `(C @ C) @ C` and `matrix_power(C, 3)` no longer throw
|
|
58
|
+
`Unsupported matrix multiplication types`.
|
|
59
|
+
- `TriangularIntegerMatrix` (the result of `C @ C`) now exports to NumPy as
|
|
60
|
+
`int32` instead of raising `TypeError: data type 'triangularinteger' not
|
|
61
|
+
understood`.
|
|
62
|
+
- Dense mixed-dtype matmul now works via a general promotion fallback:
|
|
63
|
+
`int32 @ float64`, `float64 @ int32`, `int32 @ TriangularBitMatrix`, and
|
|
64
|
+
`float64 @ TriangularBitMatrix` (and their reverses) no longer raise
|
|
65
|
+
`Unsupported matrix multiplication types`.
|
|
66
|
+
- `matrix_power(C, k)` keeps triangular causal-matrix powers triangular (it no
|
|
67
|
+
longer densifies to a dense `IntegerMatrix` for some powers).
|
|
68
|
+
- `dot(vector, matrix)` returns a 1-D vector like `np.dot` (previously a
|
|
69
|
+
transposed `(1, n)` row vector).
|
|
70
|
+
- Wide mixed-integer matmul now promotes to the wider type instead of raising:
|
|
71
|
+
`int8 @ int16`, `int64 @ int32`, `uint8 @ uint16`, `uint32 @ int32` (promotes to
|
|
72
|
+
`int64`), and other mixed-width integer combinations all work via a generic
|
|
73
|
+
integer fallback kernel.
|
|
39
74
|
- `norm(matrix, ord=2)` now returns the spectral norm (largest singular value); it
|
|
40
75
|
previously returned the Frobenius norm for `ord=2`.
|
|
41
76
|
- `np.asarray(IdentityMatrix)` no longer raises `TypeError: data type 'identity' not
|
|
@@ -84,3 +119,11 @@ milestone corresponds to **v0.5.1**.
|
|
|
84
119
|
`MemoryGovernor`, `IOAccelerator`, `OpContract`, `OpRegistry`, `get_storage_root`,
|
|
85
120
|
`set_storage_root`, `make_coordinates`, `sprinkle`). These stay reachable as
|
|
86
121
|
`pycauset.<name>` for advanced use, but are no longer presented as public API.
|
|
122
|
+
|
|
123
|
+
### Performance
|
|
124
|
+
- `DenseBitMatrix x TriangularBitMatrix` matmul now uses a popcount kernel instead
|
|
125
|
+
of a naive element loop (~15x faster at n=256).
|
|
126
|
+
- `C @ vector` matvec for `TriangularBitMatrix` now uses scale-first kernels that
|
|
127
|
+
iterate the set bits (beats NumPy's dense int64 matvec by ~30x at N=5000).
|
|
128
|
+
- R1 goal restated to allow targeted optimization of correctness-first paths where a
|
|
129
|
+
naive fallback is egregiously slow relative to NumPy.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: pycauset
|
|
3
|
-
Version: 0.6.1.
|
|
3
|
+
Version: 0.6.1.dev13
|
|
4
4
|
Summary: High-performance Causal Set matrix operations using memory-mapped files
|
|
5
5
|
Author: Bror Hjemgaard
|
|
6
6
|
License: MIT
|
|
@@ -28,8 +28,8 @@ Requires-Dist: psutil; extra == "dev"
|
|
|
28
28
|
Description-Content-Type: text/markdown
|
|
29
29
|
|
|
30
30
|
<div align="center">
|
|
31
|
-
<img src="documentation/docs/assets/logo/logo.png" width="150" alt="PyCauset Logo" style="vertical-align: middle; margin-right: 20px;">
|
|
32
|
-
<img src="documentation/docs/assets/logo/logo-text-colour.png" width="300" alt="PyCauset Text" style="vertical-align: middle;">
|
|
31
|
+
<img src="https://raw.githubusercontent.com/BrorH/pycauset/main/documentation/docs/assets/logo/logo.png" width="150" alt="PyCauset Logo" style="vertical-align: middle; margin-right: 20px;">
|
|
32
|
+
<img src="https://raw.githubusercontent.com/BrorH/pycauset/main/documentation/docs/assets/logo/logo-text-colour.png" width="300" alt="PyCauset Text" style="vertical-align: middle;">
|
|
33
33
|
|
|
34
34
|
<br><br>
|
|
35
35
|
|
|
@@ -65,7 +65,7 @@ fig = plot_embedding(c) # interactive Plotly figure
|
|
|
65
65
|
fig.show()
|
|
66
66
|
```
|
|
67
67
|
|
|
68
|
-
<img src="documentation/docs/assets/gallery/diamond_embedding.png" width="520" alt="3000 points in a 2D Minkowski diamond">
|
|
68
|
+
<img src="https://raw.githubusercontent.com/BrorH/pycauset/main/documentation/docs/assets/gallery/diamond_embedding.png" width="520" alt="3000 points in a 2D Minkowski diamond">
|
|
69
69
|
|
|
70
70
|
|
|
71
71
|
|
|
@@ -117,10 +117,10 @@ However, the biggest reason to use PyCauset is that it memory-maps past RAM, whe
|
|
|
117
117
|
|
|
118
118
|
Both images come straight from the public API. Reproduce them with `scripts/make_r1_gallery.py`.
|
|
119
119
|
|
|
120
|
-
<img src="documentation/docs/assets/gallery/diamond_hasse.png" width="420" alt="Hasse diagram of an 80-point diamond">
|
|
120
|
+
<img src="https://raw.githubusercontent.com/BrorH/pycauset/main/documentation/docs/assets/gallery/diamond_hasse.png" width="420" alt="Hasse diagram of an 80-point diamond">
|
|
121
121
|
*The causal links of an 80-point diamond (Hasse diagram).*
|
|
122
122
|
|
|
123
|
-
<img src="documentation/docs/assets/gallery/cylinder_embedding.png" width="420" alt="3000 points on a Minkowski cylinder">
|
|
123
|
+
<img src="https://raw.githubusercontent.com/BrorH/pycauset/main/documentation/docs/assets/gallery/cylinder_embedding.png" width="420" alt="3000 points on a Minkowski cylinder">
|
|
124
124
|
*3000 points sprinkled onto a Minkowski cylinder, rendered as a 3D tube.*
|
|
125
125
|
|
|
126
126
|
## Installation
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<div align="center">
|
|
2
|
-
<img src="documentation/docs/assets/logo/logo.png" width="150" alt="PyCauset Logo" style="vertical-align: middle; margin-right: 20px;">
|
|
3
|
-
<img src="documentation/docs/assets/logo/logo-text-colour.png" width="300" alt="PyCauset Text" style="vertical-align: middle;">
|
|
2
|
+
<img src="https://raw.githubusercontent.com/BrorH/pycauset/main/documentation/docs/assets/logo/logo.png" width="150" alt="PyCauset Logo" style="vertical-align: middle; margin-right: 20px;">
|
|
3
|
+
<img src="https://raw.githubusercontent.com/BrorH/pycauset/main/documentation/docs/assets/logo/logo-text-colour.png" width="300" alt="PyCauset Text" style="vertical-align: middle;">
|
|
4
4
|
|
|
5
5
|
<br><br>
|
|
6
6
|
|
|
@@ -36,7 +36,7 @@ fig = plot_embedding(c) # interactive Plotly figure
|
|
|
36
36
|
fig.show()
|
|
37
37
|
```
|
|
38
38
|
|
|
39
|
-
<img src="documentation/docs/assets/gallery/diamond_embedding.png" width="520" alt="3000 points in a 2D Minkowski diamond">
|
|
39
|
+
<img src="https://raw.githubusercontent.com/BrorH/pycauset/main/documentation/docs/assets/gallery/diamond_embedding.png" width="520" alt="3000 points in a 2D Minkowski diamond">
|
|
40
40
|
|
|
41
41
|
|
|
42
42
|
|
|
@@ -88,10 +88,10 @@ However, the biggest reason to use PyCauset is that it memory-maps past RAM, whe
|
|
|
88
88
|
|
|
89
89
|
Both images come straight from the public API. Reproduce them with `scripts/make_r1_gallery.py`.
|
|
90
90
|
|
|
91
|
-
<img src="documentation/docs/assets/gallery/diamond_hasse.png" width="420" alt="Hasse diagram of an 80-point diamond">
|
|
91
|
+
<img src="https://raw.githubusercontent.com/BrorH/pycauset/main/documentation/docs/assets/gallery/diamond_hasse.png" width="420" alt="Hasse diagram of an 80-point diamond">
|
|
92
92
|
*The causal links of an 80-point diamond (Hasse diagram).*
|
|
93
93
|
|
|
94
|
-
<img src="documentation/docs/assets/gallery/cylinder_embedding.png" width="420" alt="3000 points on a Minkowski cylinder">
|
|
94
|
+
<img src="https://raw.githubusercontent.com/BrorH/pycauset/main/documentation/docs/assets/gallery/cylinder_embedding.png" width="420" alt="3000 points on a Minkowski cylinder">
|
|
95
95
|
*3000 points sprinkled onto a Minkowski cylinder, rendered as a 3D tube.*
|
|
96
96
|
|
|
97
97
|
## Installation
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
"""Everyday-use scenario benchmarks with NumPy comparison.
|
|
2
|
+
|
|
3
|
+
Times representative causal-set operations in pycauset and, where a dense
|
|
4
|
+
NumPy equivalent exists, compares wall-clock time. Run with:
|
|
5
|
+
|
|
6
|
+
.venv\\Scripts\\python.exe benchmarks\\scenario_benchmarks.py
|
|
7
|
+
|
|
8
|
+
These are informal wall-clock measurements (best of N), not a rigorous
|
|
9
|
+
statistical benchmark.
|
|
10
|
+
"""
|
|
11
|
+
|
|
12
|
+
import time
|
|
13
|
+
|
|
14
|
+
import numpy as np
|
|
15
|
+
|
|
16
|
+
import pycauset as pc
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
def _best(fn, *, repeat, number):
|
|
20
|
+
best = float("inf")
|
|
21
|
+
for _ in range(repeat):
|
|
22
|
+
t0 = time.perf_counter()
|
|
23
|
+
for _ in range(number):
|
|
24
|
+
fn()
|
|
25
|
+
dt = (time.perf_counter() - t0) / number
|
|
26
|
+
best = min(best, dt)
|
|
27
|
+
return best
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
def _dense(mat, n):
|
|
31
|
+
out = np.zeros((n, n), dtype=int)
|
|
32
|
+
for i in range(n):
|
|
33
|
+
for j in range(n):
|
|
34
|
+
out[i, j] = 1 if mat.get(i, j) else 0
|
|
35
|
+
return out
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
def main():
|
|
39
|
+
n = 256
|
|
40
|
+
sp = pc.MinkowskiDiamond(3)
|
|
41
|
+
C = pc.CausalSet(n, spacetime=sp, seed=1234).C
|
|
42
|
+
B = pc.ones((n, n), dtype=pc.bool_)
|
|
43
|
+
Cn = _dense(C, n) # int64 dense reference
|
|
44
|
+
Bn = np.ones((n, n), dtype=bool)
|
|
45
|
+
|
|
46
|
+
print(f"n = {n} (3D diamond causal matrix + a bool matrix)\n")
|
|
47
|
+
print(f"{'operation':<40} {'pycauset':>10} {'numpy':>10} {'ratio':>8}")
|
|
48
|
+
|
|
49
|
+
def row(name, pc_fn, np_fn, *, repeat=5, number=10):
|
|
50
|
+
pc_t = _best(pc_fn, repeat=repeat, number=number)
|
|
51
|
+
np_t = _best(np_fn, repeat=repeat, number=number)
|
|
52
|
+
print(f"{name:<40} {pc_t*1e3:>9.3f} {np_t*1e3:>9.3f} {pc_t/np_t:>7.2f}x")
|
|
53
|
+
|
|
54
|
+
row("C @ C (triangular bit x bit)",
|
|
55
|
+
lambda: C @ C, lambda: Cn @ Cn)
|
|
56
|
+
row("B @ C (dense bool x triangular bit)",
|
|
57
|
+
lambda: B @ C, lambda: Bn.astype(int) @ Cn)
|
|
58
|
+
row("(C @ C) @ C (cube)",
|
|
59
|
+
lambda: (C @ C) @ C, lambda: Cn @ Cn @ Cn)
|
|
60
|
+
row("matrix_power(C, 3)",
|
|
61
|
+
lambda: pc.matrix_power(C, 3), lambda: np.linalg.matrix_power(Cn, 3))
|
|
62
|
+
row("dot(C, C)",
|
|
63
|
+
lambda: pc.dot(C, C), lambda: Cn @ Cn)
|
|
64
|
+
ones_pc = pc.ones(n, dtype="int32")
|
|
65
|
+
ones_np = np.ones(n, dtype=int)
|
|
66
|
+
row("C @ ones (matvec)",
|
|
67
|
+
lambda: C @ ones_pc,
|
|
68
|
+
lambda: Cn @ ones_np)
|
|
69
|
+
|
|
70
|
+
# Float64 dense matmul: NumPy uses BLAS here, so this is the realistic
|
|
71
|
+
# "NumPy fast path" comparison.
|
|
72
|
+
F = pc.ones((n, n), dtype="float64")
|
|
73
|
+
Fn = np.ones((n, n), dtype=float)
|
|
74
|
+
row("float64 dense matmul (BLAS)",
|
|
75
|
+
lambda: F @ F, lambda: Fn @ Fn)
|
|
76
|
+
|
|
77
|
+
print("\nratio < 1 means pycauset is faster; > 1 means slower than NumPy.")
|
|
78
|
+
print("NumPy int reference uses int64 dense arrays (NumPy's int matmul is a naive")
|
|
79
|
+
print("loop, not BLAS); the float64 row is NumPy's BLAS-backed fast path.")
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
if __name__ == "__main__":
|
|
83
|
+
main()
|
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
# Findings: everyday-use scenarios
|
|
2
|
+
|
|
3
|
+
This document records what happened when we exercised PyCauset through
|
|
4
|
+
realistic "everyday" causal-set workflows, each implemented at least two
|
|
5
|
+
different ways and cross-checked against NumPy. It lists the bugs we found and
|
|
6
|
+
fixed, the remaining limitations, and benchmark numbers (including a NumPy
|
|
7
|
+
comparison and a large-N check).
|
|
8
|
+
|
|
9
|
+
Scenarios live in `tests/python/test_everyday_scenarios.py`. Benchmarks live in
|
|
10
|
+
`benchmarks/scenario_benchmarks.py` (NumPy comparison) and
|
|
11
|
+
`benchmarks/large_n_check.py` (large-N correctness and timing).
|
|
12
|
+
|
|
13
|
+
## Scenarios and results
|
|
14
|
+
|
|
15
|
+
| Scenario | Ways exercised | Result |
|
|
16
|
+
|---|---|---|
|
|
17
|
+
| Cube 3 causal matrices (3D diamond) and add them | `(C@C)@C` chain, `matrix_power(C, 3)` | Both agree with NumPy |
|
|
18
|
+
| Count 2-step causal relations (`C^2`) | `@`, `pc.matmul`, `pc.dot` | All three agree with NumPy |
|
|
19
|
+
| Count elements in each element's causal future (row sums) | `C @ ones`, NumPy row sums | Agree |
|
|
20
|
+
| Constant working matrix without a dtype | lazy `ones` vs explicit `bool_`, lazy `zeros` then `fill` | Agree |
|
|
21
|
+
| `K = C (I + C)^-1` | `pc.compute_k` vs NumPy `inv` | Agree (rtol 1e-10) |
|
|
22
|
+
|
|
23
|
+
## Bugs found and fixed
|
|
24
|
+
|
|
25
|
+
1. **`TriangularIntegerMatrix` could not be exported to NumPy.**
|
|
26
|
+
`to_numpy(C @ C)` raised `TypeError: data type 'triangularinteger' not
|
|
27
|
+
understood`. Fixed by adding the `triangularinteger -> int32` entry to the
|
|
28
|
+
export guard's type-name-to-dtype map.
|
|
29
|
+
|
|
30
|
+
2. **Cubing a causal matrix threw "Unsupported matrix multiplication types".**
|
|
31
|
+
`(C @ C) @ C` failed because `C @ C` yields a `TriangularIntegerMatrix`, and
|
|
32
|
+
`TriangularIntegerMatrix x {TriangularBitMatrix, TriangularIntegerMatrix}` had
|
|
33
|
+
no native dispatch. Fixed with new C++ cases and a correctness-first kernel.
|
|
34
|
+
|
|
35
|
+
3. **Dense mixed-dtype matmul threw for common combinations.** `int32 @ float64`,
|
|
36
|
+
`float64 @ int32`, `int32 @ TriangularBitMatrix`, `float64 @ TriangularBitMatrix`
|
|
37
|
+
(and their reverses) all raised `Unsupported matrix multiplication types`.
|
|
38
|
+
Fixed by adding a general fallback at the end of the C++ dispatch that resolves
|
|
39
|
+
the promoted result dtype via `PromotionResolver` and computes through a generic
|
|
40
|
+
element-access path (with an `int32` result branch in the CPU solver).
|
|
41
|
+
|
|
42
|
+
4. **`matrix_power(C, 4)` densified to a dense `IntegerMatrix`.** The
|
|
43
|
+
`TriangularIntegerMatrix` operands were being caught by the "same-dtype integer"
|
|
44
|
+
case (which matches on `get_data_type()`), producing a dense result. Fixed by
|
|
45
|
+
moving the triangular-int case ahead of the same-dtype integer case; powers now
|
|
46
|
+
stay `TriangularIntegerMatrix`.
|
|
47
|
+
|
|
48
|
+
5. **`pc.dot(vector, matrix)` returned a row vector `(1, n)` instead of NumPy's
|
|
49
|
+
1-D `(n,)`.** Fixed by un-transposing the native vec-mat result inside `pc.dot`.
|
|
50
|
+
|
|
51
|
+
6. **Wide mixed-integer matmul threw.** `int64 @ int32`, `int8 @ int16`,
|
|
52
|
+
`uint8 @ uint16`, `uint32 @ int32`, and other mixed-width integer combinations
|
|
53
|
+
raised `Unsupported matrix multiplication types`. Fixed by extending the general
|
|
54
|
+
fallback to every integer width (int8/int16/int32/int64/uint8/uint16/uint32/
|
|
55
|
+
uint64) via a templated generic integer kernel.
|
|
56
|
+
|
|
57
|
+
7. **Naive correctness-first kernels were unacceptably slow.** The
|
|
58
|
+
`DenseBitMatrix x TriangularBitMatrix` matmul and the causal-matrix matvec
|
|
59
|
+
(`C @ vector`) used naive element-access loops. Added a popcount kernel for
|
|
60
|
+
bit x bit (materializing a triangular bit operand to dense first) and
|
|
61
|
+
scale-first matvec kernels for `TriangularBitMatrix x {int32, float64, bool}`
|
|
62
|
+
vectors. See benchmarks for the speedups.
|
|
63
|
+
|
|
64
|
+
## Remaining limitations
|
|
65
|
+
|
|
66
|
+
1. **int64/uint64 mixed matmul is exact only up to 2^53.** The generic mixed-kind
|
|
67
|
+
integer path accumulates in `double` (exact for every other integer width). For
|
|
68
|
+
`int64`/`uint64` results the values are exact only below 2^53; beyond that the
|
|
69
|
+
result can lose precision. Same-dtype `int64 @ int64` / `uint64 @ uint64` use
|
|
70
|
+
the dedicated exact kernels and are unaffected.
|
|
71
|
+
|
|
72
|
+
2. **`pc.empty(shape)` without a dtype raises on first use.** Intentional ("no
|
|
73
|
+
silent wrong answers"): an empty allocation has no dtype until a value is
|
|
74
|
+
written, so reading it raises a clear `TypeError`. Callers must `fill(...)` or
|
|
75
|
+
`set(...)` first, or pass `dtype=`.
|
|
76
|
+
|
|
77
|
+
## Benchmarks (NumPy comparison)
|
|
78
|
+
|
|
79
|
+
Informal wall-clock, best of 5, `n = 256` (3D diamond), Windows MSVC. The NumPy
|
|
80
|
+
reference uses dense `int64` arrays except the float64 row (BLAS-backed). `B @ C`
|
|
81
|
+
and the matvec numbers reflect the optimized popcount / scale-first kernels.
|
|
82
|
+
|
|
83
|
+
| Operation | pycauset (ms) | numpy (ms) | ratio |
|
|
84
|
+
|---|---|---|---|
|
|
85
|
+
| `C @ C` (triangular bit x bit) | 0.090 | 24.97 | 0.00x |
|
|
86
|
+
| `B @ C` (dense bool x triangular bit) | 0.717 | 23.31 | 0.03x |
|
|
87
|
+
| `(C @ C) @ C` (cube) | 2.73 | 40.36 | 0.07x |
|
|
88
|
+
| `matrix_power(C, 3)` | 8.07 | 44.02 | 0.18x |
|
|
89
|
+
| `dot(C, C)` | 0.71 | 20.60 | 0.03x |
|
|
90
|
+
| `C @ ones` (matvec) | 0.046 | 0.032 | 1.44x |
|
|
91
|
+
| float64 dense matmul (BLAS) | 0.52 | 0.19 | 2.74x |
|
|
92
|
+
|
|
93
|
+
Notes:
|
|
94
|
+
|
|
95
|
+
- For integer matmul, pycauset is much faster because its bit-packed popcount
|
|
96
|
+
kernel is `O(N^3/64)` while NumPy's integer matmul is a naive (non-BLAS) loop.
|
|
97
|
+
`B @ C` dropped from ~10.8 ms to ~0.7 ms (about 15x) after adding the popcount
|
|
98
|
+
path for mixed bit operands.
|
|
99
|
+
- `C @ ones` matvec went from a generic `O(N^2)` element loop to a scale-first
|
|
100
|
+
`O(set bits)` kernel. At `n = 256` it is ~1.4x NumPy; at larger N the sparse
|
|
101
|
+
triangular form wins decisively (see below).
|
|
102
|
+
- For float64 dense matmul, NumPy's BLAS wins by ~2.7x (0.19 ms vs 0.52 ms); this
|
|
103
|
+
remains the main gap and is part of the post-R1 float64-parity program.
|
|
104
|
+
|
|
105
|
+
## Large-N check
|
|
106
|
+
|
|
107
|
+
`benchmarks/large_n_check.py` verifies `C @ C` correctness on a random sample of
|
|
108
|
+
entries (direct `O(N)` reference) plus a structural invariant (strictly upper
|
|
109
|
+
triangular square has zero diagonal). All checks passed up to N = 80000.
|
|
110
|
+
|
|
111
|
+
| N | build (s) | `C @ C` (s) | correct |
|
|
112
|
+
|---|---|---|---|
|
|
113
|
+
| 2000 | 0.016 | 0.006 | yes |
|
|
114
|
+
| 5000 | 0.094 | 0.059 | yes |
|
|
115
|
+
| 10000 | 0.368 | 0.409 | yes |
|
|
116
|
+
| 20000 | 1.465 | 3.234 | yes |
|
|
117
|
+
| 40000 | 5.834 | 24.700 | yes |
|
|
118
|
+
| 80000 | 23.315 | 181.676 | yes |
|
|
119
|
+
|
|
120
|
+
At N = 40000 and N = 80000 the out-of-core memory governor kicked in and spilled
|
|
121
|
+
the intermediate result to disk ("RAM full ... falling back to disk", ~12 GB at
|
|
122
|
+
N = 80000); the computation still completed correctly. This exercises the
|
|
123
|
+
disk-backed path end to end at scale.
|
|
124
|
+
|
|
125
|
+
## Matvec at larger N
|
|
126
|
+
|
|
127
|
+
The scale-first triangular matvec is sparse-aware, so it beats NumPy's dense
|
|
128
|
+
`int64` matvec once N grows:
|
|
129
|
+
|
|
130
|
+
| N | pycauset (ms) | numpy (ms) | ratio |
|
|
131
|
+
|---|---|---|---|
|
|
132
|
+
| 256 | 0.048 | 0.032 | 1.49x |
|
|
133
|
+
| 1000 | 0.053 | 0.454 | 0.12x |
|
|
134
|
+
| 2000 | 0.108 | 2.433 | 0.04x |
|
|
135
|
+
| 5000 | 0.483 | 16.03 | 0.03x |
|
|
136
|
+
|
|
137
|
+
## Remaining performance work (post-R1)
|
|
138
|
+
|
|
139
|
+
The targeted correctness-first optimizations are done. The remaining performance
|
|
140
|
+
gaps are the full post-R1 program: float64 matmul parity with BLAS (currently
|
|
141
|
+
~2.7x behind), GPU parity, and streaming-everything.
|
{pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/dev/ONBOARDING_DTYPE_DEEP_DIVE.md
RENAMED
|
@@ -13,9 +13,11 @@ matrices/vectors with a NumPy-like API, memory-mapped / out-of-core storage, and
|
|
|
13
13
|
Repo: `C:\Users\ireal\Documents\Projects\pycauset`
|
|
14
14
|
|
|
15
15
|
Release-1 (R1) gate (authoritative): ship on **correctness + no silent wrong answers +
|
|
16
|
-
explicit support status everywhere**.
|
|
17
|
-
|
|
18
|
-
|
|
16
|
+
explicit support status everywhere**. Targeted optimization of correctness-first paths is
|
|
17
|
+
in scope where a naive fallback is egregiously slow relative to NumPy (bit-matmul
|
|
18
|
+
popcount, causal-matrix matvec); the full performance program (>= 0.90x NumPy everywhere,
|
|
19
|
+
GPU parity, streaming-everything) remains a continuous post-R1 program. R1 is nearly
|
|
20
|
+
shipped; the remaining work is release mechanics (CI green, tag v0.5.1, PyPI publish).
|
|
19
21
|
|
|
20
22
|
## 2. Non-negotiable rules (from the project owner)
|
|
21
23
|
|
|
@@ -126,11 +128,11 @@ C = pc.CausalSet(N, seed=1223).C # TriangularBitMatrix
|
|
|
126
128
|
B = pc.ones((N, N), dtype=pc.bool_) # currently requires dtype; should not
|
|
127
129
|
|
|
128
130
|
# these should all work after the fix:
|
|
129
|
-
print(pc.ones((N, N))) #
|
|
130
|
-
print(pc.zeros((2, 2))) #
|
|
131
|
-
|
|
131
|
+
print(pc.ones((N, N))) # dtype-deferred; resolves to int32
|
|
132
|
+
print(pc.zeros((2, 2))) # dtype-deferred; resolves to int32
|
|
133
|
+
e = pc.empty((2, 2)); e.fill(0.0); print(e) # empty resolves on first write
|
|
132
134
|
print(pc.bool) # alias for pc.bool_ (should resolve)
|
|
133
|
-
print(B @ C) # bool @ bit matmul (promote)
|
|
135
|
+
print(B @ C) # bool @ bit matmul (promote to int32)
|
|
134
136
|
print(pc.dot(B, C)) # dot should accept matrices
|
|
135
137
|
```
|
|
136
138
|
|
|
@@ -144,8 +146,10 @@ line in the same commit:
|
|
|
144
146
|
1. Read `test.py`, `python/pycauset/__init__.py` (zeros/ones/empty/dot/matmul + the dtype
|
|
145
147
|
constants), `python/pycauset/_internal/dtypes.py` (`normalize_dtype`), and
|
|
146
148
|
`src/core/PromotionResolver.cpp` to understand the current promotion rules end to end.
|
|
147
|
-
2. Give `zeros`/`ones`/`empty`
|
|
148
|
-
|
|
149
|
+
2. Give `zeros`/`ones`/`empty` an optional `dtype=` (no longer required). With no dtype
|
|
150
|
+
they return a dtype-deferred wrapper that resolves to int32 on first use (or to the
|
|
151
|
+
dtype of the first written value); a still-typeless `empty` raises on read/use.
|
|
152
|
+
Explicit dtype still works.
|
|
149
153
|
3. Add `bool` as an alias for `bool_` in `normalize_dtype` (and expose `pc.bool`), while
|
|
150
154
|
keeping `bool_` working for back-compat.
|
|
151
155
|
4. Fix bool/bit matmul (`@`) so `B @ C` promotes correctly instead of throwing. The error
|
|
@@ -182,8 +186,9 @@ line in the same commit:
|
|
|
182
186
|
|
|
183
187
|
## 10. Definition of done for this mission
|
|
184
188
|
|
|
185
|
-
- `pc.ones/zeros/empty` work with no dtype argument (
|
|
186
|
-
|
|
189
|
+
- `pc.ones/zeros/empty` work with no dtype argument (a dtype-deferred wrapper that
|
|
190
|
+
resolves to int32 on first use, or to the first written value's dtype) and still
|
|
191
|
+
accept an explicit dtype.
|
|
187
192
|
- `pc.bool` resolves (alias of `pc.bool_`), and dtype normalization accepts `bool`.
|
|
188
193
|
- Bool/bit `@` matmul works and produces a correct promoted result (no "unsupported
|
|
189
194
|
matrix multiplication types", no "mixing type error").
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
# pycauset.dot
|
|
2
|
+
|
|
3
|
+
```python
|
|
4
|
+
pycauset.dot(a, b)
|
|
5
|
+
```
|
|
6
|
+
|
|
7
|
+
Compute a dot product or matrix product, matching NumPy's `np.dot`.
|
|
8
|
+
|
|
9
|
+
Semantics:
|
|
10
|
+
|
|
11
|
+
* vector · vector: scalar inner product (no implicit conjugation).
|
|
12
|
+
* matrix · matrix: matrix multiplication.
|
|
13
|
+
* matrix · vector / vector · matrix: matrix-vector product.
|
|
14
|
+
|
|
15
|
+
Matrix cases route through `pycauset.matmul`.
|
|
16
|
+
|
|
17
|
+
## Parameters
|
|
18
|
+
|
|
19
|
+
* `a`: The first operand (vector or matrix).
|
|
20
|
+
* `b`: The second operand (vector or matrix).
|
|
21
|
+
|
|
22
|
+
## Returns
|
|
23
|
+
|
|
24
|
+
* `float | complex` for vector · vector.
|
|
25
|
+
* `MatrixBase | VectorBase` for matrix cases.
|
|
26
|
+
|
|
27
|
+
## Exceptions
|
|
28
|
+
|
|
29
|
+
* Raises `TypeError` if a vector-like `a` lacks a `.dot(...)` method.
|
|
30
|
+
* Raises `ValueError` for mismatched vector sizes or matrix dimensions.
|
|
31
|
+
|
|
32
|
+
## Examples
|
|
33
|
+
|
|
34
|
+
```python
|
|
35
|
+
import numpy as np
|
|
36
|
+
import pycauset as pc
|
|
37
|
+
|
|
38
|
+
v = pc.vector([1.0, 2.0, 3.0])
|
|
39
|
+
assert pc.dot(v, v) == 14.0
|
|
40
|
+
|
|
41
|
+
A = pc.matrix(np.array([[1.0, 2.0], [3.0, 4.0]]))
|
|
42
|
+
B = pc.matrix(np.array([[5.0, 6.0], [7.0, 8.0]]))
|
|
43
|
+
C = pc.dot(A, B) # matrix multiplication
|
|
44
|
+
|
|
45
|
+
x = pc.vector([1.0, 1.0])
|
|
46
|
+
assert pc.dot(A, x).shape[0] == 2 # matrix-vector product
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
## See also
|
|
50
|
+
|
|
51
|
+
* [[docs/functions/pycauset.matmul.md|pycauset.matmul]]
|
|
52
|
+
* [[docs/classes/vector/pycauset.VectorBase.md|pycauset.VectorBase]]
|
|
53
|
+
* [[docs/functions/pycauset.norm.md|pycauset.norm]]
|
|
@@ -1,14 +1,17 @@
|
|
|
1
1
|
# pycauset.empty
|
|
2
2
|
|
|
3
3
|
```python
|
|
4
|
-
pycauset.empty(shape, *, dtype, **kwargs)
|
|
4
|
+
pycauset.empty(shape, *, dtype=None, **kwargs)
|
|
5
5
|
```
|
|
6
6
|
|
|
7
7
|
Allocate a vector or matrix without guaranteeing initialization.
|
|
8
8
|
|
|
9
9
|
Note: for some backends this may still be zero-initialized.
|
|
10
10
|
|
|
11
|
-
`dtype` is
|
|
11
|
+
When `dtype` is omitted, the result is a dtype-deferred wrapper with no dtype
|
|
12
|
+
at all. Its dtype is deduced from the first value written into it (`set`,
|
|
13
|
+
`fill`, or item assignment). Reading from, or operating on, a still-typeless
|
|
14
|
+
`empty` raises `TypeError` (no silent wrong answer).
|
|
12
15
|
|
|
13
16
|
## Parameters
|
|
14
17
|
|
|
@@ -20,12 +23,12 @@ Note: for some backends this may still be zero-initialized.
|
|
|
20
23
|
Notes:
|
|
21
24
|
* Rectangular allocation is supported for dense numeric matrix types.
|
|
22
25
|
* `dtype="bool"`/`dtype="bit"` uses bit-packed storage (`DenseBitMatrix`) and supports rectangular `(rows, cols)` shapes.
|
|
23
|
-
* **dtype** (*str or type*): Storage dtype token.
|
|
26
|
+
* **dtype** (*str or type, optional*): Storage dtype token. When omitted, the dtype is deduced from the first written value.
|
|
24
27
|
* **kwargs**: Passed through to the backend allocator.
|
|
25
28
|
|
|
26
29
|
## Returns
|
|
27
30
|
|
|
28
|
-
* **VectorBase or MatrixBase**: A newly allocated object.
|
|
31
|
+
* **VectorBase or MatrixBase**: A newly allocated object. With no `dtype`, a dtype-deferred wrapper is returned instead and materializes on first write.
|
|
29
32
|
|
|
30
33
|
## Examples
|
|
31
34
|
|
|
@@ -33,6 +36,9 @@ Note: for some backends this may still be zero-initialized.
|
|
|
33
36
|
import pycauset as pc
|
|
34
37
|
|
|
35
38
|
tmp = pc.empty((256, 64), dtype="float32")
|
|
39
|
+
|
|
40
|
+
late = pc.empty((4, 4)) # dtype-deferred
|
|
41
|
+
late.fill(2.5) # resolves to float64
|
|
36
42
|
```
|
|
37
43
|
|
|
38
44
|
## See also
|
{pycauset-0.6.1.dev9 → pycauset-0.6.1.dev13}/documentation/docs/functions/pycauset.matmul.md
RENAMED
|
@@ -17,6 +17,10 @@ This function is NumPy-like:
|
|
|
17
17
|
- vector-matrix: `(k,) @ (k, n) -> (1, n)` (row-vector semantics)
|
|
18
18
|
- vector-vector: `(k,) @ (k,) -> scalar` (dot)
|
|
19
19
|
|
|
20
|
+
Bit operands (`bool`/`bit`, i.e. `DenseBitMatrix` or `TriangularBitMatrix`) promote
|
|
21
|
+
to `int32` on matmul because a bit-bit reduction can exceed `{0,1}`. This includes
|
|
22
|
+
the mixed `DenseBitMatrix @ TriangularBitMatrix` case (and its reverse).
|
|
23
|
+
|
|
20
24
|
## Parameters
|
|
21
25
|
|
|
22
26
|
* **a** (*MatrixBase or VectorBase or BlockMatrix*): Left operand.
|
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
# pycauset.ones
|
|
2
2
|
|
|
3
3
|
```python
|
|
4
|
-
pycauset.ones(shape, *, dtype, **kwargs)
|
|
4
|
+
pycauset.ones(shape, *, dtype=None, **kwargs)
|
|
5
5
|
```
|
|
6
6
|
|
|
7
7
|
Allocate a vector or matrix filled with ones.
|
|
8
8
|
|
|
9
|
-
`dtype` is
|
|
9
|
+
When `dtype` is omitted, the result is a dtype-deferred wrapper (all-equal
|
|
10
|
+
"constant" structure, value `1`) that resolves to `int32` on first use, or to
|
|
11
|
+
the dtype of the first value written into it. Passing `dtype` allocates a
|
|
12
|
+
concrete object immediately.
|
|
10
13
|
|
|
11
14
|
## Parameters
|
|
12
15
|
|
|
@@ -18,19 +21,19 @@ Allocate a vector or matrix filled with ones.
|
|
|
18
21
|
Notes:
|
|
19
22
|
* Rectangular allocation is supported for dense numeric matrix types.
|
|
20
23
|
* `dtype="bool"`/`dtype="bit"` uses bit-packed storage (`DenseBitMatrix`) and supports rectangular `(rows, cols)` shapes.
|
|
21
|
-
* **dtype** (*str or type*): Storage dtype token.
|
|
24
|
+
* **dtype** (*str or type, optional*): Storage dtype token. Defaults to a deferred `int32` when omitted.
|
|
22
25
|
* **kwargs**: Passed through to the backend allocator.
|
|
23
26
|
|
|
24
27
|
## Returns
|
|
25
28
|
|
|
26
|
-
* **VectorBase or MatrixBase**: A newly allocated object.
|
|
29
|
+
* **VectorBase or MatrixBase**: A newly allocated object. With no `dtype`, a dtype-deferred wrapper is returned instead and materializes on first use.
|
|
27
30
|
|
|
28
31
|
## Examples
|
|
29
32
|
|
|
30
33
|
```python
|
|
31
34
|
import pycauset
|
|
32
35
|
|
|
33
|
-
v = pycauset.ones(
|
|
36
|
+
v = pycauset.ones(5) # dtype-deferred; resolves to int32
|
|
34
37
|
m = pycauset.ones((3, 7), dtype="float64")
|
|
35
38
|
```
|
|
36
39
|
|
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
# pycauset.zeros
|
|
2
2
|
|
|
3
3
|
```python
|
|
4
|
-
pycauset.zeros(shape, *, dtype, **kwargs)
|
|
4
|
+
pycauset.zeros(shape, *, dtype=None, **kwargs)
|
|
5
5
|
```
|
|
6
6
|
|
|
7
7
|
Allocate a vector or matrix filled with zeros.
|
|
8
8
|
|
|
9
|
-
`dtype` is
|
|
9
|
+
When `dtype` is omitted, the result is a dtype-deferred wrapper (all-zeros
|
|
10
|
+
structure) that resolves to `int32` on first use, or to the dtype of the first
|
|
11
|
+
value written into it. Passing `dtype` allocates a concrete object immediately.
|
|
10
12
|
|
|
11
13
|
## Parameters
|
|
12
14
|
|
|
@@ -18,19 +20,19 @@ Allocate a vector or matrix filled with zeros.
|
|
|
18
20
|
Notes:
|
|
19
21
|
* Rectangular allocation is supported for dense numeric matrix types.
|
|
20
22
|
* `dtype="bool"`/`dtype="bit"` uses bit-packed storage (`DenseBitMatrix`) and supports rectangular `(rows, cols)` shapes.
|
|
21
|
-
* **dtype** (*str or type*): Storage dtype token (e.g. `"float64"`, `"int32"`, `float`, `int`).
|
|
23
|
+
* **dtype** (*str or type, optional*): Storage dtype token (e.g. `"float64"`, `"int32"`, `float`, `int`). Defaults to a deferred `int32` when omitted.
|
|
22
24
|
* **kwargs**: Passed through to the backend allocator.
|
|
23
25
|
|
|
24
26
|
## Returns
|
|
25
27
|
|
|
26
|
-
* **VectorBase or MatrixBase**: A newly allocated object.
|
|
28
|
+
* **VectorBase or MatrixBase**: A newly allocated object. With no `dtype`, a dtype-deferred wrapper is returned instead and materializes on first use.
|
|
27
29
|
|
|
28
30
|
## Examples
|
|
29
31
|
|
|
30
32
|
```python
|
|
31
33
|
import pycauset
|
|
32
34
|
|
|
33
|
-
v = pycauset.zeros(10
|
|
35
|
+
v = pycauset.zeros(10) # dtype-deferred; resolves to int32
|
|
34
36
|
m = pycauset.zeros((128, 64), dtype="float32")
|
|
35
37
|
```
|
|
36
38
|
|
|
@@ -16,11 +16,13 @@ status lives in `R1_EXECUTION.md`.
|
|
|
16
16
|
- [ ] API lock: mark `_internal` as private (`__all__` is already curated)
|
|
17
17
|
|
|
18
18
|
### Known issues (bugs, fix post-R1, do not forget)
|
|
19
|
-
- **Concurrent native
|
|
20
|
-
|
|
21
|
-
native
|
|
22
|
-
|
|
23
|
-
|
|
19
|
+
- **Concurrent native operations are not thread-safe** (Linux segfault, GCC build).
|
|
20
|
+
Constructing, saving, loading, or deleting native matrices from multiple threads at
|
|
21
|
+
once crashes in the native layer. Serializing only construction was tried and did
|
|
22
|
+
not help, because the concurrent save/load/delete paths also corrupt shared
|
|
23
|
+
MemoryGovernor/MemoryMapper state. `test_threaded_io_stress` is skipped in R1; the
|
|
24
|
+
root cause needs ASan-on-Linux debugging and proper locking across the whole
|
|
25
|
+
allocation + I/O path.
|
|
24
26
|
- **Teardown hang in `release_tracked_matrices()`** (mitigated by skipping native
|
|
25
27
|
`close()` during interpreter finalization; root cause unfixed).
|
|
26
28
|
- **Heap-corruption heisenbug** (was MinGW-specific; MSVC is clean, verify GCC/Clang).
|