Smit Lunagariya
Smit Lunagariya
I just added an option to disable `numba` cache because while testing, if we continue using the cache which contains the jitted functions, the tests will fail because of type...
I'm thinking of the following approach: 1. A class in numba that handles cache -- say `NumbaCache`. 2. Some of the probable methods that this class would have is: -...
Once we have completed #1470, I think we can then try to refactor some nodes like `Shape_i` and use `partial` functions. Numba with partial funcs ```py import numba from functools...
Looking into this I noticed that `numba.config.DISABLE_JIT = True` will not affect already compiled functions. To call the pure python functions i.e. without jitted, we should use `numba_function.py_func`. We need...
Hi @jstac Thanks for opening up this issue. I'll try to go through the lecture once and modify it according to your suggestions. > It is not clear from reading...
Thanks, @jstac and @oyamad. I have opened a PR to fix the same. Once that is merged in the `master`, I will then fix the lectures/dp_textbook code.
Another difference: Python: `markov_chain_object.P` Julia: `markov_chain_object.p`
@rgommers I have a suggestion for the design: 1. We can move all the `_*_replacer` functions to a new file `_multimethods_replacers.py` and document in each replacer that which functions in...
Linalg looks complete now and ready for higher-level review. Just some refactoring can make it look better. Also, we need to figure out the circular import issue in order to...
> Can you rebase to get rid of the commits that are unrelated to uarray for `scipy.signal`? Done! > I'll be travelling for the next couple of days, so I...