[Numpy-discussion] lazy evaluation

Nathaniel Smith njs at pobox.com
Tue Jun 5 15:17:38 EDT 2012


On Tue, Jun 5, 2012 at 7:08 PM, mark florisson
<markflorisson88 at gmail.com> wrote:
> On 5 June 2012 17:38, Nathaniel Smith <njs at pobox.com> wrote:
>> On Tue, Jun 5, 2012 at 4:12 PM, mark florisson
>> <markflorisson88 at gmail.com> wrote:
>>> On 5 June 2012 14:58, Nathaniel Smith <njs at pobox.com> wrote:
>>>> On Tue, Jun 5, 2012 at 12:55 PM, mark florisson
>>>> <markflorisson88 at gmail.com> wrote:
>>>>> It would be great if we implement the NEP listed above, but with a few
>>>>> extensions. I think Numpy should handle the lazy evaluation part, and
>>>>> determine when expressions should be evaluated, etc. However, for each
>>>>> user operation, Numpy will call back a user-installed hook
>>>>> implementing some interface, to allow various packages to provide
>>>>> their own hooks to evaluate vector operations however they want. This
>>>>> will include packages such as Theano, which could run things on the
>>>>> GPU, Numexpr, and in the future
>>>>> https://github.com/markflorisson88/minivect (which will likely have an
>>>>> LLVM backend in the future, and possibly integrated with Numba to
>>>>> allow inlining of numba ufuncs). The project above tries to bring
>>>>> together all the different array expression compilers together in a
>>>>> single framework, to provide efficient array expressions specialized
>>>>> for any data layout (nditer on steroids if you will, with SIMD,
>>>>> threaded and inlining capabilities).
>>>>
>>>> A global hook sounds ugly and hard to control -- it's hard to tell
>>>> which operations should be deferred and which should be forced, etc.
>>>
>>> Yes, but for the user the difference should not be visible (unless
>>> operations can raise exceptions, in which case you choose the safe
>>> path, or let the user configure what to do).
>>>
>>>> While it would be less magical, I think a more explicit API would in
>>>> the end be easier to use... something like
>>>>
>>>>  a, b, c, d = deferred([a, b, c, d])
>>>>  e = a + b * c  # 'e' is a deferred object too
>>>>  f = np.dot(e, d)  # so is 'f'
>>>>  g = force(f)  # 'g' is an ndarray
>>>>  # or
>>>>  force(f, out=g)
>>>>
>>>> But at that point, this could easily be an external library, right?
>>>> All we'd need from numpy would be some way for external types to
>>>> override the evaluation of ufuncs, np.dot, etc.? We've recently seen
>>>> several reasons to want that functionality, and it seems like
>>>> developing these "improved numexpr" ideas would be much easier if they
>>>> didn't require doing deep surgery to numpy itself...
>>>
>>> Definitely, but besides monkey-patch-chaining I think some
>>> modifications would be required, but they would be reasonably simple.
>>> Most of the functionality would be handled in one function, which most
>>> ufuncs (the ones you care about, as well as ufunc (methods) like add)
>>> call. E.g. if ((result = NPy_LazyEval("add", op1, op2)) return result;
>>> , which is inserted after argument unpacking and sanity checking. You
>>> could also do a per-module hook, and have the function look at
>>> sys._getframe(1).f_globals, but that is fragile and won't work from C
>>> or Cython code.
>>>
>>> How did you have overrides in mind?
>>
>> My vague idea is that core numpy operations are about as fundamental
>> for scientific users as the Python builtin operations are, so they
>> should probably be overrideable in a similar way. So we'd teach numpy
>> functions to check for methods named like "__numpy_ufunc__" or
>> "__numpy_dot__" and let themselves be overridden if found. Like how
>> __gt__ and __add__ and stuff work. Or something along those lines.
>>
>>> I also found this thread:
>>> http://mail.scipy.org/pipermail/numpy-discussion/2011-June/056945.html
>>> , but I think you want more than just to override ufuncs, you want
>>> numpy to govern when stuff is allowed to be lazy and when stuff should
>>> be evaluated (e.g. when it is indexed, slice assigned (although that
>>> itself may also be lazy), etc). You don't want some funny object back
>>> that doesn't work with things which are not overridden in numpy.
>>
>> My point is that probably numpy should *not* govern the decision about
>> what stuff should be lazy and what should be evaluated; that should be
>> governed by some combination of the user and
>> Numba/Theano/minivect/whatever. The toy API I sketched out would make
>> those decisions obvious and explicit. (And if the funny objects had an
>> __array_interface__ attribute that automatically forced evaluation
>> when accessed, then they'd work fine with code that was expecting an
>> array, or if they were assigned to a "real" ndarray, etc.)
>
> That's disappointing though, since the performance drawbacks can
> severely limit the usefulness for people with big data sets. Ideally,
> you would take your intuitive numpy code, and make it go fast, without
> jumping through hoops. Numpypy has lazy evaluation,  I don't know how
> good a job it does, but it does mean you can finally get fast numpy
> code in an intuitive way (and even run it on a GPU if that is possible
> and beneficial).

All of these proposals require the user to jump through hoops -- the
deferred-ufunc NEP has the extra 'with deferredstate' thing, and more
importantly, a set of rules that people have to learn and keep in mind
for which numpy operations are affected, which ones aren't, which
operations can't be performed while deferredstate is True, etc. So
this has two problems: (1) these rules are opaque, (2) it's far from
clear what the rules should be. If we (initially) implement
"deferredness" in a third-party library with an explicit
"deferredarray" type, then that works around both of them: it makes
the rules transparent (operations using that type are deferred,
operations using ndarray aren't), and gives you room to experiment
with different approaches without having to first accomplish some
major change in the numpy code base (and maybe get it wrong and have
to change it again later). That's what I meant when I said in my first
message that the more explicit API actually seemed like it would be
easier for people to use in the long run.

-n



More information about the NumPy-Discussion mailing list