weld-project / weld

High-performance runtime for data analytics applications
https://www.weld.rs
BSD 3-Clause "New" or "Revised" License
2.99k stars 260 forks source link

Add GrizzlySeries + Scalar operations #501

Closed sppalkia closed 4 years ago

sppalkia commented 4 years ago

Adds support for operations that involve a GrizzlySeries on the LHS and a Scalar on the RHS, e.g.,:

>>> a = gr.GrizzlySeries([1,2,3])
>>> a.add(5).evaluate()
0    6
1    7
2    8
dtype: int64