Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for RemoveOutsideCompilation (0.28 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

      return mlir::success();
    }
    
    // Removes outside compilation from all ops inside `host_launch_op`.  Should
    // only be run after all outside compiled ops have been moved to
    // `host_launch_op`.
    void RemoveOutsideCompilation(mlir::tf_device::LaunchOp host_launch_op) {
      host_launch_op.GetBody().walk([&](Operation* op) {
        if (op->hasAttr(kXlaOutsideCompilationAttr)) {
          op->removeAttr(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
Back to top