<div dir="ltr">See responses inline.<br><div class="gmail_extra"><br><br><div class="gmail_quote">On Tue, Nov 12, 2013 at 9:49 PM, Brian G. Peterson <span dir="ltr"><<a href="mailto:brian@braverock.com" target="_blank">brian@braverock.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Ross, this is a very interesting prototype.<br>
<br>
We haven't shied away from adding C dependencies in PerformanceAnalytics or blotter or quantstrat.  All of them have recently acquired compiled code.<br>
<br>
The first part of your benchmark is a fair one, generating the random portfolios, and one that I would expect compiled code to do better than native R code (though we haven't spent any time profiling or trying to improve the native R code either) because it is a big loop.<br>
</blockquote><div><br></div><div style>I'll look to see if there is a way to improve the R code here. At first glance it isn't obvious where performance could be improved, because it just a while loop as you stated. Perhaps something with how the weight_seq subsetting is done. Although the overall impact on random portfolios would be small because this is only called once, any improvements here could be used in rp_transform which is called by the mapping function passed to DEoptim. If I understand correctly, this is called tens of thousands of time so any incremental improvement could be a large net gain overall for optimize_method="DEoptim".</div>
<div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
The second part of your benchmark is rather unfair though, as you say yourself:<br>
<br>
"Benchmark the optimization functions of PortfolioAnalytics and RcppRP.<br>
The rp_optimize_v2 uses slimmed down C++ implementations of constrained_objective and optimize.portfolio from PortfolioAnalytics. The objective, constrained objective, and optimization functions<br>
must all be in C++ so that I can ”stay in C++ world” for the<br>
optimization when calling constrained_objective for each set of weights."<br>
<br>
The entire point of constrained_objective is that the objective from the portfolio specification is of arbitrary complexity, and will typically include much more complex functions than 'mean' and 'sd'.<br>
</blockquote><div><br></div><div style>I, perhaps naively, assumed that the most common objective functions used were mean, StdDev, and ES. What is your take on the most common complex objective functions? Perhaps these could be optimized or implemented in a compiled language. Depending on the function, improvements here would also likely be an overall net gain because they are called thousands or tens of thousands of times from constrained_objective.</div>
<div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
So, keeping everything in C++ world isn't really possible with arbitrary objectives, by construction, because the objectives can be *any R function*. </blockquote><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

<br>
That said, where would generally useful improvements (in handling arbitrary objectives) likely lie?<br>
<br>
* handling the loop over all the random weight vectors in compiled code:<br>
<br>
This isn't likely to be a huge performance improvement with arbitrary objectives, as the time spent in the loop is likely dwarfed by the objective function itself.<br></blockquote><div><br></div><div style>Agreed, I believe most of the time is spent in constrained_objective.</div>
<div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
* improved handling of arguments and argument matching<br>
<br>
This one could be huge, but also doesn't require compiled code.  Josh Ulrich recently came up with huge speed improvements in quantstrat  in part by improving the argument matching and calling of arbitrary functions.  The prototype of that code in quantstrat came from PortfolioAnalytics.  The key improvement was in not evaluating large arguments. In this case, that would be the returns time series and the moments and co-moments.  This trick could and probably should be ported to PortfolioAnalytics.<br>
</blockquote><div><br></div><div style>I saw his post on FOSS trading and was very impressed by the performance gain. I would really like to look into this for PortfolioAnalytics. I started looking the quantstrat source code, but wasn't exactly sure what I was looking for. Can you point me to the diff or function (or a simple example) where this was done?</div>
<div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
We saw Dirk try to create a faster C++ version of DEoptim a few years ago.  His RcppDEoptim didn't pass dots (...) to the objective function.  Oops.  The entire performance gain came from this lack of ability to use an arbitrary objective.  When dots were added back in, the C++ version of DE is slower than the C version (as you'd expect). Passing dots to the objective isn't exactly optional outside of toy examples.<br>

<br>
* general improvements in optimize.portfolio<br>
<br>
Not clear without profiling, but i wouldn't expect this to be more than a fraction of the runtime with real objectives.<br>
<br>
* general improvements in constrained_objective<br>
<br>
There is almost certainly a role for compiled code in constrained_objective.  This is a very large, complex function that could definitely be improved.  The core functionality of calling arbitrary objectives as specified by the user can't be given up. though, or we lose the reason to allow an arbitrary portfolio specification in the first place.  Obviously, both C and C++ can call back to R code from compiled code.  We do this already in DEoptim to call the objective (constrained_objective in PortA) from DEoptim's C code.<br>
</blockquote><div><br></div><div style>My first step will be to optimize constrained_objective in R code. Assuming we take the step to write constrained_objective in compiled code, how much of an overhead or performance hit is there with repeatedly calling back to R from C or C++?</div>
<div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
Are optimize.portfolio and constrained_objective complex enough that a dependency on Rcpp would be worth it?  Quite possibly.  C code makes a lot of sense when the code can be kept compact and the overhead of defining objects in C isn't too great.  C++ or Rcpp makes sense when the complexity of the functions increases and the code would be more legible and maintainable in C++ than C.  Is constrained_objective complex enough to benefit from C++.  Maybe.<br>

