Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for GraphImportConfig (0.44 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/mlir_roundtrip_flags.cc

    #include "tensorflow/core/framework/types.pb.h"
    #include "tensorflow/core/lib/core/errors.h"
    #include "tensorflow/core/platform/errors.h"
    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    
    std::string GraphImportConfig::str() const {
      std::ostringstream ss;
    
      ss << "graph_func_name: " << graph_func_name;
      InputArrays inputs;
      ss << "\ninputs: ";
      for (auto& it : inputs) {
        ss << "\n\t" << it.first << " -> "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/python/mlir.cc

                                          bool show_debug_info,
                                          GraphDebugInfo& debug_info,
                                          GraphImportConfig& specs,
                                          TF_Status* status) {
      GraphDef graphdef;
      auto s = tensorflow::LoadProtoFromBuffer(proto, &graphdef);
      if (!s.ok()) {
        tsl::Set_TF_Status_from_Status(status, s);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/mlir_graph_optimization_pass.cc

      }
    
      GraphDebugInfo debug_info;
      mlir::DialectRegistry registry;
      RegisterDialects(registry);
      mlir::MLIRContext context(registry);
      GraphImportConfig import_config;
      import_config.graph_as_function = true;
      import_config.control_outputs = *control_ret_node_names;
      import_config.upgrade_legacy = true;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tf_to_tfl_flatbuffer.cc

    absl::StatusOr<OwningOpRef<ModuleOp>> LoadFromGraphdefOrMlirSource(
        const std::string& input_filename, bool input_mlir,
        bool use_splatted_constant, const std::vector<std::string>& extra_tf_opdefs,
        const GraphImportConfig& specs, absl::string_view debug_info_file,
        absl::string_view input_arrays, absl::string_view input_dtypes,
        absl::string_view input_shapes, absl::string_view output_arrays,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/python/saved_model_to_tfl_flatbuffer.cc

      absl::Span<std::string> exported_names(exported_names_in_vector);
    
      if (exported_names.empty()) {
        return errors::Unimplemented("Need at least one exported name.");
      }
    
      tensorflow::GraphImportConfig specs;
      specs.upgrade_legacy = true;
    
      std::vector<std::string> custom_opdefs(toco_flags.custom_opdefs().begin(),
                                             toco_flags.custom_opdefs().end());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate.cc

      GraphDebugInfo debug_info;
      if (!import_options.debug_info_file.empty()) {
        TF_RETURN_IF_ERROR(
            LoadProtoFromFile(import_options.debug_info_file, &debug_info));
      }
    
      GraphImportConfig specs;
      specs.prune_unused_nodes = import_options.prune_unused_nodes;
      specs.convert_legacy_fed_inputs = import_options.convert_legacy_fed_inputs;
      specs.graph_as_function = import_options.graph_as_function;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 11:51:44 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/odml_to_stablehlo.cc

          absl::StrSplit(exported_model_signatures, ',');
      absl::Span<std::string> exported_names(exported_names_in_vector);
      std::vector<std::string> custom_opdefs;
    
      tensorflow::GraphImportConfig specs;
      specs.upgrade_legacy = true;
    
      return ImportSavedModel(input_path, /*saved_model_version=*/1, tags,
                              absl::MakeSpan(custom_opdefs), exported_names, specs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tf_tfl_translate.cc

        context.appendDialectRegistry(registry);
      }
    
      absl::StatusOr<mlir::OwningOpRef<mlir::ModuleOp>> module;
      std::unordered_set<std::string> tags;
    
      tensorflow::GraphImportConfig specs;
      specs.upgrade_legacy = upgrade_legacy;
      specs.prune_unused_nodes = true;
    
      if (!select_user_tf_ops.empty() && !emit_select_tf_ops) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 14K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.cc

        mlir::MLIRContext* context) {
      mlir::DialectRegistry registry;
      RegisterDialects(registry);
      context->appendDialectRegistry(registry);
      GraphImportConfig config;
      config.graph_as_function = true;
      config.control_outputs = control_rets;
      // Disable shape inference during import as some TensorFlow op fails during
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 45.3K bytes
    - Viewed (0)
Back to top