Skip to content

Commit e311691

Browse files
committed
Fix bug in __imf_vcmplt4
Signed-off-by: jinge90 <[email protected]>
1 parent 3a7c778 commit e311691

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libdevice/imf_utils/simd_emulate.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -581,7 +581,7 @@ unsigned int __devicelib_imf_vcmplts2(unsigned int x, unsigned int y) {
581581

582582
DEVICE_EXTERN_C_INLINE
583583
unsigned int __devicelib_imf_vcmplts4(unsigned int x, unsigned int y) {
584-
return __internal_v_binary_op<int8_t, 4, __le_op>(x, y);
584+
return __internal_v_binary_op<int8_t, 4, __lt_op>(x, y);
585585
}
586586

587587
DEVICE_EXTERN_C_INLINE

0 commit comments

Comments
 (0)