There's also RustPython, a Rust implementation of CPython 3.5+: https://news.ycombinator.com/item?id=20686580 > https://github.com/RustPython/RustPython
Why didn't they call it Rython
Weld: Accelerating numpy, scikit and pandas as much as 100x with Rust and LLVM
41–50 of 117 posts
Re: Weld: Accelerating numpy, scikit and pandas as much as 100x with Rust and LLVM
#42Re: Weld: Accelerating numpy, scikit and pandas as much as 100x with Rust and LLVM
#43This post combines pretty much every technology I'm obsessed with right now: Python, Rust, Pandas, Numpy, and LLVM. Yess!!!
Just a word of caution, always obsess with product and customer needs first :) In ML/data science tech first normally won’t end up well
Re: Weld: Accelerating numpy, scikit and pandas as much as 100x with Rust and LLVM
#44whats the benefit of rust over julia or C for computation?
Re: Weld: Accelerating numpy, scikit and pandas as much as 100x with Rust and LLVM
#45Re: Weld: Accelerating numpy, scikit and pandas as much as 100x with Rust and LLVM
#46This post combines pretty much every technology I'm obsessed with right now: Python, Rust, Pandas, Numpy, and LLVM. Yess!!!
Just a word of caution, always obsess with product and customer needs first :) In ML/data science tech first normally won’t end up well
Re: Weld: Accelerating numpy, scikit and pandas as much as 100x with Rust and LLVM
#47This post combines pretty much every technology I'm obsessed with right now: Python, Rust, Pandas, Numpy, and LLVM. Yess!!!
Just a word of caution, always obsess with product and customer needs first :) In ML/data science tech first normally won’t end up well
Re: Weld: Accelerating numpy, scikit and pandas as much as 100x with Rust and LLVM
#48Very bizarre there is no discussion of numba here, which has been around and used widely for many years, achieves faster speedups than this, and also emits an LLVM IR that is likely a much better starting point for developing a “universal” scientific computing IR than doing yet another thing that further complicates it with fairly needless involvement of Rust. https://numba.pydata.org/
Rust is just a IPO driver of sorts here.
I'm not critizing Numba btw, I use it regularly, but your comment seems a little off here, considering that Weld has different goal in mind.
Re: Weld: Accelerating numpy, scikit and pandas as much as 100x with Rust and LLVM
#49This post combines pretty much every technology I'm obsessed with right now: Python, Rust, Pandas, Numpy, and LLVM. Yess!!!
Re: Weld: Accelerating numpy, scikit and pandas as much as 100x with Rust and LLVM
#50whats the benefit of rust over julia or C for computation?
Not to sound like a member of the Rust evangelism strike force, but after using Rust for a couple years, I don't have any desire to go back to C - sum types alone are worth the switch to me, not to mention iterators, concurrency story, etc.