<< Chapter < Page Chapter >> Page >
C ( g ) = Q g ( 1 ) c g ( 2 ) c g ( 3 ) + r g ( 1 ) Q g ( 2 ) c g ( 3 ) + r g ( 1 ) r g ( 2 ) Q g ( 3 )

In general

C ( g ) = i = 1 n j = 1 i - 1 r g ( j ) Q g ( i ) j = i + 1 n c g ( j ) .

Therefore, the most efficient factorization of i A i is described by the permutation g ( · ) that minimizes C .

It turns out that for the Kronecker product of more than two matrices, the ordering of operations that describesthe most efficient factorization of i A i also depends only on the ratios ( r i - c i ) / Q i . To show that this is the case, suppose u ( · ) is the permutation that minimizes C , then u ( · ) has the property that

r u ( k ) - c u ( k ) Q u ( k ) r u ( k + 1 ) - c u ( k + 1 ) Q u ( k + 1 )

for k = 1 , , n - 1 . To support this, note that since u ( · ) is the permutation that minimizes C , we have in particular

C ( u ) C ( v )

where v ( · ) is the permutation defined by the following:

v ( i ) = { u ( i ) i < k , i > k + 1 u ( k + 1 ) i = k u ( k ) i = k + 1 .

Because only two terms in [link] are different, we have from [link]

i = k k + 1 j = 1 i - 1 r u ( j ) Q u ( i ) j = i + 1 n c u ( j ) i = k k + 1 j = 1 i - 1 r v ( j ) Q v ( i ) j = i + 1 n c v ( j )

which, after canceling common terms from each side, gives

Q u ( k ) c u ( k + 1 ) + r u ( k ) Q u ( k + 1 ) Q v ( k ) c v ( k + 1 ) + r v ( k ) Q v ( k + 1 ) .

Since v ( k ) = u ( k + 1 ) and v ( k + 1 ) = u ( k ) this becomes

Q u ( k ) c u ( k + 1 ) + r u ( k ) Q u ( k + 1 ) Q u ( k + 1 ) c u ( k ) + r u ( k + 1 ) Q u ( k )

which is equivalent to [link] . Therefore, to find the best factorization of i A i it is necessary only to compute the ratios ( r i - c i ) / Q i and to order them in an non-decreasing order. The operation A i whose index appears first in this list is applied to the data vector x first, and so on

As above, if r u ( k + 1 ) > c u ( k + 1 ) and r u ( k ) < c u ( k ) then [link] is always true. Therefore, in the most computationally efficientfactorization of i A i , all matrices with fewer rows than columns are always applied to the data vector x before any matrices with more rows than columns.If some matrices are square, then their ordering does not affect the computational efficiency as longas they are applied after all matrices with fewer rows than columns and before all matrices with more rows than columns.

Once the permutation g ( · ) that minimizes C is determined by ordering the ratios ( r i - c i ) / Q i , i A i can be written as

i = 1 n A i = i = n 1 I a ( i ) A g ( i ) I b ( i )

where

a ( i ) = k = 1 g ( i ) - 1 γ ( i , k )
b ( i ) = k = g ( i ) + 1 n γ ( i , k )

and where γ ( · ) is defined by

γ ( i , k ) = { r k if g ( i ) > g ( k ) c k if g ( i ) < g ( k ) .

Some matlab code

A Matlab program that computes the permutation that describes the computationally most efficientfactorization of i = 1 n A i is cgc() . It also gives the resulting computational cost.It requires the computational cost of each of the matrices A i and the number of rows and columns of each.

function [g,C] = cgc(Q,r,c,n)% [g,C] = cgc(Q,r,c,n);% Compute g and C % g : permutation that minimizes C% C : computational cost of Kronecker product of A(1),...,A(n) % Q : computation cost of A(i)% r : rows of A(i) % c : columns of A(i)% n : number of terms f = find(Q==0);Q(f) = eps * ones(size(Q(f))); Q = Q(:);r = r(:); c = c(:);[s,g] = sort((r-c)./Q);C = 0; for i = 1:nC = C + prod(r(g(1:i-1)))*Q(g(i))*prod(c(g(i+1:n))); endC = round(C);

The Matlab program kpi() implements the Kronecker product i = 1 n A i .

function y = kpi(d,g,r,c,n,x) % y = kpi(d,g,r,c,n,x);% Kronecker Product : A(d(1)) kron ... kron A(d(n)) % g : permutation of 1,...,n% r : [r(1),...,r(n)] % c : [c(1),..,c(n)]% r(i) : rows of A(d(i)) % c(i) : columns of A(d(i))% n : number of terms for i = 1:na = 1; for k = 1:(g(i)-1)if i>find(g==k) a = a * r(k);else a = a * c(k);end endb = 1; for k = (g(i)+1):nif i>find(g==k) b = b * r(k);else b = b * c(k);end end% y = (I(a) kron A(d(g(i))) kron I(b)) * x; y = IAI(d(g(i)),a,b,x);end

where the last line of code calls a function that implements ( I a A d ( g ( i ) ) I b ) x . That is, the program IAI(i,a,b,x) implements ( I a A ( i ) I b ) x .

The Matlab program IAI implements y = ( I m A I n ) x

function y = IAI(A,r,c,m,n,x) % y = (I(m) kron A kron I(n))x% r : number of rows of A % c : number of columns of Av = 0:n:n*(r-1); u = 0:n:n*(c-1);for i = 0:m-1 for j = 0:n-1y(v+i*r*n+j+1) = A * x(u+i*c*n+j+1); endend

It simply uses two loops to implement the m n copies of A . Each copy of A is applied to a different subset of the elements of x .

Vector/parallel interpretation

The command I A I where is the Kronecker (or Tensor) product can be interpreted as avector/parallel command [link] , [link] . In these references, the implementation of thesecommands is discussed in detail and they have found that the Tensor product is“an extremely useful tool for matching algorithms to computer architectures [link] .”

The expression I A can easily be seen to represent a parallel command:

I A = A A A .

Each block along the diagonal acts on non-overlapping sections of the data vector - so that each sectioncan be performed in parallel. Since each section represents exactly the same operation, this form isamenable to implementation on a computer with aparallel architectural configuration. The expression A I can be similarly seen to represent a vector command, see [link] .

It should also be noted that by employing `stride' permutations, the command ( I A I ) x can be replaced by either ( I A ) x or ( A I ) x [link] , [link] . It is only necessary to permute the input and output.It is also the case that these stride permutations are natural loading and storing commands for some architectures.

In the programs we have written in conjunction with this paper we implement the commands y = ( I A I ) x with loops in a set of subroutines. The circular convolution and prime length FFT programswe present, however, explicitly use the form I A I to make clear the structure of the algorithm, to make themmore modular and simpler, and to make them amenable to implementation on special architectures.In fact, in [link] it is suggested that it might be practical to develop tensor product compilers.The FFT programs we have generated will be well suited for such compilers.

Questions & Answers

differentiate between demand and supply giving examples
Lambiv Reply
differentiated between demand and supply using examples
Lambiv
what is labour ?
Lambiv
how will I do?
Venny Reply
how is the graph works?I don't fully understand
Rezat Reply
information
Eliyee
devaluation
Eliyee
t
WARKISA
hi guys good evening to all
Lambiv
multiple choice question
Aster Reply
appreciation
Eliyee
explain perfect market
Lindiwe Reply
In economics, a perfect market refers to a theoretical construct where all participants have perfect information, goods are homogenous, there are no barriers to entry or exit, and prices are determined solely by supply and demand. It's an idealized model used for analysis,
Ezea
What is ceteris paribus?
Shukri Reply
other things being equal
AI-Robot
When MP₁ becomes negative, TP start to decline. Extuples Suppose that the short-run production function of certain cut-flower firm is given by: Q=4KL-0.6K2 - 0.112 • Where is quantity of cut flower produced, I is labour input and K is fixed capital input (K-5). Determine the average product of lab
Kelo
Extuples Suppose that the short-run production function of certain cut-flower firm is given by: Q=4KL-0.6K2 - 0.112 • Where is quantity of cut flower produced, I is labour input and K is fixed capital input (K-5). Determine the average product of labour (APL) and marginal product of labour (MPL)
Kelo
yes,thank you
Shukri
Can I ask you other question?
Shukri
what is monopoly mean?
Habtamu Reply
What is different between quantity demand and demand?
Shukri Reply
Quantity demanded refers to the specific amount of a good or service that consumers are willing and able to purchase at a give price and within a specific time period. Demand, on the other hand, is a broader concept that encompasses the entire relationship between price and quantity demanded
Ezea
ok
Shukri
how do you save a country economic situation when it's falling apart
Lilia Reply
what is the difference between economic growth and development
Fiker Reply
Economic growth as an increase in the production and consumption of goods and services within an economy.but Economic development as a broader concept that encompasses not only economic growth but also social & human well being.
Shukri
production function means
Jabir
What do you think is more important to focus on when considering inequality ?
Abdisa Reply
any question about economics?
Awais Reply
sir...I just want to ask one question... Define the term contract curve? if you are free please help me to find this answer 🙏
Asui
it is a curve that we get after connecting the pareto optimal combinations of two consumers after their mutually beneficial trade offs
Awais
thank you so much 👍 sir
Asui
In economics, the contract curve refers to the set of points in an Edgeworth box diagram where both parties involved in a trade cannot be made better off without making one of them worse off. It represents the Pareto efficient allocations of goods between two individuals or entities, where neither p
Cornelius
In economics, the contract curve refers to the set of points in an Edgeworth box diagram where both parties involved in a trade cannot be made better off without making one of them worse off. It represents the Pareto efficient allocations of goods between two individuals or entities,
Cornelius
Suppose a consumer consuming two commodities X and Y has The following utility function u=X0.4 Y0.6. If the price of the X and Y are 2 and 3 respectively and income Constraint is birr 50. A,Calculate quantities of x and y which maximize utility. B,Calculate value of Lagrange multiplier. C,Calculate quantities of X and Y consumed with a given price. D,alculate optimum level of output .
Feyisa Reply
Answer
Feyisa
c
Jabir
the market for lemon has 10 potential consumers, each having an individual demand curve p=101-10Qi, where p is price in dollar's per cup and Qi is the number of cups demanded per week by the i th consumer.Find the market demand curve using algebra. Draw an individual demand curve and the market dema
Gsbwnw Reply
suppose the production function is given by ( L, K)=L¼K¾.assuming capital is fixed find APL and MPL. consider the following short run production function:Q=6L²-0.4L³ a) find the value of L that maximizes output b)find the value of L that maximizes marginal product
Abdureman
types of unemployment
Yomi Reply
What is the difference between perfect competition and monopolistic competition?
Mohammed
Got questions? Join the online conversation and get instant answers!
Jobilize.com Reply

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Automatic generation of prime length fft programs. OpenStax CNX. Sep 09, 2009 Download for free at http://cnx.org/content/col10596/1.4
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Automatic generation of prime length fft programs' conversation and receive update notifications?

Ask