This shows you the differences between two versions of the page.
Both sides previous revision Previous revision | |||
howtos:toolcoding:performance_tuning [2011/06/22 21:01] chris.strashok |
howtos:toolcoding:performance_tuning [2011/06/22 21:01] (current) chris.strashok |
||
---|---|---|---|
Line 115: | Line 115: | ||
The input object is A[a,b] and the output object is B[c,d] | The input object is A[a,b] and the output object is B[c,d] | ||
- | TOOL will bring in all of the elements contained in the dimensions a, b, c, and d into memory. The memory requirement can be written as memory = extent(a) * extent(b) * extent(c) * extent(d) | + | TOOL will bring in all of the elements contained in the dimensions a, b, c, and d into memory. The memory requirement can be written as memory = extent[a] * extent[b] * extent[c] * extent[d] |