Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ParentParallelExecuteWrapsSingleOp (0.36 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_merge_variables_with_execute.cc

        if (info.read->use_empty()) info.read->erase();
      }
      return success();
    }
    
    // Checks if an ops parent is a tf_device.parallel_execute and the region the
    // op is in is perfectly wrapped.
    bool ParentParallelExecuteWrapsSingleOp(Operation* op) {
      auto parallel_execute =
          llvm::dyn_cast<tf_device::ParallelExecuteOp>(op->getParentOp());
      if (!parallel_execute) return true;
    
      return parallel_execute.RegionWrapsSingleOp(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 17:52:11 UTC 2024
    - 27K bytes
    - Viewed (0)
Back to top