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
ift
NIFTy
Commits
320225fe
Commit
320225fe
authored
Oct 11, 2016
by
theos
Browse files
Fixed a bug in _mpi_transform.
parent
8bbb6d55
Changes
1
Hide whitespace changes
Inline
Side-by-side
nifty/operators/fft_operator/transformations/rg_transforms.py
View file @
320225fe
...
...
@@ -357,13 +357,16 @@ class FFTW(Transform):
inp
=
inp
.
reshape
(
inp
.
shape
[
0
],
1
)
if
current_info
is
None
:
transform_shape
=
list
(
inp
.
shape
)
transform_shape
[
0
]
=
val
.
shape
[
0
]
current_info
=
self
.
_get_transform_info
(
self
.
domain
,
self
.
codomain
,
local_shape
=
val
.
local_shape
,
local_offset_Q
=
local_offset_Q
,
is_local
=
False
,
transform_shape
=
inp
.
shape
,
transform_shape
=
tuple
(
transform_
shape
)
,
**
kwargs
)
...
...
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