Skip to content
GitLab
Menu
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
08e80a04
Commit
08e80a04
authored
Apr 24, 2016
by
csongor
Browse files
fix all and any
parent
34279eb5
Pipeline
#1923
skipped
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
d2o/translate_to_mpi_operator.py
View file @
08e80a04
...
...
@@ -24,8 +24,8 @@ op_translate_dict[np.sum] = (MPI.SUM, True)
op_translate_dict
[
np
.
prod
]
=
(
MPI
.
PROD
,
True
)
op_translate_dict
[
np
.
amin
]
=
(
MPI
.
MIN
,
True
)
op_translate_dict
[
np
.
amax
]
=
(
MPI
.
MAX
,
True
)
op_translate_dict
[
np
.
all
]
=
(
MPI
.
L
AND
,
True
)
op_translate_dict
[
np
.
any
]
=
(
MPI
.
L
OR
,
True
)
op_translate_dict
[
np
.
all
]
=
(
MPI
.
B
AND
,
True
)
op_translate_dict
[
np
.
any
]
=
(
MPI
.
B
OR
,
True
)
op_translate_dict
[
np
.
nanmin
]
=
(
custom_NANMIN
,
False
)
op_translate_dict
[
np
.
nanmax
]
=
(
custom_NANMAX
,
False
)
op_translate_dict
[
np
.
unique
]
=
(
custom_UNIQUE
,
False
)
Write
Preview
Supports
Markdown
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