My experience with Julia was good, and the language is convenient, however two major factors made me not use it after test projects: 1. Very scarce packages ecosystem. Like there's dataframes.jl file with poor mans implementation of Pandas. 2. Recompiling everything every time. It meant that a Julia program in some script would take ~40 seconds compiling with dataframes & some other important packages. I think if a l…
Julia and JuliaHub: Advancing Innovation and Growth
61–70 of 72 posts
Re: Julia and JuliaHub: Advancing Innovation and Growth
#62I've used, and am still using, Julia for my PhD research. It's perfect for parallel/distributed computing, and the neural network primitives are more than enough for my purposes. Anything I write in pure julia runs really, really fast, and has great profiling tools to improve performance further. Julia also integrates with python, with stuff like PythonCall.jl. I've gotten everything to work so far, but it hasn't bee…
I actually find that ecosystem for Julia is not that big of an issue for me. I guess that my specific use-case (data analysis, numerical simulations) is probably the most developed part of the ecosystem, but regarding that I find that the ecosystem is much more homogeneous than for example python - most things work with most other things (eg units or measurement uncertainties libraries work automatically with a pilot…
https://arstechnica.com/science/2020/10/the-unreasonable-eff...
Re: Julia and JuliaHub: Advancing Innovation and Growth
#63Earlier quoted context omitted.
Your last sentence applies equally to Fortran. How would you compare Julia and Fortran?
Julia uses LLVM for its jit architecture, if I recall correctly. That makes it a good candidate for running well on ARM platforms (think embedded data processing at the edge). Not sure how well fortran does on ARM.
https://bsky.app/profile/badphysicist.bsky.social/post/3lhfm...
Re: Julia and JuliaHub: Advancing Innovation and Growth
#64As someone working with it day to day, coming from around 18 years of mostly python, I wish I could say my experience has been great. I find myself constantly battling with the JIT and compilation and recompilation and waiting around all the time (sometimes 10 to 15 minutes for some large projects). Widespread macro usage makes stack traces much harder to read. Lack of formal interfaces means a lot of static checking…
Huh? I think Pkg is very good as far as package managers go, exceptionally so. What specifically is your issue with it?
Re: Julia and JuliaHub: Advancing Innovation and Growth
#65My experience with Julia was good, and the language is convenient, however two major factors made me not use it after test projects: 1. Very scarce packages ecosystem. Like there's dataframes.jl file with poor mans implementation of Pandas. 2. Recompiling everything every time. It meant that a Julia program in some script would take ~40 seconds compiling with dataframes & some other important packages. I think if a l…
> recompilation on every run breaks this
Your comment is exceedingly misleading. Whether and when Julia code gets compiled is up to the user.
Re: Julia and JuliaHub: Advancing Innovation and Growth
#66Earlier quoted context omitted.
> Julia didn’t actually have any proper PLT or compilers people involved in the outset. while I don't disagree that currently JAX outshines Julia's autodiff options in many ways, I think comments like this are 1. false 2. rude and 3. unnecessary to make your point
Julia was a scientific computing language made by scientific computing experts. They did a great job on some things, but whiffed a few major decisions early on.
Anything particular in mind?
Re: Julia and JuliaHub: Advancing Innovation and Growth
#67My experience with Julia was good, and the language is convenient, however two major factors made me not use it after test projects: 1. Very scarce packages ecosystem. Like there's dataframes.jl file with poor mans implementation of Pandas. 2. Recompiling everything every time. It meant that a Julia program in some script would take ~40 seconds compiling with dataframes & some other important packages. I think if a l…
https://github.com/TidierOrg/TidierDB.jl https://github.com/TidierOrg/TidierData.jl
of note i am biased as a tidier contributor and author of tidierdb.jl but hopefully you might be willing to give it a try.
Re: Julia and JuliaHub: Advancing Innovation and Growth
#68Earlier quoted context omitted.
Julia was a scientific computing language made by scientific computing experts. They did a great job on some things, but whiffed a few major decisions early on.
> whiffed a few major decisions early on Anything particular in mind?
Re: Julia and JuliaHub: Advancing Innovation and Growth
#69Earlier quoted context omitted.
I actually find that ecosystem for Julia is not that big of an issue for me. I guess that my specific use-case (data analysis, numerical simulations) is probably the most developed part of the ecosystem, but regarding that I find that the ecosystem is much more homogeneous than for example python - most things work with most other things (eg units or measurement uncertainties libraries work automatically with a pilot…
As you probably know, that almost magical interworking of libraries is a consequence of Julia’s multiple dispatch and type system: https://arstechnica.com/science/2020/10/the-unreasonable-eff...
Re: Julia and JuliaHub: Advancing Innovation and Growth
#70Earlier quoted context omitted.
Julia was a scientific computing language made by scientific computing experts. They did a great job on some things, but whiffed a few major decisions early on.
> whiffed a few major decisions early on Anything particular in mind?
- I wrote this elsewhere: I find their approach to memory management/mutable arrays really hits the worst of both worlds (manual memory management and garbage collection). You end up trying to preallocate memory but don’t actually have control over memory allocations. I find the dynamic type system exacerbates this.
- It’s a very big language, even in the IR. So proper program transforms like mapping functions or autograd are quite difficult to implement.
- Static compilation is really hard, which makes it a non-starter for a lot of domains where it could have made inroads (robotics, games, etc).