Skip to content

Commit

Permalink
fix typo...
Browse files Browse the repository at this point in the history
  • Loading branch information
littlemine committed Jul 12, 2024
1 parent 9407041 commit 2f9dc8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/CuEulerian/swe/FDGather.cu
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,7 @@ void assignToField2D(CoordsT coord, FieldT field, PrimAttrT primAttr, int nx, in
// 0.0, ny - 1.01});
int i = uv2[0];
int j = uv2[2];
field[j * nx + i] = temp[tidx];
field[j * nx + i] = primAttr[tidx];
});
}

Expand Down

0 comments on commit 2f9dc8e

Please sign in to comment.