can be chunked: >>> np.sum(np.r_[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]) 55 >>> sum([0, 1, 2, 3, 4, 5]) + sum([6, 7, 8, 9, 10]) 55 Elementwise mapping operations can be chunked: >>> 10. * np.r_[0, 1, 2, 3, 4, 5] array([ 0., 10., 20., 30., 40., 50.]) >>> np.hstack((10. * np.r_[0, 1, 2], ... 10. * np.r_[3, 4, 5])) array([ 0., 10., 20., 30., 40., 50.])