Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 200 for graphml (0.2 sec)

  1. tensorflow/compiler/jit/shape_inference.cc

        }
      }
      return absl::OkStatus();
    }
    
    }  // namespace
    
    Status InferShapes(Graph* graph, const std::map<int, InferredShape>& arg_shapes,
                       const tensorflow::FunctionLibraryDefinition* fnlib_def,
                       GraphShapeInfo* shape_info) {
      ShapeRefiner shape_refiner(graph->versions(), graph->op_registry());
      shape_refiner.set_require_shape_inference_fns(false);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/flags.cc

               "knows how to fuse.  "
               "If set to single-gpu(<N>) then this resolves to <N> for single-GPU "
               "graphs (graphs that have at least one node placed on a GPU and no "
               "more than one GPU is in use through the entire graph) and 0 "
               "otherwise.  Experimental."),
          Flag("tf_xla_min_cluster_size",
               &mark_for_compilation_flags->tf_xla_min_cluster_size,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/export_graphdef.cc

      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(
            graph->mutable_flib_def()->AddLibrary(std::move(flib_def)));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.cc

      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(
            graph->mutable_flib_def()->AddLibrary(std::move(flib_def)));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-default-attr.pbtxt

    A. Unique TensorFlower <******@****.***> 1591817060 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 10 19:32:15 UTC 2020
    - 12K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/convert_control_to_data_outputs.cc

      auto graph_op = cast<GraphOp>(func.front().front());
    
      // For each op in the graph, get the resources it uses and update the access
      // information for them.
      graph_op.walk([&](IslandOp island) {
        // This pass assumes that all functions are suitable for export i.e., each
        // function has a single tf_executor.graph op and all islands wrap the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/img/swift-application-task-graph.png

    swift-application-task-graph.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/img/visual-studio-task-graph.png

    visual-studio-task-graph.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 36K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/odml_to_stablehlo.cc

    #include "tensorflow/core/platform/status.h"
    #include "tensorflow/core/platform/statusor.h"
    
    // Tool which lowers TensorFlow Graphs to StableHLO graphs.
    //
    // This tool is used by the ODML Programmability effort to consume input TF
    // graphs, and lower them to StableHLO graphs for use by downstream tools.
    //
    // Input: TF Saved Model or TF MLIR files.
    // Output: StableHLO MLIR or TFLite Flatbuffer.
    //
    // Usage:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

    function viewer(baseUrl, nodes, options) {
      'use strict';
    
      // Elements
      const search = document.getElementById('search');
      const graph0 = document.getElementById('graph0');
      const svg = (graph0 == null ? null : graph0.parentElement);
      const toptable = document.getElementById('toptable');
    
      let regexpActive = false;
      let selected = new Map();
      let origFill = new Map();
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
Back to top