Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Neel Shah
NIFTy
Commits
f7a7bdfa
Commit
f7a7bdfa
authored
Jun 29, 2021
by
Neel Shah
Browse files
Fixed a bug with adjoint_times for spaces=None
parent
e07efa6e
Pipeline
#104585
canceled with stages
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/operators/matrix_product_operator.py
View file @
f7a7bdfa
...
...
@@ -132,7 +132,7 @@ class MatrixProductOperator(EndomorphicOperator):
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
)
)
res
=
res
.
transpose
(
)
else
:
res
=
m
.
dot
(
x
.
val
.
flatten
()).
reshape
(
self
.
_domain
.
shape
)
return
Field
(
self
.
_domain
,
res
)
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment