Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for StripSavedModuleMetadataPass (0.45 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/strip_saved_module_metadata.cc

    namespace {
    
    #define GEN_PASS_DEF_STRIPSAVEDMODULEMETADATAPASS
    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_savedmodel_passes.h.inc"
    
    struct StripSavedModuleMetadataPass
        : public impl::StripSavedModuleMetadataPassBase<
              StripSavedModuleMetadataPass> {
      void runOnOperation() override;
    };
    
    bool ShouldStripAttr(NamedAttribute &namedAttr) {
      auto name = namedAttr.getName().strref();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 08:06:04 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_savedmodel_passes.td

        to
    
          %0 = ml_program.global_load @vars.foo
      }];
    
      let constructor = "::mlir::tf_saved_model::CreateLowerVariableOpsToMlProgramPass()";
    }
    
    def StripSavedModuleMetadataPass : Pass<"tf-strip-saved-module-metadata", "ModuleOp"> {
      let summary = "Removes saved_model attributes.";
      let description = [{
          Removes all saved_model attributes from a module and its functions.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 09 19:11:34 UTC 2023
    - 7.3K bytes
    - Viewed (0)
Back to top