Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for VariantAddN (0.21 sec)

  1. tensorflow/compiler/mlir/lite/tests/legalize-tensorlist.mlir

      func.return %0: tensor<!tf_type.variant<tensor<?x1xf32>>>
    }
    
    // -----
    
    // CHECK-LABEL: variantAddN
    func.func @variantAddN(%arg0: tensor<!tf_type.variant<tensor<*xi32>>>, %arg1: tensor<!tf_type.variant<tensor<*xi32>>>) -> tensor<!tf_type.variant<tensor<*xi32>>> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/legalize_tensorlist.cc

        if (!HasVariantInputOrOutput(op.getOperation())) {
          return failure();
        }
        auto converted = rewriter.create<TFL::CustomOp>(
            op->getLoc(), op->getResultTypes(), op->getOperands(), "VariantAddN",
            TFL::ConstBytesAttr::get(getContext(), ""));
        rewriter.replaceOp(op, converted.getResults());
        return success();
      }
    };
    
    bool IsOpSupported(mlir::Operation* op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 23:04:40 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top