You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
diff --git a/PYTHON/p2p-numba.py b/PYTHON/p2p-numba.py
index 82ff99be..5fd8cecd 100755
--- a/PYTHON/p2p-numba.py+++ b/PYTHON/p2p-numba.py@@ -61,12 +61,15 @@ import numpy
print('Numpy version = ', numpy.version.version)
import numba
-@jit+@numba.jit
def iterate_over_grid(grid, m, n):
for i in range(1,m):
for j in range(1,n):
grid[i][j] = grid[i-1][j] + grid[i][j-1] - grid[i-1][j-1]
+ # copy top right corner value to bottom left corner to create dependency+ grid[0,0] = -grid[m-1,n-1]+
def main():
# ********************************************************************
@@ -106,9 +109,6 @@ def main():
iterate_over_grid(grid, m, n)
- # copy top right corner value to bottom left corner to create dependency- grid[0,0] = -grid[m-1,n-1]-
t1 = timer()
pipeline_time = t1 - t0
The text was updated successfully, but these errors were encountered:
Apply this patch from @dalcinl...
The text was updated successfully, but these errors were encountered: