Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for InFlightDiagnostic (0.21 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_rewrite_pass.cc

      // Eliminate TPUCompilationResultOp now that the rewrite is complete.
      for (auto& it : compilation_results) {
        for (auto op : it.second) {
          if (!op.use_empty()) {
            mlir::InFlightDiagnostic err = op.emitError("uses remain post rewrite");
            for (auto user : op->getUsers())
              err.attachNote(user->getLoc()) << "remaining user";
            return signalPassFailure();
          }
          op.erase();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

            // might have runtime impact for existing models.
            // We should make this message an error once there is such a contract
            // and once existing cases have been fixed.
            mlir::InFlightDiagnostic error =
                strict_clusters ? mlir::emitError(op.getLoc(), "")
                                : mlir::emitWarning(op.getLoc(), "");
            error << "Op has cyclic dependency with a compilation cluster:\n";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
Back to top