Skip to content

Commit

Permalink
updated submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
lformaggia committed Jan 8, 2024
1 parent 4a8c686 commit 3f2482d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Examples/src/LinearAlgebra/spectra
Submodule spectra updated 55 files
+4 −4 .github/workflows/basic.yml
+3 −3 .github/workflows/checkformat.yml
+8 −6 .github/workflows/codecov.yml
+1 −1 .gitignore
+62 −0 CHANGELOG.md
+5 −3 CMakeLists.txt
+1 −1 README.md
+3 −3 include/Spectra/GenEigsBase.h
+2 −2 include/Spectra/GenEigsComplexShiftSolver.h
+1 −1 include/Spectra/GenEigsRealShiftSolver.h
+1 −1 include/Spectra/GenEigsSolver.h
+10 −6 include/Spectra/LinAlg/Arnoldi.h
+1 −1 include/Spectra/LinAlg/BKLDLT.h
+10 −7 include/Spectra/LinAlg/DoubleShiftQR.h
+45 −7 include/Spectra/LinAlg/Lanczos.h
+2 −2 include/Spectra/LinAlg/TridiagEigen.h
+1 −1 include/Spectra/LinAlg/UpperHessenbergEigen.h
+10 −9 include/Spectra/LinAlg/UpperHessenbergQR.h
+1 −1 include/Spectra/LinAlg/UpperHessenbergSchur.h
+1 −1 include/Spectra/MatOp/DenseCholesky.h
+1 −1 include/Spectra/MatOp/DenseGenComplexShiftSolve.h
+1 −1 include/Spectra/MatOp/DenseGenMatProd.h
+1 −1 include/Spectra/MatOp/DenseGenRealShiftSolve.h
+1 −1 include/Spectra/MatOp/DenseSymMatProd.h
+1 −1 include/Spectra/MatOp/DenseSymShiftSolve.h
+1 −1 include/Spectra/MatOp/SparseCholesky.h
+1 −1 include/Spectra/MatOp/SparseGenComplexShiftSolve.h
+1 −1 include/Spectra/MatOp/SparseGenMatProd.h
+1 −1 include/Spectra/MatOp/SparseGenRealShiftSolve.h
+1 −1 include/Spectra/MatOp/SparseRegularInverse.h
+1 −1 include/Spectra/MatOp/SparseSymMatProd.h
+1 −1 include/Spectra/MatOp/SparseSymShiftSolve.h
+1 −1 include/Spectra/MatOp/SymShiftInvert.h
+1 −1 include/Spectra/MatOp/internal/ArnoldiOp.h
+1 −1 include/Spectra/MatOp/internal/SymGEigsBucklingOp.h
+1 −1 include/Spectra/MatOp/internal/SymGEigsCayleyOp.h
+1 −1 include/Spectra/MatOp/internal/SymGEigsCholeskyOp.h
+1 −1 include/Spectra/MatOp/internal/SymGEigsRegInvOp.h
+1 −1 include/Spectra/MatOp/internal/SymGEigsShiftInvertOp.h
+14 −3 include/Spectra/SymEigsBase.h
+1 −1 include/Spectra/SymEigsShiftSolver.h
+1 −1 include/Spectra/SymEigsSolver.h
+1 −1 include/Spectra/SymGEigsShiftSolver.h
+1 −1 include/Spectra/SymGEigsSolver.h
+1 −1 include/Spectra/Util/CompInfo.h
+1 −1 include/Spectra/Util/GEigsMode.h
+1 −1 include/Spectra/Util/SelectionRule.h
+1 −1 include/Spectra/Util/SimpleRandom.h
+1 −1 include/Spectra/Util/TypeTraits.h
+1 −1 include/Spectra/Util/Version.h
+1 −1 include/Spectra/contrib/PartialSVDSolver.h
+130 −0 test/Example1.cpp
+85 −0 test/Example2.cpp
+2 −2 test/GenEigsRealShift.cpp
+6 −1 test/Makefile
2 changes: 1 addition & 1 deletion Extras/pybind11
Submodule pybind11 updated 69 files
+1 −1 .github/CONTRIBUTING.md
+49 −34 .github/workflows/ci.yml
+2 −2 .github/workflows/configure.yml
+3 −3 .github/workflows/format.yml
+8 −8 .github/workflows/pip.yml
+6 −6 .github/workflows/upstream.yml
+14 −19 .pre-commit-config.yaml
+45 −5 CMakeLists.txt
+1 −1 docs/advanced/embedding.rst
+4 −5 docs/advanced/exceptions.rst
+1 −1 docs/benchmark.py
+3 −3 docs/compiling.rst
+22 −4 include/pybind11/cast.h
+15 −10 include/pybind11/detail/class.h
+8 −0 include/pybind11/detail/common.h
+1 −1 include/pybind11/detail/init.h
+7 −1 include/pybind11/detail/internals.h
+45 −8 include/pybind11/detail/type_caster_base.h
+9 −1 include/pybind11/gil.h
+91 −0 include/pybind11/gil_safe_call_once.h
+32 −10 include/pybind11/numpy.h
+87 −35 include/pybind11/pybind11.h
+4 −4 include/pybind11/pytypes.h
+6 −6 include/pybind11/stl.h
+3 −2 include/pybind11/stl_bind.h
+20 −0 include/pybind11/typing.h
+1 −1 noxfile.py
+3 −1 pybind11/setup_helpers.py
+8 −11 pyproject.toml
+4 −3 tests/CMakeLists.txt
+1 −0 tests/extra_python_package/test_files.py
+14 −8 tests/requirements.txt
+7 −0 tests/test_buffers.py
+2 −2 tests/test_builtin_casters.py
+7 −0 tests/test_callbacks.py
+14 −0 tests/test_class.py
+1 −2 tests/test_cmake_build/CMakeLists.txt
+3 −3 tests/test_cmake_build/installed_embed/CMakeLists.txt
+3 −3 tests/test_cmake_build/installed_function/CMakeLists.txt
+3 −3 tests/test_cmake_build/installed_target/CMakeLists.txt
+9 −3 tests/test_cmake_build/subdirectory_embed/CMakeLists.txt
+9 −3 tests/test_cmake_build/subdirectory_function/CMakeLists.txt
+9 −3 tests/test_cmake_build/subdirectory_target/CMakeLists.txt
+17 −0 tests/test_eigen_matrix.cpp
+5 −0 tests/test_eigen_matrix.py
+6 −3 tests/test_enum.py
+6 −2 tests/test_exceptions.cpp
+2 −2 tests/test_factory_constructors.py
+46 −0 tests/test_kwargs_and_defaults.cpp
+37 −1 tests/test_kwargs_and_defaults.py
+19 −15 tests/test_methods_and_attributes.py
+1 −1 tests/test_numpy_array.py
+1 −1 tests/test_numpy_dtypes.cpp
+45 −0 tests/test_python_multiple_inheritance.cpp
+35 −0 tests/test_python_multiple_inheritance.py
+4 −2 tests/test_pytypes.cpp
+14 −0 tests/test_pytypes.py
+19 −0 tests/test_sequences_and_iterators.cpp
+13 −0 tests/test_sequences_and_iterators.py
+15 −12 tests/test_smart_ptr.cpp
+12 −12 tests/test_stl.py
+70 −0 tests/test_stl_binders.cpp
+17 −3 tests/test_stl_binders.py
+24 −1 tools/FindPythonLibsNew.cmake
+27 −1 tools/make_changelog.py
+21 −11 tools/pybind11Common.cmake
+1 −1 tools/pybind11Config.cmake.in
+70 −17 tools/pybind11NewTools.cmake
+7 −3 tools/pybind11Tools.cmake

0 comments on commit 3f2482d

Please sign in to comment.