-
-
Notifications
You must be signed in to change notification settings - Fork 53
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
Can IJulia Jupyter/Pluto run on Linux without JULIA_COPY_STACKS=1? #145
Comments
JULIA_COPY_STACKS=1
?
The only other way is for JavaCall to run on the root julia> Base.roottask == Base.current_task()
true If you can first start JavaCall on the root task, then you can use something like https://github.com/mkitti/TaskWorkers.jl to run a server task on the root Task to talk to Java. Another way to do that is to have two Julia processes. One uses JavaCall while the other runs the notebook. You invoke Java commands by communicating between the two Julia proceses using something like |
Looking at IJulia, what you probably would need to do is create a custom kernel.jl which loads JavaCall and TaskWorkers, and then runs https://github.com/JuliaLang/IJulia.jl/blob/cc2a9bf61a2515596b177339f9a3514de8c38573/src/kernel.jl |
Hm looks tricky 😕 But would it be possible that View5D could manage the TaskWorkers.jl stuff to ensure that when it is called from within Pluto it calls the root task? |
The key is getting a TaskWorker to run on the root Task before Pluto or
Jupyter runs on it. Once you own the root Task, TaskWorkers allows you
send arbitrary code to run on it.
The underlying issue is that the root Task stack looks normal to the JVM
signal handler whereas the stack of other Tasks is nontraditional.
COPY_STACKS copies the entire stack including the JVM signal handler.
…On Sun, May 16, 2021, 12:22 PM Felix Wechsler ***@***.***> wrote:
Hm looks tricky 😕
But would it be possible that View5D could manage the TaskWorkers.jl stuff
to ensure that when it is called from within Pluto it calls the root task?
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#145 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AB5QOMZLI5DMIWOURXR2WFLTN7WMZANCNFSM444FQRKQ>
.
|
I'm checking in to see if you made any progress on this. |
Sorry, I haven't really tried to solve this. Maybe @RainerHeintzmann wants to tackle this 😄 |
Hey,
in the REPL it is possible to run a JavaCall dependent library (like View5D) without
JULIA_COPY_STACKS=1
.In IJulia or Pluto it is not:
Some libraries, like FFTW.jl, crash when
JULIA_COPY_STACKS=1
which is unfortunately a deal breaker for my applications.Can we resolve this situation?
Thanks,
Felix
The text was updated successfully, but these errors were encountered: