Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for IsIdentityDrivingConstsInLoop (0.2 sec)

  1. tensorflow/compiler/jit/mark_for_compilation_pass.cc

            GetXlaScope(node));
    
        cluster_for_node_[node->id()].Get() = new_cluster;
      }
    
      return absl::OkStatus();
    }
    
    absl::StatusOr<bool> IsIdentityDrivingConstsInLoop(Node* node) {
      if (!node->IsIdentity()) {
        return false;
      }
    
      // Check if the Identity is driven by a Switch on its true path.
      auto it = absl::c_find_if(node->in_edges(), [](const Edge* e) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
Back to top