mirror of
https://github.com/triqs/dft_tools
synced 2025-01-09 12:44:03 +01:00
from_L_G_R requires a Green function with data layed out in C-order
This commit is contained in:
parent
b69baf140e
commit
6a8d838b20
@ -1860,7 +1860,7 @@ class SumkDFT(object):
|
|||||||
v = numpy.eye(*ss.target_shape)
|
v = numpy.eye(*ss.target_shape)
|
||||||
C = False
|
C = False
|
||||||
if C:
|
if C:
|
||||||
gf_to_symm[key].from_L_G_R(v, ss.transpose(), v.conjugate().transpose())
|
gf_to_symm[key].from_L_G_R(v, ss.transpose().copy(), v.conjugate().transpose())
|
||||||
else:
|
else:
|
||||||
gf_to_symm[key].from_L_G_R(v, ss, v.conjugate().transpose())
|
gf_to_symm[key].from_L_G_R(v, ss, v.conjugate().transpose())
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user