<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
<HTML>
<HEAD>
  <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=UTF-8">
  <META NAME="GENERATOR" CONTENT="GtkHTML/3.26.0">
</HEAD>
<BODY>
Yes, thats the idea. I suppose that can be implemented.<BR>
An obvious simplification, is&nbsp; to avoid declarations like<BR>
<BR>
double e1 = a;<BR>
<BR>
for symbols, as declaration<BR>
<BR>
double a = my_a;<BR>
<BR>
makes the symbol already available.<BR>
<BR>
I would consider such a functionality really important for GiNaC. Lots of people is using GiNaC, to<BR>
output code (thats my case, matlab/octave/ and c), and this would produce highly optimal<BR>
code in terms of space and speed as lots of computations can be avoided.<BR>
<BR>
It would be nice if some power developer could say something about the proper way to go, and<BR>
impressions about possibilities to make it a part of GiNaC.<BR>
<BR>
Thank you,<BR>
<BR>
Javier<BR>
<BR>
<BR>
On Thu, 2010-05-13 at 11:47 -0700, Doug wrote:<BR>
<BLOCKQUOTE TYPE=CITE>
    <TABLE CELLSPACING="0" CELLPADDING="0">
<TR>
<TD VALIGN="top">
Javier, All,<BR>
<BR>
I think what we need can be done with two print functions, as described below.&nbsp; It seems straightforward enough that I can implement this myself, but I wonder if it already exists somewhere?&nbsp; Is this something the developers would consider adding to Ginac?<BR>
<BR>
Thanks,<BR>
Doug<BR>
<BR>
---------------------<BR>
<BR>
Perhaps this is a clean solution.&nbsp; One could write a print function that outputs C++ code that explicitly names and declares sub-expressions.&nbsp; You also have a companion print function that just emits the name of the top-level expression.&nbsp; Call them print_declarations() and print_variable_name().&nbsp; <BR>
<BR>
For example, suppose you have an expression like this: <BR>
&nbsp;&nbsp; &nbsp; ex myex = a + b*pow(c+d+e,2.0) + f/(g*h + i*j);<BR>
For simplicity's sake, let each symbol just be a variable (e.g. symbol a(&quot;my_a&quot;)), but of course they can be anything.&nbsp; print_declarations() can emit these declarations below during a post-order traversal of the expression tree.&nbsp; <BR>
<BR>
// Symbols<BR>
double a = my_a;<BR>
double b = my_b; <BR>
[...]<BR>
double j = my_j;<BR>
// Expressions<BR>
double e1 = a;<BR>
double e2 = b;<BR>
double e3 = c;<BR>
double e4 = d;<BR>
double e5 = e;<BR>
double e6 = e3 + e4 + e5;<BR>
double e7 = pow(e6, 2.0);<BR>
double e8 = e2 * e7;<BR>
double e9 = f;<BR>
double e10 = g; <BR>
double e11 = h;<BR>
double e12 = e10*e11;<BR>
double e13 = i;<BR>
double e14 = j;<BR>
double e15 = e13*e14;<BR>
double e16 = e12 + e15;<BR>
double e17 = e9 / e16;<BR>
double e18 = e1 + e8 + e17;<BR>
<BR>
print_variable_name() can then just emit e18 for the example expression, to be used however you would normally use C++ code that you print.<BR>
<BR>
Then, assuming ginac is smart about not having separate expression tree nodes for duplicated sub-expressions, you will declare each sub-expression just once.&nbsp; The order ginac uses for expressions does not matter at all.<BR>
<BR>
Support NPR 20 seconds at a time. www.twentysecondsatatime.org<BR>
<BR>
--- On <B>Thu, 5/13/10, jros </B><B><I>&lt;jros@unavarra.es&gt;</I></B> wrote:<BR>
<BLOCKQUOTE>
    <BR>
    From: jros &lt;jros@unavarra.es&gt;<BR>
    Subject: Re: [GiNaC-list] Term ordering and compiling C++ code<BR>
    To: &quot;GiNaC discussion list&quot; &lt;ginac-list@ginac.de&gt;<BR>
    Date: Thursday, May 13, 2010, 10:31 AM<BR>
    <BR>
</BLOCKQUOTE>
<BLOCKQUOTE>
    Hello,<BR>
    <BR>
    Although I don't have a solution for your problem, as I'm myself addressing similar problems<BR>
    matching common subexpressions to variables, in down top manner, I think that such a functionality<BR>
    is implicitly implemented in GiNaC.<BR>
    <BR>
    If I understand GiNaC internal structure correctly, subexpressions common to two expresions,<BR>
    are frequently&nbsp; shared internally, to save memory.<BR>
    <BR>
    So it must be possible to write a print algorithm that goes trough an/some expression/s tree, and that replaces<BR>
    every shared subexpression (let say sum product) with a variable, that again is assigned a expression that would be printed<BR>
    in the same way using recursion. <BR>
    <BR>
    Probably allowing/disallowing some kind automatic simplifications (so that subexpression sharing expected value increases) can probably help to obtain improved results.<BR>
    <BR>
    I wonder what do the developers think about this.<BR>
    <BR>
    Cheers,<BR>
    <BR>
    Javier<BR>
    <BR>
    <BR>
    On Thu, 2010-05-13 at 07:11 -0700, Doug wrote:<BR>
    <BLOCKQUOTE TYPE=CITE>
        <TABLE CELLSPACING="0" CELLPADDING="0">
