Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
K
kwant
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Joseph Weston
kwant
Commits
2f3bcdc1
Commit
2f3bcdc1
authored
7 years ago
by
Joseph Weston
Browse files
Options
Downloads
Patches
Plain Diff
factor out complex array construction
parent
bf091ced
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
kwant/linalg/lapack.pyx
+14
-20
14 additions, 20 deletions
kwant/linalg/lapack.pyx
with
14 additions
and
20 deletions
kwant/linalg/lapack.pyx
+
14
−
20
View file @
2f3bcdc1
...
...
@@ -75,6 +75,16 @@ def assert_fortran_mat(*mats):
raise
ValueError
(
"
Input matrix must be Fortran contiguous
"
)
cdef
np
.
ndarray
maybe_complex
(
scalar
selector
,
np
.
ndarray
real
,
np
.
ndarray
imag
):
cdef
np
.
ndarray
r
r
=
real
if
scalar
in
floating
:
if
imag
.
nonzero
()[
0
].
size
:
r
=
real
+
1j
*
imag
return
r
cdef
l_int
lwork_from_qwork
(
scalar
qwork
):
if
scalar
in
floating
:
return
<
l_int
>
qwork
...
...
@@ -498,11 +508,7 @@ def gees(np.ndarray[scalar, ndim=2] A, calc_q=True, calc_ev=True):
assert
info
==
0
,
"
Argument error in gees
"
# Real inputs possibly produce complex output
cdef
np
.
ndarray
w
w
=
wr
if
scalar
in
floating
:
if
wi
.
nonzero
()[
0
].
size
:
w
=
wr
+
1j
*
wi
cdef
np
.
ndarray
w
=
maybe_complex
[
scalar
](
0
,
wr
,
wi
)
return
filter_args
((
True
,
calc_q
,
calc_ev
),
(
A
,
vs
,
w
))
...
...
@@ -603,11 +609,7 @@ def trsen(np.ndarray[l_logical] select,
assert
info
==
0
,
"
Argument error in trsen
"
# Real inputs possibly produce complex output
cdef
np
.
ndarray
w
w
=
wr
if
scalar
in
floating
:
if
wi
.
nonzero
()[
0
].
size
:
w
=
wr
+
1j
*
wi
cdef
np
.
ndarray
w
=
maybe_complex
[
scalar
](
0
,
wr
,
wi
)
return
filter_args
((
True
,
Q
is
not
None
,
calc_ev
),
(
T
,
Q
,
w
))
...
...
@@ -938,11 +940,7 @@ def gges(np.ndarray[scalar, ndim=2] A,
assert
info
==
0
,
"
Argument error in gges
"
# Real inputs possibly produce complex output
cdef
np
.
ndarray
alpha
alpha
=
alphar
if
scalar
in
floating
:
if
alphai
.
nonzero
()[
0
].
size
:
alpha
=
alphar
+
1j
*
alphai
cdef
np
.
ndarray
alpha
=
maybe_complex
[
scalar
](
0
,
alphar
,
alphai
)
return
filter_args
((
True
,
True
,
calc_q
,
calc_z
,
calc_ev
,
calc_ev
),
(
A
,
B
,
vsl
,
vsr
,
alpha
,
beta
))
...
...
@@ -1091,11 +1089,7 @@ def tgsen(np.ndarray[l_logical] select,
assert
info
==
0
,
"
Argument error in tgsen
"
# Real inputs possibly produce complex output
cdef
np
.
ndarray
alpha
alpha
=
alphar
if
scalar
in
floating
:
if
alphai
.
nonzero
()[
0
].
size
:
alpha
=
alphar
+
1j
*
alphai
cdef
np
.
ndarray
alpha
=
maybe_complex
[
scalar
](
0
,
alphar
,
alphai
)
return
filter_args
((
True
,
True
,
Q
is
not
None
,
Z
is
not
None
,
calc_ev
,
calc_ev
),
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment