Skip to content

Commit 00ca8b9

Browse files
committed
fix: typo in tabulate.cu
1 parent 21e1b6d commit 00ca8b9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

source/lib/src/gpu/tabulate.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -599,7 +599,7 @@ __global__ void tabulate_fusion_se_t_grad_grad_fifth_order_polynomial(
599599
FPTYPE sum = (FPTYPE)0.;
600600
for (int ii = 0; ii < nnei_i; ii++) {
601601
int mark_table_idx = -1;
602-
for (int jj = 0; ii < nnei_j; jj++) {
602+
for (int jj = 0; jj < nnei_j; jj++) {
603603
FPTYPE xx = em_x[block_idx * nnei_i * nnei_j + ii * nnei_j + jj];
604604
FPTYPE tmp = xx;
605605
FPTYPE dz_xx =

0 commit comments

Comments
 (0)