<TR>
<TD VALIGN="top">
Hi,<BR>
<BR>
I'm running into a term ordering problem like the one mentioned in this post.<BR>
http://permalink.gmane.org/gmane.comp.mathematics.ginac.general/1107<BR>
<BR>
Relevant details about my application are below, for the curious.&nbsp; The short of it, though, is that the C++ code I am generating with ginac is so large (50MB) that the compiler can't handle it, and moreover, the values being represented by ginac symbols are array accesses that the compiler can't optimize away.&nbsp; So I need to create temporary values and do sub-expression elimination on the C++ code just so the compiler can have a chance.&nbsp; I have successfully done this using search-and-replace on the C++ code for other applications, but I guess I was just lucky that ginac printed terms in a consistent order.<BR>
<BR>
Is this a problem other ginac users have confronted?&nbsp; From the answer to the above post, it sounds like I need to write my own print function that can ensure expressions are printed in a predictable order.&nbsp; It looks like I can also inspect the expression tree and possibly do a proper job of common sub-expression elimination.&nbsp; But if there is an easier approach, I'd be very grateful for a pointer or two.<BR>
<BR>
Thanks,<BR>
Doug Baker<BR>
<BR>
-------------------<BR>
Background Details<BR>
-------------------<BR>
<BR>
My application is related to visual odometry.&nbsp; I am computing the gradient and hessian for a function of 10 variables that involves converting quaternions to rotation matrices, applying those matrices to 3D points and projecting those points onto a 2D plane.<BR>
<BR>
I am generating code with ginac that is initially 50MB of C++ code. (And thank you for ginac being able to handle that monstrosity with such grace.)&nbsp; The input symbols are all array elements (e.g. symbol x(&quot;state[t+X]&quot;)) or function calls (e.g. symbol rTi11(&quot;rTi.getValue&lt;1,1&gt;()&quot;)).<BR>
<BR>
If I take the printed output from ginac as is, the C++ compiler can't properly optimize it because it doesn't know that state[t+X] is a constant or that getValue is constant.&nbsp; Moreover, the expressions have huge repeated expressions, and these bog the compiler down, too.<BR>
<BR>
I've been able to use a simple search-and-replace approach in other problems, and on this one that same approach has gotten me from 50MB to 6MB or so, but the term ordering issue is biting me now.&nbsp; For example, I have one sum (a+b+c+d) that occurs 232608 times.&nbsp; But there are 4! = 24 permutations of that sum that I'd have to replace.&nbsp; It's worse than that, though, because that's not the only expression like it.&nbsp; Some are bigger, like this: (-2.0*sK/sKSIJ+4.0*sK*sS2/pKSIJ2+-4.0*sI*sJ*sS/pKSIJ2). This has something like 72 permutations, not even counting the permutations of pKSIJ and pKSIJ2, which are themselves expressions like (a+b+c+d).&nbsp; And not only are there variations on this due to term ordering, similar expressions occur with different variables (e.g. with sJ instead of sK, etc.)&nbsp; So when all these expressions can be output in various orders, it's no longer feasible to generate all the permutations for search-and-replace.<BR>
<BR>
<BR>
Support NPR 20 seconds at a time. www.twentysecondsatatime.org
</TD>
</TR>
</TABLE>
        <BR>
<PRE>
_______________________________________________
GiNaC-list mailing list
<A HREF="mailto:GiNaC-list@ginac.de">GiNaC-list@ginac.de</A>
<A HREF="https://www.cebix.net/mailman/listinfo/ginac-list">https://www.cebix.net/mailman/listinfo/ginac-list</A>
</PRE>
    </BLOCKQUOTE>
</BLOCKQUOTE>
<BLOCKQUOTE>
    <BR>
    -----Inline Attachment Follows-----<BR>
    <BR>
</BLOCKQUOTE>
<BLOCKQUOTE>
    _______________________________________________<BR>
    GiNaC-list mailing list<BR>
    <A HREF="/mc/compose?to=GiNaC-list@ginac.de">GiNaC-list@ginac.de</A><BR>
    <A HREF="https://www.cebix.net/mailman/listinfo/ginac-list">https://www.cebix.net/mailman/listinfo/ginac-list</A><BR>
    <BR>
</BLOCKQUOTE>
</TD>
</TR>
</TABLE>
    <BR>
</BLOCKQUOTE>
</BODY>
</HTML>