473,505 Members | 14,394 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Reversing the order of some loops.

I have a program that loops through and changes all the elements on an
array n times, so my code looks like this:

for (n=1; n < n_max; ++n)
for(i=imax; i >= 0; --i) {
for(j=0 ; j < jmax; ++j) {
/* main bulk of code goes here */
}
}

The problem is I want to reverse the order of the **two inner loops**,
so I have all 4 possible combinations of the loops incrementing and
decrement i and j. So on the first iteration of n (n=1), i and j will
both incremnt from 0 to their maximum values, but on another they will
decmement from their maximum values to 0. The second permetation would
be:

for(i=imax; i >= 0; --i) {
for(j=0 ; j < jmax; ++j) {
/* loads of code goes here */
}
}

where I have reversed the i loop, and this one where the j loop is
reversed. The other two combinations would be:

for(i=0; i< imax; ++i) {
for(j=jmax ; j >= 0; --j) {

And finally:

for(i=imax; i >= 0; --i) {
for(j=jmax ; j >= 0; --j) {

Can anyone find a ***neat*** way of doing this in a C function?
The only way I have found to do this is at the minute is rather ugly.
I have a C function (which could be main), with four #includes, and
four #defines, which includes a C source file. The exact ordering of
the loops in the included file depends on what is #defined in the main
file. In other words I have:
int main()
{
for(n=1; n < n_max; ++n) {

#define TO_BOTTOM_RIGHT
#include "update_voltage_array.c"
#undef TO_BOTTOM_RIGHT

#define TO_BOTTOM_LEFT
#include "update_voltage_array.c"
#undef TO_BOTTOM_LEFT

#define TO_TOP_RIGHT
#include "update_voltage_array.c"
#undef TO_TOP_RIGHT

#define TO_TOP_LEFT
#include "update_voltage_array.c"
#undef TO_TOP_LEFT
}
then in the file "update_voltage_array.c", I don't have a function,
but bits like this:

#ifdef TO_BOTTOM_RIGHT
for(i= 0; i <= imax; ++i){
for(j=0; j<=jmax; ++j) {
#endif

#ifdef TO_BOTTOM_LEFT
for(i= imax; i >=0 ; --i){
for(j=0; j<=jmax; ++j) {
#endif

#ifdef TO_TOP_RIGHT
for(i= 0; i <= imax; ++i){
for(j=height-1; j>=0; --j) {
#endif

#ifdef TO_TOP_LEFT
for(i= imax; i >=0; --i){
for(j=jmax; j>=0; --j) {
#endif
Can anyone think of a better way of achieving what I want to achieve?
Ideally a function which took a couple of arguments to determine how
the loops behave would be good, but I can't find a way of doing it.
Whilst its easy to pass the start and end points of the loops, I can
find no way of changing the "i < imax" to be an "i >= 0", so passing
those does not help.

Suggestions welcome.

Dr. David Kirkby.

My real email address can be found at:
http://homepage.ntlworld.com/drkirkby/home-email.jpg
Nov 13 '05 #1
4 2117
In article <c9*************************@posting.google.com> ,
Dr. David Kirkby <se**********************************@hotmail.co m> wrote:

Can anyone find a ***neat*** way of doing this in a C function?


for (n=1; n < n_max; n++)
for (k=0; k<4; k++)
for (i1=0; i1 < imax; i1++)
for (j1 = 0; j1 < jmax; j1++) {
i = n & 1 ? i1 : imax - i1;
j = n & 2 ? j1 : jmax - j1;
...
};

Or perhaps:

for (n=1; n < n_max; n++)
for (k=0; k<4; k++)
for (i = n&1 ? 0 : imax; n&1 ? i < imax : i >= 0 ; n&1 ? i++ : i--)
for (j = n&2 ? 0 : jmax; n&2 ? j < imax : j >= 0 ; n&2 ? j++ : j--) {
...
};

-- Brett
Nov 13 '05 #2

"Brett Frankenberger" <rb*@panix.com> wrote in message
news:bn**********@reader1.panix.com...
In article <c9*************************@posting.google.com> ,
Dr. David Kirkby <se**********************************@hotmail.co m> wrote:

Can anyone find a ***neat*** way of doing this in a C function?


for (n=1; n < n_max; n++)
for (k=0; k<4; k++)
for (i1=0; i1 < imax; i1++)
for (j1 = 0; j1 < jmax; j1++) {
i = n & 1 ? i1 : imax - i1;
j = n & 2 ? j1 : jmax - j1;
...
};

Or perhaps:

for (n=1; n < n_max; n++)
for (k=0; k<4; k++)
for (i = n&1 ? 0 : imax; n&1 ? i < imax : i >= 0 ; n&1 ? i++ : i--)
for (j = n&2 ? 0 : jmax; n&2 ? j < imax : j >= 0 ; n&2 ? j++ :

j--) {

I think you have some n's where you should have k's, but otherwise...

I would probably use a switch with four sets of loops inside. That would
give the compiler a chance to properly optimize each loop. Otherwise, the
fisst one might optimize better than the second, though the second probably
satisfies the "neat" requirement better.

Just to complain again about the lack of power of the C preprocessor
relative to PL/I, the PL/I preprocessor could expand four loops at compile
time a little easier than C.

-- glen
Nov 13 '05 #3

"Glen Herrmannsfeldt" <ga*@ugcs.caltech.edu> wrote in message
news:6a1mb.6076$ao4.13422@attbi_s51...

"Brett Frankenberger" <rb*@panix.com> wrote in message
news:bn**********@reader1.panix.com...
In article <c9*************************@posting.google.com> ,
Dr. David Kirkby <se**********************************@hotmail.co m> wrote:

Can anyone find a ***neat*** way of doing this in a C function?
for (n=1; n < n_max; n++)
for (k=0; k<4; k++)
for (i1=0; i1 < imax; i1++)
for (j1 = 0; j1 < jmax; j1++) {
i = n & 1 ? i1 : imax - i1;
j = n & 2 ? j1 : jmax - j1;
...
};

Or perhaps:

for (n=1; n < n_max; n++)
for (k=0; k<4; k++)
for (i = n&1 ? 0 : imax; n&1 ? i < imax : i >= 0 ; n&1 ? i++ : i--) for (j = n&2 ? 0 : jmax; n&2 ? j < imax : j >= 0 ; n&2 ?

j++ : j--) {

I think you have some n's where you should have k's, but otherwise...
I would probably use a switch with four sets of loops inside. That would give the compiler a chance to properly optimize each loop. Otherwise, the fisst one might optimize better than the second, though the second probably satisfies the "neat" requirement better.

Just to complain again about the lack of power of the C preprocessor
relative to PL/I, the PL/I preprocessor could expand four loops at compile time a little easier than C.

-- glen


And Fortran will unroll and inline the subroutine code even better
with no preprocessor help..

This problem seems to invite "parallelization" and the
Fortran syntax,

forall (i=1:imax,j=1:jmax) array_stuff

is a invitation for the compiler to generate multi-processor code.

Lacking multi-processing capability, I would put below in my exec,
and call the array stuff with appropriate indices..

! ----------------------
do n = 1,n_max

icase = mod(n-1,4)+1 ! 4 sequential "n cases"

select case (icase)
case (1)
do i = 1,imax
do j = 1,jmax
call array_stuff(i,j)
end do
end do
case (2)
do i = 1,imax
do j = jmax,1,-1
call array_stuff(i,j)
end do
end do
case (3)
do i = imax,1,-1
do j = 1,jmax
call array_stuff(i,j)
end do
end do
case (4)
do i = imax,1,-1
do j = jmax,1,-1
call array_stuff(i,j)
end do
end do
end select
end do
Nov 13 '05 #4

"David Frank" <da********@hotmail.com> wrote in message
news:hk*******************@twister.tampabay.rr.com ...

"Glen Herrmannsfeldt" <ga*@ugcs.caltech.edu> wrote in message
news:6a1mb.6076$ao4.13422@attbi_s51...

"Brett Frankenberger" <rb*@panix.com> wrote in message
news:bn**********@reader1.panix.com...
In article <c9*************************@posting.google.com> ,
Dr. David Kirkby <se**********************************@hotmail.co m> wrote: >
>Can anyone find a ***neat*** way of doing this in a C function?

for (n=1; n < n_max; n++)
for (k=0; k<4; k++)
for (i1=0; i1 < imax; i1++)
for (j1 = 0; j1 < jmax; j1++) {
i = n & 1 ? i1 : imax - i1;
j = n & 2 ? j1 : jmax - j1;
...
};

Or perhaps:

for (n=1; n < n_max; n++)
for (k=0; k<4; k++)
for (i = n&1 ? 0 : imax; n&1 ? i < imax : i >= 0 ; n&1 ? i++ : i--) for (j = n&2 ? 0 : jmax; n&2 ? j < imax : j >= 0 ; n&2 ?

j++ :
j--) {

I think you have some n's where you should have k's, but

otherwise...

I would probably use a switch with four sets of loops inside. That

would
give the compiler a chance to properly optimize each loop.

Otherwise, the
fisst one might optimize better than the second, though the second

probably
satisfies the "neat" requirement better.

Just to complain again about the lack of power of the C preprocessor
relative to PL/I, the PL/I preprocessor could expand four loops at

compile
time a little easier than C.

-- glen


And Fortran will unroll and inline the subroutine code even better
with no preprocessor help..

This problem seems to invite "parallelization" and the
Fortran syntax,

forall (i=1:imax,j=1:jmax) array_stuff

is a invitation for the compiler to generate multi-processor code.

Lacking multi-processing capability, I would put below in my exec,
and call the array stuff with appropriate indices..

! ----------------------
do n = 1,n_max

icase = mod(n-1,4)+1 ! 4 sequential "n cases"

select case (icase)
case (1)
do i = 1,imax
do j = 1,jmax
call array_stuff(i,j)
end do
end do
case (2)
do i = 1,imax
do j = jmax,1,-1
call array_stuff(i,j)
end do
end do
case (3)
do i = imax,1,-1
do j = 1,jmax
call array_stuff(i,j)
end do
end do
case (4)
do i = imax,1,-1
do j = jmax,1,-1
call array_stuff(i,j)
end do
end do
end select
end do


I don't think you are answering the right question.

What the PL/I preprocessor can do is generate the four different
combinations of increment/decrement loops. Well, that would be more
important if the stuff inside the loop were more complicated.

That doesn't have anything to do with parallelization. The original
question didn't say why those four choices were needed.

-- glen
Nov 13 '05 #5

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

Similar topics

4
5944
by: Kevin | last post by:
Hello, I need to some help in reversing an 2-dimensional array. I am working with gif images and I am trying to make the mirror image. I was hoping that someone could help give me a headstart...
1
13565
by: Scott | last post by:
I have a view that contains the following SQL1 and it takes about 500ms to run with Explain Plan EXP1. However, if I add an order by clause(e.g. select * from view1 order by ID desc), it will then...
1
1806
by: Paolo Tavalazzi | last post by:
I have 2 query that differ only for order by clause. The time of execution of the two query is a lot of different. 1) explain analyze select ...
2
2814
by: elein | last post by:
Yes, I vacuumed. Reproduced on both 7.3.2 and 7.5. Brain dead java beans want order by clauses in views that they use. my view is: select .... from bigtable b left join lookuptable l order...
11
8007
by: Tim Marshall | last post by:
I use Terry Kreft's & Stephen Lebans colour dialog procedures for users to pick colours for various control properties in certain apps. Is there a way to take the colour code that is displayed in...
46
2087
by: Albert | last post by:
Why doesn't: #include <stdio.h> void reverse(char, int); main() { char s;
8
4741
by: arnuld | last post by:
i have created a solutions myself. it compiles without any trouble and runs but it prints some strange characters. i am not able to find where is the trouble. ...
16
2057
by: Scott | last post by:
Yeah I know strings == immutable, but question 1 in section 7.14 of "How to think like a computer Scientist" has me trying to reverse one. I've come up with two things, one works almost like it...
7
5086
by: benn686 | last post by:
Anyone know of an efficient way of reversing the bits of a word??
0
7098
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
7367
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
7018
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
5613
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
5028
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
3187
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3176
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1528
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
0
407
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

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.