Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reform the boost::python wrapper, including layers implemented in Python #1703

Merged
merged 16 commits into from
Feb 17, 2015

Commits on Feb 17, 2015

  1. Configuration menu
    Copy the full SHA
    d6df2e0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c2fe27b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    798a65b View commit details
    Browse the repository at this point in the history
  4. [pycaffe] re-expose Net

    longjon committed Feb 17, 2015
    Configuration menu
    Copy the full SHA
    74a584c View commit details
    Browse the repository at this point in the history
  5. [pycaffe] re-expose Blob

    longjon committed Feb 17, 2015
    1 Configuration menu
    Copy the full SHA
    8a510f7 View commit details
    Browse the repository at this point in the history
  6. [pycaffe] re-expose Layer

    longjon committed Feb 17, 2015
    Configuration menu
    Copy the full SHA
    2660977 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    86646f7 View commit details
    Browse the repository at this point in the history
  8. LayerRegistry uses shared_ptr instead of raw pointers

    Sometimes it's useful for CreateLayer to return a Layer already in use
    by another object (e.g., by a Python wrapper). With raw pointers, there
    is no way to properly share owership.
    longjon committed Feb 17, 2015
    Configuration menu
    Copy the full SHA
    965df8f View commit details
    Browse the repository at this point in the history
  9. [pycaffe] allow Layer to be extended from Python

    This is done by adding PythonLayer as a boost::python HeldType.
    longjon committed Feb 17, 2015
    Configuration menu
    Copy the full SHA
    d94f107 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    da044c9 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    3c94d96 View commit details
    Browse the repository at this point in the history
  12. add WITH_PYTHON_LAYER build option to include Python layer

    Currently, this will only work when running from pycaffe (but not the
    tool binary), due to static linking conflicts with registration.
    longjon committed Feb 17, 2015
    Configuration menu
    Copy the full SHA
    55e5aa2 View commit details
    Browse the repository at this point in the history
  13. except PythonLayer from layer factory test

    PythonLayer (rightfully) refuses to be instantiated when a module and
    class aren't given. It's still covered by tests however through pytest.
    shelhamer authored and longjon committed Feb 17, 2015
    Configuration menu
    Copy the full SHA
    590d396 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    0396f9f View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    9b38744 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    91289b3 View commit details
    Browse the repository at this point in the history