Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for GetXlaDeviceFlags (4.65 sec)

  1. tensorflow/compiler/jit/flags.h

    // always return the same pointer.
    MarkForCompilationPassFlags* GetMarkForCompilationPassFlags();
    BuildXlaOpsPassFlags* GetBuildXlaOpsPassFlags();
    XlaSparseCoreFlags* GetXlaSparseCoreFlags();
    XlaDeviceFlags* GetXlaDeviceFlags();
    XlaOpsCommonFlags* GetXlaOpsCommonFlags();
    XlaCallModuleFlags* GetXlaCallModuleFlags();
    
    MlirCommonFlags* GetMlirCommonFlags();
    
    void ResetJitCompilerFlags();
    
    const JitRtFlags& GetJitRtFlags();
    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

      return mark_for_compilation_flags;
    }
    
    XlaSparseCoreFlags* GetXlaSparseCoreFlags() {
      absl::call_once(flags_init, &AllocateAndParseFlags);
      return sparse_core_flags;
    }
    
    XlaDeviceFlags* GetXlaDeviceFlags() {
      absl::call_once(flags_init, &AllocateAndParseFlags);
      return device_flags;
    }
    
    XlaOpsCommonFlags* GetXlaOpsCommonFlags() {
      absl::call_once(flags_init, &AllocateAndParseFlags);
      return ops_flags;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_launch_util_test.cc

        rollout_config.enabled_for_xla_launch_ = true;
        rollout_config.enabled_for_compile_on_demand_ = true;
    
        // Set flag to enable using XLA devices. PJRT currently is only supported
        // for XLA devices.
        GetXlaDeviceFlags()->tf_xla_enable_xla_devices = true;
    
        // Add and setup the XLA_CPU device.
        auto device_type = DeviceType(DEVICE_XLA_CPU);
        rollout_config.AllowForDeviceInXlaLaunch(device_type);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 28.8K bytes
    - Viewed (0)
Back to top