Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Neel Shah
NIFTy
Commits
1e761a72
Commit
1e761a72
authored
Aug 03, 2021
by
Neel Shah
Browse files
fix functionality for applying to a multidimensional domain
parent
b3ae70f0
Pipeline
#106975
canceled with stages
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
src/operators/matrix_product_operator.py
View file @
1e761a72
...
@@ -126,7 +126,14 @@ class MatrixProductOperator(EndomorphicOperator):
...
@@ -126,7 +126,14 @@ class MatrixProductOperator(EndomorphicOperator):
if
self
.
_spaces
is
None
:
if
self
.
_spaces
is
None
:
if
not
self
.
_flatten
:
if
not
self
.
_flatten
:
res
=
m
.
dot
(
x
.
val
)
if
times
:
res
=
np
.
tensordot
(
m
,
x
.
val
,
axes
=
len
(
x
.
shape
))
else
:
mat_axes
=
np
.
flip
(
self
.
_mat_last_n
)
field_axes
=
self
.
_mat_first_n
res
=
np
.
tensordot
(
m
,
x
.
val
,
axes
=
(
mat_axes
,
field_axes
))
res
=
res
.
reshape
(
np
.
flip
(
res
.
shape
))
else
:
else
:
res
=
m
.
dot
(
x
.
val
.
flatten
()).
reshape
(
self
.
_domain
.
shape
)
res
=
m
.
dot
(
x
.
val
.
flatten
()).
reshape
(
self
.
_domain
.
shape
)
return
Field
(
self
.
_domain
,
res
)
return
Field
(
self
.
_domain
,
res
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment