How Can I Vectorize a Computation in a Python Device Simulation Algorithm?

  • Context: Python 
  • Thread starter Thread starter maverick280857
  • Start date Start date
  • Tags Tags
    Python
Click For Summary

Discussion Overview

The discussion revolves around vectorizing a computation in a Python device simulation algorithm, specifically focusing on the calculation of a matrix expression involving Green's functions and a diagonal self-energy matrix. Participants explore methods to optimize this computation to improve performance and avoid long execution times.

Discussion Character

  • Exploratory
  • Technical explanation
  • Debate/contested
  • Mathematical reasoning

Main Points Raised

  • One participant describes a naive implementation of the computation that takes a long time to execute and sometimes crashes the laptop.
  • Another participant suggests that the computation could be vectorized by partitioning the range of indices or by exploiting properties of the Green's function and the diagonal nature of the self-energy matrix.
  • There is a question about whether there are known algebraic constraints on the Green's function matrix, to which a participant responds that it is simply a matrix representation without specific constraints.
  • One participant seeks clarification on the notation of the self-energy matrix, specifically the significance of the subscripts 'c' and 'in', leading to a detailed explanation of its composition from inscattering matrices related to contacts in a many-body problem.
  • Another participant questions if there are constraints related to the eigenspaces of the Green's function.

Areas of Agreement / Disagreement

Participants express varying opinions on the best approach to vectorize the computation, with no consensus reached on a definitive method or the existence of constraints on the Green's function.

Contextual Notes

Participants discuss the computational challenges associated with large matrix operations and the implications of the diagonal structure of the self-energy matrix, but do not resolve the mathematical steps or assumptions involved in the proposed methods.

Who May Find This Useful

Researchers and practitioners working on device simulations, computational physics, or those interested in optimizing matrix computations in Python.

maverick280857
Messages
1,774
Reaction score
5
Hi,

I am working on a device simulation algorithm, and am implementing it in Python on my laptop that runs Arch Linux. A particular step requires me to perform a computation of the form

\tilde{G} = G \Sigma_{c}^{in} G^{\dagger}

where G and \Sigma_{c}^{in} are both N \times N matrices, and \Sigma_{c}^{in} is in fact a diagonal matrix.

N is of the order of 5040

Now, if I do this naively, the command to do it in Python is

Code:
Gtilde_n = Gtilde_n + dot( dot(G, sigcIn), conjugate(transpose(G)) )

(The addition is for purposes of sub-band summation, and isn't relevant to the question I'm posing.)

but this takes about 2 hours when it works (sometimes it just crashes my laptop).

Now if I utilize the fact that \Sigma_{c}^{in} is diagonal, then I can do something more naive and write a for loop of the form

Code:
              for row in range(0,N):
                      for col in range(0,N):
                              sum = 0
                              for alpha in range(0,N):
                                      sum = sum + G[row,alpha]*sigcIn[alpha,alpha]*conjugate(G[col,alpha])
                              Gtilde_n[row,col] = Gtilde_n[row,col] + sum

But this doesn't look like a nice piece of code: it has 3 nested for loops, and looks a rather ancient way of doing the following calculation

\tilde{G}_{ij} = \sum_{\alpha}\sum_{\beta} G_{i\alpha}(\Sigma_{c}^{in})_{\alpha\beta}(G^{\dagger})_{\beta j} = \sum_{\alpha,\beta} G_{i\alpha}(\Sigma_{c}^{in})_{\alpha\alpha}\delta_{\alpha\beta} (G^{\dagger})_{\beta j} =\sum_{\alpha} G_{i\alpha}(\Sigma_{c}^{in})_{\alpha\alpha}G^{*}_{j\alpha}

Is there some way to vectorize this?

In general, is there a better way to perform this computation?
 
Last edited:
Technology news on Phys.org
maverick280857 said:
G_{ij} = \cdots = \sum_{\alpha} G_{i\alpha}(\Sigma_{c}^{in})_{\alpha\alpha}G^{*}_{j\alpha}

maverick280857 said:
Is there some way to vectorize this?

Trivially by partioning α's range for each ij, but I would rather try to exploit this
G_{i\alpha} G^{*}_{j\alpha} = \left(G_{j\alpha} G^{*}_{i\alpha}\right)^{*} or/and(given Σ is real, what I suspect) premultiplying all (G_{i})_{\alpha} vectors component-wise by a vector made of the Σ diag components. That could well be done in parallel.

maverick280857 said:
In general, is there a better way to perform this computation?
Are there any known algebraic constraints on G?
 
Last edited:
Thanks for your reply.

Solkar said:
Are there any known algebraic constraints on G?

No, its just the matrix representation of a Green's function.
 
What does this notation mean - \Sigma_{c}^{in}?

You said that it was a diagonal matrix, but I'm curious about the significance of c and in.
 
maverick280857 said:
No, its just the matrix representation of a Green's function.

You're sure there's no constraint related to its eigenspaces?
 
Last edited:
Mark44 said:
What does this notation mean - \Sigma_{c}^{in}?

You said that it was a diagonal matrix, but I'm curious about the significance of c and in.

So \Sigma_{c}^{in} = \Sigma_{1}^{in} + \Sigma_{2}^{in} is simply the sum of two so called inscattering matrices, computed from the self-energy in a many body problem. There are two terms because there are two contacts. For each contact,

\Sigma_{k}^{in} = f(E)\Gamma_k

k = 1, 2, and

\Gamma_k = i[\Sigma_k - \Sigma_k^\dagger]

It turns out that \Gamma_i[/itex] is a real matrix, i.e. all its elements are real.
 

Similar threads

  • · Replies 0 ·
Replies
0
Views
2K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 6 ·
Replies
6
Views
5K
  • · Replies 8 ·
Replies
8
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 16 ·
Replies
16
Views
4K
Replies
3
Views
4K
  • · Replies 17 ·
Replies
17
Views
3K