Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SimpleTFDeviceAssignmentPass (0.25 sec)

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

    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.h.inc"
    
    class SimpleTFDeviceAssignmentPass
        : public impl::SimpleTFDeviceAssignmentPassBase<
              SimpleTFDeviceAssignmentPass> {
     public:
      SimpleTFDeviceAssignmentPass() = default;
      SimpleTFDeviceAssignmentPass(const SimpleTFDeviceAssignmentPass&) {}
      explicit SimpleTFDeviceAssignmentPass(llvm::StringRef default_device) {
        default_device_ = std::string(default_device);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let constructor = "CreateFunctionalToExecutorDialectConversionPass()";
      let dependentDialects = ["mlir::tf_executor::TensorFlowExecutorDialect"];
    }
    
    def SimpleTFDeviceAssignmentPass : Pass<"tf-simple-device-assignment", "mlir::func::FuncOp"> {
      let summary = "Simple device assignment in TF dialect.";
      let constructor = "TF::CreateSimpleTFDeviceAssignmentPass()";
      let options = [
    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