473,387 Members | 1,721 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Scripting and block data manipulation- how to preserve performance

I have an application that manipulates large arrays of image data of
various types, all the usual arithmetic operations on the data objects
are supported. With careful design and tricks similar to those in
UBLAS (http://www.boost.org/libs/numeric/ublas/doc/) I have been able
to avoid temporaries where appropriate and carefully optimize code
(C++) that evaluates expressions, for example

Image A, B, C, D, E
A=((B+C)/D)+E

In this expression A is evaluated directly by looping through the
elements of B,C,D,E.

This all works fine and dandy if the image expressions are known at
compile time, but when it comes to scripting at run-time the
opimizations are lost. The only technique that preserves efficiency is
to generate object code for the image expression at run-time. In other
words build a simple expression compiler into the application and have
it generate native assembler as needed.

Is there precedent for this type of approach? Comments, ideas and
pointers to existing implementations would be most welcome.
Jul 23 '05 #1
9 1771
Code4u wrote:
UBLAS (http://www.boost.org/libs/numeric/ublas/doc/) I have been able
to avoid temporaries where appropriate and carefully optimize code
(C++) that evaluates expressions, for example

Image A, B, C, D, E
A=((B+C)/D)+E

In this expression A is evaluated directly by looping through the
elements of B,C,D,E.

This all works fine and dandy if the image expressions are known at
compile time, but when it comes to scripting at run-time the
opimizations are lost. The only technique that preserves efficiency
is to generate object code for the image expression at run-time.


Not the only. Your scripting can do the same that the C++ compiler does,
interpret adequately the expression and generate calls to the compose
operator functions. The difference in speed from this approach to generated
machine code will be very small, and the complexity and portability much
better.

--
Salu2
Jul 23 '05 #2
On Sun, 17 Jul 2005 23:57:11 +0200, Julián Albo <JU********@terra.es>
wrote:
Code4u wrote:
UBLAS (http://www.boost.org/libs/numeric/ublas/doc/) I have been able
to avoid temporaries where appropriate and carefully optimize code
(C++) that evaluates expressions, for example

Image A, B, C, D, E
A=((B+C)/D)+E

In this expression A is evaluated directly by looping through the
elements of B,C,D,E.

This all works fine and dandy if the image expressions are known at
compile time, but when it comes to scripting at run-time the
opimizations are lost. The only technique that preserves efficiency
is to generate object code for the image expression at run-time.


Not the only. Your scripting can do the same that the C++ compiler does,
interpret adequately the expression and generate calls to the compose
operator functions. The difference in speed from this approach to generated
machine code will be very small, and the complexity and portability much
better.


If I understand you correctly (perhaps not), I don't see how this
would generate efficient code. It's pretty easy to generate a series
of operator calls at run-time but this will not result in the loop
unrolling that maximises efficiency. In the above example the
following operators would be called in sequence:

operator+
operator/
operator+

In each operator call a loop iterates over the scalar values. The
problem is it is much less efficient than a combined operation:

for (size_t i=0; i<scalarCount; ++i)
{
a[i]=((b[i]+c[i])/d[i])+e[i];
}

In case the reason is not apparent- the above code will make much
better use of CPU cache because of the higher locality of reference
and uses a trivial amount of temporary storage. When tested with the
Visual Studio 2003 compiler I measure an average slowdown of x2 for
the version that uses composition of operators.

But how do we generate the equivalent object code at run-time? One
approach is to build an expression compiler into the application,
generate the required assembler, and call it.
Jul 23 '05 #3
Code4u wrote:
This all works fine and dandy if the image expressions are known at
compile time, but when it comes to scripting at run-time the
opimizations are lost. The only technique that preserves efficiency
is to generate object code for the image expression at run-time.
Not the only. Your scripting can do the same that the C++ compiler does,
interpret adequately the expression and generate calls to the compose
operator functions. The difference in speed from this approach to
generated machine code will be very small, and the complexity and
portability much better.


If I understand you correctly (perhaps not), I don't see how this
would generate efficient code. It's pretty easy to generate a series
of operator calls at run-time but this will not result in the loop
unrolling that maximises efficiency. In the above example the
following operators would be called in sequence:

operator+
operator/
operator+

In each operator call a loop iterates over the scalar values. The
problem is it is much less efficient than a combined operation:

for (size_t i=0; i<scalarCount; ++i)
{
a[i]=((b[i]+c[i])/d[i])+e[i];
}


And that is that I say. Your scripting engine can analyze the sequence and
call the combined operation instead of each individual operation in
sequence.

The loop unrolling probably can't be done in the scripting without great
effort. But if the operators are costly (and if you are working with image
data I suppose they are) the benefits of the loop unrolling will be
minimal.

And if you want the maximum efficience at all cost... well, you can write
the entire application in hand-optimized assembler.
But how do we generate the equivalent object code at run-time? One
approach is to build an expression compiler into the application,
generate the required assembler, and call it.


Don't know how your existing scripting engine actually works. If it
generates a stack machine, for example, a simple check os sequences of
operations in the machine can probably do the work. If it is a hand-coded
parser can be harder.

--
Salu2
Jul 23 '05 #4
Me
Code4u wrote:
I have an application that manipulates large arrays of image data of
various types, all the usual arithmetic operations on the data objects
are supported. With careful design and tricks similar to those in
UBLAS (http://www.boost.org/libs/numeric/ublas/doc/) I have been able
to avoid temporaries where appropriate and carefully optimize code
(C++) that evaluates expressions, for example

Image A, B, C, D, E
A=((B+C)/D)+E

In this expression A is evaluated directly by looping through the
elements of B,C,D,E.

This all works fine and dandy if the image expressions are known at
compile time, but when it comes to scripting at run-time the
opimizations are lost. The only technique that preserves efficiency is
to generate object code for the image expression at run-time. In other
words build a simple expression compiler into the application and have
it generate native assembler as needed.

Is there precedent for this type of approach? Comments, ideas and
pointers to existing implementations would be most welcome.


I'd profile this to see if it is really necessary (I'm assuming you're
doing this to eliminate temporaries and not to increase precision). For
example, instead of trying to convert that expression to:

for (size_t i = 0; i < len; ++i)
A[i]=((B[i]+C[i])/D[i])+E[i];

somehow. Try converting it to:

for (size_t i = 0; i < len; ++i)
A[i] = B[i] + C[i];

for (size_t i = 0; i < len; ++i)
A[i] = A[i] / D[i];

for (size_t i = 0; i < len; ++i)
A[i] = A[i] + E[i];

which doesn't involve any runtime code generation at all.

Jul 23 '05 #5
On Mon, 18 Jul 2005 08:34:53 +0200, Julián Albo <JU********@terra.es>
wrote:
And that is that I say.
Huh?
Your scripting engine can analyze the sequence and
call the combined operation instead of each individual operation in
sequence.

The loop unrolling probably can't be done in the scripting without great
effort. But if the operators are costly (and if you are working with image
data I suppose they are) the benefits of the loop unrolling will be
minimal.

Actually it's not, the average is a 2x speedup. That's huge.
And if you want the maximum efficience at all cost... well, you can write
the entire application in hand-optimized assembler.


I think there's a disconnect here. You don't seem to understand the
issue at hand.
Jul 23 '05 #6
Code4u wrote:
I think there's a disconnect here. You don't seem to understand the
issue at hand.


Maybe, but it's also possible thay you don't undesrtand what I propose.

--
Salu2
Jul 23 '05 #7
On Mon, 18 Jul 2005 16:15:16 +0200, Julián Albo <JU********@terra.es>
wrote:
Code4u wrote:
I think there's a disconnect here. You don't seem to understand the
issue at hand.


Maybe, but it's also possible thay you don't undesrtand what I propose.


You proposed composing the expression at run-time, yes? Such
composition is what I'm trying to avoid because it does not make
efficient use of cache. If I'm wrong, please restate and help me
understand what you propose, simple source code would help.

Thanks.
Jul 23 '05 #8
Code4u wrote:
You proposed composing the expression at run-time, yes? Such
composition is what I'm trying to avoid because it does not make
efficient use of cache.


Then I misunderstand you, I thinked you were worried about the use of
individual operations instead of the composites.

--
Salu2
Jul 23 '05 #9
Code4u wrote:
I have an application that manipulates large arrays of image data of
various types, all the usual arithmetic operations on the data objects
are supported. With careful design and tricks similar to those in
UBLAS (http://www.boost.org/libs/numeric/ublas/doc/) I have been able
to avoid temporaries where appropriate and carefully optimize code
(C++) that evaluates expressions, for example

Image A, B, C, D, E
A=((B+C)/D)+E

In this expression A is evaluated directly by looping through the
elements of B,C,D,E.

This all works fine and dandy if the image expressions are known at
compile time, but when it comes to scripting at run-time the
opimizations are lost. The only technique that preserves efficiency is
to generate object code for the image expression at run-time. In other
words build a simple expression compiler into the application and have
it generate native assembler as needed.

Is there precedent for this type of approach? Comments, ideas and
pointers to existing implementations would be most welcome.


I imagine that Matlab would be quite good at this sort of thing. So try
to find out how it does it.
Jul 23 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

80
by: Bibby | last post by:
Hi, I'm interested in getting started in the programming world. I've dabbled in C, C++ and VB6. Which would be the best language to focus my attention to regarding the following considerations: ...
79
by: Bibby | last post by:
Hi, I'm interested in getting started in the programming world. I've dabbled in C, C++ and VB6. Which would be the best language to focus my attention to regarding the following considerations: ...
17
by: Karl Irvin | last post by:
To use the Textstream object, I had to set a Reference to the Microsoft Scripting Runtime. This works good with A2000 Is the Scripting Runtime included with A2002 and A2003 so the Reference...
84
by: Bibby | last post by:
Hi, I'm interested in getting started in the programming world. I've dabbled in C, C++ and VB6. Which would be the best language to focus my attention to regarding the following considerations: ...
0
ADezii
by: ADezii | last post by:
This is the last in a series of Tips involving the Microsoft Scripting Runtime Library and deals with creating, opening, writing to, reading from, and closing Text Files via this Library. At this...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.