Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TFL_ArithmeticCount (0.87 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_op_interfaces.td

          (ins "Operation*":$op, "bool":$emit_error_on_verify_fail)
        >,
      ];
    }
    
    //===----------------------------------------------------------------------===//
    // TFL arithmetic count interface.
    
    def TFL_ArithmeticCount : OpInterface<"TflArithmeticCountOpInterface"> {
      let description = [{
        Interface for TFLite ops to calculate arithmetic count (Multiply-Add Count).
      }];
    
      let methods = [
        StaticInterfaceMethod<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

               OperandsSameElementTypeConstraintBasePred]>>,
        ResultsBroadcastableShape,
        Pure,
        Commutative,
        QuantizableResult,
        DeclareOpInterfaceMethods<TFL_ArithmeticCount>]> {
      let summary = "Addition operator";
    
      let description = [{
        Element-wise addition operation.
      }];
    
      let arguments = (
        ins TFL_TensorOf<[F32, I16, I32, I64, QI8, QUI8, QI16]>:$lhs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
Back to top