Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for other_api (0.2 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

      auto filter = [&](Operation* other_op) {
        return cluster_ops.contains(other_op) ||
               cluster_dependent_ops.contains(other_op);
      };
      auto other_ops =
          incoming ? side_effect_analysis.DirectControlPredecessors(op, filter)
                   : side_effect_analysis.DirectControlSuccessors(op, filter);
      if (other_ops.empty())
        return nullptr;
      else
        return *other_ops.begin();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/update_control_dependencies.cc

    namespace mlir {
    namespace tf_executor {
    namespace {
    
    // Comparator for `OpsInReverseProgramOrder`.
    struct IsAfterInBlock {
      bool operator()(Operation* op, Operation* other_op) const {
        // This function has an average complexity of O(1).
        return other_op->isBeforeInBlock(op);
      }
    };
    
    #define GEN_PASS_DEF_EXECUTORUPDATECONTROLDEPENDENCIESPASS
    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.h.inc"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 30 07:53:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

    //
    //    <allowed>               <not allowed>
    //
    //    fakequant                 fakequant
    //        |                         |
    //    reorder_op                   / \
    //                       reorder_op   other_op
    //
    //       ||
    //       \/
    //
    //    reorder_op
    //        |
    //    fakequant
    template <typename ReorderOp>
    struct ReorderFakeQuantPattern : public RewritePattern {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Maps.java

          // threshold is equal to ceilingPowerOfTwo(expectedSize). There is a separate code
          // path when the first operation on the new map is putAll(otherMap). There, prior to
          // https://github.com/openjdk/jdk/commit/3e393047e12147a81e2899784b943923fc34da8e, a bug
          // meant that sometimes a too-large threshold is calculated. However, this new threshold is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Maps.java

          // threshold is equal to ceilingPowerOfTwo(expectedSize). There is a separate code
          // path when the first operation on the new map is putAll(otherMap). There, prior to
          // https://github.com/openjdk/jdk/commit/3e393047e12147a81e2899784b943923fc34da8e, a bug
          // meant that sometimes a too-large threshold is calculated. However, this new threshold is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
Back to top