-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
why do addprocs() workers not read my ~/.juliarc.jl #8196
Comments
Last time |
Do the remote machines necessarily have access to ~/.juliarc? |
Julia could automatically send the |
The workers should read their own .juliarc. If they live on a different file system, then path names may be different for the workers. |
you mean you have two separate clusters A and B, one with file system (a), one with file system (b), you launch julia on A and it sets up the cluster across A and B? sounds like science fiction to me, but if that is possible this is definitely worth keeping in mind. is that possible? (i love science fiction.) |
The suggestion of @ivarne that the rc file be sent from the head process sounds better, having to manually ensure that the |
Neither one of (1) all workers use node 1's juliarc (2) each worker loads its own local juliarc seems obviously right. |
True that. In fact I was just asking if and why it's the case it's not On Wednesday, 3 September 2014, Jeff Bezanson notifications@github.com
|
in regards to not loading .juliarc.jl nor any modules close #8196 [ci skip]
just came across this behaviour, not sure it's intended this way. In the example below you can see that my LOAD_PATH on the master process has 3 entries (i pushed the last one in my
~/.juliarc.jl
onto it), whereas on the worker process it has only 2. I assume the worker is not reading~/.juliarc.jl
? any reason for that?The text was updated successfully, but these errors were encountered: