Skip to content

Commit

Permalink
fix indentation 2
Browse files Browse the repository at this point in the history
  • Loading branch information
FhqTreap committed Sep 29, 2023
1 parent f4bdb5c commit 5c6eaa5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/layer/vulkan/shader/convolution1d_pack1to4.comp
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ void main()
for (int y = 0; y < psc(h); y++)
{
for (int x = 0; x < kernel_w; x++)
{
{
afp v0 = buffer_ld1(bottom_blob_data, v_offset.x + x * dilation_w);
afp v1 = buffer_ld1(bottom_blob_data, v_offset.y + x * dilation_w);

Expand All @@ -145,7 +145,7 @@ void main()
sum1 += v1 * k0;
sum2 += v0 * k1;
sum3 += v1 * k1;
}
}
v_offset += psc(w);
w_offset += kernel_w;
}
Expand Down

0 comments on commit 5c6eaa5

Please sign in to comment.