12.06.2013 Views

Software Development on Quest

Software Development on Quest

Software Development on Quest

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

do i=1,n<br />

A(i)=A(i) + B(i)*C<br />

end do<br />

Stuck? Need help?<br />

quest-help@northwestern.edu<br />

Loop unrolling<br />

do i=1,n,4<br />

A(i)=A(i) + B(i)*C<br />

A(i+1)=A(i+1) + B(i+1)*C<br />

A(i+2)=A(i+2) + B(i+2)*C<br />

A(i+3)=A(i+3) + B(i+3)*C<br />

end do<br />

Perform more operati<strong>on</strong>s per iterati<strong>on</strong><br />

inside the loop

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!