plasmodic / ecto

ecto is a dynamically configurable Directed Acyclic processing Graph (DAG) framework.
http://ecto.willowgarage.com/
BSD 3-Clause "New" or "Revised" License
97 stars 37 forks source link

fix runtime warning while python conversion #289

Closed jihoonl closed 8 years ago

jihoonl commented 8 years ago

Fixing python conversion warning using register_ptr_to_python

/home/jihoonl/research/ros/ecto/devel/lib/python2.7/dist-packages/ecto/__init__.py:30: RuntimeWarning: to-Python converter for boost::shared_ptr<ecto::tendril> already registered; second conversion method ignored.
  del os_path
/home/jihoonl/research/ros/ecto/devel/lib/python2.7/dist-packages/ecto/__init__.py:30: RuntimeWarning: to-Python converter for boost::shared_ptr<ecto::cell> already registered; second conversion method ignored.
  del os_path
/home/jihoonl/research/ros/ecto/devel/lib/python2.7/dist-packages/ecto/__init__.py:30: RuntimeWarning: to-Python converter for boost::shared_ptr<ecto::py::cellwrap> already registered; second conversion method ignored.

As proposed in https://github.com/BVLC/caffe/pull/4069

vrabaud commented 8 years ago

Thx !