Skip to content

Commit

Permalink
fix fused_rope diff (#60217)
Browse files Browse the repository at this point in the history
  • Loading branch information
tianhaodongbd committed Dec 22, 2023
1 parent 6b0f049 commit 167a9fa
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions paddle/phi/kernels/fusion/gpu/fused_rope_utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -125,10 +125,18 @@ __global__ void VectorizedFusedRopeWithRotateEveryTwoKernel(
MPType p0 = static_cast<MPType>(input[pr_index]);
MPType p1 = static_cast<MPType>(input[ls_index]);

result[pr_index] =
cos_value[pr_index] * p0 - sign * sin_value[ls_index] * p1;
result[ls_index] =
cos_value[ls_index] * p1 + sign * sin_value[pr_index] * p0;
if (sign == 1) {
result[pr_index] = cos_value[pr_index] * p0;
result[pr_index] -= sin_value[pr_index] * p1;

result[ls_index] = sin_value[ls_index] * p0;
result[ls_index] += cos_value[ls_index] * p1;
} else if (sign == -1) {
result[pr_index] =
cos_value[pr_index] * p0 + sin_value[ls_index] * p1;
result[ls_index] =
cos_value[ls_index] * p1 - sin_value[pr_index] * p0;
}

store[pr_index] = static_cast<T>(result[pr_index]);
store[ls_index] = static_cast<T>(result[ls_index]);
Expand Down

0 comments on commit 167a9fa

Please sign in to comment.