Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for log_query_of_death (0.14 sec)

  1. tensorflow/compiler/jit/flags.cc

          Flag("enable_crash_reproducer", &jitrt_flags->enable_crash_reproducer,
               ""),
          Flag("log_query_of_death", &jitrt_flags->log_query_of_death, ""),
          Flag("vectorize", &jitrt_flags->vectorize, ""),
      });
      xla::ParseFlagsFromEnvAndDieIfUnknown("TF_JITRT_FLAGS", *jitrt_flag_list);
    }
    
    void AllocateAndParseFlags() {
      build_ops_flags = new BuildXlaOpsPassFlags;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/flags.h

      bool always_specialize;
      bool cost_driven_async_parallel_for;
    
      // Enables tracking of the "live" JitRt queries to, on a crash, identify the
      // "query of death". See TfJitRtQueryOfDeathLogger.
      bool log_query_of_death;
    
      // Enable vectorization, which requires tiling and peeling on different ops.
      bool vectorize;
    
      // Enables crash reproducer for JitRt MLIR pass manager.
      bool enable_crash_reproducer;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 14.5K bytes
    - Viewed (0)
Back to top