-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
module globals and parallel methods #19
Comments
Thinking about this revealed how fuzzy I am on the module system. Modules seem to be objects. For example, |
For the second question: I belive that |
@ArchRobison The only built-in notion of 'sameness' for modules is if the two module instances are "==="; ie have the same memory address. Each invocation of |
Related:
|
Consider the following:
This is because
foo()
creates X as module global, while the@everywhere
call refers toMain
Would it be appropriate to have the remote part of all parallel methods execute under the same module as the calling module? Is information about the calling module available to a function in Base?
The text was updated successfully, but these errors were encountered: