I feel this will be huge. I've been running into several road blocks where the JIT/JAoT compilation model of julia won't work (e.g. a service for a raspberry pi) and being able to build a proper executable from a julia program would make it feasible again
@csctyf2 ай бұрын
Love to heard that is possible soon
@SomeTechGuy6664 ай бұрын
So friggin awesome. Next step: get the code running on an embedded processor.
@DAV303712 ай бұрын
I always wanted to build binary from Julia!
@youngfeighon559119 күн бұрын
I always wanted to build binary from Julia ,too
@meryplays89524 ай бұрын
I think all the R books should be re-written to Julia.
@biona0024 ай бұрын
Very cool. Which julia version will support this?
@shalokshalom4 ай бұрын
@@biona002 It's open, so basically when its done. ;)
@chrisrackauckasofficial4 ай бұрын
It looks like it's going to make the v1.12 feature freeze
@NeverTrust2984 ай бұрын
Wow that's pretty cool really smart people!
@xael8214 ай бұрын
is there a link to how to use this tooling today?
@TheJuliaLanguage4 ай бұрын
The content of this talk is likely to make it into Julia 1.12, which is currently the development branch of Julia. This pull request: github.com/JuliaLang/julia/pull/55047 contains some *but not all* of the ongoing development
@BananthahallyVijay3 ай бұрын
Good work.👏 But going by the talk, it seems tricky getting a reasonably sized executable for just a "Hello World". That means for an early stage Julia user like me, a concise, stand alone executable is not going to happen soon as my Julia codes are built with lots of dependencies and multiple dispatch at many places.
@pabloe18022 ай бұрын
🎉🎉🎉
@tychoides3 ай бұрын
I have been checking Julia since release. In my humble opinion, Julia has always been the best for writing simulations. You can get more performance in C but needs a lot of knowledge of the underlying machine. However, Julia never quite make it as a data analysis scripting language. Python is usually enough. And Python has lots of binding to numerous APIs. Python is everywhere. And Julia JIT approach doesn't provide any advantage and is less performant for short scripts. However, static compilation is a game changer. You don't need to compete with Python anymore, you can finally make a library and make a Python API. You can use Julia in Julia or any other language. If this comes to fruition Julia have a chance against Rust or Mojo. Julia is not perfect but GPU stuff is much better than those so far.