Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ParallelExecuteToIslandsPass (0.37 sec)

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

    namespace {
    
    #define GEN_PASS_DEF_PARALLELEXECUTETOISLANDSPASS
    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.h.inc"
    
    struct ParallelExecuteToIslandsPass
        : public impl::ParallelExecuteToIslandsPassBase<
              ParallelExecuteToIslandsPass> {
      explicit ParallelExecuteToIslandsPass(bool legacy_graph_export) {
        legacy_graph_export_ = legacy_graph_export;
      }
      void runOnOperation() override;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 19 19:47:16 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/attribute_utils.h

    //    "tf.OpB"
    //    "tf_device.parallel_execute"() ({
    //      "tf.OpC"
    //    }, {
    //      "tf.OpD"
    //    })
    //  }
    //
    // The above IR will be flattened after `ReplicateToIslandPass` and
    // `ParallelExecuteToIslandsPass` as follows:
    //
    // tf_executor.island wraps "tf.OpA"
    // tf_executor.island {_parallel_execution_ids=r0:0} wraps "tf.OpB"
    // tf_executor.island {_parallel_execution_ids=r0:0,p0:0} wraps "tf.OpC"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let summary = "Fold explicit broadcasts into the following operations if they "
               "support implicit broadcasting on their operand.";
      let constructor = "TF::CreateBroadcastFoldPass()";
    }
    
    def ParallelExecuteToIslandsPass : Pass<"tf-parallel-execute-to-islands", "mlir::func::FuncOp"> {
      let summary = "Lowers device parallel_execute to executor islands";
      let constructor = "TFDevice::CreateParallelExecuteToIslandsPass()";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
Back to top