Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions infra/ansible/config/apt.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ apt:
- wget
- clang-format
- clang-{{ clang_version }}
- gcc-10
- g++-10
- gcc-11
- g++-11
- lcov
- less

Expand Down
8 changes: 4 additions & 4 deletions infra/ansible/config/env.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
release_env:
common:
# Force GCC because clang/bazel has issues.
CC: gcc-10
CXX: g++-10
CC: gcc-11
CXX: g++-11
# CC: "clang-{{ clang_version }}"
# CXX: "clang++-{{ clang_version }}"
LD_LIBRARY_PATH: "$LD_LIBRARY_PATH:/usr/local/lib"
Expand All @@ -20,8 +20,8 @@ build_env:
# Set explicitly to 0 as setup.py defaults this flag to true if unset.
BUILD_CPP_TESTS: "{{ build_cpp_tests }}"
# Force GCC because clang/bazel has issues.
CC: gcc-10
CXX: g++-10
CC: gcc-11
CXX: g++-11
PYTORCH_BUILD_NUMBER: 1
TORCH_XLA_VERSION: "{{ package_version }}"
PYTORCH_BUILD_VERSION: "{{ package_version }}"
Expand Down
2 changes: 1 addition & 1 deletion infra/ansible/config/vars.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Used for fetching clang from the right repo, see apt.yaml.
llvm_debian_repo: bullseye
llvm_debian_repo: bookworm
clang_version: 17
# PyTorch and PyTorch/XLA wheel versions.
package_version: 2.9.0
Expand Down
2 changes: 1 addition & 1 deletion infra/ansible/development.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# The built image contains all required pip and apt packages for building and
# running PyTorch and PyTorch/XLA. The image doesn't contain any source code.
ARG python_version=3.8
ARG debian_version=bullseye
ARG debian_version=bookworm

FROM python:${python_version}-${debian_version}

Expand Down
2 changes: 1 addition & 1 deletion infra/ansible/e2e_tests.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG python_version=3.8
ARG debian_version=bullseye
ARG debian_version=bookworm

FROM python:${python_version}-${debian_version} AS build

Expand Down
Loading