Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 18 for xla (0.02 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. ci/official/utilities/code_check_full.bats

      cat > $BATS_TEST_TMPDIR/allowed_to_be_extra <<EOF
    @xla//third_party/mkl
    @xla//third_party/mkl_dnn
    @absl_py//
    @bazel_tools//src
    @bazel_tools//platforms
    @bazel_tools//tools
    @org_tensorflow//tensorflow
    @com_google_absl//
    @com_google_protobuf//
    @internal_platforms_do_not_use//host
    @jpegxl//
    @pybind11_abseil//pybind11_abseil
    //external
    @local
    @xla//xla
    @tsl//tsl
    @com_github_googlecloudplatform_google_cloud_cpp//
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Wed Jan 28 22:41:17 GMT 2026
    - 13.6K bytes
    - Click Count (0)
  4. 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)
  5. tensorflow/c/BUILD

            "//tensorflow/core/transforms:__subpackages__",
        ],
        deps = [
            ":c_api_macros_hdrs",
            "@xla//xla/tsl/c:tsl_status",
            "@xla//xla/tsl/c:tsl_status_internal",
            "@xla//xla/tsl/platform:status",
        ] + select({
            "//tensorflow:android": [
                "//tensorflow/core:portable_tensorflow_lib_lite",  # TODO(annarev): exclude runtime srcs
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Tue Feb 17 18:49:14 GMT 2026
    - 30.3K bytes
    - Click Count (0)
  6. ci/official/utilities/repack_libtensorflow.sh

      cp tensorflow/core/platform/ctstring.h \
        tensorflow/core/platform/ctstring_internal.h \
        ${LIB_PKG}/include/tensorflow/core/platform
      cp third_party/xla/xla/tsl/c/tsl_status.h ${LIB_PKG}/include/xla/tsl/c
      cp third_party/xla/third_party/tsl/tsl/platform/ctstring.h \
         third_party/xla/third_party/tsl/tsl/platform/ctstring_internal.h \
         ${LIB_PKG}/include/tsl/platform
      cd ${LIB_PKG}
      libtensorflow_zip="libtensorflow${TARBALL_SUFFIX}.zip"
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Wed Jan 21 01:25:46 GMT 2026
    - 3.7K bytes
    - Click Count (0)
  7. ci/official/containers/ml_build/README.md

    WIP ML Build Docker container for ML repositories (Tensorflow, JAX and XLA).
    
    This container branches off from
    /tensorflow/tools/tf_sig_build_dockerfiles/. However, since
    hermetic CUDA and hermetic Python is now available for Tensorflow, a lot of the
    requirements installed on the original container can be removed to reduce the
    footprint of the container and make it more reusable across different ML
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Tue Sep 24 20:45:58 GMT 2024
    - 416 bytes
    - Click Count (0)
  8. .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)
  9. tensorflow/c/eager/BUILD

            "@com_google_absl//absl/container:flat_hash_map",
            "@com_google_absl//absl/memory",
            "@com_google_absl//absl/strings",
            "@com_google_absl//absl/time",
            "@xla//xla/tsl/c:tsl_status_internal",
            "@xla//xla/tsl/distributed_runtime/coordination:coordination_service_agent",
        ],
        alwayslink = 1,
    )
    
    cc_library(
        name = "c_api_experimental_reader",
        testonly = True,
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Tue Feb 24 06:18:31 GMT 2026
    - 33.3K bytes
    - Click Count (0)
  10. ci/official/containers/ml_build/builder.requirements.txt

    # For wheel verification, and uploading
    auditwheel ~= 6.1.0
    twine ~= 6.1.0
    id
    urllib3
    requests
    
    # For XLA
    pyyaml
    
    # For JAX
    build ~= 1.2.2
    # uv is faster than pip for installing Python packages.
    uv ~= 0.5.30
    
    # For running wheel verification script
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Thu Oct 30 20:25:44 GMT 2025
    - 271 bytes
    - Click Count (0)
Back to Top