Skip to content

Commit 290bc33

Browse files
committed
changed the *= operator in kernel temporarily to avoid jenkin build failure
1 parent adb3f30 commit 290bc33

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

library/src/device/real2complex.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -404,8 +404,8 @@ __global__ void real_1d_pre_post_process_kernel(size_t half_N,
404404

405405
if(R2C)
406406
{
407-
u *= 0.5;
408-
v *= 0.5;
407+
u = u*0.5;
408+
v = v*0.5;
409409
}
410410
else
411411
{

0 commit comments

Comments
 (0)