Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SavedModelMLIRImportInput (0.52 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/import_model.h

    // class to transform the graph before feeding it to the importer.
    class SavedModelMLIRImportInput {
     public:
      SavedModelMLIRImportInput(const MetaGraphDef* meta_graph_def,
                                const GraphDebugInfo& debug_info)
          : meta_graph_def_(meta_graph_def), debug_info_(debug_info) {
        DCHECK(meta_graph_def);
      }
    
      virtual ~SavedModelMLIRImportInput();
    
      // The original MetaGraphDef of the savedmodel.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        return diag_handler.Combine(
            errors::Internal("Failed to dedup bound inputs."));
    
      return absl::OkStatus();
    }
    
    }  // namespace
    
    SavedModelMLIRImportInput::~SavedModelMLIRImportInput() {}
    
    absl::StatusOr<mlir::OwningOpRef<mlir::ModuleOp>> ConvertGraphdefToMlir(
        const GraphDef& graphdef, const GraphDebugInfo& debug_info,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top