Romain,<br><br>I found a work-around for the VC++ problem. All I have to do<br>is make sure the code that is currently ifdef-ed in Extractor.h<br>is NOT enabled under VC++ (when _MSC_VER is defined).<br>Currently this code is conditionally compiled with<br>

#ifndef IF_GCC_450_OR_LATER, so the additional condition<br>
that _MSC_VER is NOT defined must be added, and only<br>
the identity class at the top of Extractor.h is used.<br>
<br>A comment in this file suggests that you have already<br>observed problems under windows with Rcpp::Fast<br>vector extraction, presumably with MinGW/g++. The<br>comment goes on to say that it may be a g++ 4.5<br>issue and not a Windows issue. Obviously this thread<br>
has shown that this is not the complete story.<br><br>I do not know why VC++ has a problem with<br>Rcpp::Fast vector extraction. With all of the pointer<br>manipulation it may have something to do with<br>incompatible word sizes, memory alignment,<br>
or related low-level issues.<br><br>Thanks,<br>Dominick<br><br><div class="gmail_quote">On Sat, Jan 15, 2011 at 2:27 PM, Dominick Samperi <span dir="ltr">&lt;<a href="mailto:djsamperi@gmail.com">djsamperi@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">So that there is no confusion, I should add that the problems that I report<br>here do not occur under Linux/g++ or under MinGW/g++ (the supported<br>
environments), where Rcpp/sugar seems to work fine.<div><div></div><div class="h5"><br><br><div class="gmail_quote">
On Sat, Jan 15, 2011 at 1:23 PM, Dominick Samperi <span dir="ltr">&lt;<a href="mailto:djsamperi@gmail.com" target="_blank">djsamperi@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">

<br><br><div class="gmail_quote"><div><div></div><div>On Sat, Jan 15, 2011 at 4:15 AM, Romain Francois <span dir="ltr">&lt;<a href="mailto:romain@r-enthusiasts.com" target="_blank">romain@r-enthusiasts.com</a>&gt;</span> wrote:<br>

<blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
Le 13/01/11 16:29, Dominick Samperi a écrit :<div><br>
<blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
The template expression code is very interesting, but it<br>
does not work as expected under<br>
Windows/g++/MinGW/32bit/Rterm.exe. The problem<br>
does not appear when I use Rgui.exe, or if I use<br>
64bit Windows!<br>
<br>
Consider the following C++ code called using<br>
.Call(&#39;testsugar&#39;,1:5,1:5):<br>
<br>
RcppExport SEXP testsugar(SEXP x_, SEXP y_) {<br>
     Rcpp::NumericVector x(x_), y(y_);<br>
     Rprintf(&quot;%d, %lf, %lf\n&quot;, (x+y).size(), (x+y)[0], (x+y)[1]);<br>
     return R_NilValue;<br>
}<br>
<br>
Under Linux/GCC, or 64bit Windows/g++, or<br>
32bit Windows/g++ I get the expected result:<br>
<br>
5, 2.0, 4.0<br>
<br>
Under Windows/32bit/Rterm.exe I get:<br>
<br>
5, 0.0, 0.0<br>
</blockquote>
<br></div>
Intriguing. Maybe Rprintf is to blame. Can you try this instead:</blockquote><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;"><div>
<br>
<br>
RcppExport SEXP testsugar(SEXP x_, SEXP y_) {<br>
    Rcpp::NumericVector x(x_), y(y_);<br></div>
        int n = (x+y).size() ;<br>
        double xy0 = (x+y)[0] ;<br>
        double xy1 = (x+y)[1] ;<br>
    Rprintf(&quot;%d, %lf, %lf\n&quot;, n, xy0, xy1);<br>
    return R_NilValue;<div><br>
}<br></div></blockquote></div></div><div><br> Good guess, I found a problem with Rprintf yesterday, but this<br>
will not fix it. The problem is not caused by the arbitrary evaluation<br>
order of the arguments to Rprintf. It is caused by the different<br>
behavior of the format control &quot;%lf&quot; under different architectures!<br>
In particular, the problem goes away under i386/32bit Windows using<br>
MinGW/g++ when &quot;%lf&quot; is replaced with &quot;%f&quot;. I could not find this<br>
documented anywhere.<br><br>Of course, this has nothing to do with Rcpp, and it might<br>be of interest to r-devel.<br><br>For me this was just a distraction because the problem with<br>Visual C++ is still alive and well and has nothing to do with<br>


Rprintf. As this information might be helpful in other <br>(non-VC++) contexts here is what I am seeing.<br><br>Consider:<div><br><br>RcppExport SEXP testsugar(SEXP x_, SEXP y_) {<br>    Rcpp::NumericVector x(x_), y(y_);<br>

</div>    Rprintf(&quot;val = %f\n&quot;, (x+y)[0]);<br>
    return R_NilValue;<br>}<br><br>This goes through operator+(lhs,rhs) in plus.h, which triggers the<br>construction of an object of type Plus_Vector_Vector, and the<br>construction seems to happen without problems, because the<br>


following Rprint&#39;s print what you would expect in the<br>constructor:<br><br>Rprintf(&quot;RTYPE = %d\n&quot;, RTYPE); // get 14, REALSXP<br>Rprintf(&quot;size: %d, %d, %d\n&quot;, lhs.size(), rhs.size(), this-&gt;size()); // 5, 5, 5<br>


Rprintf(&quot;vals: %f, %f, %f, %f\n&quot;, lhs[0], rhs[0], lhs[1], rhs[1]); // 1.0, 1.0, 2.0, 2.0<br>Rprintf(&quot;ptrs: %p, %p\n&quot;, &amp;lhs, &amp;rhs); // reasonable addresses<br><br>But when you leave the constructor the two objects lhs and rhs get<br>


clobbered, even though their respective addresses seem not to<br>change. In particular, the following print statements when inserted<br>into operator[](int i) show garbage (and sometimes cause a crash):<br><br>Rprintf(&quot;ptrs: %p, %p\n&quot;, &amp;lhs, &amp;rhs); // this is OK, same addresses as above<br>


Rprintf(&quot;lhs_ = %f\n&quot;, lhs_); // 0.0 or garbage<br>Rprintf(&quot;rhs_ = %f\n&quot;, rhs_); // 0.0 or garbage<br>Rprintf(&quot;size = %d\n&quot;, lhs.size()); // usually crashes.<br><font color="#888888"><br>Dominick<br>

<br></font></div><div><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
<div>
<br>
<blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
(Under VC++ there are more serious problems including<br>
corruption of other in the wrap-up function<br>
Vector(VectorBase&amp; other), but since VC++ is not<br>
supported I will not elaborate here.)<br>
<br>
Thanks,<br>
Dominick<br>
</blockquote>
<br>
<br></div>
-- <br>
Romain Francois<br>
Professional R Enthusiast<br>
+33(0) 6 28 91 30 30<br>
<a href="http://romainfrancois.blog.free.fr" target="_blank">http://romainfrancois.blog.free.fr</a><br>
|- <a href="http://bit.ly/fT2rZM" target="_blank">http://bit.ly/fT2rZM</a> : highlight 0.2-5<br>
|- <a href="http://bit.ly/gpCSpH" target="_blank">http://bit.ly/gpCSpH</a> : Evolution of Rcpp code size<br>
`- <a href="http://bit.ly/hovakS" target="_blank">http://bit.ly/hovakS</a> : RcppGSL initial release<br>
<br>
<br>
_______________________________________________<br>
Rcpp-devel mailing list<br>
<a href="mailto:Rcpp-devel@lists.r-forge.r-project.org" target="_blank">Rcpp-devel@lists.r-forge.r-project.org</a><br>
<a href="https://lists.r-forge.r-project.org/cgi-bin/mailman/listinfo/rcpp-devel" target="_blank">https://lists.r-forge.r-project.org/cgi-bin/mailman/listinfo/rcpp-devel</a><br>
</blockquote></div></div><br>
</blockquote></div><br>
</div></div></blockquote></div><br>