Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for qdq (0.02 sec)

  1. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        // Match Add.
        DenseElementsAttr added_value;
        Value constant_val = add_op.getRhs();
        if (!matchPattern(constant_val, m_Constant(&added_value))) {
          // The constant may be preceded by QDQs in models with QDQ format, so we
          // should set it to the real constant.
          auto dq = dyn_cast_or_null<DequantizeOp>(constant_val.getDefiningOp());
          if (!dq) return failure();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top