Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for flib_ (0.03 sec)

  1. tensorflow/compiler/jit/xla_cluster_util_test.cc

    }
    
    absl::StatusOr<std::vector<string>> GetNodesRelatedToRefVarsSorted(
        const Scope& scope, FunctionLibraryDefinition* flib_def = nullptr) {
      FunctionDefLibrary flib;
      FunctionLibraryDefinition flib_def_local(OpRegistry::Global(), flib);
      if (flib_def == nullptr) {
        flib_def = &flib_def_local;
      }
    
      std::unique_ptr<Graph> graph(new Graph(OpRegistry::Global()));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/api/v2/legalize_tf.cc

                  << std::get<0>(computation).mlir_module;
          break;
        case 1: {
          auto input = std::get<1>(computation);
          Graph g(input.flib_def);
          VLOG(2) << "LegalizeMlirToHlo with FLIB computation input: "
                  << DumpGraphToFile(
                         absl::StrCat("legalize_mlir_hlo_computation_input_",
                                      input.function->name()),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 00:40:46 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate_cl.cc

        llvm::cl::desc("Set original TF function name on importi."),
        llvm::cl::init(false));
    
    // Export options.
    // NOLINTNEXTLINE
    opt<bool> export_entry_func_to_flib(
        "tf-export-entry-func-to-flib",
        llvm::cl::desc(
            "Export entry function to function library instead of graph"),
        llvm::cl::init(false));
    // NOLINTNEXTLINE
    opt<bool> export_original_tf_func_name(
        "tf-export-original-func-name",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 10 20:59:50 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/translate/export_graphdef.cc

                                         FunctionDefLibrary());
      std::unique_ptr<Graph> graph;
      TF_RETURN_IF_ERROR(ConvertMlirToGraph(module, configs, &graph, &flib_def));
    
      // If the entry function is exported to flib, then no graph is constructed.
      // Construct one in that case.
      if (configs.export_entry_func_to_flib) {
        graph = std::make_unique<Graph>(OpRegistry::Global());
        TF_RETURN_IF_ERROR(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.cc

                                         FunctionDefLibrary());
      std::unique_ptr<Graph> graph;
      TF_RETURN_IF_ERROR(ConvertMlirToGraph(module, configs, &graph, &flib_def));
    
      // If the entry function is exported to flib, then no graph is constructed.
      // Construct one in that case.
      if (configs.export_entry_func_to_flib) {
        graph = std::make_unique<Graph>(OpRegistry::Global());
        TF_RETURN_IF_ERROR(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

     * Copies static resources from _src/main/webapp_ into the root of the WAR
     * Copies the compiled production classes into a _WEB-INF/classes_ subdirectory of the WAR
     * Copies the library dependencies into a _WEB-INF/lib_ subdirectory of the WAR
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
Back to top