Da Li (李达)
Da Li (李达)
Wow, I feel this will be a nice feature. SDC also uses many string-format jit function via `exec`, and one time compilation will consume > 10s, which is kind of...
xref: #8208, I tried this PR pushed by @gmarkall , which fixed stuff in setup.py about handling std=c++11, but still got this error.
@gmarkall , many thanks, I tried ur thought (switch to ur branch and set `CXX=g++`), but still got this error.
Hi, guys. I still got the gcc compilation error on branch `release0.56`, any idea to handle this? The blame commit seems https://github.com/numba/numba/pull/7364.
Given I guess this issue has been fixed by https://github.com/numba/numba/pull/8389, close it now.
Hi, @luk-f-a. Using the current master code in this project, could I implement `scipy.stats.truncnorm.rvs` easily? I also found JAX has supported for this API (using `jax.random.truncated_normal` and related stuff to...
@luk-f-a , many thanks for this thoughtful and detailed explaination! Now, I know my situation very well! I will figure out pro-and-cons about implmemting it using numba. In fact, JAX...
Look reasonable to me, but now I will implement a jit version for the similar situation like `arithmetic_query.py`, to see whether jit can be faster than numexpr and what APIs...
what is `tensor fusion`? Can u give an example?
Hi, I looked into the mars code about transforming `df[sel]` to `df.eval(sel_expr)`. Right now, I try to implement the similar transformation, with the below format: ``` # origin df2 =...