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 1515 - wget
1616 - clang-format
1717 - clang-{{ clang_version }}
18- - gcc-10
19- - g++-10
18+ - gcc-11
19+ - g++-11
2020 - lcov
2121 - less
2222
Original file line number Diff line number Diff line change 33release_env :
44 common :
55 # Force GCC because clang/bazel has issues.
6- CC : gcc-10
7- CXX : g++-10
6+ CC : gcc-11
7+ CXX : g++-11
88 # CC: "clang-{{ clang_version }}"
99 # CXX: "clang++-{{ clang_version }}"
1010 LD_LIBRARY_PATH : " $LD_LIBRARY_PATH:/usr/local/lib"
@@ -20,8 +20,8 @@ build_env:
2020 # Set explicitly to 0 as setup.py defaults this flag to true if unset.
2121 BUILD_CPP_TESTS : " {{ build_cpp_tests }}"
2222 # Force GCC because clang/bazel has issues.
23- CC : gcc-10
24- CXX : g++-10
23+ CC : gcc-11
24+ CXX : g++-11
2525 PYTORCH_BUILD_NUMBER : 1
2626 TORCH_XLA_VERSION : " {{ package_version }}"
2727 PYTORCH_BUILD_VERSION : " {{ package_version }}"
Original file line number Diff line number Diff line change 11# Used for fetching clang from the right repo, see apt.yaml.
2- llvm_debian_repo : bullseye
2+ llvm_debian_repo : bookworm
33clang_version : 17
44# PyTorch and PyTorch/XLA wheel versions.
55package_version : 2.9.0
Original file line number Diff line number Diff line change 22# The built image contains all required pip and apt packages for building and
33# running PyTorch and PyTorch/XLA. The image doesn't contain any source code.
44ARG python_version=3.8
5- ARG debian_version=bullseye
5+ ARG debian_version=bookworm
66
77FROM python:${python_version}-${debian_version}
88
Original file line number Diff line number Diff line change 11ARG python_version=3.8
2- ARG debian_version=bullseye
2+ ARG debian_version=bookworm
33
44FROM python:${python_version}-${debian_version} AS build
55
You can’t perform that action at this time.
0 commit comments