Skip to content

Commit

Permalink
Update screening.py
Browse files Browse the repository at this point in the history
  • Loading branch information
loganbvh committed Sep 18, 2023
1 parent 5d59829 commit cf73290
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tdgl/solver/screening.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ def get_A_induced_cupy(
A_induced,
):
i = cupyx.jit.grid(1)
for k in cupyx.jit.range(2):
for k in range(2):
tmp = 0.0
for j in cupyx.jit.range(sites.shape[0]):
for j in range(sites.shape[0]):
dx = edge_centers[i, 0] - sites[j, 0]
dy = edge_centers[i, 1] - sites[j, 1]
dr = cupy.sqrt(dx * dx + dy * dy)
Expand Down

0 comments on commit cf73290

Please sign in to comment.