aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--interface/pyfunc_obj.hpp71
-rw-r--r--interface/pymodel.hpp98
2 files changed, 169 insertions, 0 deletions
diff --git a/interface/pyfunc_obj.hpp b/interface/pyfunc_obj.hpp
new file mode 100644
index 0000000..db2775a
--- /dev/null
+++ b/interface/pyfunc_obj.hpp
@@ -0,0 +1,71 @@
+#ifndef PYFUNC_OBJ_HPP
+#define PYFUNC_OBJ_HPP
+#include <boost/python.hpp>
+#include <core/optimizer.hpp>
+#include <core/opt_traits.hpp>
+
+
+namespace opt_utilities
+{
+
+ template <typename Ty,typename Tx>
+ class pyfunc_obj
+ :public func_obj<Ty,Tx>
+ {
+ private:
+ boost::python::object pyfunc;
+ public:
+ pyfunc_obj()
+ {
+ if(!Py_IsInitialized())
+ {
+ Py_Initialize();
+ }
+ }
+
+ pyfunc_obj(const pyfunc_obj& rhs)
+ :pyfunc(rhs.pyfunc)
+ {}
+
+ pyfunc_obj& operator=(const pyfunc_obj& rhs)
+ {
+ pyfunc=rhs.pyfunc;
+ }
+
+ ~pyfunc_obj()
+ {}
+
+ public:
+ void attach(const std::string module_name,
+ const std::string func_name)
+ {
+ boost::python::object mod(boost::python::import(module_name.c_str()));
+ pyfunc=mod.attr(func_name.c_str());
+
+ }
+ private:
+ func_obj<Ty,Tx>* do_clone()const
+ {
+ return new pyfunc_obj(*this);
+ }
+
+ void do_destroy()
+ {
+ delete this;
+ }
+
+ Ty do_eval(const Tx& x)
+ {
+ boost::python::list args;
+ for(size_t i=0;i<get_size(x);++i)
+ {
+ args.append(get_element(x,i));
+ }
+ return boost::python::extract<Ty>(pyfunc(args));
+ }
+ };
+}
+
+
+#endif
+//EOF
diff --git a/interface/pymodel.hpp b/interface/pymodel.hpp
new file mode 100644
index 0000000..5ef3885
--- /dev/null
+++ b/interface/pymodel.hpp
@@ -0,0 +1,98 @@
+#ifndef PYMODEL
+#define PYMODEL
+#include <boost/python.hpp>
+#include <core/fitter.hpp>
+#include <core/opt_traits.hpp>
+
+
+namespace opt_utilities
+{
+
+ template <typename Ty,typename Tx,typename Tp>
+ class pymodel
+ :public model<Ty,Tx,Tp,std::string>
+ {
+ private:
+ boost::python::object pyfunc;
+ public:
+ pymodel()
+ {
+ if(!Py_IsInitialized())
+ {
+ Py_Initialize();
+ }
+ }
+
+ pymodel(const pymodel& rhs)
+ :pyfunc(rhs.pyfunc)
+ {
+ for(int i=0;i<rhs.get_num_params();++i)
+ {
+ this->push_param_info(rhs.get_param_info(i));
+ }
+ }
+
+ pymodel& operator=(const pymodel& rhs)
+ {
+ if(this==&rhs)
+ {
+ return *this;
+ }
+ pyfunc=rhs.pyfunc;
+ for(int i=0;i<rhs.get_num_params();++i)
+ {
+ this->push_param_info(rhs.get_param_info(i));
+ }
+ return *this;
+ }
+
+ ~pymodel()
+ {}
+
+ public:
+ void attach(const std::string module_name,
+ const std::string arglist_name,
+ const std::string func_name)
+ {
+ this->clear_param_info();
+ boost::python::object mod(boost::python::import(module_name.c_str()));
+ pyfunc=mod.attr(func_name.c_str());
+ boost::python::dict args(mod.attr(arglist_name.c_str()));
+ boost::python::list pnames(args.keys());
+ int nparams=boost::python::len(pnames);
+ for(size_t i=0;i!=nparams;++i)
+ {
+ boost::python::object pname_obj=pnames[i];
+ std::string pname=boost::python::extract<std::string>(pname_obj);
+ typename element_type_trait<Tp>::element_type pvalue=
+ boost::python::extract<typename element_type_trait<Tp>::element_type>(args.get(pname_obj));
+
+ push_param_info(param_info<Tp,std::string>(pname,pvalue));
+ }
+ }
+ private:
+ model<Ty,Tx,Tp,std::string>* do_clone()const
+ {
+ return new pymodel(*this);
+ }
+
+ void do_destroy()
+ {
+ delete this;
+ }
+
+ Ty do_eval(const Tx& x,const Tp& p)
+ {
+ boost::python::list args;
+ for(size_t i=0;i<get_size(p);++i)
+ {
+ args.append(get_element(p,i));
+ }
+ return boost::python::extract<Ty>(pyfunc(x,args));
+ }
+ };
+}
+
+
+#endif
+//EOF