-
Notifications
You must be signed in to change notification settings - Fork 0
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
Access to undefined reference #12
Comments
Is there any chance you can capture this with |
I should clarify that part of the reason I asked this is that line 280 is this line, which doesn't make much sense as the source of the problem. |
Oops, I had some local changes (just comments, so not relevant to the error). So for me line 280 corresponds to this line. I'm also running it without inlining now to try to catch the error in case it's helpful. |
Okay I did trigger the error without inlining. Most, but not all, of the line numbers are the same. I also noticed some warnings which I think are unrelated, but I'm pasting them too:
|
That line number makes much more sense---it suggests that one of the fields of the How about trying this: define a copy!{T}(dest::AbstractArray{T,4}, src::ArrayZInterp{T}) and first check that this is what gets called (e.g., make the body something like Long-term, we might want to define such a |
Just noticed that it's quite possible that addprocs(n; exeflags=`--inline=no`) |
I should also say that now the backtrace makes sense, so running with One other thought: try changing those types to |
I wonder if this could by any chance be the same as #36, with a different error message? |
When using multiple workers I am getting this error fairly often. When I just try running the same script again it works after one or two tries. My guess is that multiple workers are trying to access the image (in this case a subarray into a Bidirectional image) simultaneously and depending on the timing, the reference is sometimes unavailable. I'm not sure how to debug this. For now just running the script again seems to work, but I'm happy to try to fix this if someone can suggest a direction.
The text was updated successfully, but these errors were encountered: