Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for FindClustersInTheBlock (0.23 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.cc

          if (succeeded(state.Union(member_id, user_member_id, policies)))
            clustered = true;
        }
      }
    
      return clustered;
    }
    
    llvm::SmallVector<Cluster> FindClustersInTheBlock(
        Block *block, const ClusteringPolicySet &policies,
        std::function<bool(Operation *op)> filter) {
      // It is impossible to build a cluster in the empty block.
      if (block->empty()) return {};
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 27.9K bytes
    - Viewed (0)
Back to top