Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GetJitRtFlags (0.13 sec)

  1. tensorflow/compiler/jit/flags.h

    XlaDeviceFlags* GetXlaDeviceFlags();
    XlaOpsCommonFlags* GetXlaOpsCommonFlags();
    XlaCallModuleFlags* GetXlaCallModuleFlags();
    
    MlirCommonFlags* GetMlirCommonFlags();
    
    void ResetJitCompilerFlags();
    
    const JitRtFlags& GetJitRtFlags();
    
    // Returns the effective MLIR bridge rollout state based on the flags and the
    // optional configuration.
    ConfigProto::Experimental::MlirBridgeRollout GetMlirBridgeRolloutState(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/flags.cc

    }
    
    MlirCommonFlags* GetMlirCommonFlags() {
      absl::call_once(flags_init, &AllocateAndParseFlags);
      return mlir_flags;
    }
    
    void ResetJitCompilerFlags() { ResetFlags(); }
    
    const JitRtFlags& GetJitRtFlags() {
      absl::call_once(flags_init, &AllocateAndParseFlags);
      return *jitrt_flags;
    }
    
    ConfigProto::Experimental::MlirBridgeRollout GetMlirBridgeRolloutState(
        std::optional<const ConfigProto> config_proto) {
    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