Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for BuildXlaOpsPass (0.12 sec)

  1. tensorflow/compiler/jit/build_xla_ops_pass_test.cc

      GraphOptimizationPassWrapper wrapper;
      GraphOptimizationPassOptions opt_options =
          wrapper.CreateGraphOptimizationPassOptions(&graph);
      opt_options.flib_def = &flib_def;
    
      BuildXlaOpsPass pass(/*enable_lazy_compilation=*/true);
      TF_RETURN_IF_ERROR(pass.Run(opt_options));
      VLOG(3) << graph->ToGraphDefDebug().DebugString();
      *result = std::move(graph);
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/build_xla_ops_pass.cc

        TF_RETURN_IF_ERROR(
            PredicateInt32Inputs(root, pco, inverse_predicate_as_control));
      }
    
      return absl::OkStatus();
    }
    }  // namespace
    
    Status BuildXlaOpsPass::Run(const GraphOptimizationPassOptions& options) {
      Graph* graph = options.graph->get();
    
      // Copy out the nodes we want to rewrite to avoid modifying the graph while we
      // iterate on graph->op_nodes().
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 24.3K bytes
    - Viewed (0)
Back to top