Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 6 of 6 for xla (0.05 seconds)

  1. MODULE.bazel

    )
    
    bazel_dep(name = "xla", repo_name = "xla")
    local_path_override(
        module_name = "xla",
        path = "third_party/xla",
    )
    
    tsl_extension = use_extension("@xla//third_party/extensions:tsl.bzl", "tsl_extension")
    use_repo(tsl_extension, tsl = "tsl")
    
    llvm = use_extension("@xla//third_party/extensions:llvm.bzl", "llvm_extension")
    use_repo(llvm, "llvm-project")
    
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Thu Apr 02 01:32:13 GMT 2026
    - 11K bytes
    - Click Count (0)
  2. WORKSPACE

    rules_shell_dependencies()
    
    rules_shell_toolchains()
    
    # Initialize hermetic Python
    load("@xla//third_party/py:python_init_rules.bzl", "python_init_rules")
    
    python_init_rules()
    
    load("@xla//third_party/py:python_init_repositories.bzl", "python_init_repositories")
    
    python_init_repositories(
        default_python_version = "system",
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Thu Apr 02 01:32:13 GMT 2026
    - 5.3K bytes
    - Click Count (0)
  3. tensorflow/BUILD

        disallowed_deps = if_static(
            [],
            otherwise = [
                "@xla//xla/stream_executor/cuda:all_runtime",
                "@xla//xla/stream_executor/cuda:cuda_platform",
                "@xla//xla/stream_executor/cuda:cudnn_plugin",
                "@xla//xla/stream_executor/cuda:cufft_plugin",
                "@xla//xla/stream_executor:cuda_platform",
            ],
        ),
        deps = if_cuda([
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Tue Mar 24 21:00:18 GMT 2026
    - 53.1K bytes
    - Click Count (0)
  4. .bazelrc

    #     --config=dbg --per_file_copt=+tensorflow/core/kernels/identity_op.*@-g
    # Since this .bazelrc file is synced between the tensorflow/tensorflow repo and
    # the openxla/xla repo, also include debug info for files under xla/.
    common:dbg --per_file_copt=+.*,-tensorflow.*,-xla.*@-g0
    common:dbg --per_file_copt=+tensorflow/core/kernels.*@-g0
    # for now, disable arm_neon. see: https://github.com/tensorflow/tensorflow/issues/33360
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Sat Mar 28 04:33:01 GMT 2026
    - 58.9K bytes
    - Click Count (0)
  5. README.md

    **Linux XLA**                 | [![Status](https://storage.googleapis.com/tensorflow-kokoro-build-badges/ubuntu-xla.svg)](https://storage.googleapis.com/tensorflow-kokoro-build-badges/ubuntu-xla.html)         | TBA
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Thu Apr 02 10:38:57 GMT 2026
    - 11.6K bytes
    - Click Count (0)
  6. RELEASE.md

            Eager mode.
    
    *   `tf.lite`:
    
        *   Enable TFLite experimental new converter by default.
    
    *   XLA
    
        *   XLA now builds and works on windows. All prebuilt packages come with XLA
            available.
        *   XLA can be
            [enabled for a `tf.function`](https://www.tensorflow.org/xla#explicit_compilation_with_tffunction)
            with “compile or throw exception” semantics on CPU and GPU.
    
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Mon Mar 30 18:31:38 GMT 2026
    - 746.5K bytes
    - Click Count (3)
Back to Top