pyjulia
pyjulia copied to clipboard
python interface to julia
Currently PyJulia does not support `KeyboardInterrupt`. That is to say, in long-running Python and Julia computation, there is no way to terminate a sub-computation by catching `KeyboardInterrupt` as done in...
As [mentioned in the documention](https://pyjulia.readthedocs.io/en/latest/limitations.html), Python3 normalizes some unicode identifiers, in particular those [including subscripts and superscripts](https://stackoverflow.com/questions/48404881/unicode-subscripts-and-superscripts-in-identifiers-why-does-python-consider-xu). Now, I have a julia function that needs input arguments written with sub/superscripts....
I'm trying to use pyinstaller to build a executable with pyjulia, here is my code: ```python from julia import Main def hello(u = "world"): Main.println(f"hello {u}!") hello() ``` This works...
This is because pyjulia uses ArgumentsParser to parse --home & --sysimage, but it get the optimize value as an int instead of a string. I'll submit a PR
This link does not exist https://github.com/JuliaPy/pyjulia/blob/cec4bf0b0eac7e39cecd8f3e7882563062903d0f/src/julia/libjulia.py#L172
Calling Julia code using Python's multiprocessing module crashes the program (SIGSEGV). I am using Julia 1.2.0, Python 3.7.3 and pyjulia 0.4.1 on Linux. A minimal example is as follows: ```...
Hello, PyJulia crashes when I try to callJulia from inside a Python process using Dask multiprocessing (dask.distributed.Client) throwing the following exceptions: ``` Exception: OSError('exception: access violation reading 0x00000000000019A8') Exception: AttributeError("function...
I want to propose a discussion about how `pyjulia` should be used in parallel computing. I recently found a way that seems rather stable: 1. we should make sure that...
I have a python script which loads code from a separate file. When I try to run `python script_file.py`, pyjulia complains that the python binary isn't compatible. So, I have...