Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for MutableArrayRef (0.25 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/xla_rewrite_util.h

    // Erase rewritten ClusterFuncOp(s). If TPUPartitionedInputV2Op /
    // TPUPartitionedOutputV2Op are present, they must be removed along with the
    // ClusterFuncOp(s).
    mlir::LogicalResult EraseClusterFuncs(
        llvm::MutableArrayRef<mlir::tf_device::ClusterFuncOp> to_be_erased);
    
    // Move child processes of the ParallelExecute that do not change. These are all
    // children except for the child with the ClusterFunc.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/xla_rewrite_util.cc

    ==============================================================================*/
    
    #include "tensorflow/compiler/mlir/tensorflow/utils/xla_rewrite_util.h"
    
    namespace tensorflow {
    mlir::LogicalResult EraseClusterFuncs(
        llvm::MutableArrayRef<mlir::tf_device::ClusterFuncOp> to_be_erased) {
      for (auto cluster : to_be_erased) {
        auto old_parallel_execute =
            cluster->getParentOfType<mlir::tf_device::ParallelExecuteOp>();
        if (!old_parallel_execute) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 13 03:57:18 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/passes/fold_constant_transpose.cc

      // of indices from the original values to the target values.
      void TransposeRecursively(const ArrayRef<float> original_values,
                                const MutableArrayRef<float> target_values,
                                SmallVector<int64_t>& current_indices) const {
        // Map an element from `original_values` to `target_values` when a set of
        // indices is formed.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top