Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for WalkReachableFromTpuCluster (0.21 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/tpu_cluster_util.cc

    }
    }  // namespace
    
    mlir::LogicalResult WalkReachableFromTpuCluster(
        ModuleOp module, std::function<WalkResult(Operation*, tf_device::ClusterOp,
                                                  std::optional<std::string>)>
                             callback) {
      return WalkReachableFromTpuCluster(true, module, callback);
    }
    
    mlir::LogicalResult WalkReachableFromTpuCluster(
        ModuleOp module,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 04:50:13 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/tpu_cluster_util.h

    // indicates failure.
    // The host device is null when the tpu_cluster HasModelParallelism: The
    // HasModelParallelism case is currently unsupported in combination with
    // outside compilation.
    mlir::LogicalResult WalkReachableFromTpuCluster(
        ModuleOp module, std::function<WalkResult(Operation*, tf_device::ClusterOp,
                                                  std::optional<std::string>)>
                             callback);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 04:50:13 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tpu_cluster_cleanup_attributes.cc

                !isa<tf_device::LaunchOp>(op)) {
              op->removeAttr(kDeviceAttr);
            }
          }
          return WalkResult::advance();
        };
    
        if (failed(TFTPU::WalkReachableFromTpuCluster(getOperation(), traverse_op)))
          return signalPassFailure();
      }
    };
    
    }  // namespace
    
    std::unique_ptr<OperationPass<ModuleOp>>
    CreateTPUClusterCleanupAttributesPass() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 3K bytes
    - Viewed (0)
Back to top