mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 21:14:14 +08:00
ci: Remove mentions and usages of DESIRED_DEVTOOLSET (#149443)
This is a remnant of our migration to manylinux2_28 we should remove these since all of our binary builds are now built with cxx11_abi Signed-off-by: Eli Uriegas <eliuriegas@meta.com> Pull Request resolved: https://github.com/pytorch/pytorch/pull/149443 Approved by: https://github.com/izaitsevfb, https://github.com/atalman
This commit is contained in:
committed by
PyTorch MergeBot
parent
29c4f2c07a
commit
95a633c453
@ -111,12 +111,6 @@ case ${DESIRED_PYTHON} in
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
if [[ "$DESIRED_DEVTOOLSET" == *"cxx11-abi"* ]]; then
|
|
||||||
export _GLIBCXX_USE_CXX11_ABI=1
|
|
||||||
else
|
|
||||||
export _GLIBCXX_USE_CXX11_ABI=0
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ "$DESIRED_CUDA" == *"rocm"* ]]; then
|
if [[ "$DESIRED_CUDA" == *"rocm"* ]]; then
|
||||||
echo "Calling build_amd.py at $(date)"
|
echo "Calling build_amd.py at $(date)"
|
||||||
python tools/amd_build/build_amd.py
|
python tools/amd_build/build_amd.py
|
||||||
@ -209,12 +203,6 @@ if [[ -n "$BUILD_PYTHONLESS" ]]; then
|
|||||||
|
|
||||||
mkdir -p /tmp/$LIBTORCH_HOUSE_DIR
|
mkdir -p /tmp/$LIBTORCH_HOUSE_DIR
|
||||||
|
|
||||||
if [[ "$DESIRED_DEVTOOLSET" == *"cxx11-abi"* ]]; then
|
|
||||||
LIBTORCH_ABI="cxx11-abi-"
|
|
||||||
else
|
|
||||||
LIBTORCH_ABI=
|
|
||||||
fi
|
|
||||||
|
|
||||||
zip -rq /tmp/$LIBTORCH_HOUSE_DIR/libtorch-$LIBTORCH_ABI$LIBTORCH_VARIANT-$PYTORCH_BUILD_VERSION.zip libtorch
|
zip -rq /tmp/$LIBTORCH_HOUSE_DIR/libtorch-$LIBTORCH_ABI$LIBTORCH_VARIANT-$PYTORCH_BUILD_VERSION.zip libtorch
|
||||||
cp /tmp/$LIBTORCH_HOUSE_DIR/libtorch-$LIBTORCH_ABI$LIBTORCH_VARIANT-$PYTORCH_BUILD_VERSION.zip \
|
cp /tmp/$LIBTORCH_HOUSE_DIR/libtorch-$LIBTORCH_ABI$LIBTORCH_VARIANT-$PYTORCH_BUILD_VERSION.zip \
|
||||||
/tmp/$LIBTORCH_HOUSE_DIR/libtorch-$LIBTORCH_ABI$LIBTORCH_VARIANT-latest.zip
|
/tmp/$LIBTORCH_HOUSE_DIR/libtorch-$LIBTORCH_ABI$LIBTORCH_VARIANT-latest.zip
|
||||||
|
@ -95,12 +95,6 @@ python setup.py clean
|
|||||||
retry pip install -qr requirements.txt
|
retry pip install -qr requirements.txt
|
||||||
retry pip install -q numpy==2.0.1
|
retry pip install -q numpy==2.0.1
|
||||||
|
|
||||||
if [[ "$DESIRED_DEVTOOLSET" == *"cxx11-abi"* ]]; then
|
|
||||||
export _GLIBCXX_USE_CXX11_ABI=1
|
|
||||||
else
|
|
||||||
export _GLIBCXX_USE_CXX11_ABI=0
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ "$DESIRED_CUDA" == *"rocm"* ]]; then
|
if [[ "$DESIRED_CUDA" == *"rocm"* ]]; then
|
||||||
echo "Calling build_amd.py at $(date)"
|
echo "Calling build_amd.py at $(date)"
|
||||||
python tools/amd_build/build_amd.py
|
python tools/amd_build/build_amd.py
|
||||||
@ -169,12 +163,6 @@ fi
|
|||||||
|
|
||||||
)
|
)
|
||||||
|
|
||||||
if [[ "$DESIRED_DEVTOOLSET" == *"cxx11-abi"* ]]; then
|
|
||||||
LIBTORCH_ABI="cxx11-abi-"
|
|
||||||
else
|
|
||||||
LIBTORCH_ABI=
|
|
||||||
fi
|
|
||||||
|
|
||||||
(
|
(
|
||||||
set -x
|
set -x
|
||||||
|
|
||||||
|
@ -196,35 +196,11 @@ setup_link_flags () {
|
|||||||
|
|
||||||
TEST_CODE_DIR="$(dirname $(realpath ${BASH_SOURCE[0]}))/test_example_code"
|
TEST_CODE_DIR="$(dirname $(realpath ${BASH_SOURCE[0]}))/test_example_code"
|
||||||
build_and_run_example_cpp () {
|
build_and_run_example_cpp () {
|
||||||
if [[ "$DESIRED_DEVTOOLSET" == *"cxx11-abi"* ]]; then
|
|
||||||
GLIBCXX_USE_CXX11_ABI=1
|
|
||||||
else
|
|
||||||
GLIBCXX_USE_CXX11_ABI=0
|
|
||||||
fi
|
|
||||||
setup_link_flags
|
setup_link_flags
|
||||||
g++ ${TEST_CODE_DIR}/$1.cpp -I${install_root}/include -I${install_root}/include/torch/csrc/api/include -D_GLIBCXX_USE_CXX11_ABI=$GLIBCXX_USE_CXX11_ABI -std=gnu++17 -L${install_root}/lib ${REF_LIB} ${ADDITIONAL_LINKER_FLAGS} -ltorch $TORCH_CPU_LINK_FLAGS $TORCH_CUDA_LINK_FLAGS $C10_LINK_FLAGS -o $1
|
g++ ${TEST_CODE_DIR}/$1.cpp -I${install_root}/include -I${install_root}/include/torch/csrc/api/include -std=gnu++17 -L${install_root}/lib ${REF_LIB} ${ADDITIONAL_LINKER_FLAGS} -ltorch $TORCH_CPU_LINK_FLAGS $TORCH_CUDA_LINK_FLAGS $C10_LINK_FLAGS -o $1
|
||||||
./$1
|
./$1
|
||||||
}
|
}
|
||||||
|
|
||||||
build_example_cpp_with_incorrect_abi () {
|
|
||||||
if [[ "$DESIRED_DEVTOOLSET" == *"cxx11-abi"* ]]; then
|
|
||||||
GLIBCXX_USE_CXX11_ABI=0
|
|
||||||
else
|
|
||||||
GLIBCXX_USE_CXX11_ABI=1
|
|
||||||
fi
|
|
||||||
set +e
|
|
||||||
setup_link_flags
|
|
||||||
g++ ${TEST_CODE_DIR}/$1.cpp -I${install_root}/include -I${install_root}/include/torch/csrc/api/include -D_GLIBCXX_USE_CXX11_ABI=$GLIBCXX_USE_CXX11_ABI -std=gnu++17 -L${install_root}/lib ${REF_LIB} ${ADDITIONAL_LINKER_FLAGS} -ltorch $TORCH_CPU_LINK_FLAGS $TORCH_CUDA_LINK_FLAGS $C10_LINK_FLAGS -o $1
|
|
||||||
ERRCODE=$?
|
|
||||||
set -e
|
|
||||||
if [ "$ERRCODE" -eq "0" ]; then
|
|
||||||
echo "Building example with incorrect ABI didn't throw error. Aborting."
|
|
||||||
exit 1
|
|
||||||
else
|
|
||||||
echo "Building example with incorrect ABI throws expected error. Proceeding."
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# Check simple Python/C++ calls
|
# Check simple Python/C++ calls
|
||||||
###############################################################################
|
###############################################################################
|
||||||
@ -234,11 +210,6 @@ if [[ "$PACKAGE_TYPE" == 'libtorch' ]]; then
|
|||||||
export LD_LIBRARY_PATH=/usr/local/cuda/lib64
|
export LD_LIBRARY_PATH=/usr/local/cuda/lib64
|
||||||
fi
|
fi
|
||||||
build_and_run_example_cpp simple-torch-test
|
build_and_run_example_cpp simple-torch-test
|
||||||
# `_GLIBCXX_USE_CXX11_ABI` is always ignored by gcc in devtoolset7, so we test
|
|
||||||
# the expected failure case for Ubuntu 16.04 + gcc 5.4 only.
|
|
||||||
if [[ "$DESIRED_DEVTOOLSET" == *"cxx11-abi"* ]]; then
|
|
||||||
build_example_cpp_with_incorrect_abi simple-torch-test
|
|
||||||
fi
|
|
||||||
else
|
else
|
||||||
pushd /tmp
|
pushd /tmp
|
||||||
python -c 'import torch'
|
python -c 'import torch'
|
||||||
|
@ -15,7 +15,6 @@ runs:
|
|||||||
-e BINARY_ENV_FILE \
|
-e BINARY_ENV_FILE \
|
||||||
-e BUILD_ENVIRONMENT \
|
-e BUILD_ENVIRONMENT \
|
||||||
-e DESIRED_CUDA \
|
-e DESIRED_CUDA \
|
||||||
-e DESIRED_DEVTOOLSET \
|
|
||||||
-e DESIRED_PYTHON \
|
-e DESIRED_PYTHON \
|
||||||
-e GITHUB_ACTIONS \
|
-e GITHUB_ACTIONS \
|
||||||
-e GPU_ARCH_TYPE \
|
-e GPU_ARCH_TYPE \
|
||||||
|
6
.github/templates/upload.yml.j2
vendored
6
.github/templates/upload.yml.j2
vendored
@ -25,9 +25,6 @@
|
|||||||
DOCKER_IMAGE: !{{ config["container_image"] }}
|
DOCKER_IMAGE: !{{ config["container_image"] }}
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
{%- if config["package_type"] == "manywheel" %}
|
{%- if config["package_type"] == "manywheel" %}
|
||||||
{%- if config["devtoolset"] %}
|
|
||||||
DESIRED_DEVTOOLSET: !{{ config["devtoolset"] }}
|
|
||||||
{%- endif %}
|
|
||||||
{%- if config.use_split_build is defined %}
|
{%- if config.use_split_build is defined %}
|
||||||
use_split_build: !{{ config["use_split_build"] }}
|
use_split_build: !{{ config["use_split_build"] }}
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
@ -37,9 +34,6 @@
|
|||||||
LIBTORCH_CONFIG: !{{ config["libtorch_config"] }}
|
LIBTORCH_CONFIG: !{{ config["libtorch_config"] }}
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
LIBTORCH_VARIANT: !{{ config["libtorch_variant"] }}
|
LIBTORCH_VARIANT: !{{ config["libtorch_variant"] }}
|
||||||
{%- if config["devtoolset"] %}
|
|
||||||
DESIRED_DEVTOOLSET: !{{ config["devtoolset"] }}
|
|
||||||
{%- endif %}
|
|
||||||
{%- if is_windows %}
|
{%- if is_windows %}
|
||||||
# This is a dummy value for libtorch to work correctly with our batch scripts
|
# This is a dummy value for libtorch to work correctly with our batch scripts
|
||||||
# without this value pip does not get installed for some reason
|
# without this value pip does not get installed for some reason
|
||||||
|
7
.github/workflows/_binary-build-linux.yml
vendored
7
.github/workflows/_binary-build-linux.yml
vendored
@ -70,10 +70,6 @@ on:
|
|||||||
required: false
|
required: false
|
||||||
type: string
|
type: string
|
||||||
description: Desired libtorch variant (for libtorch builds only)
|
description: Desired libtorch variant (for libtorch builds only)
|
||||||
DESIRED_DEVTOOLSET:
|
|
||||||
required: false
|
|
||||||
type: string
|
|
||||||
description: Desired dev toolset
|
|
||||||
DESIRED_PYTHON:
|
DESIRED_PYTHON:
|
||||||
required: false
|
required: false
|
||||||
type: string
|
type: string
|
||||||
@ -104,7 +100,6 @@ jobs:
|
|||||||
SKIP_ALL_TESTS: 1
|
SKIP_ALL_TESTS: 1
|
||||||
LIBTORCH_CONFIG: ${{ inputs.LIBTORCH_CONFIG }}
|
LIBTORCH_CONFIG: ${{ inputs.LIBTORCH_CONFIG }}
|
||||||
LIBTORCH_VARIANT: ${{ inputs.LIBTORCH_VARIANT }}
|
LIBTORCH_VARIANT: ${{ inputs.LIBTORCH_VARIANT }}
|
||||||
DESIRED_DEVTOOLSET: ${{ inputs.DESIRED_DEVTOOLSET }}
|
|
||||||
DESIRED_PYTHON: ${{ inputs.DESIRED_PYTHON }}
|
DESIRED_PYTHON: ${{ inputs.DESIRED_PYTHON }}
|
||||||
PYTORCH_EXTRA_INSTALL_REQUIREMENTS: ${{ inputs.PYTORCH_EXTRA_INSTALL_REQUIREMENTS }}
|
PYTORCH_EXTRA_INSTALL_REQUIREMENTS: ${{ inputs.PYTORCH_EXTRA_INSTALL_REQUIREMENTS }}
|
||||||
ALPINE_IMAGE: ${{ inputs.ALPINE_IMAGE }}
|
ALPINE_IMAGE: ${{ inputs.ALPINE_IMAGE }}
|
||||||
@ -130,7 +125,6 @@ jobs:
|
|||||||
echo "SKIP_ALL_TESTS=${{ env.SKIP_ALL_TESTS }}"
|
echo "SKIP_ALL_TESTS=${{ env.SKIP_ALL_TESTS }}"
|
||||||
echo "LIBTORCH_CONFIG=${{ env.LIBTORCH_CONFIG }}"
|
echo "LIBTORCH_CONFIG=${{ env.LIBTORCH_CONFIG }}"
|
||||||
echo "LIBTORCH_VARIANT=${{ env.LIBTORCH_VARIANT }}"
|
echo "LIBTORCH_VARIANT=${{ env.LIBTORCH_VARIANT }}"
|
||||||
echo "DESIRED_DEVTOOLSET=${{ env.DESIRED_DEVTOOLSET }}"
|
|
||||||
echo "DESIRED_PYTHON=${{ env.DESIRED_PYTHON }}"
|
echo "DESIRED_PYTHON=${{ env.DESIRED_PYTHON }}"
|
||||||
echo "PYTORCH_EXTRA_INSTALL_REQUIREMENTS=${{ env.PYTORCH_EXTRA_INSTALL_REQUIREMENTS }}"
|
echo "PYTORCH_EXTRA_INSTALL_REQUIREMENTS=${{ env.PYTORCH_EXTRA_INSTALL_REQUIREMENTS }}"
|
||||||
echo "ALPINE_IMAGE=${{ env.ALPINE_IMAGE }}"
|
echo "ALPINE_IMAGE=${{ env.ALPINE_IMAGE }}"
|
||||||
@ -224,7 +218,6 @@ jobs:
|
|||||||
-e BINARY_ENV_FILE \
|
-e BINARY_ENV_FILE \
|
||||||
-e BUILD_ENVIRONMENT \
|
-e BUILD_ENVIRONMENT \
|
||||||
-e DESIRED_CUDA \
|
-e DESIRED_CUDA \
|
||||||
-e DESIRED_DEVTOOLSET \
|
|
||||||
-e DESIRED_PYTHON \
|
-e DESIRED_PYTHON \
|
||||||
-e GITHUB_ACTIONS \
|
-e GITHUB_ACTIONS \
|
||||||
-e GPU_ARCH_TYPE \
|
-e GPU_ARCH_TYPE \
|
||||||
|
6
.github/workflows/_binary-test-linux.yml
vendored
6
.github/workflows/_binary-test-linux.yml
vendored
@ -47,10 +47,6 @@ on:
|
|||||||
required: false
|
required: false
|
||||||
type: string
|
type: string
|
||||||
description: Desired libtorch variant (for libtorch builds only)
|
description: Desired libtorch variant (for libtorch builds only)
|
||||||
DESIRED_DEVTOOLSET:
|
|
||||||
required: false
|
|
||||||
type: string
|
|
||||||
description: Desired dev toolset
|
|
||||||
DESIRED_PYTHON:
|
DESIRED_PYTHON:
|
||||||
required: false
|
required: false
|
||||||
type: string
|
type: string
|
||||||
@ -92,7 +88,6 @@ jobs:
|
|||||||
SKIP_ALL_TESTS: 1
|
SKIP_ALL_TESTS: 1
|
||||||
LIBTORCH_CONFIG: ${{ inputs.LIBTORCH_CONFIG }}
|
LIBTORCH_CONFIG: ${{ inputs.LIBTORCH_CONFIG }}
|
||||||
LIBTORCH_VARIANT: ${{ inputs.LIBTORCH_VARIANT }}
|
LIBTORCH_VARIANT: ${{ inputs.LIBTORCH_VARIANT }}
|
||||||
DESIRED_DEVTOOLSET: ${{ inputs.DESIRED_DEVTOOLSET }}
|
|
||||||
DESIRED_PYTHON: ${{ inputs.DESIRED_PYTHON }}
|
DESIRED_PYTHON: ${{ inputs.DESIRED_PYTHON }}
|
||||||
ALPINE_IMAGE: ${{ inputs.ALPINE_IMAGE }}
|
ALPINE_IMAGE: ${{ inputs.ALPINE_IMAGE }}
|
||||||
AWS_DEFAULT_REGION: us-east-1
|
AWS_DEFAULT_REGION: us-east-1
|
||||||
@ -118,7 +113,6 @@ jobs:
|
|||||||
echo "SKIP_ALL_TESTS=${{ env.SKIP_ALL_TESTS }}"
|
echo "SKIP_ALL_TESTS=${{ env.SKIP_ALL_TESTS }}"
|
||||||
echo "LIBTORCH_CONFIG=${{ env.LIBTORCH_CONFIG }}"
|
echo "LIBTORCH_CONFIG=${{ env.LIBTORCH_CONFIG }}"
|
||||||
echo "LIBTORCH_VARIANT=${{ env.LIBTORCH_VARIANT }}"
|
echo "LIBTORCH_VARIANT=${{ env.LIBTORCH_VARIANT }}"
|
||||||
echo "DESIRED_DEVTOOLSET=${{ env.DESIRED_DEVTOOLSET }}"
|
|
||||||
echo "DESIRED_PYTHON=${{ env.DESIRED_PYTHON }}"
|
echo "DESIRED_PYTHON=${{ env.DESIRED_PYTHON }}"
|
||||||
|
|
||||||
echo "ALPINE_IMAGE=${{ env.ALPINE_IMAGE }}"
|
echo "ALPINE_IMAGE=${{ env.ALPINE_IMAGE }}"
|
||||||
|
5
.github/workflows/_binary-upload.yml
vendored
5
.github/workflows/_binary-upload.yml
vendored
@ -43,10 +43,6 @@ on:
|
|||||||
required: false
|
required: false
|
||||||
type: string
|
type: string
|
||||||
description: Desired libtorch variant (for libtorch builds only)
|
description: Desired libtorch variant (for libtorch builds only)
|
||||||
DESIRED_DEVTOOLSET:
|
|
||||||
required: false
|
|
||||||
type: string
|
|
||||||
description: Desired dev toolset
|
|
||||||
DESIRED_PYTHON:
|
DESIRED_PYTHON:
|
||||||
required: false
|
required: false
|
||||||
type: string
|
type: string
|
||||||
@ -80,7 +76,6 @@ jobs:
|
|||||||
SKIP_ALL_TESTS: 1
|
SKIP_ALL_TESTS: 1
|
||||||
LIBTORCH_CONFIG: ${{ inputs.LIBTORCH_CONFIG }}
|
LIBTORCH_CONFIG: ${{ inputs.LIBTORCH_CONFIG }}
|
||||||
LIBTORCH_VARIANT: ${{ inputs.LIBTORCH_VARIANT }}
|
LIBTORCH_VARIANT: ${{ inputs.LIBTORCH_VARIANT }}
|
||||||
DESIRED_DEVTOOLSET: ${{ inputs.DESIRED_DEVTOOLSET }}
|
|
||||||
DESIRED_PYTHON: ${{ inputs.DESIRED_PYTHON }}
|
DESIRED_PYTHON: ${{ inputs.DESIRED_PYTHON }}
|
||||||
BINARY_ENV_FILE: /tmp/env
|
BINARY_ENV_FILE: /tmp/env
|
||||||
GITHUB_TOKEN: ${{ secrets.github-token }}
|
GITHUB_TOKEN: ${{ secrets.github-token }}
|
||||||
|
30
.github/workflows/generated-linux-aarch64-binary-manywheel-nightly.yml
generated
vendored
30
.github/workflows/generated-linux-aarch64-binary-manywheel-nightly.yml
generated
vendored
@ -56,7 +56,6 @@ jobs:
|
|||||||
DESIRED_CUDA: cpu
|
DESIRED_CUDA: cpu
|
||||||
GPU_ARCH_TYPE: cpu-aarch64
|
GPU_ARCH_TYPE: cpu-aarch64
|
||||||
DOCKER_IMAGE: pytorch/manylinux2_28_aarch64-builder:cpu-aarch64-main
|
DOCKER_IMAGE: pytorch/manylinux2_28_aarch64-builder:cpu-aarch64-main
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
use_split_build: False
|
use_split_build: False
|
||||||
DESIRED_PYTHON: "3.9"
|
DESIRED_PYTHON: "3.9"
|
||||||
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
||||||
@ -81,7 +80,6 @@ jobs:
|
|||||||
DESIRED_CUDA: cpu
|
DESIRED_CUDA: cpu
|
||||||
GPU_ARCH_TYPE: cpu-aarch64
|
GPU_ARCH_TYPE: cpu-aarch64
|
||||||
DOCKER_IMAGE: pytorch/manylinux2_28_aarch64-builder:cpu-aarch64-main
|
DOCKER_IMAGE: pytorch/manylinux2_28_aarch64-builder:cpu-aarch64-main
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
use_split_build: False
|
use_split_build: False
|
||||||
DESIRED_PYTHON: "3.9"
|
DESIRED_PYTHON: "3.9"
|
||||||
build_name: manywheel-py3_9-cpu-aarch64
|
build_name: manywheel-py3_9-cpu-aarch64
|
||||||
@ -105,7 +103,6 @@ jobs:
|
|||||||
DESIRED_CUDA: cpu
|
DESIRED_CUDA: cpu
|
||||||
GPU_ARCH_TYPE: cpu-aarch64
|
GPU_ARCH_TYPE: cpu-aarch64
|
||||||
DOCKER_IMAGE: pytorch/manylinux2_28_aarch64-builder:cpu-aarch64-main
|
DOCKER_IMAGE: pytorch/manylinux2_28_aarch64-builder:cpu-aarch64-main
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
use_split_build: False
|
use_split_build: False
|
||||||
DESIRED_PYTHON: "3.9"
|
DESIRED_PYTHON: "3.9"
|
||||||
build_name: manywheel-py3_9-cpu-aarch64
|
build_name: manywheel-py3_9-cpu-aarch64
|
||||||
@ -126,7 +123,6 @@ jobs:
|
|||||||
GPU_ARCH_VERSION: 12.8-aarch64
|
GPU_ARCH_VERSION: 12.8-aarch64
|
||||||
GPU_ARCH_TYPE: cuda-aarch64
|
GPU_ARCH_TYPE: cuda-aarch64
|
||||||
DOCKER_IMAGE: pytorch/manylinuxaarch64-builder:cuda12.8-main
|
DOCKER_IMAGE: pytorch/manylinuxaarch64-builder:cuda12.8-main
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
use_split_build: False
|
use_split_build: False
|
||||||
DESIRED_PYTHON: "3.9"
|
DESIRED_PYTHON: "3.9"
|
||||||
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
||||||
@ -153,7 +149,6 @@ jobs:
|
|||||||
GPU_ARCH_VERSION: 12.8-aarch64
|
GPU_ARCH_VERSION: 12.8-aarch64
|
||||||
GPU_ARCH_TYPE: cuda-aarch64
|
GPU_ARCH_TYPE: cuda-aarch64
|
||||||
DOCKER_IMAGE: pytorch/manylinuxaarch64-builder:cuda12.8-main
|
DOCKER_IMAGE: pytorch/manylinuxaarch64-builder:cuda12.8-main
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
use_split_build: False
|
use_split_build: False
|
||||||
DESIRED_PYTHON: "3.9"
|
DESIRED_PYTHON: "3.9"
|
||||||
build_name: manywheel-py3_9-cuda-aarch64-12_8
|
build_name: manywheel-py3_9-cuda-aarch64-12_8
|
||||||
@ -173,7 +168,6 @@ jobs:
|
|||||||
DESIRED_CUDA: cpu
|
DESIRED_CUDA: cpu
|
||||||
GPU_ARCH_TYPE: cpu-aarch64
|
GPU_ARCH_TYPE: cpu-aarch64
|
||||||
DOCKER_IMAGE: pytorch/manylinux2_28_aarch64-builder:cpu-aarch64-main
|
DOCKER_IMAGE: pytorch/manylinux2_28_aarch64-builder:cpu-aarch64-main
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
use_split_build: False
|
use_split_build: False
|
||||||
DESIRED_PYTHON: "3.10"
|
DESIRED_PYTHON: "3.10"
|
||||||
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
||||||
@ -198,7 +192,6 @@ jobs:
|
|||||||
DESIRED_CUDA: cpu
|
DESIRED_CUDA: cpu
|
||||||
GPU_ARCH_TYPE: cpu-aarch64
|
GPU_ARCH_TYPE: cpu-aarch64
|
||||||
DOCKER_IMAGE: pytorch/manylinux2_28_aarch64-builder:cpu-aarch64-main
|
DOCKER_IMAGE: pytorch/manylinux2_28_aarch64-builder:cpu-aarch64-main
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
use_split_build: False
|
use_split_build: False
|
||||||
DESIRED_PYTHON: "3.10"
|
DESIRED_PYTHON: "3.10"
|
||||||
build_name: manywheel-py3_10-cpu-aarch64
|
build_name: manywheel-py3_10-cpu-aarch64
|
||||||
@ -222,7 +215,6 @@ jobs:
|
|||||||
DESIRED_CUDA: cpu
|
DESIRED_CUDA: cpu
|
||||||
GPU_ARCH_TYPE: cpu-aarch64
|
GPU_ARCH_TYPE: cpu-aarch64
|
||||||
DOCKER_IMAGE: pytorch/manylinux2_28_aarch64-builder:cpu-aarch64-main
|
DOCKER_IMAGE: pytorch/manylinux2_28_aarch64-builder:cpu-aarch64-main
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
use_split_build: False
|
use_split_build: False
|
||||||
DESIRED_PYTHON: "3.10"
|
DESIRED_PYTHON: "3.10"
|
||||||
build_name: manywheel-py3_10-cpu-aarch64
|
build_name: manywheel-py3_10-cpu-aarch64
|
||||||
@ -243,7 +235,6 @@ jobs:
|
|||||||
GPU_ARCH_VERSION: 12.8-aarch64
|
GPU_ARCH_VERSION: 12.8-aarch64
|
||||||
GPU_ARCH_TYPE: cuda-aarch64
|
GPU_ARCH_TYPE: cuda-aarch64
|
||||||
DOCKER_IMAGE: pytorch/manylinuxaarch64-builder:cuda12.8-main
|
DOCKER_IMAGE: pytorch/manylinuxaarch64-builder:cuda12.8-main
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
use_split_build: False
|
use_split_build: False
|
||||||
DESIRED_PYTHON: "3.10"
|
DESIRED_PYTHON: "3.10"
|
||||||
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
||||||
@ -270,7 +261,6 @@ jobs:
|
|||||||
GPU_ARCH_VERSION: 12.8-aarch64
|
GPU_ARCH_VERSION: 12.8-aarch64
|
||||||
GPU_ARCH_TYPE: cuda-aarch64
|
GPU_ARCH_TYPE: cuda-aarch64
|
||||||
DOCKER_IMAGE: pytorch/manylinuxaarch64-builder:cuda12.8-main
|
DOCKER_IMAGE: pytorch/manylinuxaarch64-builder:cuda12.8-main
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
use_split_build: False
|
use_split_build: False
|
||||||
DESIRED_PYTHON: "3.10"
|
DESIRED_PYTHON: "3.10"
|
||||||
build_name: manywheel-py3_10-cuda-aarch64-12_8
|
build_name: manywheel-py3_10-cuda-aarch64-12_8
|
||||||
@ -290,7 +280,6 @@ jobs:
|
|||||||
DESIRED_CUDA: cpu
|
DESIRED_CUDA: cpu
|
||||||
GPU_ARCH_TYPE: cpu-aarch64
|
GPU_ARCH_TYPE: cpu-aarch64
|
||||||
DOCKER_IMAGE: pytorch/manylinux2_28_aarch64-builder:cpu-aarch64-main
|
DOCKER_IMAGE: pytorch/manylinux2_28_aarch64-builder:cpu-aarch64-main
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
use_split_build: False
|
use_split_build: False
|
||||||
DESIRED_PYTHON: "3.11"
|
DESIRED_PYTHON: "3.11"
|
||||||
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
||||||
@ -315,7 +304,6 @@ jobs:
|
|||||||
DESIRED_CUDA: cpu
|
DESIRED_CUDA: cpu
|
||||||
GPU_ARCH_TYPE: cpu-aarch64
|
GPU_ARCH_TYPE: cpu-aarch64
|
||||||
DOCKER_IMAGE: pytorch/manylinux2_28_aarch64-builder:cpu-aarch64-main
|
DOCKER_IMAGE: pytorch/manylinux2_28_aarch64-builder:cpu-aarch64-main
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
use_split_build: False
|
use_split_build: False
|
||||||
DESIRED_PYTHON: "3.11"
|
DESIRED_PYTHON: "3.11"
|
||||||
build_name: manywheel-py3_11-cpu-aarch64
|
build_name: manywheel-py3_11-cpu-aarch64
|
||||||
@ -339,7 +327,6 @@ jobs:
|
|||||||
DESIRED_CUDA: cpu
|
DESIRED_CUDA: cpu
|
||||||
GPU_ARCH_TYPE: cpu-aarch64
|
GPU_ARCH_TYPE: cpu-aarch64
|
||||||
DOCKER_IMAGE: pytorch/manylinux2_28_aarch64-builder:cpu-aarch64-main
|
DOCKER_IMAGE: pytorch/manylinux2_28_aarch64-builder:cpu-aarch64-main
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
use_split_build: False
|
use_split_build: False
|
||||||
DESIRED_PYTHON: "3.11"
|
DESIRED_PYTHON: "3.11"
|
||||||
build_name: manywheel-py3_11-cpu-aarch64
|
build_name: manywheel-py3_11-cpu-aarch64
|
||||||
@ -360,7 +347,6 @@ jobs:
|
|||||||
GPU_ARCH_VERSION: 12.8-aarch64
|
GPU_ARCH_VERSION: 12.8-aarch64
|
||||||
GPU_ARCH_TYPE: cuda-aarch64
|
GPU_ARCH_TYPE: cuda-aarch64
|
||||||
DOCKER_IMAGE: pytorch/manylinuxaarch64-builder:cuda12.8-main
|
DOCKER_IMAGE: pytorch/manylinuxaarch64-builder:cuda12.8-main
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
use_split_build: False
|
use_split_build: False
|
||||||
DESIRED_PYTHON: "3.11"
|
DESIRED_PYTHON: "3.11"
|
||||||
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
||||||
@ -387,7 +373,6 @@ jobs:
|
|||||||
GPU_ARCH_VERSION: 12.8-aarch64
|
GPU_ARCH_VERSION: 12.8-aarch64
|
||||||
GPU_ARCH_TYPE: cuda-aarch64
|
GPU_ARCH_TYPE: cuda-aarch64
|
||||||
DOCKER_IMAGE: pytorch/manylinuxaarch64-builder:cuda12.8-main
|
DOCKER_IMAGE: pytorch/manylinuxaarch64-builder:cuda12.8-main
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
use_split_build: False
|
use_split_build: False
|
||||||
DESIRED_PYTHON: "3.11"
|
DESIRED_PYTHON: "3.11"
|
||||||
build_name: manywheel-py3_11-cuda-aarch64-12_8
|
build_name: manywheel-py3_11-cuda-aarch64-12_8
|
||||||
@ -407,7 +392,6 @@ jobs:
|
|||||||
DESIRED_CUDA: cpu
|
DESIRED_CUDA: cpu
|
||||||
GPU_ARCH_TYPE: cpu-aarch64
|
GPU_ARCH_TYPE: cpu-aarch64
|
||||||
DOCKER_IMAGE: pytorch/manylinux2_28_aarch64-builder:cpu-aarch64-main
|
DOCKER_IMAGE: pytorch/manylinux2_28_aarch64-builder:cpu-aarch64-main
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
use_split_build: False
|
use_split_build: False
|
||||||
DESIRED_PYTHON: "3.12"
|
DESIRED_PYTHON: "3.12"
|
||||||
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
||||||
@ -432,7 +416,6 @@ jobs:
|
|||||||
DESIRED_CUDA: cpu
|
DESIRED_CUDA: cpu
|
||||||
GPU_ARCH_TYPE: cpu-aarch64
|
GPU_ARCH_TYPE: cpu-aarch64
|
||||||
DOCKER_IMAGE: pytorch/manylinux2_28_aarch64-builder:cpu-aarch64-main
|
DOCKER_IMAGE: pytorch/manylinux2_28_aarch64-builder:cpu-aarch64-main
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
use_split_build: False
|
use_split_build: False
|
||||||
DESIRED_PYTHON: "3.12"
|
DESIRED_PYTHON: "3.12"
|
||||||
build_name: manywheel-py3_12-cpu-aarch64
|
build_name: manywheel-py3_12-cpu-aarch64
|
||||||
@ -456,7 +439,6 @@ jobs:
|
|||||||
DESIRED_CUDA: cpu
|
DESIRED_CUDA: cpu
|
||||||
GPU_ARCH_TYPE: cpu-aarch64
|
GPU_ARCH_TYPE: cpu-aarch64
|
||||||
DOCKER_IMAGE: pytorch/manylinux2_28_aarch64-builder:cpu-aarch64-main
|
DOCKER_IMAGE: pytorch/manylinux2_28_aarch64-builder:cpu-aarch64-main
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
use_split_build: False
|
use_split_build: False
|
||||||
DESIRED_PYTHON: "3.12"
|
DESIRED_PYTHON: "3.12"
|
||||||
build_name: manywheel-py3_12-cpu-aarch64
|
build_name: manywheel-py3_12-cpu-aarch64
|
||||||
@ -477,7 +459,6 @@ jobs:
|
|||||||
GPU_ARCH_VERSION: 12.8-aarch64
|
GPU_ARCH_VERSION: 12.8-aarch64
|
||||||
GPU_ARCH_TYPE: cuda-aarch64
|
GPU_ARCH_TYPE: cuda-aarch64
|
||||||
DOCKER_IMAGE: pytorch/manylinuxaarch64-builder:cuda12.8-main
|
DOCKER_IMAGE: pytorch/manylinuxaarch64-builder:cuda12.8-main
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
use_split_build: False
|
use_split_build: False
|
||||||
DESIRED_PYTHON: "3.12"
|
DESIRED_PYTHON: "3.12"
|
||||||
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
||||||
@ -504,7 +485,6 @@ jobs:
|
|||||||
GPU_ARCH_VERSION: 12.8-aarch64
|
GPU_ARCH_VERSION: 12.8-aarch64
|
||||||
GPU_ARCH_TYPE: cuda-aarch64
|
GPU_ARCH_TYPE: cuda-aarch64
|
||||||
DOCKER_IMAGE: pytorch/manylinuxaarch64-builder:cuda12.8-main
|
DOCKER_IMAGE: pytorch/manylinuxaarch64-builder:cuda12.8-main
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
use_split_build: False
|
use_split_build: False
|
||||||
DESIRED_PYTHON: "3.12"
|
DESIRED_PYTHON: "3.12"
|
||||||
build_name: manywheel-py3_12-cuda-aarch64-12_8
|
build_name: manywheel-py3_12-cuda-aarch64-12_8
|
||||||
@ -524,7 +504,6 @@ jobs:
|
|||||||
DESIRED_CUDA: cpu
|
DESIRED_CUDA: cpu
|
||||||
GPU_ARCH_TYPE: cpu-aarch64
|
GPU_ARCH_TYPE: cpu-aarch64
|
||||||
DOCKER_IMAGE: pytorch/manylinux2_28_aarch64-builder:cpu-aarch64-main
|
DOCKER_IMAGE: pytorch/manylinux2_28_aarch64-builder:cpu-aarch64-main
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
use_split_build: False
|
use_split_build: False
|
||||||
DESIRED_PYTHON: "3.13"
|
DESIRED_PYTHON: "3.13"
|
||||||
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
||||||
@ -549,7 +528,6 @@ jobs:
|
|||||||
DESIRED_CUDA: cpu
|
DESIRED_CUDA: cpu
|
||||||
GPU_ARCH_TYPE: cpu-aarch64
|
GPU_ARCH_TYPE: cpu-aarch64
|
||||||
DOCKER_IMAGE: pytorch/manylinux2_28_aarch64-builder:cpu-aarch64-main
|
DOCKER_IMAGE: pytorch/manylinux2_28_aarch64-builder:cpu-aarch64-main
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
use_split_build: False
|
use_split_build: False
|
||||||
DESIRED_PYTHON: "3.13"
|
DESIRED_PYTHON: "3.13"
|
||||||
build_name: manywheel-py3_13-cpu-aarch64
|
build_name: manywheel-py3_13-cpu-aarch64
|
||||||
@ -573,7 +551,6 @@ jobs:
|
|||||||
DESIRED_CUDA: cpu
|
DESIRED_CUDA: cpu
|
||||||
GPU_ARCH_TYPE: cpu-aarch64
|
GPU_ARCH_TYPE: cpu-aarch64
|
||||||
DOCKER_IMAGE: pytorch/manylinux2_28_aarch64-builder:cpu-aarch64-main
|
DOCKER_IMAGE: pytorch/manylinux2_28_aarch64-builder:cpu-aarch64-main
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
use_split_build: False
|
use_split_build: False
|
||||||
DESIRED_PYTHON: "3.13"
|
DESIRED_PYTHON: "3.13"
|
||||||
build_name: manywheel-py3_13-cpu-aarch64
|
build_name: manywheel-py3_13-cpu-aarch64
|
||||||
@ -594,7 +571,6 @@ jobs:
|
|||||||
GPU_ARCH_VERSION: 12.8-aarch64
|
GPU_ARCH_VERSION: 12.8-aarch64
|
||||||
GPU_ARCH_TYPE: cuda-aarch64
|
GPU_ARCH_TYPE: cuda-aarch64
|
||||||
DOCKER_IMAGE: pytorch/manylinuxaarch64-builder:cuda12.8-main
|
DOCKER_IMAGE: pytorch/manylinuxaarch64-builder:cuda12.8-main
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
use_split_build: False
|
use_split_build: False
|
||||||
DESIRED_PYTHON: "3.13"
|
DESIRED_PYTHON: "3.13"
|
||||||
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
||||||
@ -621,7 +597,6 @@ jobs:
|
|||||||
GPU_ARCH_VERSION: 12.8-aarch64
|
GPU_ARCH_VERSION: 12.8-aarch64
|
||||||
GPU_ARCH_TYPE: cuda-aarch64
|
GPU_ARCH_TYPE: cuda-aarch64
|
||||||
DOCKER_IMAGE: pytorch/manylinuxaarch64-builder:cuda12.8-main
|
DOCKER_IMAGE: pytorch/manylinuxaarch64-builder:cuda12.8-main
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
use_split_build: False
|
use_split_build: False
|
||||||
DESIRED_PYTHON: "3.13"
|
DESIRED_PYTHON: "3.13"
|
||||||
build_name: manywheel-py3_13-cuda-aarch64-12_8
|
build_name: manywheel-py3_13-cuda-aarch64-12_8
|
||||||
@ -641,7 +616,6 @@ jobs:
|
|||||||
DESIRED_CUDA: cpu
|
DESIRED_CUDA: cpu
|
||||||
GPU_ARCH_TYPE: cpu-aarch64
|
GPU_ARCH_TYPE: cpu-aarch64
|
||||||
DOCKER_IMAGE: pytorch/manylinux2_28_aarch64-builder:cpu-aarch64-main
|
DOCKER_IMAGE: pytorch/manylinux2_28_aarch64-builder:cpu-aarch64-main
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
use_split_build: False
|
use_split_build: False
|
||||||
DESIRED_PYTHON: "3.13t"
|
DESIRED_PYTHON: "3.13t"
|
||||||
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
||||||
@ -666,7 +640,6 @@ jobs:
|
|||||||
DESIRED_CUDA: cpu
|
DESIRED_CUDA: cpu
|
||||||
GPU_ARCH_TYPE: cpu-aarch64
|
GPU_ARCH_TYPE: cpu-aarch64
|
||||||
DOCKER_IMAGE: pytorch/manylinux2_28_aarch64-builder:cpu-aarch64-main
|
DOCKER_IMAGE: pytorch/manylinux2_28_aarch64-builder:cpu-aarch64-main
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
use_split_build: False
|
use_split_build: False
|
||||||
DESIRED_PYTHON: "3.13t"
|
DESIRED_PYTHON: "3.13t"
|
||||||
build_name: manywheel-py3_13t-cpu-aarch64
|
build_name: manywheel-py3_13t-cpu-aarch64
|
||||||
@ -690,7 +663,6 @@ jobs:
|
|||||||
DESIRED_CUDA: cpu
|
DESIRED_CUDA: cpu
|
||||||
GPU_ARCH_TYPE: cpu-aarch64
|
GPU_ARCH_TYPE: cpu-aarch64
|
||||||
DOCKER_IMAGE: pytorch/manylinux2_28_aarch64-builder:cpu-aarch64-main
|
DOCKER_IMAGE: pytorch/manylinux2_28_aarch64-builder:cpu-aarch64-main
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
use_split_build: False
|
use_split_build: False
|
||||||
DESIRED_PYTHON: "3.13t"
|
DESIRED_PYTHON: "3.13t"
|
||||||
build_name: manywheel-py3_13t-cpu-aarch64
|
build_name: manywheel-py3_13t-cpu-aarch64
|
||||||
@ -711,7 +683,6 @@ jobs:
|
|||||||
GPU_ARCH_VERSION: 12.8-aarch64
|
GPU_ARCH_VERSION: 12.8-aarch64
|
||||||
GPU_ARCH_TYPE: cuda-aarch64
|
GPU_ARCH_TYPE: cuda-aarch64
|
||||||
DOCKER_IMAGE: pytorch/manylinuxaarch64-builder:cuda12.8-main
|
DOCKER_IMAGE: pytorch/manylinuxaarch64-builder:cuda12.8-main
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
use_split_build: False
|
use_split_build: False
|
||||||
DESIRED_PYTHON: "3.13t"
|
DESIRED_PYTHON: "3.13t"
|
||||||
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
||||||
@ -738,7 +709,6 @@ jobs:
|
|||||||
GPU_ARCH_VERSION: 12.8-aarch64
|
GPU_ARCH_VERSION: 12.8-aarch64
|
||||||
GPU_ARCH_TYPE: cuda-aarch64
|
GPU_ARCH_TYPE: cuda-aarch64
|
||||||
DOCKER_IMAGE: pytorch/manylinuxaarch64-builder:cuda12.8-main
|
DOCKER_IMAGE: pytorch/manylinuxaarch64-builder:cuda12.8-main
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
use_split_build: False
|
use_split_build: False
|
||||||
DESIRED_PYTHON: "3.13t"
|
DESIRED_PYTHON: "3.13t"
|
||||||
build_name: manywheel-py3_13t-cuda-aarch64-12_8
|
build_name: manywheel-py3_13t-cuda-aarch64-12_8
|
||||||
|
2
.github/workflows/generated-linux-binary-libtorch-cxx11-abi-main.yml
generated
vendored
2
.github/workflows/generated-linux-binary-libtorch-cxx11-abi-main.yml
generated
vendored
@ -52,7 +52,6 @@ jobs:
|
|||||||
GPU_ARCH_TYPE: cpu
|
GPU_ARCH_TYPE: cpu
|
||||||
DOCKER_IMAGE: pytorch/libtorch-cxx11-builder:cpu-main
|
DOCKER_IMAGE: pytorch/libtorch-cxx11-builder:cpu-main
|
||||||
LIBTORCH_VARIANT: shared-with-deps
|
LIBTORCH_VARIANT: shared-with-deps
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
||||||
build_name: libtorch-cpu-shared-with-deps-cxx11-abi
|
build_name: libtorch-cpu-shared-with-deps-cxx11-abi
|
||||||
build_environment: linux-binary-libtorch-cxx11-abi
|
build_environment: linux-binary-libtorch-cxx11-abi
|
||||||
@ -73,7 +72,6 @@ jobs:
|
|||||||
GPU_ARCH_TYPE: cpu
|
GPU_ARCH_TYPE: cpu
|
||||||
DOCKER_IMAGE: pytorch/libtorch-cxx11-builder:cpu-main
|
DOCKER_IMAGE: pytorch/libtorch-cxx11-builder:cpu-main
|
||||||
LIBTORCH_VARIANT: shared-with-deps
|
LIBTORCH_VARIANT: shared-with-deps
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
build_name: libtorch-cpu-shared-with-deps-cxx11-abi
|
build_name: libtorch-cpu-shared-with-deps-cxx11-abi
|
||||||
build_environment: linux-binary-libtorch-cxx11-abi
|
build_environment: linux-binary-libtorch-cxx11-abi
|
||||||
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
||||||
|
18
.github/workflows/generated-linux-binary-libtorch-cxx11-abi-nightly.yml
generated
vendored
18
.github/workflows/generated-linux-binary-libtorch-cxx11-abi-nightly.yml
generated
vendored
@ -57,7 +57,6 @@ jobs:
|
|||||||
GPU_ARCH_TYPE: cpu
|
GPU_ARCH_TYPE: cpu
|
||||||
DOCKER_IMAGE: pytorch/libtorch-cxx11-builder:cpu-main
|
DOCKER_IMAGE: pytorch/libtorch-cxx11-builder:cpu-main
|
||||||
LIBTORCH_VARIANT: shared-with-deps
|
LIBTORCH_VARIANT: shared-with-deps
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
||||||
build_name: libtorch-cpu-shared-with-deps-cxx11-abi
|
build_name: libtorch-cpu-shared-with-deps-cxx11-abi
|
||||||
build_environment: linux-binary-libtorch-cxx11-abi
|
build_environment: linux-binary-libtorch-cxx11-abi
|
||||||
@ -78,7 +77,6 @@ jobs:
|
|||||||
GPU_ARCH_TYPE: cpu
|
GPU_ARCH_TYPE: cpu
|
||||||
DOCKER_IMAGE: pytorch/libtorch-cxx11-builder:cpu-main
|
DOCKER_IMAGE: pytorch/libtorch-cxx11-builder:cpu-main
|
||||||
LIBTORCH_VARIANT: shared-with-deps
|
LIBTORCH_VARIANT: shared-with-deps
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
build_name: libtorch-cpu-shared-with-deps-cxx11-abi
|
build_name: libtorch-cpu-shared-with-deps-cxx11-abi
|
||||||
build_environment: linux-binary-libtorch-cxx11-abi
|
build_environment: linux-binary-libtorch-cxx11-abi
|
||||||
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
||||||
@ -100,7 +98,6 @@ jobs:
|
|||||||
GPU_ARCH_TYPE: cpu
|
GPU_ARCH_TYPE: cpu
|
||||||
DOCKER_IMAGE: pytorch/libtorch-cxx11-builder:cpu-main
|
DOCKER_IMAGE: pytorch/libtorch-cxx11-builder:cpu-main
|
||||||
LIBTORCH_VARIANT: shared-with-deps
|
LIBTORCH_VARIANT: shared-with-deps
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
build_name: libtorch-cpu-shared-with-deps-cxx11-abi
|
build_name: libtorch-cpu-shared-with-deps-cxx11-abi
|
||||||
secrets:
|
secrets:
|
||||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
@ -120,7 +117,6 @@ jobs:
|
|||||||
GPU_ARCH_TYPE: cuda
|
GPU_ARCH_TYPE: cuda
|
||||||
DOCKER_IMAGE: pytorch/libtorch-cxx11-builder:cuda11.8-main
|
DOCKER_IMAGE: pytorch/libtorch-cxx11-builder:cuda11.8-main
|
||||||
LIBTORCH_VARIANT: shared-with-deps
|
LIBTORCH_VARIANT: shared-with-deps
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
||||||
build_name: libtorch-cuda11_8-shared-with-deps-cxx11-abi
|
build_name: libtorch-cuda11_8-shared-with-deps-cxx11-abi
|
||||||
build_environment: linux-binary-libtorch-cxx11-abi
|
build_environment: linux-binary-libtorch-cxx11-abi
|
||||||
@ -142,7 +138,6 @@ jobs:
|
|||||||
GPU_ARCH_TYPE: cuda
|
GPU_ARCH_TYPE: cuda
|
||||||
DOCKER_IMAGE: pytorch/libtorch-cxx11-builder:cuda11.8-main
|
DOCKER_IMAGE: pytorch/libtorch-cxx11-builder:cuda11.8-main
|
||||||
LIBTORCH_VARIANT: shared-with-deps
|
LIBTORCH_VARIANT: shared-with-deps
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
build_name: libtorch-cuda11_8-shared-with-deps-cxx11-abi
|
build_name: libtorch-cuda11_8-shared-with-deps-cxx11-abi
|
||||||
build_environment: linux-binary-libtorch-cxx11-abi
|
build_environment: linux-binary-libtorch-cxx11-abi
|
||||||
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
||||||
@ -165,7 +160,6 @@ jobs:
|
|||||||
GPU_ARCH_TYPE: cuda
|
GPU_ARCH_TYPE: cuda
|
||||||
DOCKER_IMAGE: pytorch/libtorch-cxx11-builder:cuda11.8-main
|
DOCKER_IMAGE: pytorch/libtorch-cxx11-builder:cuda11.8-main
|
||||||
LIBTORCH_VARIANT: shared-with-deps
|
LIBTORCH_VARIANT: shared-with-deps
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
build_name: libtorch-cuda11_8-shared-with-deps-cxx11-abi
|
build_name: libtorch-cuda11_8-shared-with-deps-cxx11-abi
|
||||||
secrets:
|
secrets:
|
||||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
@ -185,7 +179,6 @@ jobs:
|
|||||||
GPU_ARCH_TYPE: cuda
|
GPU_ARCH_TYPE: cuda
|
||||||
DOCKER_IMAGE: pytorch/libtorch-cxx11-builder:cuda12.6-main
|
DOCKER_IMAGE: pytorch/libtorch-cxx11-builder:cuda12.6-main
|
||||||
LIBTORCH_VARIANT: shared-with-deps
|
LIBTORCH_VARIANT: shared-with-deps
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
||||||
build_name: libtorch-cuda12_6-shared-with-deps-cxx11-abi
|
build_name: libtorch-cuda12_6-shared-with-deps-cxx11-abi
|
||||||
build_environment: linux-binary-libtorch-cxx11-abi
|
build_environment: linux-binary-libtorch-cxx11-abi
|
||||||
@ -207,7 +200,6 @@ jobs:
|
|||||||
GPU_ARCH_TYPE: cuda
|
GPU_ARCH_TYPE: cuda
|
||||||
DOCKER_IMAGE: pytorch/libtorch-cxx11-builder:cuda12.6-main
|
DOCKER_IMAGE: pytorch/libtorch-cxx11-builder:cuda12.6-main
|
||||||
LIBTORCH_VARIANT: shared-with-deps
|
LIBTORCH_VARIANT: shared-with-deps
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
build_name: libtorch-cuda12_6-shared-with-deps-cxx11-abi
|
build_name: libtorch-cuda12_6-shared-with-deps-cxx11-abi
|
||||||
build_environment: linux-binary-libtorch-cxx11-abi
|
build_environment: linux-binary-libtorch-cxx11-abi
|
||||||
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
||||||
@ -230,7 +222,6 @@ jobs:
|
|||||||
GPU_ARCH_TYPE: cuda
|
GPU_ARCH_TYPE: cuda
|
||||||
DOCKER_IMAGE: pytorch/libtorch-cxx11-builder:cuda12.6-main
|
DOCKER_IMAGE: pytorch/libtorch-cxx11-builder:cuda12.6-main
|
||||||
LIBTORCH_VARIANT: shared-with-deps
|
LIBTORCH_VARIANT: shared-with-deps
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
build_name: libtorch-cuda12_6-shared-with-deps-cxx11-abi
|
build_name: libtorch-cuda12_6-shared-with-deps-cxx11-abi
|
||||||
secrets:
|
secrets:
|
||||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
@ -250,7 +241,6 @@ jobs:
|
|||||||
GPU_ARCH_TYPE: cuda
|
GPU_ARCH_TYPE: cuda
|
||||||
DOCKER_IMAGE: pytorch/libtorch-cxx11-builder:cuda12.8-main
|
DOCKER_IMAGE: pytorch/libtorch-cxx11-builder:cuda12.8-main
|
||||||
LIBTORCH_VARIANT: shared-with-deps
|
LIBTORCH_VARIANT: shared-with-deps
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
||||||
build_name: libtorch-cuda12_8-shared-with-deps-cxx11-abi
|
build_name: libtorch-cuda12_8-shared-with-deps-cxx11-abi
|
||||||
build_environment: linux-binary-libtorch-cxx11-abi
|
build_environment: linux-binary-libtorch-cxx11-abi
|
||||||
@ -272,7 +262,6 @@ jobs:
|
|||||||
GPU_ARCH_TYPE: cuda
|
GPU_ARCH_TYPE: cuda
|
||||||
DOCKER_IMAGE: pytorch/libtorch-cxx11-builder:cuda12.8-main
|
DOCKER_IMAGE: pytorch/libtorch-cxx11-builder:cuda12.8-main
|
||||||
LIBTORCH_VARIANT: shared-with-deps
|
LIBTORCH_VARIANT: shared-with-deps
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
build_name: libtorch-cuda12_8-shared-with-deps-cxx11-abi
|
build_name: libtorch-cuda12_8-shared-with-deps-cxx11-abi
|
||||||
build_environment: linux-binary-libtorch-cxx11-abi
|
build_environment: linux-binary-libtorch-cxx11-abi
|
||||||
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
||||||
@ -295,7 +284,6 @@ jobs:
|
|||||||
GPU_ARCH_TYPE: cuda
|
GPU_ARCH_TYPE: cuda
|
||||||
DOCKER_IMAGE: pytorch/libtorch-cxx11-builder:cuda12.8-main
|
DOCKER_IMAGE: pytorch/libtorch-cxx11-builder:cuda12.8-main
|
||||||
LIBTORCH_VARIANT: shared-with-deps
|
LIBTORCH_VARIANT: shared-with-deps
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
build_name: libtorch-cuda12_8-shared-with-deps-cxx11-abi
|
build_name: libtorch-cuda12_8-shared-with-deps-cxx11-abi
|
||||||
secrets:
|
secrets:
|
||||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
@ -315,7 +303,6 @@ jobs:
|
|||||||
GPU_ARCH_TYPE: rocm
|
GPU_ARCH_TYPE: rocm
|
||||||
DOCKER_IMAGE: pytorch/libtorch-cxx11-builder:rocm6.2.4-main
|
DOCKER_IMAGE: pytorch/libtorch-cxx11-builder:rocm6.2.4-main
|
||||||
LIBTORCH_VARIANT: shared-with-deps
|
LIBTORCH_VARIANT: shared-with-deps
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
||||||
build_name: libtorch-rocm6_2_4-shared-with-deps-cxx11-abi
|
build_name: libtorch-rocm6_2_4-shared-with-deps-cxx11-abi
|
||||||
build_environment: linux-binary-libtorch-cxx11-abi
|
build_environment: linux-binary-libtorch-cxx11-abi
|
||||||
@ -339,7 +326,6 @@ jobs:
|
|||||||
SKIP_ALL_TESTS: 1
|
SKIP_ALL_TESTS: 1
|
||||||
DOCKER_IMAGE: pytorch/libtorch-cxx11-builder:rocm6.2.4-main
|
DOCKER_IMAGE: pytorch/libtorch-cxx11-builder:rocm6.2.4-main
|
||||||
LIBTORCH_VARIANT: shared-with-deps
|
LIBTORCH_VARIANT: shared-with-deps
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
steps:
|
steps:
|
||||||
- name: Setup ROCm
|
- name: Setup ROCm
|
||||||
uses: ./.github/actions/setup-rocm
|
uses: ./.github/actions/setup-rocm
|
||||||
@ -387,7 +373,6 @@ jobs:
|
|||||||
GPU_ARCH_TYPE: rocm
|
GPU_ARCH_TYPE: rocm
|
||||||
DOCKER_IMAGE: pytorch/libtorch-cxx11-builder:rocm6.2.4-main
|
DOCKER_IMAGE: pytorch/libtorch-cxx11-builder:rocm6.2.4-main
|
||||||
LIBTORCH_VARIANT: shared-with-deps
|
LIBTORCH_VARIANT: shared-with-deps
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
build_name: libtorch-rocm6_2_4-shared-with-deps-cxx11-abi
|
build_name: libtorch-rocm6_2_4-shared-with-deps-cxx11-abi
|
||||||
secrets:
|
secrets:
|
||||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
@ -407,7 +392,6 @@ jobs:
|
|||||||
GPU_ARCH_TYPE: rocm
|
GPU_ARCH_TYPE: rocm
|
||||||
DOCKER_IMAGE: pytorch/libtorch-cxx11-builder:rocm6.3-main
|
DOCKER_IMAGE: pytorch/libtorch-cxx11-builder:rocm6.3-main
|
||||||
LIBTORCH_VARIANT: shared-with-deps
|
LIBTORCH_VARIANT: shared-with-deps
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
||||||
build_name: libtorch-rocm6_3-shared-with-deps-cxx11-abi
|
build_name: libtorch-rocm6_3-shared-with-deps-cxx11-abi
|
||||||
build_environment: linux-binary-libtorch-cxx11-abi
|
build_environment: linux-binary-libtorch-cxx11-abi
|
||||||
@ -431,7 +415,6 @@ jobs:
|
|||||||
SKIP_ALL_TESTS: 1
|
SKIP_ALL_TESTS: 1
|
||||||
DOCKER_IMAGE: pytorch/libtorch-cxx11-builder:rocm6.3-main
|
DOCKER_IMAGE: pytorch/libtorch-cxx11-builder:rocm6.3-main
|
||||||
LIBTORCH_VARIANT: shared-with-deps
|
LIBTORCH_VARIANT: shared-with-deps
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
steps:
|
steps:
|
||||||
- name: Setup ROCm
|
- name: Setup ROCm
|
||||||
uses: ./.github/actions/setup-rocm
|
uses: ./.github/actions/setup-rocm
|
||||||
@ -479,7 +462,6 @@ jobs:
|
|||||||
GPU_ARCH_TYPE: rocm
|
GPU_ARCH_TYPE: rocm
|
||||||
DOCKER_IMAGE: pytorch/libtorch-cxx11-builder:rocm6.3-main
|
DOCKER_IMAGE: pytorch/libtorch-cxx11-builder:rocm6.3-main
|
||||||
LIBTORCH_VARIANT: shared-with-deps
|
LIBTORCH_VARIANT: shared-with-deps
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
build_name: libtorch-rocm6_3-shared-with-deps-cxx11-abi
|
build_name: libtorch-rocm6_3-shared-with-deps-cxx11-abi
|
||||||
secrets:
|
secrets:
|
||||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
6
.github/workflows/generated-linux-binary-manywheel-main.yml
generated
vendored
6
.github/workflows/generated-linux-binary-manywheel-main.yml
generated
vendored
@ -52,7 +52,6 @@ jobs:
|
|||||||
GPU_ARCH_VERSION: 11.8
|
GPU_ARCH_VERSION: 11.8
|
||||||
GPU_ARCH_TYPE: cuda
|
GPU_ARCH_TYPE: cuda
|
||||||
DOCKER_IMAGE: pytorch/manylinux2_28-builder:cuda11.8-main
|
DOCKER_IMAGE: pytorch/manylinux2_28-builder:cuda11.8-main
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
use_split_build: False
|
use_split_build: False
|
||||||
DESIRED_PYTHON: "3.9"
|
DESIRED_PYTHON: "3.9"
|
||||||
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
||||||
@ -76,7 +75,6 @@ jobs:
|
|||||||
GPU_ARCH_VERSION: 11.8
|
GPU_ARCH_VERSION: 11.8
|
||||||
GPU_ARCH_TYPE: cuda
|
GPU_ARCH_TYPE: cuda
|
||||||
DOCKER_IMAGE: pytorch/manylinux2_28-builder:cuda11.8-main
|
DOCKER_IMAGE: pytorch/manylinux2_28-builder:cuda11.8-main
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
use_split_build: False
|
use_split_build: False
|
||||||
DESIRED_PYTHON: "3.9"
|
DESIRED_PYTHON: "3.9"
|
||||||
build_name: manywheel-py3_9-cuda11_8
|
build_name: manywheel-py3_9-cuda11_8
|
||||||
@ -99,7 +97,6 @@ jobs:
|
|||||||
GPU_ARCH_VERSION: 12.6
|
GPU_ARCH_VERSION: 12.6
|
||||||
GPU_ARCH_TYPE: cuda
|
GPU_ARCH_TYPE: cuda
|
||||||
DOCKER_IMAGE: pytorch/manylinux2_28-builder:cuda12.6-main
|
DOCKER_IMAGE: pytorch/manylinux2_28-builder:cuda12.6-main
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
use_split_build: False
|
use_split_build: False
|
||||||
DESIRED_PYTHON: "3.9"
|
DESIRED_PYTHON: "3.9"
|
||||||
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
||||||
@ -123,7 +120,6 @@ jobs:
|
|||||||
GPU_ARCH_VERSION: 12.6
|
GPU_ARCH_VERSION: 12.6
|
||||||
GPU_ARCH_TYPE: cuda
|
GPU_ARCH_TYPE: cuda
|
||||||
DOCKER_IMAGE: pytorch/manylinux2_28-builder:cuda12.6-main
|
DOCKER_IMAGE: pytorch/manylinux2_28-builder:cuda12.6-main
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
use_split_build: False
|
use_split_build: False
|
||||||
DESIRED_PYTHON: "3.9"
|
DESIRED_PYTHON: "3.9"
|
||||||
build_name: manywheel-py3_9-cuda12_6
|
build_name: manywheel-py3_9-cuda12_6
|
||||||
@ -146,7 +142,6 @@ jobs:
|
|||||||
GPU_ARCH_VERSION: 12.8
|
GPU_ARCH_VERSION: 12.8
|
||||||
GPU_ARCH_TYPE: cuda
|
GPU_ARCH_TYPE: cuda
|
||||||
DOCKER_IMAGE: pytorch/manylinux2_28-builder:cuda12.8-main
|
DOCKER_IMAGE: pytorch/manylinux2_28-builder:cuda12.8-main
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
use_split_build: False
|
use_split_build: False
|
||||||
DESIRED_PYTHON: "3.9"
|
DESIRED_PYTHON: "3.9"
|
||||||
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
||||||
@ -170,7 +165,6 @@ jobs:
|
|||||||
GPU_ARCH_VERSION: 12.8
|
GPU_ARCH_VERSION: 12.8
|
||||||
GPU_ARCH_TYPE: cuda
|
GPU_ARCH_TYPE: cuda
|
||||||
DOCKER_IMAGE: pytorch/manylinux2_28-builder:cuda12.8-main
|
DOCKER_IMAGE: pytorch/manylinux2_28-builder:cuda12.8-main
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
use_split_build: False
|
use_split_build: False
|
||||||
DESIRED_PYTHON: "3.9"
|
DESIRED_PYTHON: "3.9"
|
||||||
build_name: manywheel-py3_9-cuda12_8
|
build_name: manywheel-py3_9-cuda12_8
|
||||||
|
144
.github/workflows/generated-linux-binary-manywheel-nightly.yml
generated
vendored
144
.github/workflows/generated-linux-binary-manywheel-nightly.yml
generated
vendored
File diff suppressed because it is too large
Load Diff
2
.github/workflows/generated-macos-arm64-binary-libtorch-cxx11-abi-nightly.yml
generated
vendored
2
.github/workflows/generated-macos-arm64-binary-libtorch-cxx11-abi-nightly.yml
generated
vendored
@ -43,7 +43,6 @@ jobs:
|
|||||||
GPU_ARCH_TYPE: cpu
|
GPU_ARCH_TYPE: cpu
|
||||||
SKIP_ALL_TESTS: 1
|
SKIP_ALL_TESTS: 1
|
||||||
LIBTORCH_VARIANT: shared-with-deps
|
LIBTORCH_VARIANT: shared-with-deps
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
# This is a dummy value for libtorch to work correctly with our batch scripts
|
# This is a dummy value for libtorch to work correctly with our batch scripts
|
||||||
# without this value pip does not get installed for some reason
|
# without this value pip does not get installed for some reason
|
||||||
DESIRED_PYTHON: "3.9"
|
DESIRED_PYTHON: "3.9"
|
||||||
@ -128,7 +127,6 @@ jobs:
|
|||||||
GPU_ARCH_TYPE: cpu
|
GPU_ARCH_TYPE: cpu
|
||||||
DOCKER_IMAGE: pytorch/libtorch-cxx11-builder:cpu-main
|
DOCKER_IMAGE: pytorch/libtorch-cxx11-builder:cpu-main
|
||||||
LIBTORCH_VARIANT: shared-with-deps
|
LIBTORCH_VARIANT: shared-with-deps
|
||||||
DESIRED_DEVTOOLSET: cxx11-abi
|
|
||||||
build_name: libtorch-cpu-shared-with-deps-cxx11-abi
|
build_name: libtorch-cpu-shared-with-deps-cxx11-abi
|
||||||
use_s3: False
|
use_s3: False
|
||||||
secrets:
|
secrets:
|
||||||
|
Reference in New Issue
Block a user