Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9fe4121f authored by Slava Shklyaev's avatar Slava Shklyaev Committed by android-build-merger
Browse files

Add new operand type TENSOR_BOOL8 am: 51e44f70

am: e225e6b7

Change-Id: Ib1ea3bfc0a7ec3ec21ea2334ba23c870265b7aae
parents 5cd61fb6 e225e6b7
Loading
Loading
Loading
Loading
+8 −1
Original line number Diff line number Diff line
@@ -42,6 +42,13 @@ enum OperandType : @1.0::OperandType {
    TENSOR_QUANT16_SYMM = 7,
    /** A tensor of 16 bit floating point values. */
    TENSOR_FLOAT16 = 8,
    /**
     * A tensor of 8 bit boolean values.
     *
     * Values of this operand type are either true or false. A zero value
     * represents false; any other value represents true.
     */
    TENSOR_BOOL8 = 9,
};

/**
@@ -51,7 +58,7 @@ enum OperandType : @1.0::OperandType {
 */
enum OperandTypeRange : uint32_t {
    OPERAND_FUNDAMENTAL_MIN = 0,
    OPERAND_FUNDAMENTAL_MAX = 8,
    OPERAND_FUNDAMENTAL_MAX = 9,
    OPERAND_OEM_MIN     = 10000,
    OPERAND_OEM_MAX     = 10001,
};