Skip to content

Commit

Permalink
[CCSD(T)] a minor update to sycl
Browse files Browse the repository at this point in the history
  • Loading branch information
abagusetty authored Jun 27, 2024
1 parent 88d1ada commit 76b3180
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exachem/cc/ccsd_t/ccsd_t_all_fused_nontcCuda_Hip_Sycl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2782,7 +2782,7 @@ __global__ void revised_jk_ccsd_t_fully_fused_kernel(
#ifndef USE_DPCPP
reduced_energy[blockIdx_x + gridDim.x] = final_energy_2;
#else
reduced_energy[blockIdx_x + item.get_group_range(1)] = final_energy_2;
reduced_energy[blockIdx_x + static_cast<int>(item.get_group_range(1))] = final_energy_2;
#endif
}
}
Expand Down

0 comments on commit 76b3180

Please sign in to comment.