Loop unrolling is a loop optimization strategy.

learn more… | top users | synonyms

1
vote
2answers
124 views

How to tell the compiler to unroll this loop [duplicate]

I have the following loop that I am running on an ARM processor. // pin here is pointer to some part of an array for (i = 0; i < v->numelements; i++) { pe = pptr[i]; peParent = ...
1
vote
1answer
115 views

cuda - loop unrolling issue

I have a kernel with a #pragma unroll 80 and I'm running it with NVIDIA GT 285, compute capability 1.3, with grid architecture: dim3 thread_block( 16, 16 ) and dim3 grid( 40 , 30 ) and it works fine. ...
1
vote
3answers
165 views

(c++) any way to optimize this loop? can't use function pointer as its inside a class

Trying to optimize the fun_a1() function. The variable j does not change in the scope of fun_a1(). So, checking j==1 or 2 or 3 for each 'i' iteration is obviously a waste of CPU cycles. But if I try ...
1
vote
1answer
39 views

looping on flattened fortran matrices

I have a bit of code that looks like this: DO I=0,500 arg1((I*54+1):(I*54+54)) = premultz*sinphi(I+1) ENDDO In short, I have an array premultz of dimension 54. I have an array sinphi of ...
2
votes
3answers
93 views

Unrolling javascript loops

I have a cubic 3D array "class" like this: function Array3D(size) { this.data = new Array(size*size*size); var makeIndex = function(p) { return p[0] + p[1]*size + p[2]*size*size; ...
0
votes
1answer
513 views

Is there a way to unroll loops in an AMD OpenCL kernel with the compiler?

I'm trying to assess the performance differences between OpenCL for AMD and Nvidia GPUs. I have a kernel which performs matrix-vector multiplication. I'm running the kernel on two different systems at ...
0
votes
1answer
262 views

Why does gcc4 not unroll this loop?

In the gcc 4.4.6 docs it is stated: -funroll-all-loops: Unroll all loops, even if their number of iterations is uncertain when the loop isentered. I am compiling this code: int unroll(){ ...
1
vote
1answer
135 views

Loop unrolling and its effects on pipelining and CPE (have the solution, but don't understand it)

Below the line is a question on a practice test. The table actually has all the solutions filled in. However, I need clarification upon why the solutions are what they are. (Read the question below ...
4
votes
2answers
200 views

Loop unroll (with bitwise operations)

I am writing a Linux Kernel driver (for ARM) and in an irq handler I need to check the interrupt bits. bit 0/16 End point 0 In/Out interrupt (very likely, while In is more likely) 1/17 End ...
1
vote
2answers
74 views

How to be sure that a parameter will be treated as a constant during the compilation in C++?

I wonder if the two following implementations will produce exactly the same thing with the same performances whatever the compiler I use : template<class T, unsigned int TSIZE> MyClass1 { ...
7
votes
3answers
290 views

Can modern compilers unroll `for` loops expressed using begin and end iterators

Consider the following code vector<double> v; // fill v const vector<double>::iterator end =v.end(); for(vector<double>::iterator i = v.bgin(); i != end; ++i) { // do stuff ...
1
vote
1answer
160 views

Effects of Loop unrolling on memory bound data

I have been working with a piece of code which is intensively memory bound. I am trying to optimize it within a single core by manually implementing cache blocking, sw prefetching, loop unrolling etc. ...
0
votes
1answer
88 views

Loop unrolling to achieve parallelism

During a lecture my professor gave us the following loop: for (int i = 0; i < 100; i++) { a[i] = a[i] + b[i]; b[i + 1] = c[i] + d[i]; } He pointed out the dependency between iterations ...
5
votes
1answer
161 views

How to give the compiler the hint about the maximum time a loop would run

// if I know that in_x will never be bigger than Max template <unsigned Max> void foo(unsigned in_x) { unsigned cap = Max; // I can tell the compiler this loop will never run more than ...
1
vote
1answer
184 views

unrolling a while loop

original code while(i<30){ // do something i++; } unrolled while loop while(i<15){ // do something twice i+=2; } Cant we unroll it as shown above. Do we always have to do it like ...
0
votes
3answers
240 views

optimization tool

I wonder there are any tool to optimize my program in term of loop unrolling. If there is, how can I use it ? I have following python code : for i in range ( 0,1000 ) : a = a * 10 + ...
3
votes
1answer
750 views

Should I look into PTX to optimize my kernel?

Do you recommend reading your kernel's PTX code to find out to optimize your kernels further? One example: I read, that one can find out from the PTX code if the automatic loop unrolling worked. If ...
0
votes
1answer
74 views

Unrolling loops in one file

I'm writing Objective-C code with LLVM. I have one file full of very performance-critical code. Is it possible to turn on compiler optimizations (specifically, loop unrolling) for just this one file, ...
3
votes
4answers
544 views

How do optimizing compilers decide when and how much to unroll a loop?

When a compiler performs a loop-unroll optimization, how does it determined by which factor to unroll the loop or whether to unroll the whole loop? Since this is a space-performance trade-off, on ...
3
votes
1answer
591 views

`Out of resources` error while doing loop unrolling

When I increase the unrolling from 8 to 9 loops in my kernel, it breaks with an out of resources error. I read in How do I diagnose a CUDA launch failure due to being out of resources? that a ...
3
votes
1answer
570 views

Java JIT loop unrolling policy?

What is the loop unrolling policy for JIT? Or if there is no simple answer to that, then is there some way i can check where/when loop unrolling is being performed in a loop? GNode child = null; ...
3
votes
3answers
426 views

template arguments inside a compile time unrolled for loop?

wikipedia (here) gives a compile time unrolling of for loop....... i was wondering can we use a similar for loop with template statements inside... for example... is the following loop valid ...
1
vote
1answer
208 views

Profiling a benchmark compiled for the SPARC v8 on an x86

I'm trying to make a (small) improvement to the leon3 processor (instruction set is SPARC v8) for an academic exercise. Before I decide what to improve, I want to profile a couple of benchmark ...
2
votes
1answer
115 views

Loop unrolling in BASIC

I have an embedded processor that is running a trimmed down version of BASIC (Parallax BASIC Stamp). In a loop, I am writing 1024 values via the SPI bus. In compiled languages, more speed can be ...
5
votes
6answers
224 views

Unrolling loops using templates in C++ with partial specialization

I'm trying to use templates to unroll a loop in C++ as follows. #include <iostream> template< class T, T i > struct printDown { static void run(void) { std::cout << i ...