Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MLIR_CRASH_REPRODUCER_DIRECTORY (0.3 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/dump_mlir_util.h

    // Enable the crash reproducer on the provided PassManager to the provided
    // directory path.
    // If the provided path is empty, it is retrieved from the
    // environment variable `MLIR_CRASH_REPRODUCER_DIRECTORY`.
    // If the provided path is the string "sponge", the file will be included
    // in the sponge "Output Files" by looking up the environment to infer
    // the directory path.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 04:50:13 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/dump_mlir_util.cc

        if (getenv("MLIR_CRASH_REPRODUCER_DIRECTORY"))
          path = getenv("MLIR_CRASH_REPRODUCER_DIRECTORY");
        else if (getenv("TEST_UNDECLARED_OUTPUTS_DIR"))
          path = "sponge";
      }
      if (path.empty()) {
        LOG_FIRST_N(INFO, 1) << "disabling MLIR crash reproducer, set env var "
                                "`MLIR_CRASH_REPRODUCER_DIRECTORY` to enable.";
        return;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 03:03:46 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top