Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getOpFuncAttrs (0.23 sec)

  1. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_common.h

    template <typename OpTy>
    mlir::LogicalResult VerifyFallbackExecuteOp(OpTy op) {
      auto result = VerifyExecuteOpCommon(op);
      if (failed(result)) return result;
    
      // Verify function attributes.
      auto op_func_attr_array = op.getOpFuncAttrs().getValue();
      for (auto op_attr : op_func_attr_array) {
        auto key_value = mlir::dyn_cast<mlir::ArrayAttr>(op_attr);
        if (!key_value || key_value.getValue().size() != 2 ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top