Skip to content

Commit

Permalink
Comment out pdb.
Browse files Browse the repository at this point in the history
  • Loading branch information
PapyChacal committed Jul 27, 2023
1 parent d8b5dba commit a67394e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fast/wave2d.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def plot_2dfunc(u):
print("Init Devito linalg norm 2 :", np.linalg.norm(u.data[2]))

print("Norm of initial data:", norm(u))
import pdb;pdb.set_trace()
# import pdb;pdb.set_trace()
u2.data[:] = u.data[:]

# Run more with no sources now (Not supported in xdsl)
Expand All @@ -142,7 +142,7 @@ def plot_2dfunc(u):
print("Devito linalg norm 1:", np.linalg.norm(u.data[1]))
print("Devito linalg norm 2:", np.linalg.norm(u.data[2]))

import pdb;pdb.set_trace()
# import pdb;pdb.set_trace()


# Reset initial data
Expand Down

0 comments on commit a67394e

Please sign in to comment.