Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for with_xla_support (0.11 sec)

  1. .bazelrc

    # Enable all targets in XLA
    common:cpu_cross --define=with_cross_compiler_support=true
    
    # Disable XLA on mobile.
    common:xla     --define=with_xla_support=true # TODO: remove, it's on by default.
    common:android --define=with_xla_support=false
    common:ios     --define=with_xla_support=false
    
    # BEGIN TF REMOTE BUILD EXECUTION OPTIONS
    # Options when using remote execution
    Registered: Tue Dec 30 12:39:10 UTC 2025
    - Last Modified: Fri Dec 26 23:20:26 UTC 2025
    - 56.8K bytes
    - Viewed (0)
  2. tensorflow/BUILD

        visibility = ["//visibility:public"],
    )
    
    config_setting(
        name = "with_xla_support",
        define_values = {"with_xla_support": "true"},
        visibility = ["//visibility:public"],
    )
    
    # By default, XLA GPU is compiled into tensorflow when building with
    # --config=cuda even when `with_xla_support` is false. The config setting
    # here allows us to override the behavior if needed.
    config_setting(
    Registered: Tue Dec 30 12:39:10 UTC 2025
    - Last Modified: Wed Nov 12 19:21:56 UTC 2025
    - 53.1K bytes
    - Viewed (0)
Back to top