Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for AppendMarkForCompilationPassFlags (0.92 sec)

  1. tensorflow/compiler/jit/compilation_passes_test_main.cc

    #include "tensorflow/core/platform/test.h"
    #include "tensorflow/core/platform/test_benchmark.h"
    
    GTEST_API_ int main(int real_argc, char** real_argv) {
      std::vector<tensorflow::Flag> flag_list;
      tensorflow::AppendMarkForCompilationPassFlags(&flag_list);
      auto usage = tensorflow::Flags::Usage(real_argv[0], flag_list);
    
      std::vector<char*> args;
    
      args.reserve(real_argc + 1);
      for (int i = 0; i < real_argc; i++) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 14 00:31:28 UTC 2019
    - 1.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/flags.h

    // Appends the flag definitions associated with
    // MarkForCompilationPassFlags/DumpGraphFlags to `flag_list`.
    //
    // Has the side-effect of parsing TF_XLA_FLAGS if that hasn't happened yet.
    void AppendMarkForCompilationPassFlags(
        std::vector<tensorflow::Flag>* flag_list);
    
    // Disables XLA compilation, forces it to return an error message instead. Can
    // be used by a server to ensure that JIT compilation is opt-in.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/flags.cc

        return ConfigProto::Experimental::MLIR_BRIDGE_ROLLOUT_ENABLED;
      }
      return config_proto.value().experimental().mlir_bridge_rollout();
    }
    
    void AppendMarkForCompilationPassFlags(std::vector<Flag>* flag_list) {
      absl::call_once(flags_init, &AllocateAndParseFlags);
      AppendMarkForCompilationPassFlagsInternal(flag_list);
    }
    
    static std::atomic<bool> xla_compilation_disabled(false);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 24.5K bytes
    - Viewed (0)
Back to top