Taine Zhao
Taine Zhao
If users write `x :: U` where `U` only contains **global references**, we can appropriately check the code statically.
It's simple in current design.
need to update.
This have to been deferred until we implement bytecode -> untyped DIO IR transformation. I don't believe this is the most urgent. Efforts will be allocated for supporting JITing the...
No need so far. JITing a method now is damn fast. However, I'd keep this issue, as @lfkdsk pointed out, it is possible for python to send compilation tasks to...
Thanks @anqurvanillapy! The idea is damn simple! If you have time, please watch my TFP talk on 2/19!
It is observed that in usual cases, global references wouldn't change at all. If you want to use a mutable global variable in @jit functions, maybe writing `globals()[name]` is better?
and also for `polyint`
Yes, the julia binary directory is in PATH. Another thing strange is... If I open a Python interactive shell or use IPython, `subprocess.Popen(['julia'])` does work.
In fact, with my conda python it didn't work. It got raised when I was trying this to use my custom sysimg: https://github.com/JuliaPy/pyjulia/issues/310#issuecomment-514034208 However, last night I change to the...