You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Examples like tree_1d_dgsem/elixir_euler_shockcapturing.jl and some others do not work in macOS ARM builds of Julia.
They fail with this error (stack trace truncated):
If we want to support macOS ARM, we could either try to investigate the upstream problem and try to fix it there or we could extract all code inside this particular @threaded loop to a new function, which avoids using a closure.
However, I have no idea when a cfunction closure is used and when we can get away without one. Some @threaded loops work perfectly fine without extracting a function.
The text was updated successfully, but these errors were encountered:
I think trying to debug the @batch problems as discussed in the upstream issue is the better option. I would only consider rewriting our code if we're really not able to find anything.
Examples like
tree_1d_dgsem/elixir_euler_shockcapturing.jl
and some others do not work in macOS ARM builds of Julia.They fail with this error (stack trace truncated):
More details here:
JuliaSIMD/Polyester.jl#88
If we want to support macOS ARM, we could either try to investigate the upstream problem and try to fix it there or we could extract all code inside this particular
@threaded
loop to a new function, which avoids using a closure.However, I have no idea when a cfunction closure is used and when we can get away without one. Some
@threaded
loops work perfectly fine without extracting a function.The text was updated successfully, but these errors were encountered: