Is there anything I can do to speed up masked arrays in numpy? I had a terribly inefficient function that I re-wrote to use masked arrays (where I could just mask rows instead of make copies and delete rows as I was doing). However, I was shocked to find that the masked function was 10x slower because the masked arrays are so much slower.

As an example, take the following (masked is more then 6 times slower for me):

import timeit
import numpy as np
import numpy.ma as ma

def test(row):
   return row[0] + row[1]

a = np.arange(1000).reshape(500, 2)
t = timeit.Timer('np.apply_along_axis(test, 1, a)','from __main__ import test, a, np')
print round(t.timeit(100), 6)

b = ma.array(a)
t = timeit.Timer('ma.apply_along_axis(test, 1, b)','from __main__ import test, b, ma')
print round(t.timeit(100), 6)
link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

I have no idea why the masked array functions are moving so slowly, but since it sounds like you are using the mask to select rows (as opposed to individual values), you can create a regular array from the masked rows and use the np function instead:

b.mask = np.zeros(500)
b.mask[498] = True
t = timeit.Timer('c=b.view(np.ndarray)[~b.mask[:,0]]; np.apply_along_axis(test, 1, c)','from __main__ import test, b, ma, np')
print round(t.timeit(100), 6)

Better yet, don't use masked arrays at all; just maintain your data and a 1D mask array as separate variables:

a = np.arange(1000).reshape(500, 2)
mask = np.ones(a.shape[0], dtype=bool)
mask[498] = False
out = np.apply_along_axis(test, 1, a[mask])
link|improve this answer
I did end up doing something similar to your second example, but I needed the variable 'out' to have the same number of indices as there are rows in 'a'. See This Question – Scott B Jul 7 '11 at 20:08
feedback

EDIT: I was testing it wrong by using np.apply_along_axis instead of np.ma.apply_along_axis, sorry. So I confirm that the masked array version is more than 5 times slower also on Linux/numpy 1.5.1

In [16]: %timeit np.apply_along_axis(test, 1, a)
100 loops, best of 3: 15.3 ms per loop

In [17]: %timeit np.apply_along_axis(test, 1, b)
100 loops, best of 3: 15.3 ms per loop

In [12]: %timeit np.ma.apply_along_axis(test, 1, b)
10 loops, best of 3: 80.8 ms per loop

In [18]: np.__version__
Out[18]: '1.5.1'
link|improve this answer
I am using python 2.5.2 and numpy 1.5.1 on Windows XP 32bit. I'll try it on my linux computer when I get home. Very weird. For reference, when I run my posted code I get as the output: 0.955434 and 5.136362. – Scott B Apr 23 '11 at 0:20
I'm seeing a significant performance difference as well: 1.298489 for the first, 7.177839 for the second. I'm using Python 2.6.4 and numpy 1.5.1 on Linux 64bit. – tkerwin Apr 23 '11 at 0:27
Actually, I don't see a difference using the %timeit command like you did in your example, but i do when using the timeit.Timer. Maybe I don't understand how one of them works. – tkerwin Apr 23 '11 at 0:34
I still get the big different ony my 64bit linux as well (python 2.6.5 and numpy 1.3.0). – Scott B Apr 23 '11 at 2:04
@Andrea: you're using np.apply_along_axis for both matrices rather than ma.apply_along_axis for the masked one as in the OP. – Justin Peel Apr 23 '11 at 3:17
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.