Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for IslandOp (0.12 sec)

  1. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

          for (auto branch_func : branch_funcs) {
            AddRegionSideEffectsForOp(branch_func.getBody(), op);
          }
        } else if (isa<tf_device::LaunchOp, tf_device::ClusterOp,
                       tf_executor::IslandOp, tf_executor::GraphOp, IfRegionOp,
                       CaseRegionOp>(op)) {
          for (Region& region : op->getRegions()) {
            AddRegionSideEffectsForOp(region, op);
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tpu_validate_inputs.cc

                TypeID::get<mlir::func::ReturnOp>(),
                TypeID::get<mlir::func::FuncOp>(),
                TypeID::get<mlir::tf_executor::YieldOp>(),
                TypeID::get<mlir::tf_executor::IslandOp>(),
                TypeID::get<TF::TPUReplicatedInputOp>(),
                TypeID::get<TF::TPUReplicatedOutputOp>(),
                TypeID::get<TF::TPUPartitionedInputOp>(),
                TypeID::get<TF::TPUPartitionedInputV2Op>(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 06:51:01 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // This is a V1 backward compatibility.
    std::unique_ptr<OperationPass<ModuleOp>>
    CreateTFExecutorTPUV1IslandCoarseningPass();
    
    // Creates a pass to outlining TPU clusters from single IslandOp into a nested
    // module suitable for being processed as-if it was a V2 module.
    // This is a V1 backward compatibility.
    std::unique_ptr<OperationPass<ModuleOp>>
    CreateTFExecutorTPUV1IslandOutliningPass();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      return isa<tf_device::ReturnOp, tf_device::ClusterOp, tf_device::LaunchOp,
                 tf_executor::EnterOp, tf_executor::ExitOp, tf_executor::FetchOp,
                 tf_executor::GraphOp, tf_executor::IslandOp,
                 tf_executor::LoopCondOp, tf_executor::MergeOp,
                 tf_executor::NextIterationSinkOp, tf_executor::SwitchNOp,
                 tf_executor::SwitchOp, tf_executor::YieldOp>(op) ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

                                                    /*is_arg=*/false));
          // Lookup the instruction inside the island
          auto island_op = llvm::cast<mlir::tf_executor::IslandOp>(inst);
          mlir::Operation* inner_op = &island_op.GetBody().front();
          // Remove kRetOp or kDeviceRetOp operation and return its operand.
          // kRetOp and kDeviceRetOp should have just one operand unless they have
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top