aboutsummaryrefslogtreecommitdiff
path: root/compute_kernel_writer/prototype/include/ckw/types
diff options
context:
space:
mode:
Diffstat (limited to 'compute_kernel_writer/prototype/include/ckw/types')
-rw-r--r--compute_kernel_writer/prototype/include/ckw/types/Functions.h1
-rw-r--r--compute_kernel_writer/prototype/include/ckw/types/Operators.h4
2 files changed, 2 insertions, 3 deletions
diff --git a/compute_kernel_writer/prototype/include/ckw/types/Functions.h b/compute_kernel_writer/prototype/include/ckw/types/Functions.h
index 68146cb1c8..2dd5ed0b3d 100644
--- a/compute_kernel_writer/prototype/include/ckw/types/Functions.h
+++ b/compute_kernel_writer/prototype/include/ckw/types/Functions.h
@@ -37,7 +37,6 @@ enum class UnaryFunction : int32_t
Sqrt = 0x0002,
Erf = 0x0003,
Fabs = 0x0004,
- IsGreaterEqual = 0x0005,
Log = 0x0006,
Round = 0x0007,
diff --git a/compute_kernel_writer/prototype/include/ckw/types/Operators.h b/compute_kernel_writer/prototype/include/ckw/types/Operators.h
index 172650d5ae..14a88c91b4 100644
--- a/compute_kernel_writer/prototype/include/ckw/types/Operators.h
+++ b/compute_kernel_writer/prototype/include/ckw/types/Operators.h
@@ -68,8 +68,8 @@ enum class BinaryOp : int32_t
enum class AssignmentOp : int32_t
{
// Unary
- Increment = 0x0000, // +=
- Decrement = 0x0001, // -=
+ Increment = 0x0000, // +=
+ Decrement = 0x0001, // -=
};
} // namespace ckw