Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for verifyOperationAttribute (0.56 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model.h

                                                unsigned result_index,
                                                NamedAttribute named_attr) override;
      LogicalResult verifyOperationAttribute(Operation *op,
                                             NamedAttribute named_attr) override;
    
      static StringRef getDialectNamespace() { return "tf_saved_model"; }
    };
    
    }  // namespace tf_saved_model
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 03:21:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model.cc

        // 'tf_saved_model.exported_names' attribute, then it might be invalid.
        // Forward to the dialect's verification to establish that precondition.
        if (failed(dialect->verifyOperationAttribute(
                &op, {exported_names_ident, attr}))) {
          return failure();
        }
        for (auto str : mlir::cast<ArrayAttr>(attr)) {
          auto exported_name = mlir::cast<StringAttr>(str).getValue();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
Back to top