[pypy-commit] pypy default: disable those until we know it works
fijal
noreply at buildbot.pypy.org
Thu Jul 21 23:46:26 CEST 2011
Author: Maciej Fijalkowski <fijall at gmail.com>
Branch:
Changeset: r45844:cb95026e7622
Date: 2011-07-21 23:46 +0200
http://bitbucket.org/pypy/pypy/changeset/cb95026e7622/
Log: disable those until we know it works
diff --git a/pypy/module/micronumpy/interp_numarray.py b/pypy/module/micronumpy/interp_numarray.py
--- a/pypy/module/micronumpy/interp_numarray.py
+++ b/pypy/module/micronumpy/interp_numarray.py
@@ -259,8 +259,8 @@
i = start
j = 0
while i < stop:
- slice_driver1.jit_merge_point(signature=arr.signature,
- step=step, stop=stop, i=i, j=j, arr=arr, storage=storage)
+ #slice_driver1.jit_merge_point(signature=arr.signature,
+ # step=step, stop=stop, i=i, j=j, arr=arr, storage=storage)
storage[i] = arr.eval(j)
j += 1
i += step
@@ -269,8 +269,8 @@
i = start
j = 0
while i > stop:
- slice_driver2.jit_merge_point(signature=arr.signature,
- step=step, stop=stop, i=i, j=j, arr=arr, storage=storage)
+ #slice_driver2.jit_merge_point(signature=arr.signature,
+ # step=step, stop=stop, i=i, j=j, arr=arr, storage=storage)
storage[i] = arr.eval(j)
j += 1
i += step
More information about the pypy-commit
mailing list