Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for FixupSourceAndSinkEdges (0.21 sec)

  1. tensorflow/compiler/jit/cluster_scoping_pass_test.cc

    #include "tensorflow/core/platform/test.h"
    #include "tensorflow/core/public/session_options.h"
    
    namespace tensorflow {
    namespace {
    
    Status ClusterScoping(std::unique_ptr<Graph>* graph) {
      FixupSourceAndSinkEdges(graph->get());
    
      GraphOptimizationPassWrapper wrapper;
      wrapper.session_options.config.mutable_graph_options()
          ->mutable_optimizer_options()
          ->set_global_jit_level(OptimizerOptions::ON_2);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 29 16:20:48 UTC 2020
    - 6.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_compile_util.cc

                            .Attr("T", result_types[i])
                            .Attr("index", i)
                            .Finalize(graph.get(), &node);
        TF_RETURN_IF_ERROR(status);
      }
      FixupSourceAndSinkEdges(graph.get());
      return graph;
    }
    
    bool UsePjRtForSingleDeviceCompilation(const DeviceType& device_type) {
      const auto& rollout_config = GetXlaOpsCommonFlags()->tf_xla_use_device_api;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top