Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for MovePreservedParallelExecuteChildren (0.38 sec)

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

    // Move child processes of the ParallelExecute that do not change. These are all
    // children except for the child with the ClusterFunc.
    // Returns the index of the child with the ClusterFunc.
    int MovePreservedParallelExecuteChildren(
        int num_cores_per_replica,
        llvm::SmallVector<mlir::Type, 8>& concatenated_output_types,
        mlir::OpBuilder* builder, mlir::tf_device::ClusterFuncOp cluster_func,
    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

                     << " is not empty.";
          return mlir::failure();
        }
        old_parallel_execute->erase();
      }
      return mlir::success();
    }
    
    int MovePreservedParallelExecuteChildren(
        int num_cores_per_replica,
        llvm::SmallVector<mlir::Type, 8>& concatenated_output_types,
        mlir::OpBuilder* builder, mlir::tf_device::ClusterFuncOp cluster_func,
    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/tensorflow/transforms/host_runtime/tpu_rewrite_pass.cc

            &(*cluster_to_core_index)[core]);
        if (failed(result)) return failure();
    
        for (Type t : output_types) concatenated_output_types.emplace_back(t);
      }
    
      *cluster_idx = tensorflow::MovePreservedParallelExecuteChildren(
          num_cores_per_replica, concatenated_output_types, builder, cluster_func,
          old_parallel_execute, new_parallel_execute);
    
      // Extract inputs for each block of the parallel_execute op. The i-th
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 29.7K bytes
    - Viewed (0)
Back to top