├── .gitignore ├── LICENSE ├── README.md ├── configs ├── test_demo.yaml ├── test_megadepth.yaml ├── test_scannet.yaml └── test_yfcc.yaml ├── data ├── scannet_test_pairs_with_gt.txt └── yfcc_test_pairs_with_gt.txt ├── datasets ├── megadepth.py ├── scannet.py └── yfcc.py ├── demo.py ├── environment.yaml ├── evaluate.py ├── models ├── first_layer.py ├── modules.py ├── pats.py ├── resnet.py ├── second_layer.py └── third_layer.py ├── setup ├── MANIFEST.in ├── library.cpp ├── pybind11 │ ├── .appveyor.yml │ ├── .clang-tidy │ ├── .cmake-format.yaml │ ├── .github │ │ ├── CONTRIBUTING.md │ │ ├── ISSUE_TEMPLATE │ │ │ ├── bug-report.md │ │ │ ├── config.yml │ │ │ ├── feature-request.md │ │ │ └── question.md │ │ ├── dependabot.yml │ │ ├── labeler.yml │ │ ├── labeler_merged.yml │ │ ├── pull_request_template.md │ │ └── workflows │ │ │ ├── ci.yml │ │ │ ├── configure.yml │ │ │ ├── format.yml │ │ │ ├── labeler.yml │ │ │ └── pip.yml │ ├── .gitignore │ ├── .pre-commit-config.yaml │ ├── .readthedocs.yml │ ├── CMakeLists.txt │ ├── LICENSE │ ├── MANIFEST.in │ ├── README.rst │ ├── docs │ │ ├── Doxyfile │ │ ├── _static │ │ │ └── theme_overrides.css │ │ ├── advanced │ │ │ ├── cast │ │ │ │ ├── chrono.rst │ │ │ │ ├── custom.rst │ │ │ │ ├── eigen.rst │ │ │ │ ├── functional.rst │ │ │ │ ├── index.rst │ │ │ │ ├── overview.rst │ │ │ │ ├── stl.rst │ │ │ │ └── strings.rst │ │ │ ├── classes.rst │ │ │ ├── embedding.rst │ │ │ ├── exceptions.rst │ │ │ ├── functions.rst │ │ │ ├── misc.rst │ │ │ ├── pycpp │ │ │ │ ├── index.rst │ │ │ │ ├── numpy.rst │ │ │ │ ├── object.rst │ │ │ │ └── utilities.rst │ │ │ └── smart_ptrs.rst │ │ ├── basics.rst │ │ ├── benchmark.py │ │ ├── benchmark.rst │ │ ├── changelog.rst │ │ ├── classes.rst │ │ ├── cmake │ │ │ └── index.rst │ │ ├── compiling.rst │ │ ├── conf.py │ │ ├── faq.rst │ │ ├── index.rst │ │ ├── installing.rst │ │ ├── limitations.rst │ │ ├── pybind11-logo.png │ │ ├── pybind11_vs_boost_python1.png │ │ ├── pybind11_vs_boost_python1.svg │ │ ├── pybind11_vs_boost_python2.png │ │ ├── pybind11_vs_boost_python2.svg │ │ ├── reference.rst │ │ ├── release.rst │ │ ├── requirements.txt │ │ └── upgrade.rst │ ├── include │ │ └── pybind11 │ │ │ ├── attr.h │ │ │ ├── buffer_info.h │ │ │ ├── cast.h │ │ │ ├── chrono.h │ │ │ ├── common.h │ │ │ ├── complex.h │ │ │ ├── detail │ │ │ ├── class.h │ │ │ ├── common.h │ │ │ ├── descr.h │ │ │ ├── init.h │ │ │ ├── internals.h │ │ │ └── typeid.h │ │ │ ├── eigen.h │ │ │ ├── embed.h │ │ │ ├── eval.h │ │ │ ├── functional.h │ │ │ ├── iostream.h │ │ │ ├── numpy.h │ │ │ ├── operators.h │ │ │ ├── options.h │ │ │ ├── pybind11.h │ │ │ ├── pytypes.h │ │ │ ├── stl.h │ │ │ └── stl_bind.h │ ├── pybind11 │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── _version.py │ │ ├── _version.pyi │ │ ├── commands.py │ │ ├── py.typed │ │ ├── setup_helpers.py │ │ └── setup_helpers.pyi │ ├── pyproject.toml │ ├── setup.cfg │ ├── setup.py │ ├── tests │ │ ├── CMakeLists.txt │ │ ├── conftest.py │ │ ├── constructor_stats.h │ │ ├── cross_module_gil_utils.cpp │ │ ├── env.py │ │ ├── extra_python_package │ │ │ ├── pytest.ini │ │ │ └── test_files.py │ │ ├── extra_setuptools │ │ │ ├── pytest.ini │ │ │ └── test_setuphelper.py │ │ ├── local_bindings.h │ │ ├── object.h │ │ ├── pybind11_cross_module_tests.cpp │ │ ├── pybind11_tests.cpp │ │ ├── pybind11_tests.h │ │ ├── pytest.ini │ │ ├── requirements.txt │ │ ├── test_async.cpp │ │ ├── test_async.py │ │ ├── test_buffers.cpp │ │ ├── test_buffers.py │ │ ├── test_builtin_casters.cpp │ │ ├── test_builtin_casters.py │ │ ├── test_call_policies.cpp │ │ ├── test_call_policies.py │ │ ├── test_callbacks.cpp │ │ ├── test_callbacks.py │ │ ├── test_chrono.cpp │ │ ├── test_chrono.py │ │ ├── test_class.cpp │ │ ├── test_class.py │ │ ├── test_cmake_build │ │ │ ├── CMakeLists.txt │ │ │ ├── embed.cpp │ │ │ ├── installed_embed │ │ │ │ └── CMakeLists.txt │ │ │ ├── installed_function │ │ │ │ └── CMakeLists.txt │ │ │ ├── installed_target │ │ │ │ └── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── subdirectory_embed │ │ │ │ └── CMakeLists.txt │ │ │ ├── subdirectory_function │ │ │ │ └── CMakeLists.txt │ │ │ ├── subdirectory_target │ │ │ │ └── CMakeLists.txt │ │ │ └── test.py │ │ ├── test_constants_and_functions.cpp │ │ ├── test_constants_and_functions.py │ │ ├── test_copy_move.cpp │ │ ├── test_copy_move.py │ │ ├── test_custom_type_casters.cpp │ │ ├── test_custom_type_casters.py │ │ ├── test_docstring_options.cpp │ │ ├── test_docstring_options.py │ │ ├── test_eigen.cpp │ │ ├── test_eigen.py │ │ ├── test_embed │ │ │ ├── CMakeLists.txt │ │ │ ├── catch.cpp │ │ │ ├── external_module.cpp │ │ │ ├── test_interpreter.cpp │ │ │ └── test_interpreter.py │ │ ├── test_enum.cpp │ │ ├── test_enum.py │ │ ├── test_eval.cpp │ │ ├── test_eval.py │ │ ├── test_eval_call.py │ │ ├── test_exceptions.cpp │ │ ├── test_exceptions.py │ │ ├── test_factory_constructors.cpp │ │ ├── test_factory_constructors.py │ │ ├── test_gil_scoped.cpp │ │ ├── test_gil_scoped.py │ │ ├── test_iostream.cpp │ │ ├── test_iostream.py │ │ ├── test_kwargs_and_defaults.cpp │ │ ├── test_kwargs_and_defaults.py │ │ ├── test_local_bindings.cpp │ │ ├── test_local_bindings.py │ │ ├── test_methods_and_attributes.cpp │ │ ├── test_methods_and_attributes.py │ │ ├── test_modules.cpp │ │ ├── test_modules.py │ │ ├── test_multiple_inheritance.cpp │ │ ├── test_multiple_inheritance.py │ │ ├── test_numpy_array.cpp │ │ ├── test_numpy_array.py │ │ ├── test_numpy_dtypes.cpp │ │ ├── test_numpy_dtypes.py │ │ ├── test_numpy_vectorize.cpp │ │ ├── test_numpy_vectorize.py │ │ ├── test_opaque_types.cpp │ │ ├── test_opaque_types.py │ │ ├── test_operator_overloading.cpp │ │ ├── test_operator_overloading.py │ │ ├── test_pickling.cpp │ │ ├── test_pickling.py │ │ ├── test_pytypes.cpp │ │ ├── test_pytypes.py │ │ ├── test_sequences_and_iterators.cpp │ │ ├── test_sequences_and_iterators.py │ │ ├── test_smart_ptr.cpp │ │ ├── test_smart_ptr.py │ │ ├── test_stl.cpp │ │ ├── test_stl.py │ │ ├── test_stl_binders.cpp │ │ ├── test_stl_binders.py │ │ ├── test_tagbased_polymorphic.cpp │ │ ├── test_tagbased_polymorphic.py │ │ ├── test_union.cpp │ │ ├── test_union.py │ │ ├── test_virtual_functions.cpp │ │ └── test_virtual_functions.py │ └── tools │ │ ├── FindCatch.cmake │ │ ├── FindEigen3.cmake │ │ ├── FindPythonLibsNew.cmake │ │ ├── check-style.sh │ │ ├── cmake_uninstall.cmake.in │ │ ├── libsize.py │ │ ├── pybind11Common.cmake │ │ ├── pybind11Config.cmake.in │ │ ├── pybind11NewTools.cmake │ │ ├── pybind11Tools.cmake │ │ ├── pyproject.toml │ │ ├── setup_global.py.in │ │ └── setup_main.py.in └── setup.py └── utils ├── metrics.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/README.md -------------------------------------------------------------------------------- /configs/test_demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/configs/test_demo.yaml -------------------------------------------------------------------------------- /configs/test_megadepth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/configs/test_megadepth.yaml -------------------------------------------------------------------------------- /configs/test_scannet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/configs/test_scannet.yaml -------------------------------------------------------------------------------- /configs/test_yfcc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/configs/test_yfcc.yaml -------------------------------------------------------------------------------- /data/scannet_test_pairs_with_gt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/data/scannet_test_pairs_with_gt.txt -------------------------------------------------------------------------------- /data/yfcc_test_pairs_with_gt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/data/yfcc_test_pairs_with_gt.txt -------------------------------------------------------------------------------- /datasets/megadepth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/datasets/megadepth.py -------------------------------------------------------------------------------- /datasets/scannet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/datasets/scannet.py -------------------------------------------------------------------------------- /datasets/yfcc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/datasets/yfcc.py -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/demo.py -------------------------------------------------------------------------------- /environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/environment.yaml -------------------------------------------------------------------------------- /evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/evaluate.py -------------------------------------------------------------------------------- /models/first_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/models/first_layer.py -------------------------------------------------------------------------------- /models/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/models/modules.py -------------------------------------------------------------------------------- /models/pats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/models/pats.py -------------------------------------------------------------------------------- /models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/models/resnet.py -------------------------------------------------------------------------------- /models/second_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/models/second_layer.py -------------------------------------------------------------------------------- /models/third_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/models/third_layer.py -------------------------------------------------------------------------------- /setup/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/MANIFEST.in -------------------------------------------------------------------------------- /setup/library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/library.cpp -------------------------------------------------------------------------------- /setup/pybind11/.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/.appveyor.yml -------------------------------------------------------------------------------- /setup/pybind11/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/.clang-tidy -------------------------------------------------------------------------------- /setup/pybind11/.cmake-format.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/.cmake-format.yaml -------------------------------------------------------------------------------- /setup/pybind11/.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /setup/pybind11/.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /setup/pybind11/.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /setup/pybind11/.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /setup/pybind11/.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /setup/pybind11/.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/.github/dependabot.yml -------------------------------------------------------------------------------- /setup/pybind11/.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/.github/labeler.yml -------------------------------------------------------------------------------- /setup/pybind11/.github/labeler_merged.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/.github/labeler_merged.yml -------------------------------------------------------------------------------- /setup/pybind11/.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/.github/pull_request_template.md -------------------------------------------------------------------------------- /setup/pybind11/.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/.github/workflows/ci.yml -------------------------------------------------------------------------------- /setup/pybind11/.github/workflows/configure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/.github/workflows/configure.yml -------------------------------------------------------------------------------- /setup/pybind11/.github/workflows/format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/.github/workflows/format.yml -------------------------------------------------------------------------------- /setup/pybind11/.github/workflows/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/.github/workflows/labeler.yml -------------------------------------------------------------------------------- /setup/pybind11/.github/workflows/pip.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/.github/workflows/pip.yml -------------------------------------------------------------------------------- /setup/pybind11/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/.gitignore -------------------------------------------------------------------------------- /setup/pybind11/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/.pre-commit-config.yaml -------------------------------------------------------------------------------- /setup/pybind11/.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/.readthedocs.yml -------------------------------------------------------------------------------- /setup/pybind11/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/CMakeLists.txt -------------------------------------------------------------------------------- /setup/pybind11/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/LICENSE -------------------------------------------------------------------------------- /setup/pybind11/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/MANIFEST.in -------------------------------------------------------------------------------- /setup/pybind11/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/README.rst -------------------------------------------------------------------------------- /setup/pybind11/docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/docs/Doxyfile -------------------------------------------------------------------------------- /setup/pybind11/docs/_static/theme_overrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/docs/_static/theme_overrides.css -------------------------------------------------------------------------------- /setup/pybind11/docs/advanced/cast/chrono.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/docs/advanced/cast/chrono.rst -------------------------------------------------------------------------------- /setup/pybind11/docs/advanced/cast/custom.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/docs/advanced/cast/custom.rst -------------------------------------------------------------------------------- /setup/pybind11/docs/advanced/cast/eigen.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/docs/advanced/cast/eigen.rst -------------------------------------------------------------------------------- /setup/pybind11/docs/advanced/cast/functional.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/docs/advanced/cast/functional.rst -------------------------------------------------------------------------------- /setup/pybind11/docs/advanced/cast/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/docs/advanced/cast/index.rst -------------------------------------------------------------------------------- /setup/pybind11/docs/advanced/cast/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/docs/advanced/cast/overview.rst -------------------------------------------------------------------------------- /setup/pybind11/docs/advanced/cast/stl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/docs/advanced/cast/stl.rst -------------------------------------------------------------------------------- /setup/pybind11/docs/advanced/cast/strings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/docs/advanced/cast/strings.rst -------------------------------------------------------------------------------- /setup/pybind11/docs/advanced/classes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/docs/advanced/classes.rst -------------------------------------------------------------------------------- /setup/pybind11/docs/advanced/embedding.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/docs/advanced/embedding.rst -------------------------------------------------------------------------------- /setup/pybind11/docs/advanced/exceptions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/docs/advanced/exceptions.rst -------------------------------------------------------------------------------- /setup/pybind11/docs/advanced/functions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/docs/advanced/functions.rst -------------------------------------------------------------------------------- /setup/pybind11/docs/advanced/misc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/docs/advanced/misc.rst -------------------------------------------------------------------------------- /setup/pybind11/docs/advanced/pycpp/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/docs/advanced/pycpp/index.rst -------------------------------------------------------------------------------- /setup/pybind11/docs/advanced/pycpp/numpy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/docs/advanced/pycpp/numpy.rst -------------------------------------------------------------------------------- /setup/pybind11/docs/advanced/pycpp/object.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/docs/advanced/pycpp/object.rst -------------------------------------------------------------------------------- /setup/pybind11/docs/advanced/pycpp/utilities.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/docs/advanced/pycpp/utilities.rst -------------------------------------------------------------------------------- /setup/pybind11/docs/advanced/smart_ptrs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/docs/advanced/smart_ptrs.rst -------------------------------------------------------------------------------- /setup/pybind11/docs/basics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/docs/basics.rst -------------------------------------------------------------------------------- /setup/pybind11/docs/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/docs/benchmark.py -------------------------------------------------------------------------------- /setup/pybind11/docs/benchmark.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/docs/benchmark.rst -------------------------------------------------------------------------------- /setup/pybind11/docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/docs/changelog.rst -------------------------------------------------------------------------------- /setup/pybind11/docs/classes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/docs/classes.rst -------------------------------------------------------------------------------- /setup/pybind11/docs/cmake/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/docs/cmake/index.rst -------------------------------------------------------------------------------- /setup/pybind11/docs/compiling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/docs/compiling.rst -------------------------------------------------------------------------------- /setup/pybind11/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/docs/conf.py -------------------------------------------------------------------------------- /setup/pybind11/docs/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/docs/faq.rst -------------------------------------------------------------------------------- /setup/pybind11/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/docs/index.rst -------------------------------------------------------------------------------- /setup/pybind11/docs/installing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/docs/installing.rst -------------------------------------------------------------------------------- /setup/pybind11/docs/limitations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/docs/limitations.rst -------------------------------------------------------------------------------- /setup/pybind11/docs/pybind11-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/docs/pybind11-logo.png -------------------------------------------------------------------------------- /setup/pybind11/docs/pybind11_vs_boost_python1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/docs/pybind11_vs_boost_python1.png -------------------------------------------------------------------------------- /setup/pybind11/docs/pybind11_vs_boost_python1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/docs/pybind11_vs_boost_python1.svg -------------------------------------------------------------------------------- /setup/pybind11/docs/pybind11_vs_boost_python2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/docs/pybind11_vs_boost_python2.png -------------------------------------------------------------------------------- /setup/pybind11/docs/pybind11_vs_boost_python2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/docs/pybind11_vs_boost_python2.svg -------------------------------------------------------------------------------- /setup/pybind11/docs/reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/docs/reference.rst -------------------------------------------------------------------------------- /setup/pybind11/docs/release.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/docs/release.rst -------------------------------------------------------------------------------- /setup/pybind11/docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/docs/requirements.txt -------------------------------------------------------------------------------- /setup/pybind11/docs/upgrade.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/docs/upgrade.rst -------------------------------------------------------------------------------- /setup/pybind11/include/pybind11/attr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/include/pybind11/attr.h -------------------------------------------------------------------------------- /setup/pybind11/include/pybind11/buffer_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/include/pybind11/buffer_info.h -------------------------------------------------------------------------------- /setup/pybind11/include/pybind11/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/include/pybind11/cast.h -------------------------------------------------------------------------------- /setup/pybind11/include/pybind11/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/include/pybind11/chrono.h -------------------------------------------------------------------------------- /setup/pybind11/include/pybind11/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/include/pybind11/common.h -------------------------------------------------------------------------------- /setup/pybind11/include/pybind11/complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/include/pybind11/complex.h -------------------------------------------------------------------------------- /setup/pybind11/include/pybind11/detail/class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/include/pybind11/detail/class.h -------------------------------------------------------------------------------- /setup/pybind11/include/pybind11/detail/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/include/pybind11/detail/common.h -------------------------------------------------------------------------------- /setup/pybind11/include/pybind11/detail/descr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/include/pybind11/detail/descr.h -------------------------------------------------------------------------------- /setup/pybind11/include/pybind11/detail/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/include/pybind11/detail/init.h -------------------------------------------------------------------------------- /setup/pybind11/include/pybind11/detail/internals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/include/pybind11/detail/internals.h -------------------------------------------------------------------------------- /setup/pybind11/include/pybind11/detail/typeid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/include/pybind11/detail/typeid.h -------------------------------------------------------------------------------- /setup/pybind11/include/pybind11/eigen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/include/pybind11/eigen.h -------------------------------------------------------------------------------- /setup/pybind11/include/pybind11/embed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/include/pybind11/embed.h -------------------------------------------------------------------------------- /setup/pybind11/include/pybind11/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/include/pybind11/eval.h -------------------------------------------------------------------------------- /setup/pybind11/include/pybind11/functional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/include/pybind11/functional.h -------------------------------------------------------------------------------- /setup/pybind11/include/pybind11/iostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/include/pybind11/iostream.h -------------------------------------------------------------------------------- /setup/pybind11/include/pybind11/numpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/include/pybind11/numpy.h -------------------------------------------------------------------------------- /setup/pybind11/include/pybind11/operators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/include/pybind11/operators.h -------------------------------------------------------------------------------- /setup/pybind11/include/pybind11/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/include/pybind11/options.h -------------------------------------------------------------------------------- /setup/pybind11/include/pybind11/pybind11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/include/pybind11/pybind11.h -------------------------------------------------------------------------------- /setup/pybind11/include/pybind11/pytypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/include/pybind11/pytypes.h -------------------------------------------------------------------------------- /setup/pybind11/include/pybind11/stl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/include/pybind11/stl.h -------------------------------------------------------------------------------- /setup/pybind11/include/pybind11/stl_bind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/include/pybind11/stl_bind.h -------------------------------------------------------------------------------- /setup/pybind11/pybind11/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/pybind11/__init__.py -------------------------------------------------------------------------------- /setup/pybind11/pybind11/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/pybind11/__main__.py -------------------------------------------------------------------------------- /setup/pybind11/pybind11/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/pybind11/_version.py -------------------------------------------------------------------------------- /setup/pybind11/pybind11/_version.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/pybind11/_version.pyi -------------------------------------------------------------------------------- /setup/pybind11/pybind11/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/pybind11/commands.py -------------------------------------------------------------------------------- /setup/pybind11/pybind11/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/pybind11/pybind11/setup_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/pybind11/setup_helpers.py -------------------------------------------------------------------------------- /setup/pybind11/pybind11/setup_helpers.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/pybind11/setup_helpers.pyi -------------------------------------------------------------------------------- /setup/pybind11/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/pyproject.toml -------------------------------------------------------------------------------- /setup/pybind11/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/setup.cfg -------------------------------------------------------------------------------- /setup/pybind11/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/setup.py -------------------------------------------------------------------------------- /setup/pybind11/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/CMakeLists.txt -------------------------------------------------------------------------------- /setup/pybind11/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/conftest.py -------------------------------------------------------------------------------- /setup/pybind11/tests/constructor_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/constructor_stats.h -------------------------------------------------------------------------------- /setup/pybind11/tests/cross_module_gil_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/cross_module_gil_utils.cpp -------------------------------------------------------------------------------- /setup/pybind11/tests/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/env.py -------------------------------------------------------------------------------- /setup/pybind11/tests/extra_python_package/pytest.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/pybind11/tests/extra_python_package/test_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/extra_python_package/test_files.py -------------------------------------------------------------------------------- /setup/pybind11/tests/extra_setuptools/pytest.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/pybind11/tests/extra_setuptools/test_setuphelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/extra_setuptools/test_setuphelper.py -------------------------------------------------------------------------------- /setup/pybind11/tests/local_bindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/local_bindings.h -------------------------------------------------------------------------------- /setup/pybind11/tests/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/object.h -------------------------------------------------------------------------------- /setup/pybind11/tests/pybind11_cross_module_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/pybind11_cross_module_tests.cpp -------------------------------------------------------------------------------- /setup/pybind11/tests/pybind11_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/pybind11_tests.cpp -------------------------------------------------------------------------------- /setup/pybind11/tests/pybind11_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/pybind11_tests.h -------------------------------------------------------------------------------- /setup/pybind11/tests/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/pytest.ini -------------------------------------------------------------------------------- /setup/pybind11/tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/requirements.txt -------------------------------------------------------------------------------- /setup/pybind11/tests/test_async.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_async.cpp -------------------------------------------------------------------------------- /setup/pybind11/tests/test_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_async.py -------------------------------------------------------------------------------- /setup/pybind11/tests/test_buffers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_buffers.cpp -------------------------------------------------------------------------------- /setup/pybind11/tests/test_buffers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_buffers.py -------------------------------------------------------------------------------- /setup/pybind11/tests/test_builtin_casters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_builtin_casters.cpp -------------------------------------------------------------------------------- /setup/pybind11/tests/test_builtin_casters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_builtin_casters.py -------------------------------------------------------------------------------- /setup/pybind11/tests/test_call_policies.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_call_policies.cpp -------------------------------------------------------------------------------- /setup/pybind11/tests/test_call_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_call_policies.py -------------------------------------------------------------------------------- /setup/pybind11/tests/test_callbacks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_callbacks.cpp -------------------------------------------------------------------------------- /setup/pybind11/tests/test_callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_callbacks.py -------------------------------------------------------------------------------- /setup/pybind11/tests/test_chrono.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_chrono.cpp -------------------------------------------------------------------------------- /setup/pybind11/tests/test_chrono.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_chrono.py -------------------------------------------------------------------------------- /setup/pybind11/tests/test_class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_class.cpp -------------------------------------------------------------------------------- /setup/pybind11/tests/test_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_class.py -------------------------------------------------------------------------------- /setup/pybind11/tests/test_cmake_build/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_cmake_build/CMakeLists.txt -------------------------------------------------------------------------------- /setup/pybind11/tests/test_cmake_build/embed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_cmake_build/embed.cpp -------------------------------------------------------------------------------- /setup/pybind11/tests/test_cmake_build/installed_embed/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_cmake_build/installed_embed/CMakeLists.txt -------------------------------------------------------------------------------- /setup/pybind11/tests/test_cmake_build/installed_function/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_cmake_build/installed_function/CMakeLists.txt -------------------------------------------------------------------------------- /setup/pybind11/tests/test_cmake_build/installed_target/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_cmake_build/installed_target/CMakeLists.txt -------------------------------------------------------------------------------- /setup/pybind11/tests/test_cmake_build/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_cmake_build/main.cpp -------------------------------------------------------------------------------- /setup/pybind11/tests/test_cmake_build/subdirectory_embed/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_cmake_build/subdirectory_embed/CMakeLists.txt -------------------------------------------------------------------------------- /setup/pybind11/tests/test_cmake_build/subdirectory_function/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_cmake_build/subdirectory_function/CMakeLists.txt -------------------------------------------------------------------------------- /setup/pybind11/tests/test_cmake_build/subdirectory_target/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_cmake_build/subdirectory_target/CMakeLists.txt -------------------------------------------------------------------------------- /setup/pybind11/tests/test_cmake_build/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_cmake_build/test.py -------------------------------------------------------------------------------- /setup/pybind11/tests/test_constants_and_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_constants_and_functions.cpp -------------------------------------------------------------------------------- /setup/pybind11/tests/test_constants_and_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_constants_and_functions.py -------------------------------------------------------------------------------- /setup/pybind11/tests/test_copy_move.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_copy_move.cpp -------------------------------------------------------------------------------- /setup/pybind11/tests/test_copy_move.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_copy_move.py -------------------------------------------------------------------------------- /setup/pybind11/tests/test_custom_type_casters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_custom_type_casters.cpp -------------------------------------------------------------------------------- /setup/pybind11/tests/test_custom_type_casters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_custom_type_casters.py -------------------------------------------------------------------------------- /setup/pybind11/tests/test_docstring_options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_docstring_options.cpp -------------------------------------------------------------------------------- /setup/pybind11/tests/test_docstring_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_docstring_options.py -------------------------------------------------------------------------------- /setup/pybind11/tests/test_eigen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_eigen.cpp -------------------------------------------------------------------------------- /setup/pybind11/tests/test_eigen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_eigen.py -------------------------------------------------------------------------------- /setup/pybind11/tests/test_embed/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_embed/CMakeLists.txt -------------------------------------------------------------------------------- /setup/pybind11/tests/test_embed/catch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_embed/catch.cpp -------------------------------------------------------------------------------- /setup/pybind11/tests/test_embed/external_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_embed/external_module.cpp -------------------------------------------------------------------------------- /setup/pybind11/tests/test_embed/test_interpreter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_embed/test_interpreter.cpp -------------------------------------------------------------------------------- /setup/pybind11/tests/test_embed/test_interpreter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_embed/test_interpreter.py -------------------------------------------------------------------------------- /setup/pybind11/tests/test_enum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_enum.cpp -------------------------------------------------------------------------------- /setup/pybind11/tests/test_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_enum.py -------------------------------------------------------------------------------- /setup/pybind11/tests/test_eval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_eval.cpp -------------------------------------------------------------------------------- /setup/pybind11/tests/test_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_eval.py -------------------------------------------------------------------------------- /setup/pybind11/tests/test_eval_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_eval_call.py -------------------------------------------------------------------------------- /setup/pybind11/tests/test_exceptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_exceptions.cpp -------------------------------------------------------------------------------- /setup/pybind11/tests/test_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_exceptions.py -------------------------------------------------------------------------------- /setup/pybind11/tests/test_factory_constructors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_factory_constructors.cpp -------------------------------------------------------------------------------- /setup/pybind11/tests/test_factory_constructors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_factory_constructors.py -------------------------------------------------------------------------------- /setup/pybind11/tests/test_gil_scoped.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_gil_scoped.cpp -------------------------------------------------------------------------------- /setup/pybind11/tests/test_gil_scoped.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_gil_scoped.py -------------------------------------------------------------------------------- /setup/pybind11/tests/test_iostream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_iostream.cpp -------------------------------------------------------------------------------- /setup/pybind11/tests/test_iostream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_iostream.py -------------------------------------------------------------------------------- /setup/pybind11/tests/test_kwargs_and_defaults.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_kwargs_and_defaults.cpp -------------------------------------------------------------------------------- /setup/pybind11/tests/test_kwargs_and_defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_kwargs_and_defaults.py -------------------------------------------------------------------------------- /setup/pybind11/tests/test_local_bindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_local_bindings.cpp -------------------------------------------------------------------------------- /setup/pybind11/tests/test_local_bindings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_local_bindings.py -------------------------------------------------------------------------------- /setup/pybind11/tests/test_methods_and_attributes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_methods_and_attributes.cpp -------------------------------------------------------------------------------- /setup/pybind11/tests/test_methods_and_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_methods_and_attributes.py -------------------------------------------------------------------------------- /setup/pybind11/tests/test_modules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_modules.cpp -------------------------------------------------------------------------------- /setup/pybind11/tests/test_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_modules.py -------------------------------------------------------------------------------- /setup/pybind11/tests/test_multiple_inheritance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_multiple_inheritance.cpp -------------------------------------------------------------------------------- /setup/pybind11/tests/test_multiple_inheritance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_multiple_inheritance.py -------------------------------------------------------------------------------- /setup/pybind11/tests/test_numpy_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_numpy_array.cpp -------------------------------------------------------------------------------- /setup/pybind11/tests/test_numpy_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_numpy_array.py -------------------------------------------------------------------------------- /setup/pybind11/tests/test_numpy_dtypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_numpy_dtypes.cpp -------------------------------------------------------------------------------- /setup/pybind11/tests/test_numpy_dtypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_numpy_dtypes.py -------------------------------------------------------------------------------- /setup/pybind11/tests/test_numpy_vectorize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_numpy_vectorize.cpp -------------------------------------------------------------------------------- /setup/pybind11/tests/test_numpy_vectorize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_numpy_vectorize.py -------------------------------------------------------------------------------- /setup/pybind11/tests/test_opaque_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_opaque_types.cpp -------------------------------------------------------------------------------- /setup/pybind11/tests/test_opaque_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_opaque_types.py -------------------------------------------------------------------------------- /setup/pybind11/tests/test_operator_overloading.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_operator_overloading.cpp -------------------------------------------------------------------------------- /setup/pybind11/tests/test_operator_overloading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_operator_overloading.py -------------------------------------------------------------------------------- /setup/pybind11/tests/test_pickling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_pickling.cpp -------------------------------------------------------------------------------- /setup/pybind11/tests/test_pickling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_pickling.py -------------------------------------------------------------------------------- /setup/pybind11/tests/test_pytypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_pytypes.cpp -------------------------------------------------------------------------------- /setup/pybind11/tests/test_pytypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_pytypes.py -------------------------------------------------------------------------------- /setup/pybind11/tests/test_sequences_and_iterators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_sequences_and_iterators.cpp -------------------------------------------------------------------------------- /setup/pybind11/tests/test_sequences_and_iterators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_sequences_and_iterators.py -------------------------------------------------------------------------------- /setup/pybind11/tests/test_smart_ptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_smart_ptr.cpp -------------------------------------------------------------------------------- /setup/pybind11/tests/test_smart_ptr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_smart_ptr.py -------------------------------------------------------------------------------- /setup/pybind11/tests/test_stl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_stl.cpp -------------------------------------------------------------------------------- /setup/pybind11/tests/test_stl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_stl.py -------------------------------------------------------------------------------- /setup/pybind11/tests/test_stl_binders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_stl_binders.cpp -------------------------------------------------------------------------------- /setup/pybind11/tests/test_stl_binders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_stl_binders.py -------------------------------------------------------------------------------- /setup/pybind11/tests/test_tagbased_polymorphic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_tagbased_polymorphic.cpp -------------------------------------------------------------------------------- /setup/pybind11/tests/test_tagbased_polymorphic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_tagbased_polymorphic.py -------------------------------------------------------------------------------- /setup/pybind11/tests/test_union.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_union.cpp -------------------------------------------------------------------------------- /setup/pybind11/tests/test_union.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_union.py -------------------------------------------------------------------------------- /setup/pybind11/tests/test_virtual_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_virtual_functions.cpp -------------------------------------------------------------------------------- /setup/pybind11/tests/test_virtual_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tests/test_virtual_functions.py -------------------------------------------------------------------------------- /setup/pybind11/tools/FindCatch.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tools/FindCatch.cmake -------------------------------------------------------------------------------- /setup/pybind11/tools/FindEigen3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tools/FindEigen3.cmake -------------------------------------------------------------------------------- /setup/pybind11/tools/FindPythonLibsNew.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tools/FindPythonLibsNew.cmake -------------------------------------------------------------------------------- /setup/pybind11/tools/check-style.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tools/check-style.sh -------------------------------------------------------------------------------- /setup/pybind11/tools/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tools/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /setup/pybind11/tools/libsize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tools/libsize.py -------------------------------------------------------------------------------- /setup/pybind11/tools/pybind11Common.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tools/pybind11Common.cmake -------------------------------------------------------------------------------- /setup/pybind11/tools/pybind11Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tools/pybind11Config.cmake.in -------------------------------------------------------------------------------- /setup/pybind11/tools/pybind11NewTools.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tools/pybind11NewTools.cmake -------------------------------------------------------------------------------- /setup/pybind11/tools/pybind11Tools.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tools/pybind11Tools.cmake -------------------------------------------------------------------------------- /setup/pybind11/tools/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tools/pyproject.toml -------------------------------------------------------------------------------- /setup/pybind11/tools/setup_global.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tools/setup_global.py.in -------------------------------------------------------------------------------- /setup/pybind11/tools/setup_main.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/pybind11/tools/setup_main.py.in -------------------------------------------------------------------------------- /setup/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/setup/setup.py -------------------------------------------------------------------------------- /utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/utils/metrics.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zju3dv/pats/HEAD/utils/utils.py --------------------------------------------------------------------------------