CmpOp

Description

Defines the tensor comparison type.

Structure Definition

1
2
3
4
5
6
7
8
enum class CmpOp { 
     CMP_EQ = 0, 
     CMP_NE, 
     CMP_LT, 
     CMP_GT, 
     CMP_LE, 
     CMP_GE 
};

Parameters

Parameter

Description

CMP_EQ

Equal operation, indicating ==.

CMP_NE

Unequal operation, indicating !=.

CMP_LT

Less-than operation, indicating <.

CMP_GT

Greater-than operation, indicating >.

CMP_LE

Less-than or equal operation, indicating <=.

CMP_GE

Greater-than or equal operation, indicating >=.