DistributeDefinitions is evaluating the definitions, but only for large number of definitions
I am using Mathematica 11.3 and this seems to me to be a bug. I would like, if possible, some idea on a workaround.
Here is an example of trivial code that works as expected:
nI = 10;
(NM[#] := Print[#] ) & /@ Range[1, nI];
LaunchKernels;
DistributeDefinitions[NM];
That is, the code above generates no output, as expected.
Now, if the first line is changed to
nI = 20;
The same code leads to 40 lines being printed! From 1 to 20 two times.
For some reason, the DistributionDefinitions is forcing the definition of NM to be executed, and I do not want that to happen before I use ParallelSubmit and WaitAll. I tried this in two computers with Mathematica 11.3, any ideas on what is happening?
parallelization
add a comment |
I am using Mathematica 11.3 and this seems to me to be a bug. I would like, if possible, some idea on a workaround.
Here is an example of trivial code that works as expected:
nI = 10;
(NM[#] := Print[#] ) & /@ Range[1, nI];
LaunchKernels;
DistributeDefinitions[NM];
That is, the code above generates no output, as expected.
Now, if the first line is changed to
nI = 20;
The same code leads to 40 lines being printed! From 1 to 20 two times.
For some reason, the DistributionDefinitions is forcing the definition of NM to be executed, and I do not want that to happen before I use ParallelSubmit and WaitAll. I tried this in two computers with Mathematica 11.3, any ideas on what is happening?
parallelization
On my machine the behaviour changes fromnI
=17 to 18. If I look atDefinitions[NM]
, up to 17 it prints as:=
-definitions, but above that it prints as=
-definitions. Thus the core issue may be not with the parallel tools, but with how definitions are stored.
– Szabolcs
2 hours ago
The reason appears to be thatLanguage`ExtendedFullDefinition
switches from usingRuleDelayed
toRule
after 18 down-values. This causesDistributeDefinitions
to subsequently leak the evaluation.
– Lukas Lang
2 hours ago
add a comment |
I am using Mathematica 11.3 and this seems to me to be a bug. I would like, if possible, some idea on a workaround.
Here is an example of trivial code that works as expected:
nI = 10;
(NM[#] := Print[#] ) & /@ Range[1, nI];
LaunchKernels;
DistributeDefinitions[NM];
That is, the code above generates no output, as expected.
Now, if the first line is changed to
nI = 20;
The same code leads to 40 lines being printed! From 1 to 20 two times.
For some reason, the DistributionDefinitions is forcing the definition of NM to be executed, and I do not want that to happen before I use ParallelSubmit and WaitAll. I tried this in two computers with Mathematica 11.3, any ideas on what is happening?
parallelization
I am using Mathematica 11.3 and this seems to me to be a bug. I would like, if possible, some idea on a workaround.
Here is an example of trivial code that works as expected:
nI = 10;
(NM[#] := Print[#] ) & /@ Range[1, nI];
LaunchKernels;
DistributeDefinitions[NM];
That is, the code above generates no output, as expected.
Now, if the first line is changed to
nI = 20;
The same code leads to 40 lines being printed! From 1 to 20 two times.
For some reason, the DistributionDefinitions is forcing the definition of NM to be executed, and I do not want that to happen before I use ParallelSubmit and WaitAll. I tried this in two computers with Mathematica 11.3, any ideas on what is happening?
parallelization
parallelization
edited 2 hours ago
Szabolcs
158k13432926
158k13432926
asked 3 hours ago
Davi Rodrigues
1405
1405
On my machine the behaviour changes fromnI
=17 to 18. If I look atDefinitions[NM]
, up to 17 it prints as:=
-definitions, but above that it prints as=
-definitions. Thus the core issue may be not with the parallel tools, but with how definitions are stored.
– Szabolcs
2 hours ago
The reason appears to be thatLanguage`ExtendedFullDefinition
switches from usingRuleDelayed
toRule
after 18 down-values. This causesDistributeDefinitions
to subsequently leak the evaluation.
– Lukas Lang
2 hours ago
add a comment |
On my machine the behaviour changes fromnI
=17 to 18. If I look atDefinitions[NM]
, up to 17 it prints as:=
-definitions, but above that it prints as=
-definitions. Thus the core issue may be not with the parallel tools, but with how definitions are stored.
– Szabolcs
2 hours ago
The reason appears to be thatLanguage`ExtendedFullDefinition
switches from usingRuleDelayed
toRule
after 18 down-values. This causesDistributeDefinitions
to subsequently leak the evaluation.
– Lukas Lang
2 hours ago
On my machine the behaviour changes from
nI
=17 to 18. If I look at Definitions[NM]
, up to 17 it prints as :=
-definitions, but above that it prints as =
-definitions. Thus the core issue may be not with the parallel tools, but with how definitions are stored.– Szabolcs
2 hours ago
On my machine the behaviour changes from
nI
=17 to 18. If I look at Definitions[NM]
, up to 17 it prints as :=
-definitions, but above that it prints as =
-definitions. Thus the core issue may be not with the parallel tools, but with how definitions are stored.– Szabolcs
2 hours ago
The reason appears to be that
Language`ExtendedFullDefinition
switches from using RuleDelayed
to Rule
after 18 down-values. This causes DistributeDefinitions
to subsequently leak the evaluation.– Lukas Lang
2 hours ago
The reason appears to be that
Language`ExtendedFullDefinition
switches from using RuleDelayed
to Rule
after 18 down-values. This causes DistributeDefinitions
to subsequently leak the evaluation.– Lukas Lang
2 hours ago
add a comment |
1 Answer
1
active
oldest
votes
TL;DR;
Execute the following code to fix the problem:
DistributeDefinitions;
DownValues[Parallel`Protected`DistDefs] =
DownValues[Parallel`Protected`DistDefs] /.
HoldPattern[
u : Parallel`Parallel`Private`updates =
rhs_Language`ExtendedFullDefinition
] :>
(
u = Replace[
rhs,
defs : {(_HoldPattern -> _) ..} :> With[
{res = RuleDelayed @@@ Unevaluated@defs},
res /; True
],
{4}
]
);
What does this do?
As mentioned in the comments, the issue is that Language`ExtendedFullDefinition
seems to change the return format at 18 down-values. This causes the subsequent manipulations of DistributeDefinitions
on the returned Language`DefinitionList[…]
expression to leak the evaluation of the definitions (as their r.h.s. are no longer protected by the HoldRest
attribute of RuleDelayed
).
The code above fixes this by wrapping the call to Language`ExtendedFullDefinition
(which happens in Parallel`Protected`DistDefs
) with a piece of code that replaces definitions of the form HoldPattern[…]->…
with HoldPattern[…]:>…
, which prevents the evaluation leak.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
return StackExchange.using("mathjaxEditing", function () {
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
});
});
}, "mathjax-editing");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "387"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmathematica.stackexchange.com%2fquestions%2f188517%2fdistributedefinitions-is-evaluating-the-definitions-but-only-for-large-number-o%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
TL;DR;
Execute the following code to fix the problem:
DistributeDefinitions;
DownValues[Parallel`Protected`DistDefs] =
DownValues[Parallel`Protected`DistDefs] /.
HoldPattern[
u : Parallel`Parallel`Private`updates =
rhs_Language`ExtendedFullDefinition
] :>
(
u = Replace[
rhs,
defs : {(_HoldPattern -> _) ..} :> With[
{res = RuleDelayed @@@ Unevaluated@defs},
res /; True
],
{4}
]
);
What does this do?
As mentioned in the comments, the issue is that Language`ExtendedFullDefinition
seems to change the return format at 18 down-values. This causes the subsequent manipulations of DistributeDefinitions
on the returned Language`DefinitionList[…]
expression to leak the evaluation of the definitions (as their r.h.s. are no longer protected by the HoldRest
attribute of RuleDelayed
).
The code above fixes this by wrapping the call to Language`ExtendedFullDefinition
(which happens in Parallel`Protected`DistDefs
) with a piece of code that replaces definitions of the form HoldPattern[…]->…
with HoldPattern[…]:>…
, which prevents the evaluation leak.
add a comment |
TL;DR;
Execute the following code to fix the problem:
DistributeDefinitions;
DownValues[Parallel`Protected`DistDefs] =
DownValues[Parallel`Protected`DistDefs] /.
HoldPattern[
u : Parallel`Parallel`Private`updates =
rhs_Language`ExtendedFullDefinition
] :>
(
u = Replace[
rhs,
defs : {(_HoldPattern -> _) ..} :> With[
{res = RuleDelayed @@@ Unevaluated@defs},
res /; True
],
{4}
]
);
What does this do?
As mentioned in the comments, the issue is that Language`ExtendedFullDefinition
seems to change the return format at 18 down-values. This causes the subsequent manipulations of DistributeDefinitions
on the returned Language`DefinitionList[…]
expression to leak the evaluation of the definitions (as their r.h.s. are no longer protected by the HoldRest
attribute of RuleDelayed
).
The code above fixes this by wrapping the call to Language`ExtendedFullDefinition
(which happens in Parallel`Protected`DistDefs
) with a piece of code that replaces definitions of the form HoldPattern[…]->…
with HoldPattern[…]:>…
, which prevents the evaluation leak.
add a comment |
TL;DR;
Execute the following code to fix the problem:
DistributeDefinitions;
DownValues[Parallel`Protected`DistDefs] =
DownValues[Parallel`Protected`DistDefs] /.
HoldPattern[
u : Parallel`Parallel`Private`updates =
rhs_Language`ExtendedFullDefinition
] :>
(
u = Replace[
rhs,
defs : {(_HoldPattern -> _) ..} :> With[
{res = RuleDelayed @@@ Unevaluated@defs},
res /; True
],
{4}
]
);
What does this do?
As mentioned in the comments, the issue is that Language`ExtendedFullDefinition
seems to change the return format at 18 down-values. This causes the subsequent manipulations of DistributeDefinitions
on the returned Language`DefinitionList[…]
expression to leak the evaluation of the definitions (as their r.h.s. are no longer protected by the HoldRest
attribute of RuleDelayed
).
The code above fixes this by wrapping the call to Language`ExtendedFullDefinition
(which happens in Parallel`Protected`DistDefs
) with a piece of code that replaces definitions of the form HoldPattern[…]->…
with HoldPattern[…]:>…
, which prevents the evaluation leak.
TL;DR;
Execute the following code to fix the problem:
DistributeDefinitions;
DownValues[Parallel`Protected`DistDefs] =
DownValues[Parallel`Protected`DistDefs] /.
HoldPattern[
u : Parallel`Parallel`Private`updates =
rhs_Language`ExtendedFullDefinition
] :>
(
u = Replace[
rhs,
defs : {(_HoldPattern -> _) ..} :> With[
{res = RuleDelayed @@@ Unevaluated@defs},
res /; True
],
{4}
]
);
What does this do?
As mentioned in the comments, the issue is that Language`ExtendedFullDefinition
seems to change the return format at 18 down-values. This causes the subsequent manipulations of DistributeDefinitions
on the returned Language`DefinitionList[…]
expression to leak the evaluation of the definitions (as their r.h.s. are no longer protected by the HoldRest
attribute of RuleDelayed
).
The code above fixes this by wrapping the call to Language`ExtendedFullDefinition
(which happens in Parallel`Protected`DistDefs
) with a piece of code that replaces definitions of the form HoldPattern[…]->…
with HoldPattern[…]:>…
, which prevents the evaluation leak.
answered 2 hours ago
Lukas Lang
5,6981626
5,6981626
add a comment |
add a comment |
Thanks for contributing an answer to Mathematica Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmathematica.stackexchange.com%2fquestions%2f188517%2fdistributedefinitions-is-evaluating-the-definitions-but-only-for-large-number-o%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
On my machine the behaviour changes from
nI
=17 to 18. If I look atDefinitions[NM]
, up to 17 it prints as:=
-definitions, but above that it prints as=
-definitions. Thus the core issue may be not with the parallel tools, but with how definitions are stored.– Szabolcs
2 hours ago
The reason appears to be that
Language`ExtendedFullDefinition
switches from usingRuleDelayed
toRule
after 18 down-values. This causesDistributeDefinitions
to subsequently leak the evaluation.– Lukas Lang
2 hours ago