File tree Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 15
15
- wget
16
16
- clang-format
17
17
- clang-{{ clang_version }}
18
- - gcc-10
19
- - g++-10
18
+ - gcc-11
19
+ - g++-11
20
20
- lcov
21
21
- less
22
22
Original file line number Diff line number Diff line change 3
3
release_env :
4
4
common :
5
5
# Force GCC because clang/bazel has issues.
6
- CC : gcc-10
7
- CXX : g++-10
6
+ CC : gcc-11
7
+ CXX : g++-11
8
8
# CC: "clang-{{ clang_version }}"
9
9
# CXX: "clang++-{{ clang_version }}"
10
10
LD_LIBRARY_PATH : " $LD_LIBRARY_PATH:/usr/local/lib"
@@ -20,8 +20,8 @@ build_env:
20
20
# Set explicitly to 0 as setup.py defaults this flag to true if unset.
21
21
BUILD_CPP_TESTS : " {{ build_cpp_tests }}"
22
22
# Force GCC because clang/bazel has issues.
23
- CC : gcc-10
24
- CXX : g++-10
23
+ CC : gcc-11
24
+ CXX : g++-11
25
25
PYTORCH_BUILD_NUMBER : 1
26
26
TORCH_XLA_VERSION : " {{ package_version }}"
27
27
PYTORCH_BUILD_VERSION : " {{ package_version }}"
Original file line number Diff line number Diff line change 1
1
# Used for fetching clang from the right repo, see apt.yaml.
2
- llvm_debian_repo : bullseye
2
+ llvm_debian_repo : bookworm
3
3
clang_version : 17
4
4
# PyTorch and PyTorch/XLA wheel versions.
5
5
package_version : 2.9.0
Original file line number Diff line number Diff line change 2
2
# The built image contains all required pip and apt packages for building and
3
3
# running PyTorch and PyTorch/XLA. The image doesn't contain any source code.
4
4
ARG python_version=3.8
5
- ARG debian_version=bullseye
5
+ ARG debian_version=bookworm
6
6
7
7
FROM python:${python_version}-${debian_version}
8
8
Original file line number Diff line number Diff line change 1
1
ARG python_version=3.8
2
- ARG debian_version=bullseye
2
+ ARG debian_version=bookworm
3
3
4
4
FROM python:${python_version}-${debian_version} AS build
5
5
You can’t perform that action at this time.
0 commit comments