<br>
I think we'd need to be fair and ask where the performance gains come from and how we could gain a generic, generally useful improvement in PortfolioAnalytics.<br>
<br>
If it makes sense, improving optimize.portfolio and constrained_objective would improve the performance of PortfolioAnalytics for all solvers, not just random portfolios.  That gain would need to come from benefits realizable even with an arbitrarily complex portfolio specification.<br>
</blockquote><div><br></div><div style>Thanks for the detailed breakdown and analysis of improving the performance in PortfolioAnalytics!</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

<br>
Regards,<br>
<br>
Brian<div><div class="h5"><br>
<br>
<br>
On 11/12/2013 10:43 PM, Ross Bennett wrote:<br>
</div></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div class="h5">
All,<br>
<br>
Over the course of the google summer of code project, I learned a lot<br>
about the random portfolios algorithm (among many other topics) and<br>
became quite fascinated with the concept. I had some free time over the<br>
weekend and decided to implement random portfolio optimization using<br>
Rcpp. My motivation for doing this was to learn C++ and Rcpp with no<br>
expectation of how much faster this could actually be.<br>
<br>
Here are the results of two benchmarks I did.<br>
<br>
This first benchmark is just generating random portfolios.<br>
<br>
     test replications elapsed relative<br>
1     pa             10 188.74     6.583<br>
2 rcpp_s           10   28.67    1.000<br>
<br>
The next benchmark is the actual optimization.<br>
<br>
   test replications elapsed relative<br>
1   pa            10  211.027    808.5<br>
2 rcpp           10      0.261    1.000<br>
<br>
I am a beginner at C++ so I am pretty sure there are further<br>
improvements that can be made with my C++ code.<br>
<br>
The benchmark results got me thinking that we might be able to use this<br>
in PortfolioAnalytics. The RcppRP package I started this weekend is<br>
really rough around the edges, but with some more improvements could<br>
serve as an alternate optimization method for random portfolios. We<br>
could have something like optimize.portfolio(...,<br>
optimize_method="random_rcpp") that calls the proper functions from RcppRP.<br>
<br>
The RcppRP package is on my github page if you are interested in looking<br>
at the code.<br>
<a href="https://github.com/rossb34/RcppRP" target="_blank">https://github.com/rossb34/<u></u>RcppRP</a><br>
<br>
Any thoughts on if this is worth continuing to pursue? Either way I plan<br>
to continue working on RcppRP for the sole purpose of learning C++ and Rcpp.<br>
<br>
Regards,<br>
Ross<br>
<br>
<br>
<br></div></div>
______________________________<u></u>_________________<br>
GSoC-PortA mailing list<br>
<a href="mailto:GSoC-PortA@lists.r-forge.r-project.org" target="_blank">GSoC-PortA@lists.r-forge.r-<u></u>project.org</a><br>
<a href="http://lists.r-forge.r-project.org/cgi-bin/mailman/listinfo/gsoc-porta" target="_blank">http://lists.r-forge.r-<u></u>project.org/cgi-bin/mailman/<u></u>listinfo/gsoc-porta</a><br>
<br><span class="HOEnZb"><font color="#888888">
</font></span></blockquote><span class="HOEnZb"><font color="#888888">
<br>
<br>
-- <br>
Brian G. Peterson<br>
<a href="http://braverock.com/brian/" target="_blank">http://braverock.com/brian/</a><br>
Ph: <a href="tel:773-459-4973" value="+17734594973" target="_blank">773-459-4973</a><br>
IM: bgpbraverock<br>
______________________________<u></u>_________________<br>
GSoC-PortA mailing list<br>
<a href="mailto:GSoC-PortA@lists.r-forge.r-project.org" target="_blank">GSoC-PortA@lists.r-forge.r-<u></u>project.org</a><br>
<a href="http://lists.r-forge.r-project.org/cgi-bin/mailman/listinfo/gsoc-porta" target="_blank">http://lists.r-forge.r-<u></u>project.org/cgi-bin/mailman/<u></u>listinfo/gsoc-porta</a><br>
</font></span></blockquote></div><br></div></div>