-
Notifications
You must be signed in to change notification settings - Fork 35
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
Enable meta parallel Circuitscape - call Circuitscape on several INI files at once with 1 process each #248
Conversation
Hi @ranjanan, thanks for enabling this. One question that comes to mind: could julia recognize that the input is an array when calling In all cases, I gave it a try, and first, I run into the same problem than I mentioned to @ViralBShah in #236 , when Circuitscape is only installed in the project environment (and not in the default environment), I get the following error, presumably because the workers inherit the default environment (which does not see Circuitscape).
Once the same version of circuitscape is installed (I made sure to install fro the same sha on the last commit on
However I then downgraded Circuitscape to the release version in the default environment and it appears that when the versions in the project and in the default environment do not coincide, we have errors. I know that sounds like I might have done something wrong.
|
I had to create a customized function that accepts arrays for Omniscape. See Omniscape.jl/src/functions.jl#L306. Note that is specifically for advanced mode. You may have to create a similar function for your use case. |
Should fix #236