pyjulia
pyjulia copied to clipboard
python interface to julia
Added support for "threads" and "min-optlevel" julia options. Now all long opts are generated with "--arg=val" instead of "--arg val" since julia required arguments support both syntaxes, but optional arguments...
Fixes #480
I'm trying to reproduce basic example in https://fluxml.ai/Flux.jl/stable/models/overview/ using the pyjulia, computing the loss goes fine, but during the training it crashes: ```python import julia julia.install() from julia import Julia...
I have file `mutagenesis_python.py` and I use python 3.7.3 and Julia 1.7.2 on windows. ```python import julia from julia import Julia Julia(runtime='C:\\Users\\racinsky\\AppData\\Local\\Programs\\Julia-1.7.2\\bin\\julia.exe') from julia import Base print(Base.VERSION) from julia import...
Here is a little function that downloads julia if needed, set up an environmnt and instantiate the project. I think something similar should be provided so that users can call...
See similar isse opened for PyCall: https://github.com/JuliaPy/PyCall.jl/issues/903 ``` from julia import Main import numba ``` gives: ``` signal (11): Segmentation fault in expression starting at none:0 _ZN4llvm16TargetPassConfig7addPassEPNS_4PassEbb at /usr/lib/libLLVM-10.so (unknown...
What do these lines mean? https://github.com/JuliaPy/pyjulia/blob/56a739126d3fed0d24e548069ff216fea78fbe1b/src/julia/core.py#L225 https://github.com/JuliaPy/pyjulia/blob/56a739126d3fed0d24e548069ff216fea78fbe1b/src/julia/core.py#L242 git blame says they were last touched in 2014. At least the second one, `load_module`, is actually called now if I do `from...
This looks a lot like: https://github.com/JuliaPy/pyjulia/issues/425 . Apologies ahead of time if this is just adding noise. I'm working on a Jupyter Docker Image, where we previously supported PyJulia. This...
Could compiled_modules=False be turned on automatically if the user does not have a dynamically linked libpython? As far as I can tell this doesn't present too big of a problem...