Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for GuaranteeConst (0.14 sec)

  1. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

    namespace {
    
    bool AreAllParentsGuaranteedConst(
        const Node& n,
        const absl::flat_hash_set<const Node*>& runtime_const_nodes) {
      if (n.type_string() == "GuaranteeConst") {
        // If the current node is itself a cast-to-const, no need
        // to look at the incoming edges.
        return true;
      }
    
      bool all_parents_const = true;
      bool atleast_one_non_control_edge = false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
Back to top