Skip to content

Commit dc4542c

Browse files
y3tsengy3tseng
authored andcommitted
fix bug in hip file
1 parent c1dde6c commit dc4542c

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

src/hip/device-function.hip.cpp

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1057,14 +1057,6 @@ __global__ void device_function::parallelProfileAlignment_Fast(
10571057
int16_t tempI, tempD, tempH;
10581058

10591059
// Use DPX instuctions to calculate Max
1060-
unsigned Ext = (delExt << 16) | (insExt & 0xFFFF);
1061-
unsigned Op = (delOp << 16) | (insOp & 0xFFFF);
1062-
unsigned ExtOp = __vibmax_s16x2(Ext, Op, &Dptr, &Iptr);
1063-
tempD = (ExtOp >> 16) & 0xFFFF;
1064-
tempI = ExtOp & 0xFFFF;
1065-
D[(k%2)*fLen+offset] = tempD;
1066-
I[(k%2)*fLen+offset] = tempI;
1067-
// Use DPX instuctions to calculate Max
10681060
/*
10691061
unsigned Ext = (delExt << 16) | (insExt & 0xFFFF);
10701062
unsigned Op = (delOp << 16) | (insOp & 0xFFFF);

0 commit comments

Comments
 (0)