mirror of
https://github.com/pytorch/pytorch.git
synced 2025-11-05 00:14:54 +08:00
Compare commits
91 Commits
document
...
cherry-pic
| Author | SHA1 | Date | |
|---|---|---|---|
| b0a23a6d59 | |||
| cbe1a35dbd | |||
| 9315f44cd6 | |||
| e9e3db62fe | |||
| c19082674b | |||
| 4dca449358 | |||
| 0fabc3ba44 | |||
| 26e023a973 | |||
| 6f12be2770 | |||
| 42f0c2c970 | |||
| b015422da1 | |||
| d4c4307032 | |||
| 3b57315b1b | |||
| c74f05797d | |||
| fd364580a9 | |||
| 2f6387e9a1 | |||
| 017d857f5f | |||
| d6e8411889 | |||
| 10b501fde9 | |||
| 31c72b8a96 | |||
| 1cd83de315 | |||
| 881c2ccae9 | |||
| 764f65584a | |||
| 3e8a062385 | |||
| 3abee625e1 | |||
| f227c883f9 | |||
| a5feacb14b | |||
| 71282c8364 | |||
| e70d9f5322 | |||
| 005e3e8d78 | |||
| 72cf48ea43 | |||
| a21a4bf11a | |||
| 21fec65781 | |||
| 22d46b50ec | |||
| d1b63e2b4a | |||
| 20100b7210 | |||
| a2c77043ee | |||
| b64fc8e41e | |||
| 709f4f62a0 | |||
| 11f776c8ee | |||
| 45e257f046 | |||
| 37e2626639 | |||
| d7a703ea92 | |||
| daa3d04325 | |||
| 999304396f | |||
| 5340e741df | |||
| 7cadf8ac04 | |||
| f9e495fe8e | |||
| 57dc68844d | |||
| 63da9d2730 | |||
| 824d59fbf6 | |||
| fc8bf12b38 | |||
| 49dab18ecf | |||
| 0154ca1d3d | |||
| 132d9fac3b | |||
| 87c5d4a858 | |||
| b0dc90881c | |||
| c0577aad39 | |||
| 9952b87600 | |||
| 300bade202 | |||
| 96f0c0fa07 | |||
| 7d024a6e29 | |||
| be29c5b207 | |||
| 5322dab793 | |||
| 1dadb6196b | |||
| 6c058c1262 | |||
| 715dca6725 | |||
| 47cb45e4f6 | |||
| 4966d058f2 | |||
| 579794ed7b | |||
| 7cf37ae3cb | |||
| f83cf0714e | |||
| ddd5074afc | |||
| 35c55da805 | |||
| a576d48637 | |||
| 25d8c0be68 | |||
| b1aae80953 | |||
| 76bebf38de | |||
| bc158ebdc7 | |||
| ffa6f63fe2 | |||
| baab5c6c8b | |||
| 9718af107e | |||
| 7f8ba48c2a | |||
| aebf427c53 | |||
| 44baf2ff8d | |||
| 1076941ff7 | |||
| 0ac9fa4413 | |||
| 152383b745 | |||
| c31a8186c1 | |||
| ce928e17c1 | |||
| cd2c98a5b5 |
@ -8,6 +8,8 @@ if [[ "$GPU_ARCH_VERSION" == *"12.6"* ]]; then
|
|||||||
export TORCH_CUDA_ARCH_LIST="8.0;9.0"
|
export TORCH_CUDA_ARCH_LIST="8.0;9.0"
|
||||||
elif [[ "$GPU_ARCH_VERSION" == *"12.8"* ]]; then
|
elif [[ "$GPU_ARCH_VERSION" == *"12.8"* ]]; then
|
||||||
export TORCH_CUDA_ARCH_LIST="8.0;9.0;10.0;12.0"
|
export TORCH_CUDA_ARCH_LIST="8.0;9.0;10.0;12.0"
|
||||||
|
elif [[ "$GPU_ARCH_VERSION" == *"12.9"* ]]; then
|
||||||
|
export TORCH_CUDA_ARCH_LIST="8.0;9.0;10.0;12.0"
|
||||||
elif [[ "$GPU_ARCH_VERSION" == *"13.0"* ]]; then
|
elif [[ "$GPU_ARCH_VERSION" == *"13.0"* ]]; then
|
||||||
export TORCH_CUDA_ARCH_LIST="8.0;9.0;10.0;11.0;12.0+PTX"
|
export TORCH_CUDA_ARCH_LIST="8.0;9.0;10.0;11.0;12.0+PTX"
|
||||||
fi
|
fi
|
||||||
@ -33,7 +35,8 @@ pip install -r /pytorch/requirements.txt
|
|||||||
pip install auditwheel==6.2.0 wheel
|
pip install auditwheel==6.2.0 wheel
|
||||||
if [ "$DESIRED_CUDA" = "cpu" ]; then
|
if [ "$DESIRED_CUDA" = "cpu" ]; then
|
||||||
echo "BASE_CUDA_VERSION is not set. Building cpu wheel."
|
echo "BASE_CUDA_VERSION is not set. Building cpu wheel."
|
||||||
python /pytorch/.ci/aarch64_linux/aarch64_wheel_ci_build.py --enable-mkldnn
|
#USE_PRIORITIZED_TEXT_FOR_LD for enable linker script optimization https://github.com/pytorch/pytorch/pull/121975/files
|
||||||
|
USE_PRIORITIZED_TEXT_FOR_LD=1 python /pytorch/.ci/aarch64_linux/aarch64_wheel_ci_build.py --enable-mkldnn
|
||||||
else
|
else
|
||||||
echo "BASE_CUDA_VERSION is set to: $DESIRED_CUDA"
|
echo "BASE_CUDA_VERSION is set to: $DESIRED_CUDA"
|
||||||
export USE_SYSTEM_NCCL=1
|
export USE_SYSTEM_NCCL=1
|
||||||
@ -47,5 +50,6 @@ else
|
|||||||
export USE_NVIDIA_PYPI_LIBS=1
|
export USE_NVIDIA_PYPI_LIBS=1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
python /pytorch/.ci/aarch64_linux/aarch64_wheel_ci_build.py --enable-mkldnn --enable-cuda
|
#USE_PRIORITIZED_TEXT_FOR_LD for enable linker script optimization https://github.com/pytorch/pytorch/pull/121975/files
|
||||||
|
USE_PRIORITIZED_TEXT_FOR_LD=1 python /pytorch/.ci/aarch64_linux/aarch64_wheel_ci_build.py --enable-mkldnn --enable-cuda
|
||||||
fi
|
fi
|
||||||
|
|||||||
@ -13,6 +13,49 @@ def list_dir(path: str) -> list[str]:
|
|||||||
return check_output(["ls", "-1", path]).decode().split("\n")
|
return check_output(["ls", "-1", path]).decode().split("\n")
|
||||||
|
|
||||||
|
|
||||||
|
def build_ArmComputeLibrary() -> None:
|
||||||
|
"""
|
||||||
|
Using ArmComputeLibrary for aarch64 PyTorch
|
||||||
|
"""
|
||||||
|
print("Building Arm Compute Library")
|
||||||
|
acl_build_flags = [
|
||||||
|
"debug=0",
|
||||||
|
"neon=1",
|
||||||
|
"opencl=0",
|
||||||
|
"os=linux",
|
||||||
|
"openmp=1",
|
||||||
|
"cppthreads=0",
|
||||||
|
"arch=armv8a",
|
||||||
|
"multi_isa=1",
|
||||||
|
"fixed_format_kernels=1",
|
||||||
|
"build=native",
|
||||||
|
]
|
||||||
|
acl_install_dir = "/acl"
|
||||||
|
acl_checkout_dir = os.getenv("ACL_SOURCE_DIR", "ComputeLibrary")
|
||||||
|
if os.path.isdir(acl_install_dir):
|
||||||
|
shutil.rmtree(acl_install_dir)
|
||||||
|
if not os.path.isdir(acl_checkout_dir) or not len(os.listdir(acl_checkout_dir)):
|
||||||
|
check_call(
|
||||||
|
[
|
||||||
|
"git",
|
||||||
|
"clone",
|
||||||
|
"https://github.com/ARM-software/ComputeLibrary.git",
|
||||||
|
"-b",
|
||||||
|
"v25.02",
|
||||||
|
"--depth",
|
||||||
|
"1",
|
||||||
|
"--shallow-submodules",
|
||||||
|
]
|
||||||
|
)
|
||||||
|
|
||||||
|
check_call(
|
||||||
|
["scons", "Werror=1", f"-j{os.cpu_count()}"] + acl_build_flags,
|
||||||
|
cwd=acl_checkout_dir,
|
||||||
|
)
|
||||||
|
for d in ["arm_compute", "include", "utils", "support", "src", "build"]:
|
||||||
|
shutil.copytree(f"{acl_checkout_dir}/{d}", f"{acl_install_dir}/{d}")
|
||||||
|
|
||||||
|
|
||||||
def replace_tag(filename) -> None:
|
def replace_tag(filename) -> None:
|
||||||
with open(filename) as f:
|
with open(filename) as f:
|
||||||
lines = f.readlines()
|
lines = f.readlines()
|
||||||
@ -274,7 +317,7 @@ if __name__ == "__main__":
|
|||||||
).decode()
|
).decode()
|
||||||
|
|
||||||
print("Building PyTorch wheel")
|
print("Building PyTorch wheel")
|
||||||
build_vars = ""
|
build_vars = "CMAKE_SHARED_LINKER_FLAGS=-Wl,-z,max-page-size=0x10000 "
|
||||||
# MAX_JOB=5 is not required for CPU backend (see commit 465d98b)
|
# MAX_JOB=5 is not required for CPU backend (see commit 465d98b)
|
||||||
if enable_cuda:
|
if enable_cuda:
|
||||||
build_vars += "MAX_JOBS=5 "
|
build_vars += "MAX_JOBS=5 "
|
||||||
@ -313,17 +356,23 @@ if __name__ == "__main__":
|
|||||||
build_vars += f"BUILD_TEST=0 PYTORCH_BUILD_VERSION={branch[1 : branch.find('-')]} PYTORCH_BUILD_NUMBER=1 "
|
build_vars += f"BUILD_TEST=0 PYTORCH_BUILD_VERSION={branch[1 : branch.find('-')]} PYTORCH_BUILD_NUMBER=1 "
|
||||||
|
|
||||||
if enable_mkldnn:
|
if enable_mkldnn:
|
||||||
|
build_ArmComputeLibrary()
|
||||||
print("build pytorch with mkldnn+acl backend")
|
print("build pytorch with mkldnn+acl backend")
|
||||||
build_vars += "USE_MKLDNN=ON USE_MKLDNN_ACL=ON "
|
build_vars += (
|
||||||
build_vars += "ACL_ROOT_DIR=/acl "
|
"USE_MKLDNN=ON USE_MKLDNN_ACL=ON "
|
||||||
|
"ACL_ROOT_DIR=/acl "
|
||||||
|
"LD_LIBRARY_PATH=/pytorch/build/lib:/acl/build:$LD_LIBRARY_PATH "
|
||||||
|
"ACL_INCLUDE_DIR=/acl/build "
|
||||||
|
"ACL_LIBRARY=/acl/build "
|
||||||
|
)
|
||||||
if enable_cuda:
|
if enable_cuda:
|
||||||
build_vars += "BLAS=NVPL "
|
build_vars += "BLAS=NVPL "
|
||||||
else:
|
else:
|
||||||
build_vars += "BLAS=OpenBLAS OpenBLAS_HOME=/opt/OpenBLAS "
|
build_vars += "BLAS=OpenBLAS OpenBLAS_HOME=/OpenBLAS "
|
||||||
else:
|
else:
|
||||||
print("build pytorch without mkldnn backend")
|
print("build pytorch without mkldnn backend")
|
||||||
|
|
||||||
os.system(f"cd /pytorch; {build_vars} python3 -m build --wheel --no-isolation")
|
os.system(f"cd /pytorch; {build_vars} python3 setup.py bdist_wheel")
|
||||||
if enable_cuda:
|
if enable_cuda:
|
||||||
print("Updating Cuda Dependency")
|
print("Updating Cuda Dependency")
|
||||||
filename = os.listdir("/pytorch/dist/")
|
filename = os.listdir("/pytorch/dist/")
|
||||||
|
|||||||
@ -241,7 +241,7 @@ def wait_for_connection(addr, port, timeout=15, attempt_cnt=5):
|
|||||||
try:
|
try:
|
||||||
with socket.create_connection((addr, port), timeout=timeout):
|
with socket.create_connection((addr, port), timeout=timeout):
|
||||||
return
|
return
|
||||||
except (ConnectionRefusedError, TimeoutError): # noqa: PERF203
|
except (ConnectionRefusedError, socket.timeout): # noqa: PERF203
|
||||||
if i == attempt_cnt - 1:
|
if i == attempt_cnt - 1:
|
||||||
raise
|
raise
|
||||||
time.sleep(timeout)
|
time.sleep(timeout)
|
||||||
@ -299,6 +299,40 @@ def install_condaforge_python(host: RemoteHost, python_version="3.8") -> None:
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def build_OpenBLAS(host: RemoteHost, git_clone_flags: str = "") -> None:
|
||||||
|
print("Building OpenBLAS")
|
||||||
|
host.run_cmd(
|
||||||
|
f"git clone https://github.com/xianyi/OpenBLAS -b v0.3.28 {git_clone_flags}"
|
||||||
|
)
|
||||||
|
make_flags = "NUM_THREADS=64 USE_OPENMP=1 NO_SHARED=1 DYNAMIC_ARCH=1 TARGET=ARMV8"
|
||||||
|
host.run_cmd(
|
||||||
|
f"pushd OpenBLAS && make {make_flags} -j8 && sudo make {make_flags} install && popd && rm -rf OpenBLAS"
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def build_ArmComputeLibrary(host: RemoteHost, git_clone_flags: str = "") -> None:
|
||||||
|
print("Building Arm Compute Library")
|
||||||
|
acl_build_flags = " ".join(
|
||||||
|
[
|
||||||
|
"debug=0",
|
||||||
|
"neon=1",
|
||||||
|
"opencl=0",
|
||||||
|
"os=linux",
|
||||||
|
"openmp=1",
|
||||||
|
"cppthreads=0",
|
||||||
|
"arch=armv8a",
|
||||||
|
"multi_isa=1",
|
||||||
|
"fixed_format_kernels=1",
|
||||||
|
"build=native",
|
||||||
|
]
|
||||||
|
)
|
||||||
|
host.run_cmd(
|
||||||
|
f"git clone https://github.com/ARM-software/ComputeLibrary.git -b v25.02 {git_clone_flags}"
|
||||||
|
)
|
||||||
|
|
||||||
|
host.run_cmd(f"cd ComputeLibrary && scons Werror=1 -j8 {acl_build_flags}")
|
||||||
|
|
||||||
|
|
||||||
def embed_libgomp(host: RemoteHost, use_conda, wheel_name) -> None:
|
def embed_libgomp(host: RemoteHost, use_conda, wheel_name) -> None:
|
||||||
host.run_cmd("pip3 install auditwheel")
|
host.run_cmd("pip3 install auditwheel")
|
||||||
host.run_cmd(
|
host.run_cmd(
|
||||||
@ -408,7 +442,7 @@ def build_torchvision(
|
|||||||
if host.using_docker():
|
if host.using_docker():
|
||||||
build_vars += " CMAKE_SHARED_LINKER_FLAGS=-Wl,-z,max-page-size=0x10000"
|
build_vars += " CMAKE_SHARED_LINKER_FLAGS=-Wl,-z,max-page-size=0x10000"
|
||||||
|
|
||||||
host.run_cmd(f"cd vision && {build_vars} python3 -m build --wheel --no-isolation")
|
host.run_cmd(f"cd vision && {build_vars} python3 setup.py bdist_wheel")
|
||||||
vision_wheel_name = host.list_dir("vision/dist")[0]
|
vision_wheel_name = host.list_dir("vision/dist")[0]
|
||||||
embed_libgomp(host, use_conda, os.path.join("vision", "dist", vision_wheel_name))
|
embed_libgomp(host, use_conda, os.path.join("vision", "dist", vision_wheel_name))
|
||||||
|
|
||||||
@ -463,7 +497,7 @@ def build_torchdata(
|
|||||||
if host.using_docker():
|
if host.using_docker():
|
||||||
build_vars += " CMAKE_SHARED_LINKER_FLAGS=-Wl,-z,max-page-size=0x10000"
|
build_vars += " CMAKE_SHARED_LINKER_FLAGS=-Wl,-z,max-page-size=0x10000"
|
||||||
|
|
||||||
host.run_cmd(f"cd data && {build_vars} python3 -m build --wheel --no-isolation")
|
host.run_cmd(f"cd data && {build_vars} python3 setup.py bdist_wheel")
|
||||||
wheel_name = host.list_dir("data/dist")[0]
|
wheel_name = host.list_dir("data/dist")[0]
|
||||||
embed_libgomp(host, use_conda, os.path.join("data", "dist", wheel_name))
|
embed_libgomp(host, use_conda, os.path.join("data", "dist", wheel_name))
|
||||||
|
|
||||||
@ -519,7 +553,7 @@ def build_torchtext(
|
|||||||
if host.using_docker():
|
if host.using_docker():
|
||||||
build_vars += " CMAKE_SHARED_LINKER_FLAGS=-Wl,-z,max-page-size=0x10000"
|
build_vars += " CMAKE_SHARED_LINKER_FLAGS=-Wl,-z,max-page-size=0x10000"
|
||||||
|
|
||||||
host.run_cmd(f"cd text && {build_vars} python3 -m build --wheel --no-isolation")
|
host.run_cmd(f"cd text && {build_vars} python3 setup.py bdist_wheel")
|
||||||
wheel_name = host.list_dir("text/dist")[0]
|
wheel_name = host.list_dir("text/dist")[0]
|
||||||
embed_libgomp(host, use_conda, os.path.join("text", "dist", wheel_name))
|
embed_libgomp(host, use_conda, os.path.join("text", "dist", wheel_name))
|
||||||
|
|
||||||
@ -580,7 +614,7 @@ def build_torchaudio(
|
|||||||
host.run_cmd(
|
host.run_cmd(
|
||||||
f"cd audio && export FFMPEG_ROOT=$(pwd)/third_party/ffmpeg && export USE_FFMPEG=1 \
|
f"cd audio && export FFMPEG_ROOT=$(pwd)/third_party/ffmpeg && export USE_FFMPEG=1 \
|
||||||
&& ./packaging/ffmpeg/build.sh \
|
&& ./packaging/ffmpeg/build.sh \
|
||||||
&& {build_vars} python3 -m build --wheel --no-isolation"
|
&& {build_vars} python3 setup.py bdist_wheel"
|
||||||
)
|
)
|
||||||
|
|
||||||
wheel_name = host.list_dir("audio/dist")[0]
|
wheel_name = host.list_dir("audio/dist")[0]
|
||||||
@ -666,6 +700,7 @@ def start_build(
|
|||||||
configure_system(
|
configure_system(
|
||||||
host, compiler=compiler, use_conda=use_conda, python_version=python_version
|
host, compiler=compiler, use_conda=use_conda, python_version=python_version
|
||||||
)
|
)
|
||||||
|
build_OpenBLAS(host, git_clone_flags)
|
||||||
|
|
||||||
if host.using_docker():
|
if host.using_docker():
|
||||||
print("Move libgfortant.a into a standard location")
|
print("Move libgfortant.a into a standard location")
|
||||||
@ -688,12 +723,10 @@ def start_build(
|
|||||||
f"git clone --recurse-submodules -b {branch} https://github.com/pytorch/pytorch {git_clone_flags}"
|
f"git clone --recurse-submodules -b {branch} https://github.com/pytorch/pytorch {git_clone_flags}"
|
||||||
)
|
)
|
||||||
|
|
||||||
host.run_cmd("pytorch/.ci/docker/common/install_openblas.sh")
|
|
||||||
|
|
||||||
print("Building PyTorch wheel")
|
print("Building PyTorch wheel")
|
||||||
build_opts = ""
|
build_opts = ""
|
||||||
if pytorch_build_number is not None:
|
if pytorch_build_number is not None:
|
||||||
build_opts += f" -C--build-option=--build-number={pytorch_build_number}"
|
build_opts += f" --build-number {pytorch_build_number}"
|
||||||
# Breakpad build fails on aarch64
|
# Breakpad build fails on aarch64
|
||||||
build_vars = "USE_BREAKPAD=0 "
|
build_vars = "USE_BREAKPAD=0 "
|
||||||
if branch == "nightly":
|
if branch == "nightly":
|
||||||
@ -710,18 +743,15 @@ def start_build(
|
|||||||
if host.using_docker():
|
if host.using_docker():
|
||||||
build_vars += " CMAKE_SHARED_LINKER_FLAGS=-Wl,-z,max-page-size=0x10000"
|
build_vars += " CMAKE_SHARED_LINKER_FLAGS=-Wl,-z,max-page-size=0x10000"
|
||||||
if enable_mkldnn:
|
if enable_mkldnn:
|
||||||
host.run_cmd("pytorch/.ci/docker/common/install_acl.sh")
|
build_ArmComputeLibrary(host, git_clone_flags)
|
||||||
print("build pytorch with mkldnn+acl backend")
|
print("build pytorch with mkldnn+acl backend")
|
||||||
build_vars += " USE_MKLDNN=ON USE_MKLDNN_ACL=ON"
|
build_vars += " USE_MKLDNN=ON USE_MKLDNN_ACL=ON"
|
||||||
build_vars += " BLAS=OpenBLAS"
|
|
||||||
build_vars += " OpenBLAS_HOME=/opt/OpenBLAS"
|
|
||||||
build_vars += " ACL_ROOT_DIR=/acl"
|
|
||||||
host.run_cmd(
|
host.run_cmd(
|
||||||
f"cd $HOME/pytorch && {build_vars} python3 -m build --wheel --no-isolation{build_opts}"
|
f"cd $HOME/pytorch && export ACL_ROOT_DIR=$HOME/ComputeLibrary && {build_vars} python3 setup.py bdist_wheel{build_opts}"
|
||||||
)
|
)
|
||||||
print("Repair the wheel")
|
print("Repair the wheel")
|
||||||
pytorch_wheel_name = host.list_dir("pytorch/dist")[0]
|
pytorch_wheel_name = host.list_dir("pytorch/dist")[0]
|
||||||
ld_library_path = "/acl/build:$HOME/pytorch/build/lib"
|
ld_library_path = "$HOME/acl/build:$HOME/pytorch/build/lib"
|
||||||
host.run_cmd(
|
host.run_cmd(
|
||||||
f"export LD_LIBRARY_PATH={ld_library_path} && auditwheel repair $HOME/pytorch/dist/{pytorch_wheel_name}"
|
f"export LD_LIBRARY_PATH={ld_library_path} && auditwheel repair $HOME/pytorch/dist/{pytorch_wheel_name}"
|
||||||
)
|
)
|
||||||
@ -733,7 +763,7 @@ def start_build(
|
|||||||
else:
|
else:
|
||||||
print("build pytorch without mkldnn backend")
|
print("build pytorch without mkldnn backend")
|
||||||
host.run_cmd(
|
host.run_cmd(
|
||||||
f"cd pytorch && {build_vars} python3 -m build --wheel --no-isolation{build_opts}"
|
f"cd pytorch && {build_vars} python3 setup.py bdist_wheel{build_opts}"
|
||||||
)
|
)
|
||||||
|
|
||||||
print("Deleting build folder")
|
print("Deleting build folder")
|
||||||
@ -877,7 +907,7 @@ def terminate_instances(instance_type: str) -> None:
|
|||||||
def parse_arguments():
|
def parse_arguments():
|
||||||
from argparse import ArgumentParser
|
from argparse import ArgumentParser
|
||||||
|
|
||||||
parser = ArgumentParser("Build and test AARCH64 wheels using EC2")
|
parser = ArgumentParser("Builid and test AARCH64 wheels using EC2")
|
||||||
parser.add_argument("--key-name", type=str)
|
parser.add_argument("--key-name", type=str)
|
||||||
parser.add_argument("--debug", action="store_true")
|
parser.add_argument("--debug", action="store_true")
|
||||||
parser.add_argument("--build-only", action="store_true")
|
parser.add_argument("--build-only", action="store_true")
|
||||||
@ -974,7 +1004,7 @@ if __name__ == "__main__":
|
|||||||
install_condaforge_python(host, args.python_version)
|
install_condaforge_python(host, args.python_version)
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
|
|
||||||
python_version = args.python_version if args.python_version is not None else "3.10"
|
python_version = args.python_version if args.python_version is not None else "3.9"
|
||||||
|
|
||||||
if args.use_torch_from_pypi:
|
if args.use_torch_from_pypi:
|
||||||
configure_system(host, compiler=args.compiler, python_version=python_version)
|
configure_system(host, compiler=args.compiler, python_version=python_version)
|
||||||
|
|||||||
@ -69,8 +69,7 @@ RUN bash ./install_cuda.sh 13.0
|
|||||||
ENV DESIRED_CUDA=13.0
|
ENV DESIRED_CUDA=13.0
|
||||||
|
|
||||||
FROM ${ROCM_IMAGE} as rocm
|
FROM ${ROCM_IMAGE} as rocm
|
||||||
ARG PYTORCH_ROCM_ARCH
|
ENV PYTORCH_ROCM_ARCH="gfx900;gfx906;gfx908;gfx90a;gfx942;gfx1030;gfx1100;gfx1101;gfx1102;gfx1200;gfx1201"
|
||||||
ENV PYTORCH_ROCM_ARCH ${PYTORCH_ROCM_ARCH}
|
|
||||||
ADD ./common/install_mkl.sh install_mkl.sh
|
ADD ./common/install_mkl.sh install_mkl.sh
|
||||||
RUN bash ./install_mkl.sh && rm install_mkl.sh
|
RUN bash ./install_mkl.sh && rm install_mkl.sh
|
||||||
ENV MKLROOT /opt/intel
|
ENV MKLROOT /opt/intel
|
||||||
|
|||||||
@ -36,12 +36,6 @@ case ${DOCKER_TAG_PREFIX} in
|
|||||||
;;
|
;;
|
||||||
rocm*)
|
rocm*)
|
||||||
BASE_TARGET=rocm
|
BASE_TARGET=rocm
|
||||||
PYTORCH_ROCM_ARCH="gfx900;gfx906;gfx908;gfx90a;gfx942;gfx1030;gfx1100;gfx1101;gfx1102;gfx1200;gfx1201"
|
|
||||||
# add gfx950, gfx115x conditionally starting in ROCm 7.0
|
|
||||||
if [[ "$ROCM_VERSION" == *"7.0"* ]]; then
|
|
||||||
PYTORCH_ROCM_ARCH="${PYTORCH_ROCM_ARCH};gfx950;gfx1150;gfx1151"
|
|
||||||
fi
|
|
||||||
EXTRA_BUILD_ARGS="${EXTRA_BUILD_ARGS} --build-arg PYTORCH_ROCM_ARCH=${PYTORCH_ROCM_ARCH}"
|
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
echo "ERROR: Unknown docker tag ${DOCKER_TAG_PREFIX}"
|
echo "ERROR: Unknown docker tag ${DOCKER_TAG_PREFIX}"
|
||||||
|
|||||||
@ -84,8 +84,8 @@ fi
|
|||||||
_UCX_COMMIT=7836b165abdbe468a2f607e7254011c07d788152
|
_UCX_COMMIT=7836b165abdbe468a2f607e7254011c07d788152
|
||||||
_UCC_COMMIT=430e241bf5d38cbc73fc7a6b89155397232e3f96
|
_UCC_COMMIT=430e241bf5d38cbc73fc7a6b89155397232e3f96
|
||||||
if [[ "$image" == *rocm* ]]; then
|
if [[ "$image" == *rocm* ]]; then
|
||||||
_UCX_COMMIT=29831d319e6be55cb8c768ca61de335c934ca39e
|
_UCX_COMMIT=cc312eaa4655c0cc5c2bcd796db938f90563bcf6
|
||||||
_UCC_COMMIT=9f4b242cbbd8b1462cbc732eb29316cdfa124b77
|
_UCC_COMMIT=0c0fc21559835044ab107199e334f7157d6a0d3d
|
||||||
fi
|
fi
|
||||||
|
|
||||||
tag=$(echo $image | awk -F':' '{print $2}')
|
tag=$(echo $image | awk -F':' '{print $2}')
|
||||||
@ -175,16 +175,27 @@ case "$tag" in
|
|||||||
fi
|
fi
|
||||||
GCC_VERSION=11
|
GCC_VERSION=11
|
||||||
VISION=yes
|
VISION=yes
|
||||||
|
ROCM_VERSION=6.4
|
||||||
|
NINJA_VERSION=1.9.0
|
||||||
|
TRITON=yes
|
||||||
|
KATEX=yes
|
||||||
|
UCX_COMMIT=${_UCX_COMMIT}
|
||||||
|
UCC_COMMIT=${_UCC_COMMIT}
|
||||||
|
if [[ $tag =~ "benchmarks" ]]; then
|
||||||
|
INDUCTOR_BENCHMARKS=yes
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
pytorch-linux-noble-rocm-alpha-py3)
|
||||||
|
ANACONDA_PYTHON_VERSION=3.12
|
||||||
|
GCC_VERSION=11
|
||||||
|
VISION=yes
|
||||||
ROCM_VERSION=7.0
|
ROCM_VERSION=7.0
|
||||||
NINJA_VERSION=1.9.0
|
NINJA_VERSION=1.9.0
|
||||||
TRITON=yes
|
TRITON=yes
|
||||||
KATEX=yes
|
KATEX=yes
|
||||||
UCX_COMMIT=${_UCX_COMMIT}
|
UCX_COMMIT=${_UCX_COMMIT}
|
||||||
UCC_COMMIT=${_UCC_COMMIT}
|
UCC_COMMIT=${_UCC_COMMIT}
|
||||||
PYTORCH_ROCM_ARCH="gfx90a;gfx942;gfx950;gfx1100"
|
PYTORCH_ROCM_ARCH="gfx90a;gfx942;gfx950"
|
||||||
if [[ $tag =~ "benchmarks" ]]; then
|
|
||||||
INDUCTOR_BENCHMARKS=yes
|
|
||||||
fi
|
|
||||||
;;
|
;;
|
||||||
pytorch-linux-jammy-xpu-n-1-py3)
|
pytorch-linux-jammy-xpu-n-1-py3)
|
||||||
ANACONDA_PYTHON_VERSION=3.10
|
ANACONDA_PYTHON_VERSION=3.10
|
||||||
@ -344,7 +355,7 @@ docker build \
|
|||||||
--build-arg "NINJA_VERSION=${NINJA_VERSION:-}" \
|
--build-arg "NINJA_VERSION=${NINJA_VERSION:-}" \
|
||||||
--build-arg "KATEX=${KATEX:-}" \
|
--build-arg "KATEX=${KATEX:-}" \
|
||||||
--build-arg "ROCM_VERSION=${ROCM_VERSION:-}" \
|
--build-arg "ROCM_VERSION=${ROCM_VERSION:-}" \
|
||||||
--build-arg "PYTORCH_ROCM_ARCH=${PYTORCH_ROCM_ARCH}" \
|
--build-arg "PYTORCH_ROCM_ARCH=${PYTORCH_ROCM_ARCH:-gfx90a;gfx942}" \
|
||||||
--build-arg "IMAGE_NAME=${IMAGE_NAME}" \
|
--build-arg "IMAGE_NAME=${IMAGE_NAME}" \
|
||||||
--build-arg "UCX_COMMIT=${UCX_COMMIT}" \
|
--build-arg "UCX_COMMIT=${UCX_COMMIT}" \
|
||||||
--build-arg "UCC_COMMIT=${UCC_COMMIT}" \
|
--build-arg "UCC_COMMIT=${UCC_COMMIT}" \
|
||||||
@ -441,3 +452,12 @@ elif [ "$HAS_TRITON" = "yes" ]; then
|
|||||||
echo "expecting triton to not be installed, but it is"
|
echo "expecting triton to not be installed, but it is"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Sanity check cmake version. Executorch reinstalls cmake and I'm not sure if
|
||||||
|
# they support 4.0.0 yet, so exclude them from this check.
|
||||||
|
CMAKE_VERSION=$(drun cmake --version)
|
||||||
|
if [[ "$EXECUTORCH" != *yes* && "$CMAKE_VERSION" != *4.* ]]; then
|
||||||
|
echo "CMake version is not 4.0.0:"
|
||||||
|
drun cmake --version
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|||||||
@ -56,13 +56,9 @@ ENV INSTALLED_VISION ${VISION}
|
|||||||
|
|
||||||
# Install rocm
|
# Install rocm
|
||||||
ARG ROCM_VERSION
|
ARG ROCM_VERSION
|
||||||
RUN mkdir ci_commit_pins
|
|
||||||
COPY ./common/common_utils.sh common_utils.sh
|
|
||||||
COPY ./ci_commit_pins/rocm-composable-kernel.txt ci_commit_pins/rocm-composable-kernel.txt
|
|
||||||
COPY ./common/install_rocm.sh install_rocm.sh
|
COPY ./common/install_rocm.sh install_rocm.sh
|
||||||
RUN bash ./install_rocm.sh
|
RUN bash ./install_rocm.sh
|
||||||
RUN rm install_rocm.sh common_utils.sh
|
RUN rm install_rocm.sh
|
||||||
RUN rm -r ci_commit_pins
|
|
||||||
COPY ./common/install_rocm_magma.sh install_rocm_magma.sh
|
COPY ./common/install_rocm_magma.sh install_rocm_magma.sh
|
||||||
RUN bash ./install_rocm_magma.sh ${ROCM_VERSION}
|
RUN bash ./install_rocm_magma.sh ${ROCM_VERSION}
|
||||||
RUN rm install_rocm_magma.sh
|
RUN rm install_rocm_magma.sh
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
deb42f2a8e48f5032b4a98ee781a15fa87a157cf
|
56392aa978594cc155fa8af48cd949f5b5f1823a
|
||||||
|
|||||||
@ -1,2 +1,2 @@
|
|||||||
transformers==4.56.0
|
transformers==4.54.0
|
||||||
soxr==0.5.0
|
soxr==0.5.0
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
v2.27.5-1
|
v2.27.5-1
|
||||||
|
|||||||
@ -1 +0,0 @@
|
|||||||
7fe50dc3da2069d6645d9deb8c017a876472a977
|
|
||||||
@ -1 +1 @@
|
|||||||
7416ffcb92cdbe98d9f97e4e6f95247e46dfc9fd
|
bbb06c0334a6772b92d24bde54956e675c8c6604
|
||||||
|
|||||||
27
.ci/docker/common/install_acl.sh
Executable file → Normal file
27
.ci/docker/common/install_acl.sh
Executable file → Normal file
@ -1,27 +1,16 @@
|
|||||||
#!/bin/bash
|
set -euo pipefail
|
||||||
# Script used only in CD pipeline
|
|
||||||
|
|
||||||
set -eux
|
readonly version=v25.02
|
||||||
|
readonly src_host=https://github.com/ARM-software
|
||||||
ACL_VERSION=${ACL_VERSION:-"v25.02"}
|
readonly src_repo=ComputeLibrary
|
||||||
ACL_INSTALL_DIR="/acl"
|
|
||||||
|
|
||||||
# Clone ACL
|
# Clone ACL
|
||||||
git clone https://github.com/ARM-software/ComputeLibrary.git -b "${ACL_VERSION}" --depth 1 --shallow-submodules
|
[[ ! -d ${src_repo} ]] && git clone ${src_host}/${src_repo}.git
|
||||||
|
cd ${src_repo}
|
||||||
|
|
||||||
|
git checkout $version
|
||||||
|
|
||||||
ACL_CHECKOUT_DIR="ComputeLibrary"
|
|
||||||
# Build with scons
|
# Build with scons
|
||||||
pushd $ACL_CHECKOUT_DIR
|
|
||||||
scons -j8 Werror=0 debug=0 neon=1 opencl=0 embed_kernels=0 \
|
scons -j8 Werror=0 debug=0 neon=1 opencl=0 embed_kernels=0 \
|
||||||
os=linux arch=armv8a build=native multi_isa=1 \
|
os=linux arch=armv8a build=native multi_isa=1 \
|
||||||
fixed_format_kernels=1 openmp=1 cppthreads=0
|
fixed_format_kernels=1 openmp=1 cppthreads=0
|
||||||
popd
|
|
||||||
|
|
||||||
# Install ACL
|
|
||||||
sudo mkdir -p ${ACL_INSTALL_DIR}
|
|
||||||
for d in arm_compute include utils support src build
|
|
||||||
do
|
|
||||||
sudo cp -r ${ACL_CHECKOUT_DIR}/${d} ${ACL_INSTALL_DIR}/${d}
|
|
||||||
done
|
|
||||||
|
|
||||||
rm -rf $ACL_CHECKOUT_DIR
|
|
||||||
@ -42,27 +42,22 @@ install_pip_dependencies() {
|
|||||||
# A workaround, ExecuTorch has moved to numpy 2.0 which is not compatible with the current
|
# A workaround, ExecuTorch has moved to numpy 2.0 which is not compatible with the current
|
||||||
# numba and scipy version used in PyTorch CI
|
# numba and scipy version used in PyTorch CI
|
||||||
conda_run pip uninstall -y numba scipy
|
conda_run pip uninstall -y numba scipy
|
||||||
# Yaspin is needed for running CI test (get_benchmark_analysis_data.py)
|
|
||||||
pip_install yaspin==3.1.0
|
|
||||||
|
|
||||||
popd
|
popd
|
||||||
}
|
}
|
||||||
|
|
||||||
setup_executorch() {
|
setup_executorch() {
|
||||||
|
pushd executorch
|
||||||
|
|
||||||
export PYTHON_EXECUTABLE=python
|
export PYTHON_EXECUTABLE=python
|
||||||
export CMAKE_ARGS="-DEXECUTORCH_BUILD_PYBIND=ON -DEXECUTORCH_BUILD_XNNPACK=ON -DEXECUTORCH_BUILD_KERNELS_QUANTIZED=ON -DEXECUTORCH_BUILD_TESTS=ON"
|
export CMAKE_ARGS="-DEXECUTORCH_BUILD_PYBIND=ON -DEXECUTORCH_BUILD_XNNPACK=ON -DEXECUTORCH_BUILD_KERNELS_QUANTIZED=ON"
|
||||||
|
|
||||||
as_jenkins .ci/scripts/setup-linux.sh --build-tool cmake || true
|
as_jenkins .ci/scripts/setup-linux.sh --build-tool cmake || true
|
||||||
|
popd
|
||||||
}
|
}
|
||||||
|
|
||||||
if [ $# -eq 0 ]; then
|
clone_executorch
|
||||||
clone_executorch
|
install_buck2
|
||||||
install_buck2
|
install_conda_dependencies
|
||||||
install_conda_dependencies
|
install_pip_dependencies
|
||||||
install_pip_dependencies
|
setup_executorch
|
||||||
pushd executorch
|
|
||||||
setup_executorch
|
|
||||||
popd
|
|
||||||
else
|
|
||||||
"$@"
|
|
||||||
fi
|
|
||||||
|
|||||||
@ -19,8 +19,8 @@ pip_install \
|
|||||||
transformers==4.36.2
|
transformers==4.36.2
|
||||||
|
|
||||||
pip_install coloredlogs packaging
|
pip_install coloredlogs packaging
|
||||||
pip_install onnxruntime==1.23.0
|
pip_install onnxruntime==1.22.1
|
||||||
pip_install onnxscript==0.5.3
|
pip_install onnxscript==0.4.0
|
||||||
|
|
||||||
# Cache the transformers model to be used later by ONNX tests. We need to run the transformers
|
# Cache the transformers model to be used later by ONNX tests. We need to run the transformers
|
||||||
# package to download the model. By default, the model is cached at ~/.cache/huggingface/hub/
|
# package to download the model. By default, the model is cached at ~/.cache/huggingface/hub/
|
||||||
|
|||||||
12
.ci/docker/common/install_openblas.sh
Executable file → Normal file
12
.ci/docker/common/install_openblas.sh
Executable file → Normal file
@ -3,10 +3,8 @@
|
|||||||
|
|
||||||
set -ex
|
set -ex
|
||||||
|
|
||||||
OPENBLAS_VERSION=${OPENBLAS_VERSION:-"v0.3.30"}
|
cd /
|
||||||
|
git clone https://github.com/OpenMathLib/OpenBLAS.git -b "${OPENBLAS_VERSION:-v0.3.30}" --depth 1 --shallow-submodules
|
||||||
# Clone OpenBLAS
|
|
||||||
git clone https://github.com/OpenMathLib/OpenBLAS.git -b "${OPENBLAS_VERSION}" --depth 1 --shallow-submodules
|
|
||||||
|
|
||||||
OPENBLAS_CHECKOUT_DIR="OpenBLAS"
|
OPENBLAS_CHECKOUT_DIR="OpenBLAS"
|
||||||
OPENBLAS_BUILD_FLAGS="
|
OPENBLAS_BUILD_FLAGS="
|
||||||
@ -19,7 +17,5 @@ CFLAGS=-O3
|
|||||||
BUILD_BFLOAT16=1
|
BUILD_BFLOAT16=1
|
||||||
"
|
"
|
||||||
|
|
||||||
make -j8 ${OPENBLAS_BUILD_FLAGS} -C $OPENBLAS_CHECKOUT_DIR
|
make -j8 ${OPENBLAS_BUILD_FLAGS} -C ${OPENBLAS_CHECKOUT_DIR}
|
||||||
sudo make install -C $OPENBLAS_CHECKOUT_DIR
|
make -j8 ${OPENBLAS_BUILD_FLAGS} install -C ${OPENBLAS_CHECKOUT_DIR}
|
||||||
|
|
||||||
rm -rf $OPENBLAS_CHECKOUT_DIR
|
|
||||||
|
|||||||
@ -2,11 +2,6 @@
|
|||||||
|
|
||||||
set -ex
|
set -ex
|
||||||
|
|
||||||
# for pip_install function
|
|
||||||
source "$(dirname "${BASH_SOURCE[0]}")/common_utils.sh"
|
|
||||||
|
|
||||||
ROCM_COMPOSABLE_KERNEL_VERSION="$(cat $(dirname $0)/../ci_commit_pins/rocm-composable-kernel.txt)"
|
|
||||||
|
|
||||||
ver() {
|
ver() {
|
||||||
printf "%3d%03d%03d%03d" $(echo "$1" | tr '.' ' ');
|
printf "%3d%03d%03d%03d" $(echo "$1" | tr '.' ' ');
|
||||||
}
|
}
|
||||||
@ -42,6 +37,12 @@ EOF
|
|||||||
rocm_baseurl="http://repo.radeon.com/rocm/apt/${ROCM_VERSION}"
|
rocm_baseurl="http://repo.radeon.com/rocm/apt/${ROCM_VERSION}"
|
||||||
amdgpu_baseurl="https://repo.radeon.com/amdgpu/${ROCM_VERSION}/ubuntu"
|
amdgpu_baseurl="https://repo.radeon.com/amdgpu/${ROCM_VERSION}/ubuntu"
|
||||||
|
|
||||||
|
# Special case for ROCM_VERSION == 7.0
|
||||||
|
if [[ $(ver "$ROCM_VERSION") -eq $(ver 7.0) ]]; then
|
||||||
|
rocm_baseurl="https://repo.radeon.com/rocm/apt/7.0_alpha2"
|
||||||
|
amdgpu_baseurl="https://repo.radeon.com/amdgpu/30.10_alpha2/ubuntu"
|
||||||
|
fi
|
||||||
|
|
||||||
# Add amdgpu repository
|
# Add amdgpu repository
|
||||||
UBUNTU_VERSION_NAME=`cat /etc/os-release | grep UBUNTU_CODENAME | awk -F= '{print $2}'`
|
UBUNTU_VERSION_NAME=`cat /etc/os-release | grep UBUNTU_CODENAME | awk -F= '{print $2}'`
|
||||||
echo "deb [arch=amd64] ${amdgpu_baseurl} ${UBUNTU_VERSION_NAME} main" > /etc/apt/sources.list.d/amdgpu.list
|
echo "deb [arch=amd64] ${amdgpu_baseurl} ${UBUNTU_VERSION_NAME} main" > /etc/apt/sources.list.d/amdgpu.list
|
||||||
@ -112,8 +113,6 @@ EOF
|
|||||||
rm -rf HIP clr
|
rm -rf HIP clr
|
||||||
fi
|
fi
|
||||||
|
|
||||||
pip_install "git+https://github.com/rocm/composable_kernel@$ROCM_COMPOSABLE_KERNEL_VERSION"
|
|
||||||
|
|
||||||
# Cleanup
|
# Cleanup
|
||||||
apt-get autoclean && apt-get clean
|
apt-get autoclean && apt-get clean
|
||||||
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
||||||
@ -177,8 +176,6 @@ install_centos() {
|
|||||||
sqlite3 $kdb "PRAGMA journal_mode=off; PRAGMA VACUUM;"
|
sqlite3 $kdb "PRAGMA journal_mode=off; PRAGMA VACUUM;"
|
||||||
done
|
done
|
||||||
|
|
||||||
pip_install "git+https://github.com/rocm/composable_kernel@$ROCM_COMPOSABLE_KERNEL_VERSION"
|
|
||||||
|
|
||||||
# Cleanup
|
# Cleanup
|
||||||
yum clean all
|
yum clean all
|
||||||
rm -rf /var/cache/yum
|
rm -rf /var/cache/yum
|
||||||
|
|||||||
@ -12,8 +12,8 @@ function do_install() {
|
|||||||
|
|
||||||
rocm_version_nodot=${rocm_version//./}
|
rocm_version_nodot=${rocm_version//./}
|
||||||
|
|
||||||
# https://github.com/icl-utk-edu/magma/pull/65
|
# Version 2.7.2 + ROCm related updates
|
||||||
MAGMA_VERSION=d6e4117bc88e73f06d26c6c2e14f064e8fc3d1ec
|
MAGMA_VERSION=a1625ff4d9bc362906bd01f805dbbe12612953f6
|
||||||
magma_archive="magma-rocm${rocm_version_nodot}-${MAGMA_VERSION}-1.tar.bz2"
|
magma_archive="magma-rocm${rocm_version_nodot}-${MAGMA_VERSION}-1.tar.bz2"
|
||||||
|
|
||||||
rocm_dir="/opt/rocm"
|
rocm_dir="/opt/rocm"
|
||||||
|
|||||||
@ -66,15 +66,15 @@ if [ -n "${UBUNTU_VERSION}" ] && [ -n "${GCC_VERSION}" ] && [[ "${GCC_VERSION}"
|
|||||||
# Triton needs at least gcc-9 to build
|
# Triton needs at least gcc-9 to build
|
||||||
apt-get install -y g++-9
|
apt-get install -y g++-9
|
||||||
|
|
||||||
CXX=g++-9 conda_run python -m build --wheel --no-isolation
|
CXX=g++-9 conda_run python setup.py bdist_wheel
|
||||||
elif [ -n "${UBUNTU_VERSION}" ] && [ -n "${CLANG_VERSION}" ]; then
|
elif [ -n "${UBUNTU_VERSION}" ] && [ -n "${CLANG_VERSION}" ]; then
|
||||||
# Triton needs <filesystem> which surprisingly is not available with clang-9 toolchain
|
# Triton needs <filesystem> which surprisingly is not available with clang-9 toolchain
|
||||||
add-apt-repository -y ppa:ubuntu-toolchain-r/test
|
add-apt-repository -y ppa:ubuntu-toolchain-r/test
|
||||||
apt-get install -y g++-9
|
apt-get install -y g++-9
|
||||||
|
|
||||||
CXX=g++-9 conda_run python -m build --wheel --no-isolation
|
CXX=g++-9 conda_run python setup.py bdist_wheel
|
||||||
else
|
else
|
||||||
conda_run python -m build --wheel --no-isolation
|
conda_run python setup.py bdist_wheel
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Copy the wheel to /opt for multi stage docker builds
|
# Copy the wheel to /opt for multi stage docker builds
|
||||||
|
|||||||
@ -40,16 +40,12 @@ case ${DOCKER_TAG_PREFIX} in
|
|||||||
;;
|
;;
|
||||||
rocm*)
|
rocm*)
|
||||||
# we want the patch version of 6.4 instead
|
# we want the patch version of 6.4 instead
|
||||||
if [[ "$GPU_ARCH_VERSION" == *"6.4"* ]]; then
|
if [[ $(ver $GPU_ARCH_VERSION) -eq $(ver 6.4) ]]; then
|
||||||
GPU_ARCH_VERSION="${GPU_ARCH_VERSION}.2"
|
GPU_ARCH_VERSION="${GPU_ARCH_VERSION}.2"
|
||||||
fi
|
fi
|
||||||
BASE_TARGET=rocm
|
BASE_TARGET=rocm
|
||||||
GPU_IMAGE=rocm/dev-ubuntu-22.04:${GPU_ARCH_VERSION}-complete
|
GPU_IMAGE=rocm/dev-ubuntu-22.04:${GPU_ARCH_VERSION}-complete
|
||||||
PYTORCH_ROCM_ARCH="gfx900;gfx906;gfx908;gfx90a;gfx942;gfx1030;gfx1100;gfx1101;gfx1102;gfx1200;gfx1201"
|
PYTORCH_ROCM_ARCH="gfx900;gfx906;gfx908;gfx90a;gfx942;gfx1030;gfx1100;gfx1101;gfx1102;gfx1200;gfx1201"
|
||||||
# add gfx950, gfx115x conditionally starting in ROCm 7.0
|
|
||||||
if [[ "$GPU_ARCH_VERSION" == *"7.0"* ]]; then
|
|
||||||
PYTORCH_ROCM_ARCH="${PYTORCH_ROCM_ARCH};gfx950;gfx1150;gfx1151"
|
|
||||||
fi
|
|
||||||
DOCKER_GPU_BUILD_ARG="--build-arg PYTORCH_ROCM_ARCH=${PYTORCH_ROCM_ARCH} --build-arg ROCM_VERSION=${GPU_ARCH_VERSION}"
|
DOCKER_GPU_BUILD_ARG="--build-arg PYTORCH_ROCM_ARCH=${PYTORCH_ROCM_ARCH} --build-arg ROCM_VERSION=${GPU_ARCH_VERSION}"
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
|
|||||||
@ -62,13 +62,6 @@ ARG OPENBLAS_VERSION
|
|||||||
ADD ./common/install_openblas.sh install_openblas.sh
|
ADD ./common/install_openblas.sh install_openblas.sh
|
||||||
RUN bash ./install_openblas.sh && rm install_openblas.sh
|
RUN bash ./install_openblas.sh && rm install_openblas.sh
|
||||||
|
|
||||||
# Install Arm Compute Library
|
|
||||||
FROM base as arm_compute
|
|
||||||
# use python3.9 to install scons
|
|
||||||
RUN python3.9 -m pip install scons==4.7.0
|
|
||||||
RUN ln -sf /opt/python/cp39-cp39/bin/scons /usr/local/bin
|
|
||||||
COPY ./common/install_acl.sh install_acl.sh
|
|
||||||
RUN bash ./install_acl.sh && rm install_acl.sh
|
|
||||||
FROM base as final
|
FROM base as final
|
||||||
|
|
||||||
# remove unnecessary python versions
|
# remove unnecessary python versions
|
||||||
@ -77,7 +70,6 @@ RUN rm -rf /opt/python/cp26-cp26mu /opt/_internal/cpython-2.6.9-ucs4
|
|||||||
RUN rm -rf /opt/python/cp33-cp33m /opt/_internal/cpython-3.3.6
|
RUN rm -rf /opt/python/cp33-cp33m /opt/_internal/cpython-3.3.6
|
||||||
RUN rm -rf /opt/python/cp34-cp34m /opt/_internal/cpython-3.4.6
|
RUN rm -rf /opt/python/cp34-cp34m /opt/_internal/cpython-3.4.6
|
||||||
COPY --from=openblas /opt/OpenBLAS/ /opt/OpenBLAS/
|
COPY --from=openblas /opt/OpenBLAS/ /opt/OpenBLAS/
|
||||||
COPY --from=arm_compute /acl /acl
|
ENV LD_LIBRARY_PATH=/opt/OpenBLAS/lib:$LD_LIBRARY_PATH
|
||||||
ENV LD_LIBRARY_PATH=/opt/OpenBLAS/lib:/acl/build/:$LD_LIBRARY_PATH
|
|
||||||
ADD ./common/patch_libstdc.sh patch_libstdc.sh
|
ADD ./common/patch_libstdc.sh patch_libstdc.sh
|
||||||
RUN bash ./patch_libstdc.sh && rm patch_libstdc.sh
|
RUN bash ./patch_libstdc.sh && rm patch_libstdc.sh
|
||||||
|
|||||||
@ -86,15 +86,6 @@ FROM base as nvpl
|
|||||||
ADD ./common/install_nvpl.sh install_nvpl.sh
|
ADD ./common/install_nvpl.sh install_nvpl.sh
|
||||||
RUN bash ./install_nvpl.sh && rm install_nvpl.sh
|
RUN bash ./install_nvpl.sh && rm install_nvpl.sh
|
||||||
|
|
||||||
# Install Arm Compute Library
|
|
||||||
FROM base as arm_compute
|
|
||||||
# use python3.9 to install scons
|
|
||||||
RUN python3.9 -m pip install scons==4.7.0
|
|
||||||
RUN ln -sf /opt/python/cp39-cp39/bin/scons /usr/local/bin
|
|
||||||
COPY ./common/install_acl.sh install_acl.sh
|
|
||||||
RUN bash ./install_acl.sh && rm install_acl.sh
|
|
||||||
FROM base as final
|
|
||||||
|
|
||||||
FROM final as cuda_final
|
FROM final as cuda_final
|
||||||
ARG BASE_CUDA_VERSION
|
ARG BASE_CUDA_VERSION
|
||||||
RUN rm -rf /usr/local/cuda-${BASE_CUDA_VERSION}
|
RUN rm -rf /usr/local/cuda-${BASE_CUDA_VERSION}
|
||||||
@ -102,9 +93,7 @@ COPY --from=cuda /usr/local/cuda-${BASE_CUDA_VERSION} /usr/local/cuda-${BAS
|
|||||||
COPY --from=magma /usr/local/cuda-${BASE_CUDA_VERSION} /usr/local/cuda-${BASE_CUDA_VERSION}
|
COPY --from=magma /usr/local/cuda-${BASE_CUDA_VERSION} /usr/local/cuda-${BASE_CUDA_VERSION}
|
||||||
COPY --from=nvpl /opt/nvpl/lib/ /usr/local/lib/
|
COPY --from=nvpl /opt/nvpl/lib/ /usr/local/lib/
|
||||||
COPY --from=nvpl /opt/nvpl/include/ /usr/local/include/
|
COPY --from=nvpl /opt/nvpl/include/ /usr/local/include/
|
||||||
COPY --from=arm_compute /acl /acl
|
|
||||||
RUN ln -sf /usr/local/cuda-${BASE_CUDA_VERSION} /usr/local/cuda
|
RUN ln -sf /usr/local/cuda-${BASE_CUDA_VERSION} /usr/local/cuda
|
||||||
ENV PATH=/usr/local/cuda/bin:$PATH
|
ENV PATH=/usr/local/cuda/bin:$PATH
|
||||||
ENV LD_LIBRARY_PATH=/acl/build/:$LD_LIBRARY_PATH
|
|
||||||
ADD ./common/patch_libstdc.sh patch_libstdc.sh
|
ADD ./common/patch_libstdc.sh patch_libstdc.sh
|
||||||
RUN bash ./patch_libstdc.sh && rm patch_libstdc.sh
|
RUN bash ./patch_libstdc.sh && rm patch_libstdc.sh
|
||||||
|
|||||||
71
.ci/docker/manywheel/Dockerfile_cxx11-abi
Normal file
71
.ci/docker/manywheel/Dockerfile_cxx11-abi
Normal file
@ -0,0 +1,71 @@
|
|||||||
|
FROM centos:8 as base
|
||||||
|
|
||||||
|
ENV LC_ALL en_US.UTF-8
|
||||||
|
ENV LANG en_US.UTF-8
|
||||||
|
ENV LANGUAGE en_US.UTF-8
|
||||||
|
ENV PATH /opt/rh/gcc-toolset-11/root/bin/:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
|
||||||
|
|
||||||
|
# change to a valid repo
|
||||||
|
RUN sed -i 's|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' /etc/yum.repos.d/CentOS-Linux-*.repo
|
||||||
|
# enable to install ninja-build
|
||||||
|
RUN sed -i 's|enabled=0|enabled=1|g' /etc/yum.repos.d/CentOS-Linux-PowerTools.repo
|
||||||
|
|
||||||
|
RUN yum -y update
|
||||||
|
RUN yum install -y wget curl perl util-linux xz bzip2 git patch which zlib-devel sudo
|
||||||
|
RUN yum install -y autoconf automake make cmake gdb gcc-toolset-11-gcc-c++
|
||||||
|
|
||||||
|
|
||||||
|
FROM base as openssl
|
||||||
|
ADD ./common/install_openssl.sh install_openssl.sh
|
||||||
|
RUN bash ./install_openssl.sh && rm install_openssl.sh
|
||||||
|
|
||||||
|
# Install python
|
||||||
|
FROM base as python
|
||||||
|
RUN yum install -y openssl-devel zlib-devel bzip2-devel ncurses-devel sqlite-devel readline-devel tk-devel gdbm-devel libpcap-devel xz-devel libffi-devel
|
||||||
|
ADD common/install_cpython.sh install_cpython.sh
|
||||||
|
RUN bash ./install_cpython.sh && rm install_cpython.sh
|
||||||
|
|
||||||
|
FROM base as conda
|
||||||
|
ADD ./common/install_conda_docker.sh install_conda.sh
|
||||||
|
RUN bash ./install_conda.sh && rm install_conda.sh
|
||||||
|
RUN /opt/conda/bin/conda install -y cmake
|
||||||
|
|
||||||
|
FROM base as intel
|
||||||
|
# Install MKL
|
||||||
|
COPY --from=python /opt/python /opt/python
|
||||||
|
COPY --from=python /opt/_internal /opt/_internal
|
||||||
|
COPY --from=conda /opt/conda /opt/conda
|
||||||
|
ENV PATH=/opt/conda/bin:$PATH
|
||||||
|
ADD ./common/install_mkl.sh install_mkl.sh
|
||||||
|
RUN bash ./install_mkl.sh && rm install_mkl.sh
|
||||||
|
|
||||||
|
FROM base as patchelf
|
||||||
|
ADD ./common/install_patchelf.sh install_patchelf.sh
|
||||||
|
RUN bash ./install_patchelf.sh && rm install_patchelf.sh
|
||||||
|
RUN cp $(which patchelf) /patchelf
|
||||||
|
|
||||||
|
FROM base as jni
|
||||||
|
ADD ./common/install_jni.sh install_jni.sh
|
||||||
|
ADD ./java/jni.h jni.h
|
||||||
|
RUN bash ./install_jni.sh && rm install_jni.sh
|
||||||
|
|
||||||
|
FROM base as libpng
|
||||||
|
ADD ./common/install_libpng.sh install_libpng.sh
|
||||||
|
RUN bash ./install_libpng.sh && rm install_libpng.sh
|
||||||
|
|
||||||
|
FROM base as final
|
||||||
|
COPY --from=openssl /opt/openssl /opt/openssl
|
||||||
|
COPY --from=python /opt/python /opt/python
|
||||||
|
COPY --from=python /opt/_internal /opt/_internal
|
||||||
|
COPY --from=intel /opt/intel /opt/intel
|
||||||
|
COPY --from=conda /opt/conda /opt/conda
|
||||||
|
COPY --from=patchelf /usr/local/bin/patchelf /usr/local/bin/patchelf
|
||||||
|
COPY --from=jni /usr/local/include/jni.h /usr/local/include/jni.h
|
||||||
|
COPY --from=libpng /usr/local/bin/png* /usr/local/bin/
|
||||||
|
COPY --from=libpng /usr/local/bin/libpng* /usr/local/bin/
|
||||||
|
COPY --from=libpng /usr/local/include/png* /usr/local/include/
|
||||||
|
COPY --from=libpng /usr/local/include/libpng* /usr/local/include/
|
||||||
|
COPY --from=libpng /usr/local/lib/libpng* /usr/local/lib/
|
||||||
|
COPY --from=libpng /usr/local/lib/pkgconfig /usr/local/lib/pkgconfig
|
||||||
|
|
||||||
|
RUN yum install -y ninja-build
|
||||||
@ -115,9 +115,6 @@ RUN env GRPC_PYTHON_BUILD_SYSTEM_OPENSSL=True pip3 install grpcio
|
|||||||
# cmake-3.28.0 from pip for onnxruntime
|
# cmake-3.28.0 from pip for onnxruntime
|
||||||
RUN python3 -mpip install cmake==3.28.0
|
RUN python3 -mpip install cmake==3.28.0
|
||||||
|
|
||||||
ADD ./common/patch_libstdc.sh patch_libstdc.sh
|
|
||||||
RUN bash ./patch_libstdc.sh && rm patch_libstdc.sh
|
|
||||||
|
|
||||||
# build onnxruntime 1.21.0 from sources.
|
# build onnxruntime 1.21.0 from sources.
|
||||||
# it is not possible to build it from sources using pip,
|
# it is not possible to build it from sources using pip,
|
||||||
# so just build it from upstream repository.
|
# so just build it from upstream repository.
|
||||||
|
|||||||
@ -28,7 +28,6 @@ fi
|
|||||||
MANY_LINUX_VERSION=${MANY_LINUX_VERSION:-}
|
MANY_LINUX_VERSION=${MANY_LINUX_VERSION:-}
|
||||||
DOCKERFILE_SUFFIX=${DOCKERFILE_SUFFIX:-}
|
DOCKERFILE_SUFFIX=${DOCKERFILE_SUFFIX:-}
|
||||||
OPENBLAS_VERSION=${OPENBLAS_VERSION:-}
|
OPENBLAS_VERSION=${OPENBLAS_VERSION:-}
|
||||||
ACL_VERSION=${ACL_VERSION:-}
|
|
||||||
|
|
||||||
case ${image} in
|
case ${image} in
|
||||||
manylinux2_28-builder:cpu)
|
manylinux2_28-builder:cpu)
|
||||||
@ -42,6 +41,13 @@ case ${image} in
|
|||||||
GPU_IMAGE=arm64v8/almalinux:8
|
GPU_IMAGE=arm64v8/almalinux:8
|
||||||
DOCKER_GPU_BUILD_ARG=" --build-arg DEVTOOLSET_VERSION=13 --build-arg NINJA_VERSION=1.12.1"
|
DOCKER_GPU_BUILD_ARG=" --build-arg DEVTOOLSET_VERSION=13 --build-arg NINJA_VERSION=1.12.1"
|
||||||
MANY_LINUX_VERSION="2_28_aarch64"
|
MANY_LINUX_VERSION="2_28_aarch64"
|
||||||
|
OPENBLAS_VERSION="v0.3.30"
|
||||||
|
;;
|
||||||
|
manylinuxcxx11-abi-builder:cpu-cxx11-abi)
|
||||||
|
TARGET=final
|
||||||
|
GPU_IMAGE=""
|
||||||
|
DOCKER_GPU_BUILD_ARG=" --build-arg DEVTOOLSET_VERSION=9"
|
||||||
|
MANY_LINUX_VERSION="cxx11-abi"
|
||||||
;;
|
;;
|
||||||
manylinuxs390x-builder:cpu-s390x)
|
manylinuxs390x-builder:cpu-s390x)
|
||||||
TARGET=final
|
TARGET=final
|
||||||
@ -76,7 +82,7 @@ case ${image} in
|
|||||||
;;
|
;;
|
||||||
manylinux2_28-builder:rocm*)
|
manylinux2_28-builder:rocm*)
|
||||||
# we want the patch version of 6.4 instead
|
# we want the patch version of 6.4 instead
|
||||||
if [[ "$GPU_ARCH_VERSION" == *"6.4"* ]]; then
|
if [[ $(ver $GPU_ARCH_VERSION) -eq $(ver 6.4) ]]; then
|
||||||
GPU_ARCH_VERSION="${GPU_ARCH_VERSION}.2"
|
GPU_ARCH_VERSION="${GPU_ARCH_VERSION}.2"
|
||||||
fi
|
fi
|
||||||
TARGET=rocm_final
|
TARGET=rocm_final
|
||||||
@ -84,10 +90,6 @@ case ${image} in
|
|||||||
DEVTOOLSET_VERSION="11"
|
DEVTOOLSET_VERSION="11"
|
||||||
GPU_IMAGE=rocm/dev-almalinux-8:${GPU_ARCH_VERSION}-complete
|
GPU_IMAGE=rocm/dev-almalinux-8:${GPU_ARCH_VERSION}-complete
|
||||||
PYTORCH_ROCM_ARCH="gfx900;gfx906;gfx908;gfx90a;gfx942;gfx1030;gfx1100;gfx1101;gfx1102;gfx1200;gfx1201"
|
PYTORCH_ROCM_ARCH="gfx900;gfx906;gfx908;gfx90a;gfx942;gfx1030;gfx1100;gfx1101;gfx1102;gfx1200;gfx1201"
|
||||||
# add gfx950, gfx115x conditionally starting in ROCm 7.0
|
|
||||||
if [[ "$GPU_ARCH_VERSION" == *"7.0"* ]]; then
|
|
||||||
PYTORCH_ROCM_ARCH="${PYTORCH_ROCM_ARCH};gfx950;gfx1150;gfx1151"
|
|
||||||
fi
|
|
||||||
DOCKER_GPU_BUILD_ARG="--build-arg ROCM_VERSION=${GPU_ARCH_VERSION} --build-arg PYTORCH_ROCM_ARCH=${PYTORCH_ROCM_ARCH} --build-arg DEVTOOLSET_VERSION=${DEVTOOLSET_VERSION}"
|
DOCKER_GPU_BUILD_ARG="--build-arg ROCM_VERSION=${GPU_ARCH_VERSION} --build-arg PYTORCH_ROCM_ARCH=${PYTORCH_ROCM_ARCH} --build-arg DEVTOOLSET_VERSION=${DEVTOOLSET_VERSION}"
|
||||||
;;
|
;;
|
||||||
manylinux2_28-builder:xpu)
|
manylinux2_28-builder:xpu)
|
||||||
@ -119,8 +121,7 @@ tmp_tag=$(basename "$(mktemp -u)" | tr '[:upper:]' '[:lower:]')
|
|||||||
DOCKER_BUILDKIT=1 docker build \
|
DOCKER_BUILDKIT=1 docker build \
|
||||||
${DOCKER_GPU_BUILD_ARG} \
|
${DOCKER_GPU_BUILD_ARG} \
|
||||||
--build-arg "GPU_IMAGE=${GPU_IMAGE}" \
|
--build-arg "GPU_IMAGE=${GPU_IMAGE}" \
|
||||||
--build-arg "OPENBLAS_VERSION=${OPENBLAS_VERSION:-}" \
|
--build-arg "OPENBLAS_VERSION=${OPENBLAS_VERSION}" \
|
||||||
--build-arg "ACL_VERSION=${ACL_VERSION:-}" \
|
|
||||||
--target "${TARGET}" \
|
--target "${TARGET}" \
|
||||||
-t "${tmp_tag}" \
|
-t "${tmp_tag}" \
|
||||||
$@ \
|
$@ \
|
||||||
|
|||||||
@ -10,6 +10,11 @@ BAD_SSL = "https://self-signed.badssl.com"
|
|||||||
|
|
||||||
print("Testing SSL certificate checking for Python:", sys.version)
|
print("Testing SSL certificate checking for Python:", sys.version)
|
||||||
|
|
||||||
|
if sys.version_info[:2] < (2, 7) or sys.version_info[:2] < (3, 4):
|
||||||
|
print("This version never checks SSL certs; skipping tests")
|
||||||
|
sys.exit(0)
|
||||||
|
|
||||||
|
|
||||||
EXC = OSError
|
EXC = OSError
|
||||||
|
|
||||||
print(f"Connecting to {GOOD_SSL} should work")
|
print(f"Connecting to {GOOD_SSL} should work")
|
||||||
|
|||||||
@ -10,11 +10,6 @@ boto3==1.35.42
|
|||||||
#Pinned versions: 1.19.12, 1.16.34
|
#Pinned versions: 1.19.12, 1.16.34
|
||||||
#test that import:
|
#test that import:
|
||||||
|
|
||||||
build==1.3.0
|
|
||||||
#Description: A simple, correct Python build frontend.
|
|
||||||
#Pinned versions: 1.3.0
|
|
||||||
#test that import:
|
|
||||||
|
|
||||||
click
|
click
|
||||||
#Description: Command Line Interface Creation Kit
|
#Description: Command Line Interface Creation Kit
|
||||||
#Pinned versions:
|
#Pinned versions:
|
||||||
@ -52,10 +47,10 @@ flatbuffers==24.12.23
|
|||||||
#Pinned versions: 24.12.23
|
#Pinned versions: 24.12.23
|
||||||
#test that import:
|
#test that import:
|
||||||
|
|
||||||
hypothesis==6.56.4
|
hypothesis==5.35.1
|
||||||
# Pin hypothesis to avoid flakiness: https://github.com/pytorch/pytorch/issues/31136
|
# Pin hypothesis to avoid flakiness: https://github.com/pytorch/pytorch/issues/31136
|
||||||
#Description: advanced library for generating parametrized tests
|
#Description: advanced library for generating parametrized tests
|
||||||
#Pinned versions: 6.56.4
|
#Pinned versions: 5.35.1
|
||||||
#test that import: test_xnnpack_integration.py, test_pruning_op.py, test_nn.py
|
#test that import: test_xnnpack_integration.py, test_pruning_op.py, test_nn.py
|
||||||
|
|
||||||
junitparser==2.1.1
|
junitparser==2.1.1
|
||||||
@ -98,7 +93,7 @@ librosa==0.10.2 ; python_version == "3.12" and platform_machine != "s390x"
|
|||||||
#Pinned versions:
|
#Pinned versions:
|
||||||
#test that import:
|
#test that import:
|
||||||
|
|
||||||
mypy==1.16.0 ; platform_system == "Linux"
|
mypy==1.16.0 ; platform_system != "Windows"
|
||||||
# Pin MyPy version because new errors are likely to appear with each release
|
# Pin MyPy version because new errors are likely to appear with each release
|
||||||
# Skip on Windows as lots of type annotations are POSIX specific
|
# Skip on Windows as lots of type annotations are POSIX specific
|
||||||
#Description: linter
|
#Description: linter
|
||||||
@ -111,17 +106,20 @@ networkx==2.8.8
|
|||||||
#Pinned versions: 2.8.8
|
#Pinned versions: 2.8.8
|
||||||
#test that import: functorch
|
#test that import: functorch
|
||||||
|
|
||||||
ninja==1.11.1.4
|
ninja==1.11.1.3
|
||||||
#Description: build system. Used in some tests. Used in build to generate build
|
#Description: build system. Used in some tests. Used in build to generate build
|
||||||
#time tracing information
|
#time tracing information
|
||||||
#Pinned versions: 1.11.1.4
|
#Pinned versions: 1.11.1.3
|
||||||
#test that import: run_test.py, test_cpp_extensions_aot.py,test_determination.py
|
#test that import: run_test.py, test_cpp_extensions_aot.py,test_determination.py
|
||||||
|
|
||||||
|
numba==0.49.0 ; python_version < "3.9" and platform_machine != "s390x"
|
||||||
|
numba==0.55.2 ; python_version == "3.9" and platform_machine != "s390x"
|
||||||
numba==0.55.2 ; python_version == "3.10" and platform_machine != "s390x"
|
numba==0.55.2 ; python_version == "3.10" and platform_machine != "s390x"
|
||||||
numba==0.60.0 ; python_version == "3.12" and platform_machine != "s390x"
|
numba==0.60.0 ; python_version == "3.12" and platform_machine != "s390x"
|
||||||
#Description: Just-In-Time Compiler for Numerical Functions
|
#Description: Just-In-Time Compiler for Numerical Functions
|
||||||
#Pinned versions: 0.55.2, 0.60.0
|
#Pinned versions: 0.54.1, 0.49.0, <=0.49.1
|
||||||
#test that import: test_numba_integration.py
|
#test that import: test_numba_integration.py
|
||||||
|
#For numba issue see https://github.com/pytorch/pytorch/issues/51511
|
||||||
#Need release > 0.61.2 for s390x due to https://github.com/numba/numba/pull/10073
|
#Need release > 0.61.2 for s390x due to https://github.com/numba/numba/pull/10073
|
||||||
|
|
||||||
#numpy
|
#numpy
|
||||||
@ -136,7 +134,7 @@ numba==0.60.0 ; python_version == "3.12" and platform_machine != "s390x"
|
|||||||
#test_nn.py, test_namedtensor.py, test_linalg.py, test_jit_cuda_fuser.py,
|
#test_nn.py, test_namedtensor.py, test_linalg.py, test_jit_cuda_fuser.py,
|
||||||
#test_jit.py, test_indexing.py, test_datapipe.py, test_dataloader.py,
|
#test_jit.py, test_indexing.py, test_datapipe.py, test_dataloader.py,
|
||||||
#test_binary_ufuncs.py
|
#test_binary_ufuncs.py
|
||||||
numpy==1.22.4; python_version == "3.10"
|
numpy==1.22.4; python_version == "3.9" or python_version == "3.10"
|
||||||
numpy==1.26.2; python_version == "3.11" or python_version == "3.12"
|
numpy==1.26.2; python_version == "3.11" or python_version == "3.12"
|
||||||
numpy==2.1.2; python_version >= "3.13"
|
numpy==2.1.2; python_version >= "3.13"
|
||||||
|
|
||||||
@ -168,12 +166,12 @@ optree==0.13.0
|
|||||||
|
|
||||||
pillow==11.0.0
|
pillow==11.0.0
|
||||||
#Description: Python Imaging Library fork
|
#Description: Python Imaging Library fork
|
||||||
#Pinned versions: 11.0.0
|
#Pinned versions: 10.3.0
|
||||||
#test that import:
|
#test that import:
|
||||||
|
|
||||||
protobuf==5.29.5
|
protobuf==5.29.4
|
||||||
#Description: Google's data interchange format
|
#Description: Google's data interchange format
|
||||||
#Pinned versions: 5.29.5
|
#Pinned versions: 5.29.4
|
||||||
#test that import: test_tensorboard.py, test/onnx/*
|
#test that import: test_tensorboard.py, test/onnx/*
|
||||||
|
|
||||||
psutil
|
psutil
|
||||||
@ -216,7 +214,7 @@ pytest-subtests==0.13.1
|
|||||||
#Pinned versions:
|
#Pinned versions:
|
||||||
#test that import:
|
#test that import:
|
||||||
|
|
||||||
xdoctest==1.3.0
|
xdoctest==1.1.0
|
||||||
#Description: runs doctests in pytest
|
#Description: runs doctests in pytest
|
||||||
#Pinned versions: 1.1.0
|
#Pinned versions: 1.1.0
|
||||||
#test that import:
|
#test that import:
|
||||||
@ -241,9 +239,10 @@ pygments==2.15.0
|
|||||||
#Pinned versions: 14.1.0
|
#Pinned versions: 14.1.0
|
||||||
#test that import:
|
#test that import:
|
||||||
|
|
||||||
scikit-image==0.22.0
|
scikit-image==0.19.3 ; python_version < "3.10"
|
||||||
|
scikit-image==0.22.0 ; python_version >= "3.10"
|
||||||
#Description: image processing routines
|
#Description: image processing routines
|
||||||
#Pinned versions: 0.22.0
|
#Pinned versions:
|
||||||
#test that import: test_nn.py
|
#test that import: test_nn.py
|
||||||
|
|
||||||
#scikit-learn
|
#scikit-learn
|
||||||
@ -266,7 +265,7 @@ scipy==1.14.1 ; python_version >= "3.12"
|
|||||||
#test that import:
|
#test that import:
|
||||||
|
|
||||||
# needed by torchgen utils
|
# needed by torchgen utils
|
||||||
typing-extensions==4.12.2
|
typing-extensions>=4.10.0
|
||||||
#Description: type hints for python
|
#Description: type hints for python
|
||||||
#Pinned versions:
|
#Pinned versions:
|
||||||
#test that import:
|
#test that import:
|
||||||
@ -327,6 +326,8 @@ pywavelets==1.7.0 ; python_version >= "3.12"
|
|||||||
lxml==5.3.0
|
lxml==5.3.0
|
||||||
#Description: This is a requirement of unittest-xml-reporting
|
#Description: This is a requirement of unittest-xml-reporting
|
||||||
|
|
||||||
|
# Python-3.9 binaries
|
||||||
|
|
||||||
PyGithub==2.3.0
|
PyGithub==2.3.0
|
||||||
|
|
||||||
sympy==1.13.3
|
sympy==1.13.3
|
||||||
@ -339,7 +340,7 @@ onnx==1.18.0
|
|||||||
#Pinned versions:
|
#Pinned versions:
|
||||||
#test that import:
|
#test that import:
|
||||||
|
|
||||||
onnxscript==0.5.3
|
onnxscript==0.4.0
|
||||||
#Description: Required by mypy and test_public_bindings.py when checking torch.onnx._internal
|
#Description: Required by mypy and test_public_bindings.py when checking torch.onnx._internal
|
||||||
#Pinned versions:
|
#Pinned versions:
|
||||||
#test that import:
|
#test that import:
|
||||||
@ -359,10 +360,9 @@ pwlf==2.2.1
|
|||||||
#test that import: test_sac_estimator.py
|
#test that import: test_sac_estimator.py
|
||||||
|
|
||||||
# To build PyTorch itself
|
# To build PyTorch itself
|
||||||
pyyaml==6.0.2
|
pyyaml
|
||||||
pyzstd
|
pyzstd
|
||||||
setuptools==78.1.1
|
setuptools>=70.1.0
|
||||||
packaging==23.1
|
|
||||||
six
|
six
|
||||||
|
|
||||||
scons==4.5.2 ; platform_machine == "aarch64"
|
scons==4.5.2 ; platform_machine == "aarch64"
|
||||||
@ -377,16 +377,13 @@ dataclasses_json==0.6.7
|
|||||||
#Pinned versions: 0.6.7
|
#Pinned versions: 0.6.7
|
||||||
#test that import:
|
#test that import:
|
||||||
|
|
||||||
cmake==3.31.6
|
cmake==4.0.0
|
||||||
#Description: required for building
|
#Description: required for building
|
||||||
|
|
||||||
tlparse==0.4.0
|
tlparse==0.4.0
|
||||||
#Description: required for log parsing
|
#Description: required for log parsing
|
||||||
|
|
||||||
filelock==3.18.0
|
cuda-bindings>=12.0,<13.0 ; platform_machine != "s390x"
|
||||||
#Description: required for inductor testing
|
|
||||||
|
|
||||||
cuda-bindings>=12.0,<13.0 ; platform_machine != "s390x" and platform_system != "Darwin"
|
|
||||||
#Description: required for testing CUDAGraph::raw_cuda_graph(). See https://nvidia.github.io/cuda-python/cuda-bindings/latest/support.html for how this version was chosen. Note "Any fix in the latest bindings would be backported to the prior major version" means that only the newest version of cuda-bindings will get fixes. Depending on the latest version of 12.x is okay because all 12.y versions will be supported via "CUDA minor version compatibility". Pytorch builds against 13.z versions of cuda toolkit work with 12.x versions of cuda-bindings as well because newer drivers work with old toolkits.
|
#Description: required for testing CUDAGraph::raw_cuda_graph(). See https://nvidia.github.io/cuda-python/cuda-bindings/latest/support.html for how this version was chosen. Note "Any fix in the latest bindings would be backported to the prior major version" means that only the newest version of cuda-bindings will get fixes. Depending on the latest version of 12.x is okay because all 12.y versions will be supported via "CUDA minor version compatibility". Pytorch builds against 13.z versions of cuda toolkit work with 12.x versions of cuda-bindings as well because newer drivers work with old toolkits.
|
||||||
#test that import: test_cuda.py
|
#test that import: test_cuda.py
|
||||||
|
|
||||||
|
|||||||
@ -1,15 +1,8 @@
|
|||||||
sphinx==5.3.0
|
sphinx==5.3.0
|
||||||
#Description: This is used to generate PyTorch docs
|
#Description: This is used to generate PyTorch docs
|
||||||
#Pinned versions: 5.3.0
|
#Pinned versions: 5.3.0
|
||||||
|
|
||||||
standard-imghdr==3.13.0; python_version >= "3.13"
|
|
||||||
#Description: This is needed by Sphinx, so it needs to be added here.
|
|
||||||
# The reasons are as follows:
|
|
||||||
# 1) This module has been removed from the Python standard library since Python 3.13(https://peps.python.org/pep-0594/#imghdr);
|
|
||||||
# 2) The current version of Sphinx (5.3.0) is not compatible with Python 3.13.
|
|
||||||
# Once Sphinx is upgraded to a version compatible with Python 3.13 or later, we can remove this dependency.
|
|
||||||
|
|
||||||
-e git+https://github.com/pytorch/pytorch_sphinx_theme.git@71e55749be14ceb56e7f8211a9fb649866b87ad4#egg=pytorch_sphinx_theme2
|
-e git+https://github.com/pytorch/pytorch_sphinx_theme.git@71e55749be14ceb56e7f8211a9fb649866b87ad4#egg=pytorch_sphinx_theme2
|
||||||
|
|
||||||
# TODO: sphinxcontrib.katex 0.9.0 adds a local KaTeX server to speed up pre-rendering
|
# TODO: sphinxcontrib.katex 0.9.0 adds a local KaTeX server to speed up pre-rendering
|
||||||
# but it doesn't seem to work and hangs around idly. The initial thought that it is probably
|
# but it doesn't seem to work and hangs around idly. The initial thought that it is probably
|
||||||
# something related to Docker setup. We can investigate this later.
|
# something related to Docker setup. We can investigate this later.
|
||||||
|
|||||||
@ -52,13 +52,9 @@ ENV INSTALLED_VISION ${VISION}
|
|||||||
|
|
||||||
# Install rocm
|
# Install rocm
|
||||||
ARG ROCM_VERSION
|
ARG ROCM_VERSION
|
||||||
RUN mkdir ci_commit_pins
|
|
||||||
COPY ./common/common_utils.sh common_utils.sh
|
|
||||||
COPY ./ci_commit_pins/rocm-composable-kernel.txt ci_commit_pins/rocm-composable-kernel.txt
|
|
||||||
COPY ./common/install_rocm.sh install_rocm.sh
|
COPY ./common/install_rocm.sh install_rocm.sh
|
||||||
RUN bash ./install_rocm.sh
|
RUN bash ./install_rocm.sh
|
||||||
RUN rm install_rocm.sh common_utils.sh
|
RUN rm install_rocm.sh
|
||||||
RUN rm -r ci_commit_pins
|
|
||||||
COPY ./common/install_rocm_magma.sh install_rocm_magma.sh
|
COPY ./common/install_rocm_magma.sh install_rocm_magma.sh
|
||||||
RUN bash ./install_rocm_magma.sh ${ROCM_VERSION}
|
RUN bash ./install_rocm_magma.sh ${ROCM_VERSION}
|
||||||
RUN rm install_rocm_magma.sh
|
RUN rm install_rocm_magma.sh
|
||||||
|
|||||||
@ -66,11 +66,6 @@ class VllmBuildParameters:
|
|||||||
"DOCKERFILE_PATH", ".github/ci_configs/vllm/Dockerfile.tmp_vllm"
|
"DOCKERFILE_PATH", ".github/ci_configs/vllm/Dockerfile.tmp_vllm"
|
||||||
)
|
)
|
||||||
|
|
||||||
# the cleaning script to remove torch dependencies from pip
|
|
||||||
cleaning_script: Path = env_path_field(
|
|
||||||
"cleaning_script", ".github/ci_configs/vllm/use_existing_torch.py"
|
|
||||||
)
|
|
||||||
|
|
||||||
# OUTPUT_DIR: where docker buildx (local exporter) will write artifacts
|
# OUTPUT_DIR: where docker buildx (local exporter) will write artifacts
|
||||||
output_dir: Path = env_path_field("OUTPUT_DIR", "external/vllm")
|
output_dir: Path = env_path_field("OUTPUT_DIR", "external/vllm")
|
||||||
|
|
||||||
@ -165,7 +160,6 @@ class VllmBuildRunner(BaseRunner):
|
|||||||
logger.info("Running vllm build with inputs: %s", inputs)
|
logger.info("Running vllm build with inputs: %s", inputs)
|
||||||
vllm_commit = clone_vllm()
|
vllm_commit = clone_vllm()
|
||||||
|
|
||||||
self.cp_torch_cleaning_script(inputs)
|
|
||||||
self.cp_dockerfile_if_exist(inputs)
|
self.cp_dockerfile_if_exist(inputs)
|
||||||
# cp torch wheels from root direct to vllm workspace if exist
|
# cp torch wheels from root direct to vllm workspace if exist
|
||||||
self.cp_torch_whls_if_exist(inputs)
|
self.cp_torch_whls_if_exist(inputs)
|
||||||
@ -211,11 +205,6 @@ class VllmBuildRunner(BaseRunner):
|
|||||||
copy(inputs.torch_whls_path, tmp_dir)
|
copy(inputs.torch_whls_path, tmp_dir)
|
||||||
return tmp_dir
|
return tmp_dir
|
||||||
|
|
||||||
def cp_torch_cleaning_script(self, inputs: VllmBuildParameters):
|
|
||||||
script = get_path(inputs.cleaning_script, resolve=True)
|
|
||||||
vllm_script = Path(f"./{self.work_directory}/use_existing_torch.py")
|
|
||||||
copy(script, vllm_script)
|
|
||||||
|
|
||||||
def cp_dockerfile_if_exist(self, inputs: VllmBuildParameters):
|
def cp_dockerfile_if_exist(self, inputs: VllmBuildParameters):
|
||||||
if not inputs.use_local_dockerfile:
|
if not inputs.use_local_dockerfile:
|
||||||
logger.info("using vllm default dockerfile.torch_nightly for build")
|
logger.info("using vllm default dockerfile.torch_nightly for build")
|
||||||
|
|||||||
@ -11,7 +11,7 @@ from typing import Any
|
|||||||
|
|
||||||
from cli.lib.common.cli_helper import BaseRunner
|
from cli.lib.common.cli_helper import BaseRunner
|
||||||
from cli.lib.common.envs_helper import env_path_field, env_str_field, get_env
|
from cli.lib.common.envs_helper import env_path_field, env_str_field, get_env
|
||||||
from cli.lib.common.path_helper import copy, get_path, remove_dir
|
from cli.lib.common.path_helper import copy, remove_dir
|
||||||
from cli.lib.common.pip_helper import (
|
from cli.lib.common.pip_helper import (
|
||||||
pip_install_first_match,
|
pip_install_first_match,
|
||||||
pip_install_packages,
|
pip_install_packages,
|
||||||
@ -43,10 +43,6 @@ class VllmTestParameters:
|
|||||||
|
|
||||||
torch_cuda_arch_list: str = env_str_field("TORCH_CUDA_ARCH_LIST", "8.9")
|
torch_cuda_arch_list: str = env_str_field("TORCH_CUDA_ARCH_LIST", "8.9")
|
||||||
|
|
||||||
cleaning_script: Path = env_path_field(
|
|
||||||
"cleaning_script", ".github/ci_configs/vllm/use_existing_torch.py"
|
|
||||||
)
|
|
||||||
|
|
||||||
def __post_init__(self):
|
def __post_init__(self):
|
||||||
if not self.torch_whls_path.exists():
|
if not self.torch_whls_path.exists():
|
||||||
raise ValueError("missing torch_whls_path")
|
raise ValueError("missing torch_whls_path")
|
||||||
@ -96,13 +92,11 @@ class VllmTestRunner(BaseRunner):
|
|||||||
self._set_envs(params)
|
self._set_envs(params)
|
||||||
|
|
||||||
clone_vllm(dst=self.work_directory)
|
clone_vllm(dst=self.work_directory)
|
||||||
self.cp_torch_cleaning_script(params)
|
|
||||||
with working_directory(self.work_directory):
|
with working_directory(self.work_directory):
|
||||||
remove_dir(Path("vllm"))
|
remove_dir(Path("vllm"))
|
||||||
self._install_wheels(params)
|
self._install_wheels(params)
|
||||||
self._install_dependencies()
|
self._install_dependencies()
|
||||||
# verify the torches are not overridden by test dependencies
|
# verify the torches are not overridden by test dependencies
|
||||||
|
|
||||||
check_versions()
|
check_versions()
|
||||||
|
|
||||||
def run(self):
|
def run(self):
|
||||||
@ -131,11 +125,6 @@ class VllmTestRunner(BaseRunner):
|
|||||||
# double check the torches are not overridden by other packages
|
# double check the torches are not overridden by other packages
|
||||||
check_versions()
|
check_versions()
|
||||||
|
|
||||||
def cp_torch_cleaning_script(self, params: VllmTestParameters):
|
|
||||||
script = get_path(params.cleaning_script, resolve=True)
|
|
||||||
vllm_script = Path(f"./{self.work_directory}/use_existing_torch.py")
|
|
||||||
copy(script, vllm_script)
|
|
||||||
|
|
||||||
def _install_wheels(self, params: VllmTestParameters):
|
def _install_wheels(self, params: VllmTestParameters):
|
||||||
logger.info("Running vllm test with inputs: %s", params)
|
logger.info("Running vllm test with inputs: %s", params)
|
||||||
if not pkg_exists("torch"):
|
if not pkg_exists("torch"):
|
||||||
|
|||||||
@ -1,11 +1,11 @@
|
|||||||
SHELL=/usr/bin/env bash
|
SHELL=/usr/bin/env bash
|
||||||
|
|
||||||
DOCKER_CMD ?= docker
|
DOCKER_CMD ?= docker
|
||||||
DESIRED_ROCM ?= 7.0
|
DESIRED_ROCM ?= 6.4
|
||||||
DESIRED_ROCM_SHORT = $(subst .,,$(DESIRED_ROCM))
|
DESIRED_ROCM_SHORT = $(subst .,,$(DESIRED_ROCM))
|
||||||
PACKAGE_NAME = magma-rocm
|
PACKAGE_NAME = magma-rocm
|
||||||
# inherit this from underlying docker image, do not pass this env var to docker
|
# inherit this from underlying docker image, do not pass this env var to docker
|
||||||
#PYTORCH_ROCM_ARCH ?= gfx900;gfx906;gfx908;gfx90a;gfx942;gfx950;gfx1030;gfx1100;gfx1101;gfx1102;gfx1150;gfx1151;gfx1200;gfx1201
|
#PYTORCH_ROCM_ARCH ?= gfx900;gfx906;gfx908;gfx90a;gfx942;gfx1030;gfx1100;gfx1101;gfx1102;gfx1200;gfx1201
|
||||||
|
|
||||||
DOCKER_RUN = set -eou pipefail; ${DOCKER_CMD} run --rm -i \
|
DOCKER_RUN = set -eou pipefail; ${DOCKER_CMD} run --rm -i \
|
||||||
-v $(shell git rev-parse --show-toplevel)/.ci:/builder \
|
-v $(shell git rev-parse --show-toplevel)/.ci:/builder \
|
||||||
@ -16,20 +16,20 @@ DOCKER_RUN = set -eou pipefail; ${DOCKER_CMD} run --rm -i \
|
|||||||
magma-rocm/build_magma.sh
|
magma-rocm/build_magma.sh
|
||||||
|
|
||||||
.PHONY: all
|
.PHONY: all
|
||||||
all: magma-rocm70
|
|
||||||
all: magma-rocm64
|
all: magma-rocm64
|
||||||
|
all: magma-rocm63
|
||||||
|
|
||||||
.PHONY:
|
.PHONY:
|
||||||
clean:
|
clean:
|
||||||
$(RM) -r magma-*
|
$(RM) -r magma-*
|
||||||
$(RM) -r output
|
$(RM) -r output
|
||||||
|
|
||||||
.PHONY: magma-rocm70
|
|
||||||
magma-rocm70: DESIRED_ROCM := 7.0
|
|
||||||
magma-rocm70:
|
|
||||||
$(DOCKER_RUN)
|
|
||||||
|
|
||||||
.PHONY: magma-rocm64
|
.PHONY: magma-rocm64
|
||||||
magma-rocm64: DESIRED_ROCM := 6.4
|
magma-rocm64: DESIRED_ROCM := 6.4
|
||||||
magma-rocm64:
|
magma-rocm64:
|
||||||
$(DOCKER_RUN)
|
$(DOCKER_RUN)
|
||||||
|
|
||||||
|
.PHONY: magma-rocm63
|
||||||
|
magma-rocm63: DESIRED_ROCM := 6.3
|
||||||
|
magma-rocm63:
|
||||||
|
$(DOCKER_RUN)
|
||||||
|
|||||||
@ -6,8 +6,8 @@ set -eou pipefail
|
|||||||
# The script expects DESIRED_CUDA and PACKAGE_NAME to be set
|
# The script expects DESIRED_CUDA and PACKAGE_NAME to be set
|
||||||
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
||||||
|
|
||||||
# https://github.com/icl-utk-edu/magma/pull/65
|
# Version 2.7.2 + ROCm related updates
|
||||||
MAGMA_VERSION=d6e4117bc88e73f06d26c6c2e14f064e8fc3d1ec
|
MAGMA_VERSION=a1625ff4d9bc362906bd01f805dbbe12612953f6
|
||||||
|
|
||||||
# Folders for the build
|
# Folders for the build
|
||||||
PACKAGE_FILES=${ROOT_DIR}/magma-rocm/package_files # metadata
|
PACKAGE_FILES=${ROOT_DIR}/magma-rocm/package_files # metadata
|
||||||
@ -20,7 +20,7 @@ mkdir -p ${PACKAGE_DIR} ${PACKAGE_OUTPUT}/linux-64 ${PACKAGE_BUILD} ${PACKAGE_RE
|
|||||||
|
|
||||||
# Fetch magma sources and verify checksum
|
# Fetch magma sources and verify checksum
|
||||||
pushd ${PACKAGE_DIR}
|
pushd ${PACKAGE_DIR}
|
||||||
git clone https://github.com/jeffdaily/magma
|
git clone https://bitbucket.org/icl/magma.git
|
||||||
pushd magma
|
pushd magma
|
||||||
git checkout ${MAGMA_VERSION}
|
git checkout ${MAGMA_VERSION}
|
||||||
popd
|
popd
|
||||||
|
|||||||
@ -142,7 +142,7 @@ time CMAKE_ARGS=${CMAKE_ARGS[@]} \
|
|||||||
EXTRA_CAFFE2_CMAKE_FLAGS=${EXTRA_CAFFE2_CMAKE_FLAGS[@]} \
|
EXTRA_CAFFE2_CMAKE_FLAGS=${EXTRA_CAFFE2_CMAKE_FLAGS[@]} \
|
||||||
BUILD_LIBTORCH_CPU_WITH_DEBUG=$BUILD_DEBUG_INFO \
|
BUILD_LIBTORCH_CPU_WITH_DEBUG=$BUILD_DEBUG_INFO \
|
||||||
USE_NCCL=${USE_NCCL} USE_RCCL=${USE_RCCL} USE_KINETO=${USE_KINETO} \
|
USE_NCCL=${USE_NCCL} USE_RCCL=${USE_RCCL} USE_KINETO=${USE_KINETO} \
|
||||||
python -m build --wheel --no-isolation --outdir /tmp/$WHEELHOUSE_DIR
|
python setup.py bdist_wheel -d /tmp/$WHEELHOUSE_DIR
|
||||||
echo "Finished setup.py bdist at $(date)"
|
echo "Finished setup.py bdist at $(date)"
|
||||||
|
|
||||||
# Build libtorch packages
|
# Build libtorch packages
|
||||||
|
|||||||
@ -187,19 +187,22 @@ if [[ $CUDA_VERSION == 12* || $CUDA_VERSION == 13* ]]; then
|
|||||||
export USE_CUFILE=0
|
export USE_CUFILE=0
|
||||||
else
|
else
|
||||||
DEPS_LIST+=(
|
DEPS_LIST+=(
|
||||||
"/usr/local/cuda/lib64/libnvToolsExt.so.1"
|
|
||||||
"/usr/local/cuda/lib64/libcublas.so.12"
|
"/usr/local/cuda/lib64/libcublas.so.12"
|
||||||
"/usr/local/cuda/lib64/libcublasLt.so.12"
|
"/usr/local/cuda/lib64/libcublasLt.so.12"
|
||||||
"/usr/local/cuda/lib64/libcudart.so.12"
|
"/usr/local/cuda/lib64/libcudart.so.12"
|
||||||
"/usr/local/cuda/lib64/libnvrtc.so.12"
|
"/usr/local/cuda/lib64/libnvrtc.so.12"
|
||||||
"/usr/local/cuda/extras/CUPTI/lib64/libcupti.so.12")
|
"/usr/local/cuda/extras/CUPTI/lib64/libcupti.so.12")
|
||||||
DEPS_SONAME+=(
|
DEPS_SONAME+=(
|
||||||
"libnvToolsExt.so.1"
|
|
||||||
"libcublas.so.12"
|
"libcublas.so.12"
|
||||||
"libcublasLt.so.12"
|
"libcublasLt.so.12"
|
||||||
"libcudart.so.12"
|
"libcudart.so.12"
|
||||||
"libnvrtc.so.12"
|
"libnvrtc.so.12"
|
||||||
"libcupti.so.12")
|
"libcupti.so.12")
|
||||||
|
|
||||||
|
if [[ $CUDA_VERSION != 12.9* ]]; then
|
||||||
|
DEPS_LIST+=("/usr/local/cuda/lib64/libnvToolsExt.so.1")
|
||||||
|
DEPS_SONAME+=("libnvToolsExt.so.1")
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
echo "Using nvidia libs from pypi."
|
echo "Using nvidia libs from pypi."
|
||||||
|
|||||||
@ -104,7 +104,7 @@ if [[ "$DESIRED_CUDA" == *"rocm"* ]]; then
|
|||||||
export ROCclr_DIR=/opt/rocm/rocclr/lib/cmake/rocclr
|
export ROCclr_DIR=/opt/rocm/rocclr/lib/cmake/rocclr
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "Calling -m pip install . -v --no-build-isolation at $(date)"
|
echo "Calling 'python -m pip install .' at $(date)"
|
||||||
|
|
||||||
if [[ $LIBTORCH_VARIANT = *"static"* ]]; then
|
if [[ $LIBTORCH_VARIANT = *"static"* ]]; then
|
||||||
STATIC_CMAKE_FLAG="-DTORCH_STATIC=1"
|
STATIC_CMAKE_FLAG="-DTORCH_STATIC=1"
|
||||||
|
|||||||
@ -107,10 +107,6 @@ if [[ $ROCM_INT -ge 60200 ]]; then
|
|||||||
ROCM_SO_FILES+=("librocm-core.so")
|
ROCM_SO_FILES+=("librocm-core.so")
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ $ROCM_INT -ge 70000 ]]; then
|
|
||||||
ROCM_SO_FILES+=("librocroller.so")
|
|
||||||
fi
|
|
||||||
|
|
||||||
OS_NAME=`awk -F= '/^NAME/{print $2}' /etc/os-release`
|
OS_NAME=`awk -F= '/^NAME/{print $2}' /etc/os-release`
|
||||||
if [[ "$OS_NAME" == *"CentOS Linux"* || "$OS_NAME" == *"AlmaLinux"* ]]; then
|
if [[ "$OS_NAME" == *"CentOS Linux"* || "$OS_NAME" == *"AlmaLinux"* ]]; then
|
||||||
LIBGOMP_PATH="/usr/lib64/libgomp.so.1"
|
LIBGOMP_PATH="/usr/lib64/libgomp.so.1"
|
||||||
|
|||||||
@ -89,7 +89,7 @@ fi
|
|||||||
if [[ "$BUILD_ENVIRONMENT" == *aarch64* ]]; then
|
if [[ "$BUILD_ENVIRONMENT" == *aarch64* ]]; then
|
||||||
export USE_MKLDNN=1
|
export USE_MKLDNN=1
|
||||||
export USE_MKLDNN_ACL=1
|
export USE_MKLDNN_ACL=1
|
||||||
export ACL_ROOT_DIR=/acl
|
export ACL_ROOT_DIR=/ComputeLibrary
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "$BUILD_ENVIRONMENT" == *riscv64* ]]; then
|
if [[ "$BUILD_ENVIRONMENT" == *riscv64* ]]; then
|
||||||
@ -233,9 +233,7 @@ if [[ "${BUILD_ENVIRONMENT}" != *cuda* ]]; then
|
|||||||
export BUILD_STATIC_RUNTIME_BENCHMARK=ON
|
export BUILD_STATIC_RUNTIME_BENCHMARK=ON
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "$BUILD_ENVIRONMENT" == *-full-debug* ]]; then
|
if [[ "$BUILD_ENVIRONMENT" == *-debug* ]]; then
|
||||||
export CMAKE_BUILD_TYPE=Debug
|
|
||||||
elif [[ "$BUILD_ENVIRONMENT" == *-debug* ]]; then
|
|
||||||
export CMAKE_BUILD_TYPE=RelWithAssert
|
export CMAKE_BUILD_TYPE=RelWithAssert
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -292,20 +290,15 @@ else
|
|||||||
|
|
||||||
WERROR=1 python setup.py clean
|
WERROR=1 python setup.py clean
|
||||||
|
|
||||||
WERROR=1 python -m build --wheel --no-isolation
|
WERROR=1 python setup.py bdist_wheel
|
||||||
else
|
else
|
||||||
python setup.py clean
|
python setup.py clean
|
||||||
if [[ "$BUILD_ENVIRONMENT" == *xla* ]]; then
|
if [[ "$BUILD_ENVIRONMENT" == *xla* ]]; then
|
||||||
source .ci/pytorch/install_cache_xla.sh
|
source .ci/pytorch/install_cache_xla.sh
|
||||||
fi
|
fi
|
||||||
python -m build --wheel --no-isolation
|
python setup.py bdist_wheel
|
||||||
fi
|
fi
|
||||||
pip_install_whl "$(echo dist/*.whl)"
|
pip_install_whl "$(echo dist/*.whl)"
|
||||||
if [[ "$BUILD_ENVIRONMENT" == *full-debug* ]]; then
|
|
||||||
# Regression test for https://github.com/pytorch/pytorch/issues/164297
|
|
||||||
# Torch should be importable and that's about it
|
|
||||||
pushd /; python -c "import torch;print(torch.__config__.show(), torch.randn(5) + 1.7)"; popd
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ "${BUILD_ADDITIONAL_PACKAGES:-}" == *vision* ]]; then
|
if [[ "${BUILD_ADDITIONAL_PACKAGES:-}" == *vision* ]]; then
|
||||||
install_torchvision
|
install_torchvision
|
||||||
|
|||||||
@ -67,7 +67,7 @@ fi
|
|||||||
# wheels with cxx11-abi
|
# wheels with cxx11-abi
|
||||||
|
|
||||||
echo "Checking that the gcc ABI is what we expect"
|
echo "Checking that the gcc ABI is what we expect"
|
||||||
if [[ "$(uname)" != 'Darwin' ]]; then
|
if [[ "$(uname)" != 'Darwin' && "$(uname -m)" != "s390x" ]]; then
|
||||||
# We also check that there are cxx11 symbols in libtorch
|
# We also check that there are cxx11 symbols in libtorch
|
||||||
#
|
#
|
||||||
echo "Checking that symbols in libtorch.so have the right gcc abi"
|
echo "Checking that symbols in libtorch.so have the right gcc abi"
|
||||||
|
|||||||
@ -258,19 +258,11 @@ function install_torchrec_and_fbgemm() {
|
|||||||
git clone --recursive https://github.com/pytorch/fbgemm
|
git clone --recursive https://github.com/pytorch/fbgemm
|
||||||
pushd fbgemm/fbgemm_gpu
|
pushd fbgemm/fbgemm_gpu
|
||||||
git checkout "${fbgemm_commit}" --recurse-submodules
|
git checkout "${fbgemm_commit}" --recurse-submodules
|
||||||
# until the fbgemm_commit includes the tbb patch
|
python setup.py bdist_wheel \
|
||||||
patch <<'EOF'
|
--build-variant=rocm \
|
||||||
--- a/FbgemmGpu.cmake
|
-DHIP_ROOT_DIR="${ROCM_PATH}" \
|
||||||
+++ b/FbgemmGpu.cmake
|
-DCMAKE_C_FLAGS="-DTORCH_USE_HIP_DSA" \
|
||||||
@@ -184,5 +184,6 @@ gpu_cpp_library(
|
-DCMAKE_CXX_FLAGS="-DTORCH_USE_HIP_DSA"
|
||||||
fbgemm_gpu_tbe_cache
|
|
||||||
fbgemm_gpu_tbe_optimizers
|
|
||||||
fbgemm_gpu_tbe_utils
|
|
||||||
+ tbb
|
|
||||||
DESTINATION
|
|
||||||
fbgemm_gpu)
|
|
||||||
EOF
|
|
||||||
python setup.py bdist_wheel --build-variant=rocm
|
|
||||||
popd
|
popd
|
||||||
|
|
||||||
# Save the wheel before cleaning up
|
# Save the wheel before cleaning up
|
||||||
@ -292,7 +284,7 @@ EOF
|
|||||||
|
|
||||||
function clone_pytorch_xla() {
|
function clone_pytorch_xla() {
|
||||||
if [[ ! -d ./xla ]]; then
|
if [[ ! -d ./xla ]]; then
|
||||||
git clone --recursive --quiet https://github.com/pytorch/xla.git
|
git clone --recursive -b r2.9 https://github.com/pytorch/xla.git
|
||||||
pushd xla
|
pushd xla
|
||||||
# pin the xla hash so that we don't get broken by changes to xla
|
# pin the xla hash so that we don't get broken by changes to xla
|
||||||
git checkout "$(cat ../.github/ci_commit_pins/xla.txt)"
|
git checkout "$(cat ../.github/ci_commit_pins/xla.txt)"
|
||||||
|
|||||||
40
.ci/pytorch/functorch_doc_push_script.sh
Executable file
40
.ci/pytorch/functorch_doc_push_script.sh
Executable file
@ -0,0 +1,40 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# This is where the local pytorch install in the docker image is located
|
||||||
|
pt_checkout="/var/lib/jenkins/workspace"
|
||||||
|
source "$pt_checkout/.ci/pytorch/common_utils.sh"
|
||||||
|
echo "functorch_doc_push_script.sh: Invoked with $*"
|
||||||
|
|
||||||
|
set -ex -o pipefail
|
||||||
|
|
||||||
|
version=${DOCS_VERSION:-nightly}
|
||||||
|
echo "version: $version"
|
||||||
|
|
||||||
|
# Build functorch docs
|
||||||
|
pushd $pt_checkout/functorch/docs
|
||||||
|
make html
|
||||||
|
popd
|
||||||
|
|
||||||
|
git clone https://github.com/pytorch/functorch -b gh-pages --depth 1 functorch_ghpages
|
||||||
|
pushd functorch_ghpages
|
||||||
|
|
||||||
|
if [ "$version" == "main" ]; then
|
||||||
|
version=nightly
|
||||||
|
fi
|
||||||
|
|
||||||
|
git rm -rf "$version" || true
|
||||||
|
mv "$pt_checkout/functorch/docs/build/html" "$version"
|
||||||
|
|
||||||
|
git add "$version" || true
|
||||||
|
git status
|
||||||
|
git config user.email "soumith+bot@pytorch.org"
|
||||||
|
git config user.name "pytorchbot"
|
||||||
|
# If there aren't changes, don't make a commit; push is no-op
|
||||||
|
git commit -m "Generate Python docs from pytorch/pytorch@${GITHUB_SHA}" || true
|
||||||
|
git status
|
||||||
|
|
||||||
|
if [[ "${WITH_PUSH:-}" == true ]]; then
|
||||||
|
git push -u origin gh-pages
|
||||||
|
fi
|
||||||
|
|
||||||
|
popd
|
||||||
@ -36,11 +36,11 @@ fi
|
|||||||
print_cmake_info
|
print_cmake_info
|
||||||
if [[ ${BUILD_ENVIRONMENT} == *"distributed"* ]]; then
|
if [[ ${BUILD_ENVIRONMENT} == *"distributed"* ]]; then
|
||||||
# Needed for inductor benchmarks, as lots of HF networks make `torch.distribtued` calls
|
# Needed for inductor benchmarks, as lots of HF networks make `torch.distribtued` calls
|
||||||
USE_DISTRIBUTED=1 USE_OPENMP=1 WERROR=1 python -m build --wheel --no-isolation
|
USE_DISTRIBUTED=1 USE_OPENMP=1 WERROR=1 python setup.py bdist_wheel
|
||||||
else
|
else
|
||||||
# Explicitly set USE_DISTRIBUTED=0 to align with the default build config on mac. This also serves as the sole CI config that tests
|
# Explicitly set USE_DISTRIBUTED=0 to align with the default build config on mac. This also serves as the sole CI config that tests
|
||||||
# that building with USE_DISTRIBUTED=0 works at all. See https://github.com/pytorch/pytorch/issues/86448
|
# that building with USE_DISTRIBUTED=0 works at all. See https://github.com/pytorch/pytorch/issues/86448
|
||||||
USE_DISTRIBUTED=0 USE_OPENMP=1 MACOSX_DEPLOYMENT_TARGET=11.0 WERROR=1 BUILD_TEST=OFF USE_PYTORCH_METAL=1 python -m build --wheel --no-isolation -C--build-option=--plat-name=macosx_11_0_arm64
|
USE_DISTRIBUTED=0 USE_OPENMP=1 MACOSX_DEPLOYMENT_TARGET=11.0 WERROR=1 BUILD_TEST=OFF USE_PYTORCH_METAL=1 python setup.py bdist_wheel --plat-name macosx_11_0_arm64
|
||||||
fi
|
fi
|
||||||
if which sccache > /dev/null; then
|
if which sccache > /dev/null; then
|
||||||
print_sccache_stats
|
print_sccache_stats
|
||||||
|
|||||||
@ -55,7 +55,7 @@ test_python_shard() {
|
|||||||
|
|
||||||
setup_test_python
|
setup_test_python
|
||||||
|
|
||||||
time python test/run_test.py --verbose --exclude-jit-executor --exclude-distributed-tests --exclude-quantization-tests --shard "$1" "$NUM_TEST_SHARDS"
|
time python test/run_test.py --verbose --exclude-jit-executor --exclude-distributed-tests --shard "$1" "$NUM_TEST_SHARDS"
|
||||||
|
|
||||||
assert_git_not_dirty
|
assert_git_not_dirty
|
||||||
}
|
}
|
||||||
@ -256,7 +256,7 @@ test_torchbench_smoketest() {
|
|||||||
local device=mps
|
local device=mps
|
||||||
local dtypes=(undefined float16 bfloat16 notset)
|
local dtypes=(undefined float16 bfloat16 notset)
|
||||||
local dtype=${dtypes[$1]}
|
local dtype=${dtypes[$1]}
|
||||||
local models=(llama BERT_pytorch dcgan yolov3 resnet152 sam sam_fast pytorch_unet stable_diffusion_text_encoder speech_transformer Super_SloMo doctr_det_predictor doctr_reco_predictor vgg16)
|
local models=(hf_T5 llama BERT_pytorch dcgan hf_GPT2 yolov3 resnet152 sam sam_fast pytorch_unet stable_diffusion_text_encoder speech_transformer Super_SloMo doctr_det_predictor doctr_reco_predictor timm_resnet timm_vovnet vgg16)
|
||||||
|
|
||||||
for backend in eager inductor; do
|
for backend in eager inductor; do
|
||||||
|
|
||||||
@ -319,7 +319,7 @@ test_aoti_torchbench_smoketest() {
|
|||||||
local device=mps
|
local device=mps
|
||||||
local dtypes=(undefined float16 bfloat16 notset)
|
local dtypes=(undefined float16 bfloat16 notset)
|
||||||
local dtype=${dtypes[$1]}
|
local dtype=${dtypes[$1]}
|
||||||
local models=(llama BERT_pytorch dcgan yolov3 resnet152 sam sam_fast pytorch_unet stable_diffusion_text_encoder speech_transformer Super_SloMo doctr_det_predictor doctr_reco_predictor vgg16)
|
local models=(hf_T5 llama BERT_pytorch dcgan hf_GPT2 yolov3 resnet152 sam sam_fast pytorch_unet stable_diffusion_text_encoder speech_transformer Super_SloMo doctr_det_predictor doctr_reco_predictor timm_resnet timm_vovnet vgg16)
|
||||||
|
|
||||||
echo "Launching torchbench inference performance run for AOT Inductor and dtype ${dtype}"
|
echo "Launching torchbench inference performance run for AOT Inductor and dtype ${dtype}"
|
||||||
local dtype_arg="--${dtype}"
|
local dtype_arg="--${dtype}"
|
||||||
|
|||||||
@ -26,7 +26,6 @@ if [[ "${SHARD_NUMBER:-2}" == "2" ]]; then
|
|||||||
time python test/run_test.py --verbose -i distributed/test_c10d_spawn_gloo
|
time python test/run_test.py --verbose -i distributed/test_c10d_spawn_gloo
|
||||||
time python test/run_test.py --verbose -i distributed/test_c10d_spawn_nccl
|
time python test/run_test.py --verbose -i distributed/test_c10d_spawn_nccl
|
||||||
time python test/run_test.py --verbose -i distributed/test_compute_comm_reordering
|
time python test/run_test.py --verbose -i distributed/test_compute_comm_reordering
|
||||||
time python test/run_test.py --verbose -i distributed/test_aten_comm_compute_reordering
|
|
||||||
time python test/run_test.py --verbose -i distributed/test_store
|
time python test/run_test.py --verbose -i distributed/test_store
|
||||||
time python test/run_test.py --verbose -i distributed/test_symmetric_memory
|
time python test/run_test.py --verbose -i distributed/test_symmetric_memory
|
||||||
time python test/run_test.py --verbose -i distributed/test_pg_wrapper
|
time python test/run_test.py --verbose -i distributed/test_pg_wrapper
|
||||||
|
|||||||
@ -386,8 +386,8 @@ def smoke_test_compile(device: str = "cpu") -> None:
|
|||||||
|
|
||||||
|
|
||||||
def smoke_test_nvshmem() -> None:
|
def smoke_test_nvshmem() -> None:
|
||||||
if not torch.cuda.is_available() or target_os == "windows":
|
if not torch.cuda.is_available():
|
||||||
print("Windows platform or CUDA is not available, skipping NVSHMEM test")
|
print("CUDA is not available, skipping NVSHMEM test")
|
||||||
return
|
return
|
||||||
|
|
||||||
# Check if NVSHMEM is compiled in current build
|
# Check if NVSHMEM is compiled in current build
|
||||||
@ -396,9 +396,7 @@ def smoke_test_nvshmem() -> None:
|
|||||||
except ImportError:
|
except ImportError:
|
||||||
# Not built with NVSHMEM support.
|
# Not built with NVSHMEM support.
|
||||||
# torch is not compiled with NVSHMEM prior to 2.9
|
# torch is not compiled with NVSHMEM prior to 2.9
|
||||||
from torch.torch_version import TorchVersion
|
if torch.__version__ < "2.9":
|
||||||
|
|
||||||
if TorchVersion(torch.__version__) < (2, 9):
|
|
||||||
return
|
return
|
||||||
else:
|
else:
|
||||||
# After 2.9: NVSHMEM is expected to be compiled in current build
|
# After 2.9: NVSHMEM is expected to be compiled in current build
|
||||||
|
|||||||
@ -34,14 +34,12 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
# Patch numba to avoid CUDA-13 crash, see https://github.com/pytorch/pytorch/issues/162878
|
# Patch numba to avoid CUDA-13 crash, see https://github.com/pytorch/pytorch/issues/162878
|
||||||
if [[ "$BUILD_ENVIRONMENT" == *cuda* ]]; then
|
NUMBA_CUDA_DIR=$(python -c "import os;import numba.cuda; print(os.path.dirname(numba.cuda.__file__))" 2>/dev/null || true)
|
||||||
NUMBA_CUDA_DIR=$(python -c "import os;import numba.cuda; print(os.path.dirname(numba.cuda.__file__))" 2>/dev/null || true)
|
if [ -n "$NUMBA_CUDA_DIR" ]; then
|
||||||
if [ -n "$NUMBA_CUDA_DIR" ]; then
|
NUMBA_PATCH="$(dirname "$(realpath "${BASH_SOURCE[0]}")")/numba-cuda-13.patch"
|
||||||
NUMBA_PATCH="$(dirname "$(realpath "${BASH_SOURCE[0]}")")/numba-cuda-13.patch"
|
pushd "$NUMBA_CUDA_DIR"
|
||||||
pushd "$NUMBA_CUDA_DIR"
|
patch -p4 <"$NUMBA_PATCH"
|
||||||
patch -p4 <"$NUMBA_PATCH"
|
popd
|
||||||
popd
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "Environment variables:"
|
echo "Environment variables:"
|
||||||
@ -324,26 +322,20 @@ test_python_shard() {
|
|||||||
|
|
||||||
# modify LD_LIBRARY_PATH to ensure it has the conda env.
|
# modify LD_LIBRARY_PATH to ensure it has the conda env.
|
||||||
# This set of tests has been shown to be buggy without it for the split-build
|
# This set of tests has been shown to be buggy without it for the split-build
|
||||||
time python test/run_test.py --exclude-jit-executor --exclude-distributed-tests --exclude-quantization-tests $INCLUDE_CLAUSE --shard "$1" "$NUM_TEST_SHARDS" --verbose $PYTHON_TEST_EXTRA_OPTION --upload-artifacts-while-running
|
time python test/run_test.py --exclude-jit-executor --exclude-distributed-tests $INCLUDE_CLAUSE --shard "$1" "$NUM_TEST_SHARDS" --verbose $PYTHON_TEST_EXTRA_OPTION --upload-artifacts-while-running
|
||||||
|
|
||||||
assert_git_not_dirty
|
assert_git_not_dirty
|
||||||
}
|
}
|
||||||
|
|
||||||
test_python() {
|
test_python() {
|
||||||
# shellcheck disable=SC2086
|
# shellcheck disable=SC2086
|
||||||
time python test/run_test.py --exclude-jit-executor --exclude-distributed-tests --exclude-quantization-tests $INCLUDE_CLAUSE --verbose $PYTHON_TEST_EXTRA_OPTION
|
time python test/run_test.py --exclude-jit-executor --exclude-distributed-tests $INCLUDE_CLAUSE --verbose $PYTHON_TEST_EXTRA_OPTION
|
||||||
assert_git_not_dirty
|
assert_git_not_dirty
|
||||||
}
|
}
|
||||||
|
|
||||||
test_python_smoke() {
|
test_python_smoke() {
|
||||||
# Smoke tests for H100/B200
|
# Smoke tests for H100
|
||||||
time python test/run_test.py --include test_matmul_cuda test_scaled_matmul_cuda inductor/test_fp8 inductor/test_max_autotune $PYTHON_TEST_EXTRA_OPTION --upload-artifacts-while-running
|
time python test/run_test.py --include test_matmul_cuda inductor/test_fp8 inductor/test_max_autotune $PYTHON_TEST_EXTRA_OPTION --upload-artifacts-while-running
|
||||||
assert_git_not_dirty
|
|
||||||
}
|
|
||||||
|
|
||||||
test_python_smoke_b200() {
|
|
||||||
# Targeted smoke tests for B200 - staged approach to avoid too many failures
|
|
||||||
time python test/run_test.py --include test_matmul_cuda test_scaled_matmul_cuda inductor/test_fp8 $PYTHON_TEST_EXTRA_OPTION --upload-artifacts-while-running
|
|
||||||
assert_git_not_dirty
|
assert_git_not_dirty
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -392,7 +384,6 @@ test_dynamo_wrapped_shard() {
|
|||||||
--exclude-distributed-tests \
|
--exclude-distributed-tests \
|
||||||
--exclude-torch-export-tests \
|
--exclude-torch-export-tests \
|
||||||
--exclude-aot-dispatch-tests \
|
--exclude-aot-dispatch-tests \
|
||||||
--exclude-quantization-tests \
|
|
||||||
--shard "$1" "$NUM_TEST_SHARDS" \
|
--shard "$1" "$NUM_TEST_SHARDS" \
|
||||||
--verbose \
|
--verbose \
|
||||||
--upload-artifacts-while-running
|
--upload-artifacts-while-running
|
||||||
@ -437,7 +428,7 @@ test_inductor_distributed() {
|
|||||||
|
|
||||||
# this runs on both single-gpu and multi-gpu instance. It should be smart about skipping tests that aren't supported
|
# this runs on both single-gpu and multi-gpu instance. It should be smart about skipping tests that aren't supported
|
||||||
# with if required # gpus aren't available
|
# with if required # gpus aren't available
|
||||||
python test/run_test.py --include distributed/test_dynamo_distributed distributed/test_inductor_collectives distributed/test_aten_comm_compute_reordering distributed/test_compute_comm_reordering --verbose
|
python test/run_test.py --include distributed/test_dynamo_distributed distributed/test_inductor_collectives distributed/test_compute_comm_reordering --verbose
|
||||||
assert_git_not_dirty
|
assert_git_not_dirty
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -838,7 +829,7 @@ test_dynamo_benchmark() {
|
|||||||
elif [[ "${suite}" == "timm_models" ]]; then
|
elif [[ "${suite}" == "timm_models" ]]; then
|
||||||
export TORCHBENCH_ONLY_MODELS="inception_v3"
|
export TORCHBENCH_ONLY_MODELS="inception_v3"
|
||||||
elif [[ "${suite}" == "torchbench" ]]; then
|
elif [[ "${suite}" == "torchbench" ]]; then
|
||||||
export TORCHBENCH_ONLY_MODELS="BERT_pytorch"
|
export TORCHBENCH_ONLY_MODELS="hf_Bert"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
test_single_dynamo_benchmark "dashboard" "$suite" "$shard_id" "$@"
|
test_single_dynamo_benchmark "dashboard" "$suite" "$shard_id" "$@"
|
||||||
@ -869,13 +860,13 @@ test_inductor_torchbench_smoketest_perf() {
|
|||||||
mkdir -p "$TEST_REPORTS_DIR"
|
mkdir -p "$TEST_REPORTS_DIR"
|
||||||
|
|
||||||
python benchmarks/dynamo/torchbench.py --device cuda --performance --backend inductor --float16 --training \
|
python benchmarks/dynamo/torchbench.py --device cuda --performance --backend inductor --float16 --training \
|
||||||
--batch-size-file "$(realpath benchmarks/dynamo/torchbench_models_list.txt)" --only BERT_pytorch \
|
--batch-size-file "$(realpath benchmarks/dynamo/torchbench_models_list.txt)" --only hf_Bert \
|
||||||
--output "$TEST_REPORTS_DIR/inductor_training_smoketest.csv"
|
--output "$TEST_REPORTS_DIR/inductor_training_smoketest.csv"
|
||||||
# The threshold value needs to be actively maintained to make this check useful
|
# The threshold value needs to be actively maintained to make this check useful
|
||||||
python benchmarks/dynamo/check_perf_csv.py -f "$TEST_REPORTS_DIR/inductor_training_smoketest.csv" -t 1.4
|
python benchmarks/dynamo/check_perf_csv.py -f "$TEST_REPORTS_DIR/inductor_training_smoketest.csv" -t 1.4
|
||||||
|
|
||||||
# Check memory compression ratio for a few models
|
# Check memory compression ratio for a few models
|
||||||
for test in BERT_pytorch yolov3; do
|
for test in hf_Albert timm_vision_transformer; do
|
||||||
python benchmarks/dynamo/torchbench.py --device cuda --performance --backend inductor --amp --training \
|
python benchmarks/dynamo/torchbench.py --device cuda --performance --backend inductor --amp --training \
|
||||||
--disable-cudagraphs --batch-size-file "$(realpath benchmarks/dynamo/torchbench_models_list.txt)" \
|
--disable-cudagraphs --batch-size-file "$(realpath benchmarks/dynamo/torchbench_models_list.txt)" \
|
||||||
--only $test --output "$TEST_REPORTS_DIR/inductor_training_smoketest_$test.csv"
|
--only $test --output "$TEST_REPORTS_DIR/inductor_training_smoketest_$test.csv"
|
||||||
@ -886,7 +877,7 @@ test_inductor_torchbench_smoketest_perf() {
|
|||||||
done
|
done
|
||||||
|
|
||||||
# Perform some "warm-start" runs for a few huggingface models.
|
# Perform some "warm-start" runs for a few huggingface models.
|
||||||
for test in AllenaiLongformerBase DistilBertForMaskedLM DistillGPT2 GoogleFnet YituTechConvBert; do
|
for test in AlbertForQuestionAnswering AllenaiLongformerBase DistilBertForMaskedLM DistillGPT2 GoogleFnet YituTechConvBert; do
|
||||||
python benchmarks/dynamo/huggingface.py --accuracy --training --amp --inductor --device cuda --warm-start-latency \
|
python benchmarks/dynamo/huggingface.py --accuracy --training --amp --inductor --device cuda --warm-start-latency \
|
||||||
--only $test --output "$TEST_REPORTS_DIR/inductor_warm_start_smoketest_$test.csv"
|
--only $test --output "$TEST_REPORTS_DIR/inductor_warm_start_smoketest_$test.csv"
|
||||||
python benchmarks/dynamo/check_accuracy.py \
|
python benchmarks/dynamo/check_accuracy.py \
|
||||||
@ -1165,12 +1156,6 @@ test_distributed() {
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
test_quantization() {
|
|
||||||
echo "Testing quantization"
|
|
||||||
|
|
||||||
python test/test_quantization.py
|
|
||||||
}
|
|
||||||
|
|
||||||
test_rpc() {
|
test_rpc() {
|
||||||
echo "Testing RPC C++ tests"
|
echo "Testing RPC C++ tests"
|
||||||
# NB: the ending test_rpc must match the current function name for the current
|
# NB: the ending test_rpc must match the current function name for the current
|
||||||
@ -1417,7 +1402,7 @@ EOF
|
|||||||
pip3 install -r requirements.txt
|
pip3 install -r requirements.txt
|
||||||
# shellcheck source=./common-build.sh
|
# shellcheck source=./common-build.sh
|
||||||
source "$(dirname "${BASH_SOURCE[0]}")/common-build.sh"
|
source "$(dirname "${BASH_SOURCE[0]}")/common-build.sh"
|
||||||
python -m build --wheel --no-isolation -C--build-option=--bdist-dir="base_bdist_tmp" --outdir "base_dist"
|
python setup.py bdist_wheel --bdist-dir="base_bdist_tmp" --dist-dir="base_dist"
|
||||||
python -mpip install base_dist/*.whl
|
python -mpip install base_dist/*.whl
|
||||||
echo "::endgroup::"
|
echo "::endgroup::"
|
||||||
|
|
||||||
@ -1565,10 +1550,14 @@ test_executorch() {
|
|||||||
install_torchvision
|
install_torchvision
|
||||||
install_torchaudio
|
install_torchaudio
|
||||||
|
|
||||||
INSTALL_SCRIPT="$(pwd)/.ci/docker/common/install_executorch.sh"
|
|
||||||
|
|
||||||
pushd /executorch
|
pushd /executorch
|
||||||
"${INSTALL_SCRIPT}" setup_executorch
|
|
||||||
|
export PYTHON_EXECUTABLE=python
|
||||||
|
export CMAKE_ARGS="-DEXECUTORCH_BUILD_PYBIND=ON -DEXECUTORCH_BUILD_XNNPACK=ON -DEXECUTORCH_BUILD_KERNELS_QUANTIZED=ON"
|
||||||
|
|
||||||
|
# NB: We need to rebuild ExecuTorch runner here because it depends on PyTorch
|
||||||
|
# from the PR
|
||||||
|
bash .ci/scripts/setup-linux.sh --build-tool cmake
|
||||||
|
|
||||||
echo "Run ExecuTorch unit tests"
|
echo "Run ExecuTorch unit tests"
|
||||||
pytest -v -n auto
|
pytest -v -n auto
|
||||||
@ -1582,14 +1571,17 @@ test_executorch() {
|
|||||||
|
|
||||||
popd
|
popd
|
||||||
|
|
||||||
|
# Test torchgen generated code for Executorch.
|
||||||
|
echo "Testing ExecuTorch op registration"
|
||||||
|
"$BUILD_BIN_DIR"/test_edge_op_registration
|
||||||
|
|
||||||
assert_git_not_dirty
|
assert_git_not_dirty
|
||||||
}
|
}
|
||||||
|
|
||||||
test_linux_aarch64() {
|
test_linux_aarch64() {
|
||||||
python test/run_test.py --include test_modules test_mkldnn test_mkldnn_fusion test_openmp test_torch test_dynamic_shapes \
|
python test/run_test.py --include test_modules test_mkldnn test_mkldnn_fusion test_openmp test_torch test_dynamic_shapes \
|
||||||
test_transformers test_multiprocessing test_numpy_interop test_autograd test_binary_ufuncs test_complex test_spectral_ops \
|
test_transformers test_multiprocessing test_numpy_interop test_autograd test_binary_ufuncs test_complex test_spectral_ops \
|
||||||
test_foreach test_reductions test_unary_ufuncs test_tensor_creation_ops test_ops profiler/test_memory_profiler \
|
test_foreach test_reductions test_unary_ufuncs test_tensor_creation_ops test_ops \
|
||||||
distributed/elastic/timer/api_test distributed/elastic/timer/local_timer_example distributed/elastic/timer/local_timer_test \
|
|
||||||
--shard "$SHARD_NUMBER" "$NUM_TEST_SHARDS" --verbose
|
--shard "$SHARD_NUMBER" "$NUM_TEST_SHARDS" --verbose
|
||||||
|
|
||||||
# Dynamo tests
|
# Dynamo tests
|
||||||
@ -1619,7 +1611,7 @@ test_operator_benchmark() {
|
|||||||
test_inductor_set_cpu_affinity
|
test_inductor_set_cpu_affinity
|
||||||
|
|
||||||
cd benchmarks/operator_benchmark/pt_extension
|
cd benchmarks/operator_benchmark/pt_extension
|
||||||
python -m pip install . -v --no-build-isolation
|
python -m pip install .
|
||||||
|
|
||||||
cd "${TEST_DIR}"/benchmarks/operator_benchmark
|
cd "${TEST_DIR}"/benchmarks/operator_benchmark
|
||||||
$TASKSET python -m benchmark_all_test --device "$1" --tag-filter "$2" \
|
$TASKSET python -m benchmark_all_test --device "$1" --tag-filter "$2" \
|
||||||
@ -1683,8 +1675,6 @@ elif [[ "${TEST_CONFIG}" == *executorch* ]]; then
|
|||||||
test_executorch
|
test_executorch
|
||||||
elif [[ "$TEST_CONFIG" == 'jit_legacy' ]]; then
|
elif [[ "$TEST_CONFIG" == 'jit_legacy' ]]; then
|
||||||
test_python_legacy_jit
|
test_python_legacy_jit
|
||||||
elif [[ "$TEST_CONFIG" == 'quantization' ]]; then
|
|
||||||
test_quantization
|
|
||||||
elif [[ "${BUILD_ENVIRONMENT}" == *libtorch* ]]; then
|
elif [[ "${BUILD_ENVIRONMENT}" == *libtorch* ]]; then
|
||||||
# TODO: run some C++ tests
|
# TODO: run some C++ tests
|
||||||
echo "no-op at the moment"
|
echo "no-op at the moment"
|
||||||
@ -1811,14 +1801,10 @@ elif [[ "${BUILD_ENVIRONMENT}" == *xpu* ]]; then
|
|||||||
test_xpu_bin
|
test_xpu_bin
|
||||||
elif [[ "${TEST_CONFIG}" == smoke ]]; then
|
elif [[ "${TEST_CONFIG}" == smoke ]]; then
|
||||||
test_python_smoke
|
test_python_smoke
|
||||||
elif [[ "${TEST_CONFIG}" == smoke_b200 ]]; then
|
|
||||||
test_python_smoke_b200
|
|
||||||
elif [[ "${TEST_CONFIG}" == h100_distributed ]]; then
|
elif [[ "${TEST_CONFIG}" == h100_distributed ]]; then
|
||||||
test_h100_distributed
|
test_h100_distributed
|
||||||
elif [[ "${TEST_CONFIG}" == "h100-symm-mem" ]]; then
|
elif [[ "${TEST_CONFIG}" == "h100-symm-mem" ]]; then
|
||||||
test_h100_symm_mem
|
test_h100_symm_mem
|
||||||
elif [[ "${TEST_CONFIG}" == "b200-symm-mem" ]]; then
|
|
||||||
test_h100_symm_mem
|
|
||||||
elif [[ "${TEST_CONFIG}" == h100_cutlass_backend ]]; then
|
elif [[ "${TEST_CONFIG}" == h100_cutlass_backend ]]; then
|
||||||
test_h100_cutlass_backend
|
test_h100_cutlass_backend
|
||||||
else
|
else
|
||||||
|
|||||||
@ -1,32 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
set -ex -o pipefail
|
|
||||||
|
|
||||||
# Suppress ANSI color escape sequences
|
|
||||||
export TERM=vt100
|
|
||||||
|
|
||||||
# shellcheck source=./common.sh
|
|
||||||
source "$(dirname "${BASH_SOURCE[0]}")/common.sh"
|
|
||||||
# shellcheck source=./common-build.sh
|
|
||||||
source "$(dirname "${BASH_SOURCE[0]}")/common-build.sh"
|
|
||||||
|
|
||||||
echo "Environment variables"
|
|
||||||
env
|
|
||||||
|
|
||||||
echo "Testing FA3 stable wheel still works with currently built torch"
|
|
||||||
|
|
||||||
echo "Installing ABI Stable FA3 wheel"
|
|
||||||
# The wheel was built on https://github.com/Dao-AILab/flash-attention/commit/b3846b059bf6b143d1cd56879933be30a9f78c81
|
|
||||||
# on torch nightly torch==2.9.0.dev20250830+cu129
|
|
||||||
$MAYBE_SUDO pip -q install https://s3.amazonaws.com/ossci-linux/wheels/flash_attn_3-3.0.0b1-cp39-abi3-linux_x86_64.whl
|
|
||||||
|
|
||||||
pushd flash-attention/hopper
|
|
||||||
export PYTHONPATH=$PWD
|
|
||||||
pytest -v -s \
|
|
||||||
"test_flash_attn.py::test_flash_attn_output[1-1-192-False-False-False-0.0-False-False-mha-dtype0]" \
|
|
||||||
"test_flash_attn.py::test_flash_attn_varlen_output[511-1-64-True-False-False-0.0-False-False-gqa-dtype2]" \
|
|
||||||
"test_flash_attn.py::test_flash_attn_kvcache[1-128-128-False-False-True-None-0.0-False-False-True-False-True-False-gqa-dtype0]" \
|
|
||||||
"test_flash_attn.py::test_flash_attn_race_condition[97-97-192-True-dtype0]" \
|
|
||||||
"test_flash_attn.py::test_flash_attn_combine[2-3-64-dtype1]" \
|
|
||||||
"test_flash_attn.py::test_flash3_bw_compatibility"
|
|
||||||
popd
|
|
||||||
@ -70,7 +70,7 @@ sccache --zero-stats
|
|||||||
sccache --show-stats
|
sccache --show-stats
|
||||||
|
|
||||||
# Build the wheel
|
# Build the wheel
|
||||||
python -m build --wheel --no-build-isolation
|
python setup.py bdist_wheel
|
||||||
if ($LASTEXITCODE -ne 0) { exit 1 }
|
if ($LASTEXITCODE -ne 0) { exit 1 }
|
||||||
|
|
||||||
# Install the wheel locally
|
# Install the wheel locally
|
||||||
|
|||||||
@ -38,12 +38,10 @@ if errorlevel 1 goto fail
|
|||||||
if not errorlevel 0 goto fail
|
if not errorlevel 0 goto fail
|
||||||
|
|
||||||
:: Update CMake
|
:: Update CMake
|
||||||
:: TODO: Investigate why this helps MKL detection, even when CMake from choco is not used
|
|
||||||
call choco upgrade -y cmake --no-progress --installargs 'ADD_CMAKE_TO_PATH=System' --apply-install-arguments-to-dependencies --version=3.27.9
|
call choco upgrade -y cmake --no-progress --installargs 'ADD_CMAKE_TO_PATH=System' --apply-install-arguments-to-dependencies --version=3.27.9
|
||||||
if errorlevel 1 goto fail
|
if errorlevel 1 goto fail
|
||||||
if not errorlevel 0 goto fail
|
if not errorlevel 0 goto fail
|
||||||
|
|
||||||
:: TODO: Move to .ci/docker/requirements-ci.txt
|
|
||||||
call pip install mkl==2024.2.0 mkl-static==2024.2.0 mkl-include==2024.2.0
|
call pip install mkl==2024.2.0 mkl-static==2024.2.0 mkl-include==2024.2.0
|
||||||
if errorlevel 1 goto fail
|
if errorlevel 1 goto fail
|
||||||
if not errorlevel 0 goto fail
|
if not errorlevel 0 goto fail
|
||||||
@ -132,7 +130,7 @@ if "%USE_CUDA%"=="1" (
|
|||||||
:: Print all existing environment variable for debugging
|
:: Print all existing environment variable for debugging
|
||||||
set
|
set
|
||||||
|
|
||||||
python -m build --wheel --no-isolation
|
python setup.py bdist_wheel
|
||||||
if errorlevel 1 goto fail
|
if errorlevel 1 goto fail
|
||||||
if not errorlevel 0 goto fail
|
if not errorlevel 0 goto fail
|
||||||
sccache --show-stats
|
sccache --show-stats
|
||||||
|
|||||||
@ -15,35 +15,37 @@ if errorlevel 1 exit /b 1
|
|||||||
if not errorlevel 0 exit /b 1
|
if not errorlevel 0 exit /b 1
|
||||||
|
|
||||||
cd %TMP_DIR_WIN%\build\torch\test
|
cd %TMP_DIR_WIN%\build\torch\test
|
||||||
|
|
||||||
:: Enable delayed variable expansion to make the list
|
|
||||||
setlocal enabledelayedexpansion
|
|
||||||
set EXE_LIST=
|
|
||||||
for /r "." %%a in (*.exe) do (
|
for /r "." %%a in (*.exe) do (
|
||||||
if "%%~na" == "c10_intrusive_ptr_benchmark" (
|
call :libtorch_check "%%~na" "%%~fa"
|
||||||
@REM NB: This is not a gtest executable file, thus couldn't be handled by
|
|
||||||
@REM pytest-cpp and is excluded from test discovery by run_test
|
|
||||||
call "%%~fa"
|
|
||||||
if errorlevel 1 goto fail
|
if errorlevel 1 goto fail
|
||||||
if not errorlevel 0 goto fail
|
|
||||||
) else (
|
|
||||||
if "%%~na" == "verify_api_visibility" (
|
|
||||||
@REM Skip verify_api_visibility as it is a compile-level test
|
|
||||||
) else (
|
|
||||||
set EXE_LIST=!EXE_LIST! cpp/%%~na
|
|
||||||
)
|
|
||||||
)
|
|
||||||
)
|
)
|
||||||
|
|
||||||
|
goto :eof
|
||||||
|
|
||||||
|
:libtorch_check
|
||||||
|
|
||||||
cd %CWD%
|
cd %CWD%
|
||||||
set CPP_TESTS_DIR=%TMP_DIR_WIN%\build\torch\test
|
set CPP_TESTS_DIR=%TMP_DIR_WIN%\build\torch\test
|
||||||
|
|
||||||
:: Run python test\run_test.py on the list
|
:: Skip verify_api_visibility as it a compile level test
|
||||||
set NO_TD=True && python test\run_test.py --cpp --verbose -i !EXE_LIST!
|
if "%~1" == "verify_api_visibility" goto :eof
|
||||||
if errorlevel 1 goto fail
|
|
||||||
if not errorlevel 0 goto fail
|
|
||||||
|
|
||||||
goto :eof
|
echo Running "%~2"
|
||||||
|
if "%~1" == "c10_intrusive_ptr_benchmark" (
|
||||||
|
:: NB: This is not a gtest executable file, thus couldn't be handled by pytest-cpp
|
||||||
|
call "%~2"
|
||||||
|
goto :eof
|
||||||
|
)
|
||||||
|
|
||||||
|
python test\run_test.py --cpp --verbose -i "cpp/%~1"
|
||||||
|
if errorlevel 1 (
|
||||||
|
echo %1 failed with exit code %errorlevel%
|
||||||
|
goto fail
|
||||||
|
)
|
||||||
|
if not errorlevel 0 (
|
||||||
|
echo %1 failed with exit code %errorlevel%
|
||||||
|
goto fail
|
||||||
|
)
|
||||||
|
|
||||||
:eof
|
:eof
|
||||||
exit /b 0
|
exit /b 0
|
||||||
|
|||||||
@ -25,7 +25,7 @@ echo Copying over test times file
|
|||||||
robocopy /E "%PYTORCH_FINAL_PACKAGE_DIR_WIN%\.additional_ci_files" "%PROJECT_DIR_WIN%\.additional_ci_files"
|
robocopy /E "%PYTORCH_FINAL_PACKAGE_DIR_WIN%\.additional_ci_files" "%PROJECT_DIR_WIN%\.additional_ci_files"
|
||||||
|
|
||||||
echo Run nn tests
|
echo Run nn tests
|
||||||
python run_test.py --exclude-jit-executor --exclude-distributed-tests --exclude-quantization-tests --shard "%SHARD_NUMBER%" "%NUM_TEST_SHARDS%" --verbose
|
python run_test.py --exclude-jit-executor --exclude-distributed-tests --shard "%SHARD_NUMBER%" "%NUM_TEST_SHARDS%" --verbose
|
||||||
if ERRORLEVEL 1 goto fail
|
if ERRORLEVEL 1 goto fail
|
||||||
|
|
||||||
popd
|
popd
|
||||||
|
|||||||
@ -37,8 +37,27 @@ if [[ "$BUILD_ENVIRONMENT" == *cuda* ]]; then
|
|||||||
export PYTORCH_TESTING_DEVICE_ONLY_FOR="cuda"
|
export PYTORCH_TESTING_DEVICE_ONLY_FOR="cuda"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# TODO: Move this to .ci/docker/requirements-ci.txt
|
# TODO: Move both of them to Windows AMI
|
||||||
python -m pip install "psutil==5.9.1" nvidia-ml-py "pytest-shard==0.1.2"
|
python -m pip install tensorboard==2.13.0 protobuf==5.29.4 pytest-subtests==0.13.1
|
||||||
|
|
||||||
|
# Copied from https://github.com/pytorch/test-infra/blob/be01a40157c36cd5a48391fdf44a7bc3ebd4c7e3/aws/ami/windows/scripts/Installers/Install-Pip-Dependencies.ps1#L16 with some adjustments
|
||||||
|
# pytest-rerunfailures==10.3 as 10.2 fails with INTERNALERROR> pluggy._manager.PluginValidationError: unknown hook 'pytest_configure_node'
|
||||||
|
# scipy from 1.6.3 to 1.10
|
||||||
|
# expecttest from 0.1.3 to 0.3.0
|
||||||
|
# xdoctest from 1.0.2 to 1.3.0
|
||||||
|
python -m pip install "future==0.18.2" "hypothesis==5.35.1" "expecttest==0.3.0" "librosa>=0.6.2" "scipy==1.10.1" "psutil==5.9.1" "pynvml==11.4.1" "pillow==9.2.0" "unittest-xml-reporting<=3.2.0,>=2.0.0" "pytest==7.1.3" "pytest-xdist==2.5.0" "pytest-flakefinder==1.1.0" "pytest-rerunfailures==10.3" "pytest-shard==0.1.2" "sympy==1.11.1" "xdoctest==1.3.0" "pygments==2.12.0" "opt-einsum>=3.3" "networkx==2.8.8" "mpmath==1.2.1" "pytest-cpp==2.3.0" "boto3==1.35.42"
|
||||||
|
|
||||||
|
# Install Z3 optional dependency for Windows builds.
|
||||||
|
python -m pip install z3-solver==4.15.1.0
|
||||||
|
|
||||||
|
# Install tlparse for test\dynamo\test_structured_trace.py UTs.
|
||||||
|
python -m pip install tlparse==0.4.0
|
||||||
|
|
||||||
|
# Install parameterized
|
||||||
|
python -m pip install parameterized==0.8.1
|
||||||
|
|
||||||
|
# Install pulp for testing ilps under torch\distributed\_tools
|
||||||
|
python -m pip install pulp==2.9.0
|
||||||
|
|
||||||
run_tests() {
|
run_tests() {
|
||||||
# Run nvidia-smi if available
|
# Run nvidia-smi if available
|
||||||
|
|||||||
@ -48,7 +48,7 @@ sccache --zero-stats
|
|||||||
sccache --show-stats
|
sccache --show-stats
|
||||||
|
|
||||||
:: Call PyTorch build script
|
:: Call PyTorch build script
|
||||||
python -m build --wheel --no-isolation --outdir "%PYTORCH_FINAL_PACKAGE_DIR%"
|
python setup.py bdist_wheel -d "%PYTORCH_FINAL_PACKAGE_DIR%"
|
||||||
|
|
||||||
:: show sccache stats
|
:: show sccache stats
|
||||||
sccache --show-stats
|
sccache --show-stats
|
||||||
|
|||||||
@ -28,5 +28,5 @@ start /wait "" python-amd64.exe /quiet InstallAllUsers=1 PrependPath=0 Include_t
|
|||||||
if errorlevel 1 exit /b 1
|
if errorlevel 1 exit /b 1
|
||||||
|
|
||||||
set "PATH=%CD%\Python\Scripts;%CD%\Python;%PATH%"
|
set "PATH=%CD%\Python\Scripts;%CD%\Python;%PATH%"
|
||||||
%PYTHON_EXEC% -m pip install --upgrade pip setuptools packaging wheel build
|
%PYTHON_EXEC% -m pip install --upgrade pip setuptools packaging wheel
|
||||||
if errorlevel 1 exit /b 1
|
if errorlevel 1 exit /b 1
|
||||||
|
|||||||
@ -86,7 +86,7 @@ copy /Y "%LIBTORCH_PREFIX%-%PYTORCH_BUILD_VERSION%.zip" "%PYTORCH_FINAL_PACKAGE_
|
|||||||
goto build_end
|
goto build_end
|
||||||
|
|
||||||
:pytorch
|
:pytorch
|
||||||
%PYTHON_EXEC% -m build --wheel --no-isolation --outdir "%PYTORCH_FINAL_PACKAGE_DIR%"
|
%PYTHON_EXEC% setup.py bdist_wheel -d "%PYTORCH_FINAL_PACKAGE_DIR%"
|
||||||
|
|
||||||
:build_end
|
:build_end
|
||||||
IF ERRORLEVEL 1 exit /b 1
|
IF ERRORLEVEL 1 exit /b 1
|
||||||
|
|||||||
@ -63,7 +63,7 @@ if errorlevel 1 exit /b 1
|
|||||||
call %CONDA_HOME%\condabin\activate.bat testenv
|
call %CONDA_HOME%\condabin\activate.bat testenv
|
||||||
if errorlevel 1 exit /b 1
|
if errorlevel 1 exit /b 1
|
||||||
|
|
||||||
call conda install -y -q -c conda-forge libuv=1.51
|
call conda install -y -q -c conda-forge libuv=1.39
|
||||||
call conda install -y -q intel-openmp
|
call conda install -y -q intel-openmp
|
||||||
|
|
||||||
echo "install and test libtorch"
|
echo "install and test libtorch"
|
||||||
|
|||||||
@ -18,7 +18,7 @@ if "%DESIRED_PYTHON%" == "3.9" %PYTHON_EXEC% -m pip install numpy==2.0.2 cmake
|
|||||||
|
|
||||||
%PYTHON_EXEC% -m pip install pyyaml
|
%PYTHON_EXEC% -m pip install pyyaml
|
||||||
%PYTHON_EXEC% -m pip install mkl-include mkl-static
|
%PYTHON_EXEC% -m pip install mkl-include mkl-static
|
||||||
%PYTHON_EXEC% -m pip install boto3 requests ninja typing_extensions setuptools==72.1.0
|
%PYTHON_EXEC% -m pip install boto3 ninja typing_extensions setuptools==72.1.0
|
||||||
|
|
||||||
where cmake.exe
|
where cmake.exe
|
||||||
|
|
||||||
|
|||||||
@ -85,7 +85,7 @@ mkdir -p "$PYTORCH_FINAL_PACKAGE_DIR" || true
|
|||||||
# Create an isolated directory to store this builds pytorch checkout and conda
|
# Create an isolated directory to store this builds pytorch checkout and conda
|
||||||
# installation
|
# installation
|
||||||
if [[ -z "$MAC_PACKAGE_WORK_DIR" ]]; then
|
if [[ -z "$MAC_PACKAGE_WORK_DIR" ]]; then
|
||||||
MAC_PACKAGE_WORK_DIR="$(pwd)/tmp_wheel_${DESIRED_PYTHON}_$(date +%H%M%S)"
|
MAC_PACKAGE_WORK_DIR="$(pwd)/tmp_wheel_conda_${DESIRED_PYTHON}_$(date +%H%M%S)"
|
||||||
fi
|
fi
|
||||||
mkdir -p "$MAC_PACKAGE_WORK_DIR" || true
|
mkdir -p "$MAC_PACKAGE_WORK_DIR" || true
|
||||||
if [[ -n ${GITHUB_ACTIONS} ]]; then
|
if [[ -n ${GITHUB_ACTIONS} ]]; then
|
||||||
@ -96,11 +96,11 @@ fi
|
|||||||
whl_tmp_dir="${MAC_PACKAGE_WORK_DIR}/dist"
|
whl_tmp_dir="${MAC_PACKAGE_WORK_DIR}/dist"
|
||||||
mkdir -p "$whl_tmp_dir"
|
mkdir -p "$whl_tmp_dir"
|
||||||
|
|
||||||
mac_version='macosx-11_0-arm64'
|
mac_version='macosx_11_0_arm64'
|
||||||
libtorch_arch='arm64'
|
libtorch_arch='arm64'
|
||||||
|
|
||||||
# Create a consistent wheel package name to rename the wheel to
|
# Create a consistent wheel package name to rename the wheel to
|
||||||
wheel_filename_new="${TORCH_PACKAGE_NAME}-${build_version}${build_number_prefix}-cp${python_nodot}-none-${mac_version//[-,]/_}.whl"
|
wheel_filename_new="${TORCH_PACKAGE_NAME}-${build_version}${build_number_prefix}-cp${python_nodot}-none-${mac_version}.whl"
|
||||||
|
|
||||||
###########################################################
|
###########################################################
|
||||||
|
|
||||||
@ -125,6 +125,7 @@ popd
|
|||||||
export TH_BINARY_BUILD=1
|
export TH_BINARY_BUILD=1
|
||||||
export INSTALL_TEST=0 # dont install test binaries into site-packages
|
export INSTALL_TEST=0 # dont install test binaries into site-packages
|
||||||
export MACOSX_DEPLOYMENT_TARGET=11.0
|
export MACOSX_DEPLOYMENT_TARGET=11.0
|
||||||
|
export CMAKE_PREFIX_PATH=${CONDA_PREFIX:-"$(dirname $(which conda))/../"}
|
||||||
|
|
||||||
EXTRA_CONDA_INSTALL_FLAGS=""
|
EXTRA_CONDA_INSTALL_FLAGS=""
|
||||||
CONDA_ENV_CREATE_FLAGS=""
|
CONDA_ENV_CREATE_FLAGS=""
|
||||||
@ -132,20 +133,25 @@ RENAME_WHEEL=true
|
|||||||
case $desired_python in
|
case $desired_python in
|
||||||
3.14t)
|
3.14t)
|
||||||
echo "Using 3.14 deps"
|
echo "Using 3.14 deps"
|
||||||
mac_version='macosx-11.0-arm64'
|
|
||||||
NUMPY_PINNED_VERSION="==2.1.0"
|
NUMPY_PINNED_VERSION="==2.1.0"
|
||||||
|
CONDA_ENV_CREATE_FLAGS="python-freethreading"
|
||||||
|
EXTRA_CONDA_INSTALL_FLAGS="-c conda-forge/label/python_rc -c conda-forge"
|
||||||
|
desired_python="3.14.0rc1"
|
||||||
RENAME_WHEEL=false
|
RENAME_WHEEL=false
|
||||||
;;
|
;;
|
||||||
3.14)
|
3.14)
|
||||||
echo "Using 3.14t deps"
|
echo "Using 3.14t deps"
|
||||||
mac_version='macosx-11.0-arm64'
|
|
||||||
NUMPY_PINNED_VERSION="==2.1.0"
|
NUMPY_PINNED_VERSION="==2.1.0"
|
||||||
|
EXTRA_CONDA_INSTALL_FLAGS="-c conda-forge/label/python_rc -c conda-forge"
|
||||||
|
desired_python="3.14.0rc1"
|
||||||
RENAME_WHEEL=false
|
RENAME_WHEEL=false
|
||||||
;;
|
;;
|
||||||
3.13t)
|
3.13t)
|
||||||
echo "Using 3.13t deps"
|
echo "Using 3.13 deps"
|
||||||
mac_version='macosx-11.0-arm64'
|
|
||||||
NUMPY_PINNED_VERSION="==2.1.0"
|
NUMPY_PINNED_VERSION="==2.1.0"
|
||||||
|
CONDA_ENV_CREATE_FLAGS="python-freethreading"
|
||||||
|
EXTRA_CONDA_INSTALL_FLAGS="-c conda-forge"
|
||||||
|
desired_python="3.13"
|
||||||
RENAME_WHEEL=false
|
RENAME_WHEEL=false
|
||||||
;;
|
;;
|
||||||
3.13)
|
3.13)
|
||||||
@ -170,12 +176,17 @@ case $desired_python in
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
# Install into a fresh env
|
||||||
|
tmp_env_name="wheel_py$python_nodot"
|
||||||
|
conda create ${EXTRA_CONDA_INSTALL_FLAGS} -yn "$tmp_env_name" python="$desired_python" ${CONDA_ENV_CREATE_FLAGS}
|
||||||
|
source activate "$tmp_env_name"
|
||||||
|
|
||||||
PINNED_PACKAGES=(
|
PINNED_PACKAGES=(
|
||||||
"numpy${NUMPY_PINNED_VERSION}"
|
"numpy${NUMPY_PINNED_VERSION}"
|
||||||
)
|
)
|
||||||
python -mvenv ~/${desired_python}-build
|
retry pip install "${PINNED_PACKAGES[@]}" -r "${pytorch_rootdir}/requirements-build.txt"
|
||||||
source ~/${desired_python}-build/bin/activate
|
pip install requests ninja typing-extensions
|
||||||
retry pip install "${PINNED_PACKAGES[@]}" -r "${pytorch_rootdir}/requirements.txt"
|
retry pip install -r "${pytorch_rootdir}/requirements.txt" || true
|
||||||
retry brew install libomp
|
retry brew install libomp
|
||||||
|
|
||||||
# For USE_DISTRIBUTED=1 on macOS, need libuv, which is build as part of tensorpipe submodule
|
# For USE_DISTRIBUTED=1 on macOS, need libuv, which is build as part of tensorpipe submodule
|
||||||
@ -186,11 +197,11 @@ export USE_QNNPACK=OFF
|
|||||||
export BUILD_TEST=OFF
|
export BUILD_TEST=OFF
|
||||||
|
|
||||||
pushd "$pytorch_rootdir"
|
pushd "$pytorch_rootdir"
|
||||||
echo "Calling -m build --wheel --no-isolation at $(date)"
|
echo "Calling setup.py bdist_wheel at $(date)"
|
||||||
|
|
||||||
_PYTHON_HOST_PLATFORM=${mac_version} ARCHFLAGS="-arch arm64" python -m build --wheel --no-isolation --outdir "$whl_tmp_dir" -C--plat-name="${mac_version//[-.]/_}"
|
python setup.py bdist_wheel -d "$whl_tmp_dir" --plat-name ${mac_version}
|
||||||
|
|
||||||
echo "Finished -m build --wheel --no-isolation at $(date)"
|
echo "Finished setup.py bdist_wheel at $(date)"
|
||||||
|
|
||||||
if [[ $package_type != 'libtorch' ]]; then
|
if [[ $package_type != 'libtorch' ]]; then
|
||||||
echo "delocating wheel dependencies"
|
echo "delocating wheel dependencies"
|
||||||
|
|||||||
47
.circleci/scripts/functorch_doc_push_script.sh
Executable file
47
.circleci/scripts/functorch_doc_push_script.sh
Executable file
@ -0,0 +1,47 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
# =================== The following code **should** be executed inside Docker container ===================
|
||||||
|
|
||||||
|
# Install dependencies
|
||||||
|
sudo apt-get -y update
|
||||||
|
sudo apt-get -y install expect-dev
|
||||||
|
|
||||||
|
# This is where the local pytorch install in the docker image is located
|
||||||
|
pt_checkout="/var/lib/jenkins/workspace"
|
||||||
|
source "$pt_checkout/.ci/pytorch/common_utils.sh"
|
||||||
|
echo "functorch_doc_push_script.sh: Invoked with $*"
|
||||||
|
|
||||||
|
set -ex
|
||||||
|
|
||||||
|
version=${DOCS_VERSION:-nightly}
|
||||||
|
echo "version: $version"
|
||||||
|
|
||||||
|
# Build functorch docs
|
||||||
|
pushd $pt_checkout/functorch/docs
|
||||||
|
pip -q install -r requirements.txt
|
||||||
|
make html
|
||||||
|
popd
|
||||||
|
|
||||||
|
git clone https://github.com/pytorch/functorch -b gh-pages --depth 1 functorch_ghpages
|
||||||
|
pushd functorch_ghpages
|
||||||
|
|
||||||
|
if [ $version == "main" ]; then
|
||||||
|
version=nightly
|
||||||
|
fi
|
||||||
|
|
||||||
|
git rm -rf "$version" || true
|
||||||
|
mv "$pt_checkout/functorch/docs/build/html" "$version"
|
||||||
|
|
||||||
|
git add "$version" || true
|
||||||
|
git status
|
||||||
|
git config user.email "soumith+bot@pytorch.org"
|
||||||
|
git config user.name "pytorchbot"
|
||||||
|
# If there aren't changes, don't make a commit; push is no-op
|
||||||
|
git commit -m "Generate Python docs from pytorch/pytorch@${GITHUB_SHA}" || true
|
||||||
|
git status
|
||||||
|
|
||||||
|
if [[ "${WITH_PUSH:-}" == true ]]; then
|
||||||
|
git push -u origin gh-pages
|
||||||
|
fi
|
||||||
|
|
||||||
|
popd
|
||||||
|
# =================== The above code **should** be executed inside Docker container ===================
|
||||||
@ -59,19 +59,16 @@ performance-*,
|
|||||||
-performance-enum-size,
|
-performance-enum-size,
|
||||||
readability-container-size-empty,
|
readability-container-size-empty,
|
||||||
readability-delete-null-pointer,
|
readability-delete-null-pointer,
|
||||||
readability-duplicate-include,
|
readability-duplicate-include
|
||||||
readability-misplaced-array-index,
|
readability-misplaced-array-index,
|
||||||
readability-redundant*,
|
readability-redundant*
|
||||||
readability-simplify-subscript-expr,
|
readability-simplify-subscript-expr,
|
||||||
readability-string-compare,
|
readability-string-compare,
|
||||||
-readability-redundant-access-specifiers,
|
-readability-redundant-access-specifiers,
|
||||||
-readability-redundant-control-flow,
|
-readability-redundant-control-flow,
|
||||||
-readability-redundant-inline-specifier,
|
|
||||||
'
|
'
|
||||||
HeaderFilterRegex: '^(aten/|c10/|torch/).*$'
|
HeaderFilterRegex: '^(aten/|c10/|torch/).*$'
|
||||||
WarningsAsErrors: '*'
|
WarningsAsErrors: '*'
|
||||||
LineFilter:
|
|
||||||
- name: '/usr/include/.*'
|
|
||||||
CheckOptions:
|
CheckOptions:
|
||||||
cppcoreguidelines-special-member-functions.AllowSoleDefaultDtor: true
|
cppcoreguidelines-special-member-functions.AllowSoleDefaultDtor: true
|
||||||
cppcoreguidelines-special-member-functions.AllowImplicitlyDeletedCopyOrMove: true
|
cppcoreguidelines-special-member-functions.AllowImplicitlyDeletedCopyOrMove: true
|
||||||
|
|||||||
4
.flake8
4
.flake8
@ -12,7 +12,7 @@ ignore =
|
|||||||
# to line this up with executable bit
|
# to line this up with executable bit
|
||||||
EXE001,
|
EXE001,
|
||||||
# these ignores are from flake8-bugbear; please fix!
|
# these ignores are from flake8-bugbear; please fix!
|
||||||
B007,B008,B017,B019,B023,B028,B903,B905,B906,B907,B908,B910
|
B007,B008,B017,B019,B023,B028,B903,B904,B905,B906,B907,B908,B910
|
||||||
# these ignores are from flake8-comprehensions; please fix!
|
# these ignores are from flake8-comprehensions; please fix!
|
||||||
C407,
|
C407,
|
||||||
# these ignores are from flake8-logging-format; please fix!
|
# these ignores are from flake8-logging-format; please fix!
|
||||||
@ -73,7 +73,7 @@ exclude =
|
|||||||
./docs/src,
|
./docs/src,
|
||||||
./functorch/docs,
|
./functorch/docs,
|
||||||
./functorch/examples,
|
./functorch/examples,
|
||||||
./functorch/docs/source/tutorials,
|
./functorch/notebooks,
|
||||||
./scripts,
|
./scripts,
|
||||||
./test/generated_type_hints_smoketest.py,
|
./test/generated_type_hints_smoketest.py,
|
||||||
./third_party,
|
./third_party,
|
||||||
|
|||||||
4
.github/ISSUE_TEMPLATE/ci-sev.md
vendored
4
.github/ISSUE_TEMPLATE/ci-sev.md
vendored
@ -1,10 +1,6 @@
|
|||||||
---
|
---
|
||||||
name: "⚠️ CI SEV"
|
name: "⚠️ CI SEV"
|
||||||
about: Tracking incidents for PyTorch's CI infra.
|
about: Tracking incidents for PyTorch's CI infra.
|
||||||
title: ''
|
|
||||||
labels: ''
|
|
||||||
assignees: ''
|
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
> NOTE: Remember to label this issue with "`ci: sev`"
|
> NOTE: Remember to label this issue with "`ci: sev`"
|
||||||
|
|||||||
18
.github/ISSUE_TEMPLATE/disable-autorevert.md
vendored
18
.github/ISSUE_TEMPLATE/disable-autorevert.md
vendored
@ -1,18 +0,0 @@
|
|||||||
---
|
|
||||||
name: DISABLE AUTOREVERT
|
|
||||||
about: Disables autorevert when open
|
|
||||||
title: "❌\U0001F519 [DISABLE AUTOREVERT]"
|
|
||||||
labels: 'ci: disable-autorevert'
|
|
||||||
assignees: ''
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
This issue, while open, disables the autorevert functionality.
|
|
||||||
|
|
||||||
More details can be found [here](https://github.com/pytorch/test-infra/blob/main/aws/lambda/pytorch-auto-revert/README.md)
|
|
||||||
|
|
||||||
|
|
||||||
## Why are you disabling autorevert?
|
|
||||||
|
|
||||||
|
|
||||||
## Links to any issues/commits/errors that shows the source of problem
|
|
||||||
6
.github/ISSUE_TEMPLATE/disable-ci-jobs.md
vendored
6
.github/ISSUE_TEMPLATE/disable-ci-jobs.md
vendored
@ -1,10 +1,8 @@
|
|||||||
---
|
---
|
||||||
name: Disable CI jobs (PyTorch Dev Infra only)
|
name: Disable CI jobs (PyTorch Dev Infra only)
|
||||||
about: Use this template to disable CI jobs
|
about: Use this template to disable CI jobs
|
||||||
title: DISABLED [WORKFLOW_NAME] / [PLATFORM_NAME] / [JOB_NAME]
|
title: "DISABLED [WORKFLOW_NAME] / [PLATFORM_NAME] / [JOB_NAME]"
|
||||||
labels: 'module: ci'
|
labels: "module: ci"
|
||||||
assignees: ''
|
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
> For example, DISABLED pull / win-vs2022-cpu-py3 / test (default). Once
|
> For example, DISABLED pull / win-vs2022-cpu-py3 / test (default). Once
|
||||||
|
|||||||
4
.github/actionlint.yaml
vendored
4
.github/actionlint.yaml
vendored
@ -21,10 +21,6 @@ self-hosted-runner:
|
|||||||
- linux.arm64.2xlarge.ephemeral
|
- linux.arm64.2xlarge.ephemeral
|
||||||
- linux.arm64.m7g.4xlarge
|
- linux.arm64.m7g.4xlarge
|
||||||
- linux.arm64.m7g.4xlarge.ephemeral
|
- linux.arm64.m7g.4xlarge.ephemeral
|
||||||
- linux.arm64.r7g.12xlarge.memory
|
|
||||||
- linux.aws.h100
|
|
||||||
- linux.aws.h100.4
|
|
||||||
- linux.aws.h100.8
|
|
||||||
- linux.4xlarge.nvidia.gpu
|
- linux.4xlarge.nvidia.gpu
|
||||||
- linux.8xlarge.nvidia.gpu
|
- linux.8xlarge.nvidia.gpu
|
||||||
- linux.16xlarge.nvidia.gpu
|
- linux.16xlarge.nvidia.gpu
|
||||||
|
|||||||
2
.github/actions/linux-test/action.yml
vendored
2
.github/actions/linux-test/action.yml
vendored
@ -274,6 +274,8 @@ runs:
|
|||||||
-w /var/lib/jenkins/workspace \
|
-w /var/lib/jenkins/workspace \
|
||||||
"${DOCKER_IMAGE}"
|
"${DOCKER_IMAGE}"
|
||||||
)
|
)
|
||||||
|
# Propagate download.pytorch.org IP to container
|
||||||
|
grep download.pytorch.org /etc/hosts | docker exec -i "${container_name}" sudo bash -c "/bin/cat >> /etc/hosts"
|
||||||
echo "DOCKER_CONTAINER_ID=${container_name}" >> "${GITHUB_ENV}"
|
echo "DOCKER_CONTAINER_ID=${container_name}" >> "${GITHUB_ENV}"
|
||||||
docker exec -t "${container_name}" sh -c "pip install $(echo dist/*.whl)[opt-einsum] && ${TEST_COMMAND}"
|
docker exec -t "${container_name}" sh -c "pip install $(echo dist/*.whl)[opt-einsum] && ${TEST_COMMAND}"
|
||||||
|
|
||||||
|
|||||||
@ -264,7 +264,7 @@ def unzip_artifact_and_replace_files() -> None:
|
|||||||
change_content_to_new_version(f"artifacts/dist/{old_stem}/torch/version.py")
|
change_content_to_new_version(f"artifacts/dist/{old_stem}/torch/version.py")
|
||||||
|
|
||||||
for file in Path(f"artifacts/dist/{old_stem}").glob(
|
for file in Path(f"artifacts/dist/{old_stem}").glob(
|
||||||
"*.dist-info/*",
|
"*.dist-info/**",
|
||||||
):
|
):
|
||||||
change_content_to_new_version(file)
|
change_content_to_new_version(file)
|
||||||
|
|
||||||
|
|||||||
35
.github/actions/setup-linux/action.yml
vendored
35
.github/actions/setup-linux/action.yml
vendored
@ -28,10 +28,6 @@ runs:
|
|||||||
echo "instance-type: $(get_ec2_metadata instance-type)"
|
echo "instance-type: $(get_ec2_metadata instance-type)"
|
||||||
echo "system info $(uname -a)"
|
echo "system info $(uname -a)"
|
||||||
|
|
||||||
- name: Print GPU info (if present)
|
|
||||||
shell: bash
|
|
||||||
run: if [ -f /usr/bin/nvidia-smi ]; then nvidia-smi; fi
|
|
||||||
|
|
||||||
- name: Check if in a container runner
|
- name: Check if in a container runner
|
||||||
shell: bash
|
shell: bash
|
||||||
id: check_container_runner
|
id: check_container_runner
|
||||||
@ -86,6 +82,37 @@ runs:
|
|||||||
# Prune all of the docker images
|
# Prune all of the docker images
|
||||||
docker system prune -af
|
docker system prune -af
|
||||||
|
|
||||||
|
- name: Manually resolve download.pytorch.org
|
||||||
|
shell: bash
|
||||||
|
continue-on-error: true
|
||||||
|
run: |
|
||||||
|
set +e
|
||||||
|
set -x
|
||||||
|
|
||||||
|
PT_DOMAIN=download.pytorch.org
|
||||||
|
# TODO: Flaky access to download.pytorch.org https://github.com/pytorch/pytorch/issues/100400,
|
||||||
|
# cleaning this up once the issue is fixed. There are more than one resolved IP here, the last
|
||||||
|
# one is returned at random
|
||||||
|
RESOLVED_IP=$(dig -4 +short "${PT_DOMAIN}" | tail -n1)
|
||||||
|
|
||||||
|
if [ -z "${RESOLVED_IP}" ]; then
|
||||||
|
echo "Couldn't resolve ${PT_DOMAIN}, retrying with Google DNS..."
|
||||||
|
RESOLVED_IP=$(dig -4 +short "${PT_DOMAIN}" @8.8.8.8 | tail -n1)
|
||||||
|
|
||||||
|
if [ -z "${RESOLVED_IP}" ]; then
|
||||||
|
echo "Couldn't resolve ${PT_DOMAIN}, exiting..."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if grep -r "${PT_DOMAIN}" /etc/hosts; then
|
||||||
|
# Clean up any old records first
|
||||||
|
sudo sed -i "/${PT_DOMAIN}/d" /etc/hosts
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "${RESOLVED_IP} ${PT_DOMAIN}" | sudo tee -a /etc/hosts
|
||||||
|
cat /etc/hosts
|
||||||
|
|
||||||
- name: Check that the docker daemon is running
|
- name: Check that the docker daemon is running
|
||||||
shell: bash
|
shell: bash
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
|
|||||||
13
.github/actions/setup-rocm/action.yml
vendored
13
.github/actions/setup-rocm/action.yml
vendored
@ -111,16 +111,3 @@ runs:
|
|||||||
# This video group ID maps to subgid 1 inside the docker image due to the /etc/subgid entries.
|
# This video group ID maps to subgid 1 inside the docker image due to the /etc/subgid entries.
|
||||||
# The group name corresponding to group ID 1 can change depending on the OS, so both are necessary.
|
# The group name corresponding to group ID 1 can change depending on the OS, so both are necessary.
|
||||||
echo "GPU_FLAG=--device=/dev/mem --device=/dev/kfd $DEVICE_FLAG --group-add video --group-add $render_gid --group-add daemon --group-add bin --cap-add=SYS_PTRACE --security-opt seccomp=unconfined --network=host" >> "${GITHUB_ENV}"
|
echo "GPU_FLAG=--device=/dev/mem --device=/dev/kfd $DEVICE_FLAG --group-add video --group-add $render_gid --group-add daemon --group-add bin --cap-add=SYS_PTRACE --security-opt seccomp=unconfined --network=host" >> "${GITHUB_ENV}"
|
||||||
|
|
||||||
- name: configure aws credentials
|
|
||||||
id: aws_creds
|
|
||||||
uses: aws-actions/configure-aws-credentials@ececac1a45f3b08a01d2dd070d28d111c5fe6722 # v4.1.0
|
|
||||||
with:
|
|
||||||
role-to-assume: arn:aws:iam::308535385114:role/gha_workflow_s3_and_ecr_read_only
|
|
||||||
aws-region: us-east-1
|
|
||||||
role-duration-seconds: 18000
|
|
||||||
|
|
||||||
- name: Login to Amazon ECR
|
|
||||||
id: login-ecr
|
|
||||||
continue-on-error: true
|
|
||||||
uses: aws-actions/amazon-ecr-login@062b18b96a7aff071d4dc91bc00c4c1a7945b076 # v2.0.1
|
|
||||||
|
|||||||
3
.github/actions/teardown-win/action.yml
vendored
3
.github/actions/teardown-win/action.yml
vendored
@ -23,6 +23,9 @@ runs:
|
|||||||
run: |
|
run: |
|
||||||
.github\scripts\kill_active_ssh_sessions.ps1
|
.github\scripts\kill_active_ssh_sessions.ps1
|
||||||
|
|
||||||
|
- name: Clean up leftover processes on non-ephemeral Windows runner
|
||||||
|
uses: pytorch/test-infra/.github/actions/cleanup-runner@main
|
||||||
|
|
||||||
# Cleaning up Windows workspace sometimes fails flakily with device or resource busy
|
# Cleaning up Windows workspace sometimes fails flakily with device or resource busy
|
||||||
# error, meaning one or more processes haven't stopped completely yet. So trying to
|
# error, meaning one or more processes haven't stopped completely yet. So trying to
|
||||||
# retry this step several time similar to how checkout-pytorch GHA does
|
# retry this step several time similar to how checkout-pytorch GHA does
|
||||||
|
|||||||
@ -33,6 +33,10 @@ runs:
|
|||||||
)
|
)
|
||||||
|
|
||||||
echo "CONTAINER_NAME=${container_name}" >> "$GITHUB_ENV"
|
echo "CONTAINER_NAME=${container_name}" >> "$GITHUB_ENV"
|
||||||
|
if [[ "${GPU_ARCH_TYPE}" != "rocm" && "${BUILD_ENVIRONMENT}" != "linux-aarch64-binary-manywheel" && "${BUILD_ENVIRONMENT}" != "linux-s390x-binary-manywheel" && "${GPU_ARCH_TYPE}" != "xpu" ]]; then
|
||||||
|
# Propagate download.pytorch.org IP to container. This is only needed on Linux non aarch64 runner
|
||||||
|
grep download.pytorch.org /etc/hosts | docker exec -i "${container_name}" bash -c "/bin/cat >> /etc/hosts"
|
||||||
|
fi
|
||||||
|
|
||||||
docker exec -t -w "${PYTORCH_ROOT}" "${container_name}" bash -c "bash .circleci/scripts/binary_populate_env.sh"
|
docker exec -t -w "${PYTORCH_ROOT}" "${container_name}" bash -c "bash .circleci/scripts/binary_populate_env.sh"
|
||||||
# Generate test script
|
# Generate test script
|
||||||
|
|||||||
2
.github/ci_commit_pins/audio.txt
vendored
2
.github/ci_commit_pins/audio.txt
vendored
@ -1 +1 @@
|
|||||||
87ff22e49ed0e92576c4935ccb8c143daac4a3cd
|
27fc2493d383354a008106f22f3be232badee9a1
|
||||||
|
|||||||
2
.github/ci_commit_pins/fbgemm_rocm.txt
vendored
2
.github/ci_commit_pins/fbgemm_rocm.txt
vendored
@ -1 +1 @@
|
|||||||
08ae0af1395c8d8471f4025deb6af9aef90b342f
|
7f1de94a4c2d14f59ad4ca84538c36084ea6b2c8
|
||||||
|
|||||||
2
.github/ci_commit_pins/vllm.txt
vendored
2
.github/ci_commit_pins/vllm.txt
vendored
@ -1 +1 @@
|
|||||||
0ad9951c416d33c5da4f7a504fb162cbe62386f5
|
78a47f87ce259a48f0391fa9ae15add05ea7432b
|
||||||
|
|||||||
2
.github/ci_commit_pins/xla.txt
vendored
2
.github/ci_commit_pins/xla.txt
vendored
@ -1 +1 @@
|
|||||||
2a9138a26ee257fef05310ad3fecf7c55fe80d73
|
r2.9
|
||||||
|
|||||||
43
.github/ci_configs/vllm/Dockerfile.tmp_vllm
vendored
43
.github/ci_configs/vllm/Dockerfile.tmp_vllm
vendored
@ -82,10 +82,16 @@ RUN if command -v apt-get >/dev/null; then \
|
|||||||
apt-get update -y \
|
apt-get update -y \
|
||||||
&& apt-get install -y ccache software-properties-common git curl wget sudo vim; \
|
&& apt-get install -y ccache software-properties-common git curl wget sudo vim; \
|
||||||
else \
|
else \
|
||||||
dnf install -y git curl wget sudo; \
|
dnf install -y git curl wget sudo vim; \
|
||||||
fi \
|
fi \
|
||||||
&& python3 --version && python3 -m pip --version
|
&& python3 --version && python3 -m pip --version
|
||||||
|
|
||||||
|
# Workaround for https://github.com/openai/triton/issues/2507 and
|
||||||
|
# https://github.com/pytorch/pytorch/issues/107960 -- hopefully
|
||||||
|
# this won't be needed for future versions of this docker image
|
||||||
|
# or future versions of triton.
|
||||||
|
RUN ldconfig /usr/local/cuda-$(echo $CUDA_VERSION | cut -d. -f1,2)/compat/
|
||||||
|
|
||||||
# Install uv for faster pip installs if not existed
|
# Install uv for faster pip installs if not existed
|
||||||
RUN --mount=type=cache,target=/root/.cache/uv \
|
RUN --mount=type=cache,target=/root/.cache/uv \
|
||||||
if ! python3 -m uv --version >/dev/null 2>&1; then \
|
if ! python3 -m uv --version >/dev/null 2>&1; then \
|
||||||
@ -202,7 +208,7 @@ ARG max_jobs=16
|
|||||||
ENV MAX_JOBS=${max_jobs}
|
ENV MAX_JOBS=${max_jobs}
|
||||||
ARG nvcc_threads=4
|
ARG nvcc_threads=4
|
||||||
ENV NVCC_THREADS=$nvcc_threads
|
ENV NVCC_THREADS=$nvcc_threads
|
||||||
ARG torch_cuda_arch_list='8.0 8.6 8.9 9.0'
|
ARG torch_cuda_arch_list='8.0;8.6;8.9;9.0'
|
||||||
ENV TORCH_CUDA_ARCH_LIST=${torch_cuda_arch_list}
|
ENV TORCH_CUDA_ARCH_LIST=${torch_cuda_arch_list}
|
||||||
|
|
||||||
ARG USE_SCCACHE
|
ARG USE_SCCACHE
|
||||||
@ -214,16 +220,11 @@ ARG SCCACHE_S3_NO_CREDENTIALS=0
|
|||||||
RUN --mount=type=cache,target=/root/.cache/uv \
|
RUN --mount=type=cache,target=/root/.cache/uv \
|
||||||
--mount=type=bind,source=.git,target=.git \
|
--mount=type=bind,source=.git,target=.git \
|
||||||
if [ "$USE_SCCACHE" = "1" ]; then \
|
if [ "$USE_SCCACHE" = "1" ]; then \
|
||||||
echo "Installing sccache..."; \
|
echo "Installing sccache..." \
|
||||||
if [ "$TARGETPLATFORM" = "linux/arm64" ]; then \
|
&& curl -L -o sccache.tar.gz https://github.com/mozilla/sccache/releases/download/v0.8.1/sccache-v0.8.1-x86_64-unknown-linux-musl.tar.gz \
|
||||||
SCCACHE_ARCHIVE="sccache-v0.8.1-aarch64-unknown-linux-musl"; \
|
|
||||||
else \
|
|
||||||
SCCACHE_ARCHIVE="sccache-v0.8.1-x86_64-unknown-linux-musl"; \
|
|
||||||
fi; \
|
|
||||||
curl -L -o sccache.tar.gz "https://github.com/mozilla/sccache/releases/download/v0.8.1/${SCCACHE_ARCHIVE}.tar.gz" \
|
|
||||||
&& tar -xzf sccache.tar.gz \
|
&& tar -xzf sccache.tar.gz \
|
||||||
&& sudo mv "${SCCACHE_ARCHIVE}"/sccache /usr/bin/sccache \
|
&& sudo mv sccache-v0.8.1-x86_64-unknown-linux-musl/sccache /usr/bin/sccache \
|
||||||
&& rm -rf sccache.tar.gz "${SCCACHE_ARCHIVE}" \
|
&& rm -rf sccache.tar.gz sccache-v0.8.1-x86_64-unknown-linux-musl \
|
||||||
&& export SCCACHE_BUCKET=${SCCACHE_BUCKET_NAME} \
|
&& export SCCACHE_BUCKET=${SCCACHE_BUCKET_NAME} \
|
||||||
&& export SCCACHE_REGION=${SCCACHE_REGION_NAME} \
|
&& export SCCACHE_REGION=${SCCACHE_REGION_NAME} \
|
||||||
&& export SCCACHE_S3_NO_CREDENTIALS=${SCCACHE_S3_NO_CREDENTIALS} \
|
&& export SCCACHE_S3_NO_CREDENTIALS=${SCCACHE_S3_NO_CREDENTIALS} \
|
||||||
@ -284,7 +285,7 @@ RUN if command -v apt-get >/dev/null; then \
|
|||||||
&& ln -sf /usr/bin/python${PYTHON_VERSION}-config /usr/bin/python3-config \
|
&& ln -sf /usr/bin/python${PYTHON_VERSION}-config /usr/bin/python3-config \
|
||||||
&& curl -sS ${GET_PIP_URL} | python${PYTHON_VERSION}; \
|
&& curl -sS ${GET_PIP_URL} | python${PYTHON_VERSION}; \
|
||||||
else \
|
else \
|
||||||
dnf install -y git curl wget sudo; \
|
dnf install -y git curl wget sudo vim; \
|
||||||
fi \
|
fi \
|
||||||
&& python3 --version && python3 -m pip --version
|
&& python3 --version && python3 -m pip --version
|
||||||
|
|
||||||
@ -297,28 +298,22 @@ RUN echo "[INFO] Listing current directory before torch install step:" && \
|
|||||||
echo "[INFO] Showing torch_build_versions.txt content:" && \
|
echo "[INFO] Showing torch_build_versions.txt content:" && \
|
||||||
cat torch_build_versions.txt
|
cat torch_build_versions.txt
|
||||||
|
|
||||||
# Install build and runtime dependencies, this is needed for flashinfer install
|
# Workaround for https://github.com/openai/triton/issues/2507 and
|
||||||
COPY requirements/build.txt requirements/build.txt
|
# https://github.com/pytorch/pytorch/issues/107960 -- hopefully
|
||||||
COPY use_existing_torch.py use_existing_torch.py
|
# this won't be needed for future versions of this docker image
|
||||||
RUN python3 use_existing_torch.py
|
# or future versions of triton.
|
||||||
RUN cat requirements/build.txt
|
RUN ldconfig /usr/local/cuda-$(echo $CUDA_VERSION | cut -d. -f1,2)/compat/
|
||||||
|
|
||||||
# Install uv for faster pip installs if not existed
|
# Install uv for faster pip installs if not existed
|
||||||
RUN --mount=type=cache,target=/root/.cache/uv \
|
RUN --mount=type=cache,target=/root/.cache/uv \
|
||||||
if ! python3 -m uv --version > /dev/null 2>&1; then \
|
if ! python3 -m uv --version > /dev/null 2>&1; then \
|
||||||
python3 -m pip install uv==0.8.4; \
|
python3 -m pip install uv==0.8.4; \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
ENV UV_HTTP_TIMEOUT=500
|
ENV UV_HTTP_TIMEOUT=500
|
||||||
ENV UV_INDEX_STRATEGY="unsafe-best-match"
|
ENV UV_INDEX_STRATEGY="unsafe-best-match"
|
||||||
# Use copy mode to avoid hardlink failures with Docker cache mounts
|
# Use copy mode to avoid hardlink failures with Docker cache mounts
|
||||||
ENV UV_LINK_MODE=copy
|
ENV UV_LINK_MODE=copy
|
||||||
|
|
||||||
|
|
||||||
RUN --mount=type=cache,target=/root/.cache/uv \
|
|
||||||
uv pip install --system -r requirements/build.txt
|
|
||||||
|
|
||||||
|
|
||||||
# Default mount file as placeholder, this just avoid the mount error
|
# Default mount file as placeholder, this just avoid the mount error
|
||||||
ARG TORCH_WHEELS_PATH="./requirements"
|
ARG TORCH_WHEELS_PATH="./requirements"
|
||||||
# Install torch, torchaudio and torchvision
|
# Install torch, torchaudio and torchvision
|
||||||
@ -344,11 +339,13 @@ RUN --mount=type=cache,target=/root/.cache/uv \
|
|||||||
# Install xformers wheel from previous stage
|
# Install xformers wheel from previous stage
|
||||||
RUN --mount=type=cache,target=/root/.cache/uv \
|
RUN --mount=type=cache,target=/root/.cache/uv \
|
||||||
uv pip install --system /wheels/xformers/*.whl --verbose
|
uv pip install --system /wheels/xformers/*.whl --verbose
|
||||||
|
|
||||||
# Build flashinfer from source.
|
# Build flashinfer from source.
|
||||||
ARG torch_cuda_arch_list='8.0;8.9;9.0a;10.0a;12.0'
|
ARG torch_cuda_arch_list='8.0;8.9;9.0a;10.0a;12.0'
|
||||||
# install package for build flashinfer
|
# install package for build flashinfer
|
||||||
# see issue: https://github.com/flashinfer-ai/flashinfer/issues/738
|
# see issue: https://github.com/flashinfer-ai/flashinfer/issues/738
|
||||||
|
|
||||||
|
RUN pip install build==1.3.0
|
||||||
RUN pip freeze | grep -E 'setuptools|packaging|build'
|
RUN pip freeze | grep -E 'setuptools|packaging|build'
|
||||||
|
|
||||||
ENV TORCH_CUDA_ARCH_LIST=${torch_cuda_arch_list}
|
ENV TORCH_CUDA_ARCH_LIST=${torch_cuda_arch_list}
|
||||||
|
|||||||
22
.github/ci_configs/vllm/use_existing_torch.py
vendored
22
.github/ci_configs/vllm/use_existing_torch.py
vendored
@ -1,22 +0,0 @@
|
|||||||
import glob
|
|
||||||
import os
|
|
||||||
|
|
||||||
|
|
||||||
requires_files = glob.glob("requirements/*.txt")
|
|
||||||
requires_files += ["pyproject.toml"]
|
|
||||||
|
|
||||||
for file in requires_files:
|
|
||||||
if not os.path.exists(file):
|
|
||||||
print(f"!!! skipping missing {file}")
|
|
||||||
continue
|
|
||||||
print(f">>> cleaning {file}")
|
|
||||||
with open(file) as f:
|
|
||||||
lines = f.readlines()
|
|
||||||
if "torch" in "".join(lines).lower():
|
|
||||||
print("removed:")
|
|
||||||
with open(file, "w") as f:
|
|
||||||
for line in lines:
|
|
||||||
if "torch" not in line.lower():
|
|
||||||
f.write(line)
|
|
||||||
print(f"<<< done cleaning {file}")
|
|
||||||
print()
|
|
||||||
3
.github/labeler.yml
vendored
3
.github/labeler.yml
vendored
@ -130,6 +130,3 @@
|
|||||||
- torch/csrc/inductor/aoti_include/**
|
- torch/csrc/inductor/aoti_include/**
|
||||||
- torchgen/aoti/**
|
- torchgen/aoti/**
|
||||||
- torchgen/gen_aoti_c_shim.py
|
- torchgen/gen_aoti_c_shim.py
|
||||||
|
|
||||||
"ciflow/vllm":
|
|
||||||
- .github/ci_commit_pins/vllm.txt
|
|
||||||
|
|||||||
15
.github/merge_rules.yaml
vendored
15
.github/merge_rules.yaml
vendored
@ -525,21 +525,6 @@
|
|||||||
- Lint
|
- Lint
|
||||||
- pull
|
- pull
|
||||||
|
|
||||||
- name: typechecking
|
|
||||||
patterns:
|
|
||||||
- 'pyrefly.toml'
|
|
||||||
- 'mypy.ini'
|
|
||||||
- 'mypy-strict.ini'
|
|
||||||
approved_by:
|
|
||||||
- lolpack
|
|
||||||
- maggiemoss
|
|
||||||
- ndmitchell
|
|
||||||
- kinto0
|
|
||||||
mandatory_checks_name:
|
|
||||||
- EasyCLA
|
|
||||||
- Lint
|
|
||||||
- pull
|
|
||||||
|
|
||||||
- name: superuser
|
- name: superuser
|
||||||
patterns:
|
patterns:
|
||||||
- '*'
|
- '*'
|
||||||
|
|||||||
40
.github/pytorch-probot.yml
vendored
40
.github/pytorch-probot.yml
vendored
@ -1,45 +1,41 @@
|
|||||||
tracking_issue: 24422
|
tracking_issue: 24422
|
||||||
ciflow_tracking_issue: 64124
|
ciflow_tracking_issue: 64124
|
||||||
ciflow_push_tags:
|
ciflow_push_tags:
|
||||||
- ciflow/b200
|
|
||||||
- ciflow/b200-symm-mem
|
|
||||||
- ciflow/binaries
|
- ciflow/binaries
|
||||||
- ciflow/binaries_libtorch
|
- ciflow/binaries_libtorch
|
||||||
- ciflow/binaries_wheel
|
- ciflow/binaries_wheel
|
||||||
- ciflow/h100
|
- ciflow/triton_binaries
|
||||||
- ciflow/h100-cutlass-backend
|
|
||||||
- ciflow/h100-distributed
|
|
||||||
- ciflow/h100-symm-mem
|
|
||||||
- ciflow/inductor
|
- ciflow/inductor
|
||||||
- ciflow/inductor-cu126
|
|
||||||
- ciflow/inductor-micro-benchmark
|
|
||||||
- ciflow/inductor-micro-benchmark-cpu-x86
|
|
||||||
- ciflow/inductor-perf-compare
|
|
||||||
- ciflow/inductor-perf-test-nightly-rocm
|
|
||||||
- ciflow/inductor-perf-test-nightly-x86-zen
|
|
||||||
- ciflow/inductor-periodic
|
- ciflow/inductor-periodic
|
||||||
- ciflow/inductor-rocm
|
- ciflow/inductor-rocm
|
||||||
|
- ciflow/inductor-perf-test-nightly-rocm
|
||||||
|
- ciflow/inductor-perf-compare
|
||||||
|
- ciflow/inductor-micro-benchmark
|
||||||
|
- ciflow/inductor-micro-benchmark-cpu-x86
|
||||||
|
- ciflow/inductor-perf-test-nightly-x86-zen
|
||||||
|
- ciflow/inductor-cu126
|
||||||
- ciflow/linux-aarch64
|
- ciflow/linux-aarch64
|
||||||
- ciflow/mps
|
- ciflow/mps
|
||||||
- ciflow/nightly
|
- ciflow/nightly
|
||||||
- ciflow/op-benchmark
|
|
||||||
- ciflow/periodic
|
- ciflow/periodic
|
||||||
- ciflow/periodic-rocm-mi300
|
- ciflow/periodic-rocm-mi300
|
||||||
- ciflow/pull
|
|
||||||
- ciflow/quantization-periodic
|
|
||||||
- ciflow/riscv64
|
|
||||||
- ciflow/rocm
|
- ciflow/rocm
|
||||||
- ciflow/rocm-mi300
|
- ciflow/rocm-mi300
|
||||||
- ciflow/rocm-mi355
|
|
||||||
- ciflow/s390
|
- ciflow/s390
|
||||||
|
- ciflow/riscv64
|
||||||
- ciflow/slow
|
- ciflow/slow
|
||||||
- ciflow/torchbench
|
|
||||||
- ciflow/triton_binaries
|
|
||||||
- ciflow/trunk
|
- ciflow/trunk
|
||||||
- ciflow/unstable
|
- ciflow/unstable
|
||||||
- ciflow/vllm
|
|
||||||
- ciflow/win-arm64
|
|
||||||
- ciflow/xpu
|
- ciflow/xpu
|
||||||
|
- ciflow/vllm
|
||||||
|
- ciflow/torchbench
|
||||||
|
- ciflow/op-benchmark
|
||||||
|
- ciflow/pull
|
||||||
|
- ciflow/h100
|
||||||
|
- ciflow/h100-distributed
|
||||||
|
- ciflow/win-arm64
|
||||||
|
- ciflow/h100-symm-mem
|
||||||
|
- ciflow/h100-cutlass-backend
|
||||||
retryable_workflows:
|
retryable_workflows:
|
||||||
- pull
|
- pull
|
||||||
- trunk
|
- trunk
|
||||||
@ -48,4 +44,4 @@ retryable_workflows:
|
|||||||
- inductor-A100-perf-nightly
|
- inductor-A100-perf-nightly
|
||||||
labeler_config: labeler.yml
|
labeler_config: labeler.yml
|
||||||
label_to_label_config: label_to_label.yml
|
label_to_label_config: label_to_label.yml
|
||||||
mergebot: true
|
mergebot: True
|
||||||
|
|||||||
36
.github/requirements/pip-requirements-macOS.txt
vendored
Normal file
36
.github/requirements/pip-requirements-macOS.txt
vendored
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
boto3==1.35.42
|
||||||
|
cmake==3.27.*
|
||||||
|
expecttest==0.3.0
|
||||||
|
fbscribelogger==0.1.7
|
||||||
|
filelock==3.18.0
|
||||||
|
hypothesis==6.56.4
|
||||||
|
librosa>=0.6.2
|
||||||
|
mpmath==1.3.0
|
||||||
|
networkx==2.8.7
|
||||||
|
ninja==1.10.2.4
|
||||||
|
numba==0.59.0
|
||||||
|
numpy==1.26.4
|
||||||
|
opt-einsum>=3.3
|
||||||
|
optree==0.13.0
|
||||||
|
packaging==23.1
|
||||||
|
parameterized==0.8.1
|
||||||
|
pillow==10.3.0
|
||||||
|
protobuf==5.29.4
|
||||||
|
psutil==5.9.8
|
||||||
|
pygments==2.15.0
|
||||||
|
pytest-cpp==2.3.0
|
||||||
|
pytest-flakefinder==1.1.0
|
||||||
|
pytest-rerunfailures==10.3
|
||||||
|
pytest-subtests==0.13.1
|
||||||
|
pytest-xdist==3.3.1
|
||||||
|
pytest==7.3.2
|
||||||
|
pyyaml==6.0.2
|
||||||
|
scipy==1.12.0
|
||||||
|
setuptools==72.1.0
|
||||||
|
sympy==1.13.3
|
||||||
|
tlparse==0.4.0
|
||||||
|
tensorboard==2.13.0
|
||||||
|
typing-extensions==4.12.2
|
||||||
|
unittest-xml-reporting<=3.2.0,>=2.0.0
|
||||||
|
xdoctest==1.1.0
|
||||||
|
z3-solver==4.15.1.0
|
||||||
4
.github/scripts/docathon-label-sync.py
vendored
4
.github/scripts/docathon-label-sync.py
vendored
@ -39,9 +39,7 @@ def main() -> None:
|
|||||||
pull_request_label_names = [label.name for label in pull_request_labels]
|
pull_request_label_names = [label.name for label in pull_request_labels]
|
||||||
issue_label_names = [label.name for label in issue_labels]
|
issue_label_names = [label.name for label in issue_labels]
|
||||||
labels_to_add = [
|
labels_to_add = [
|
||||||
label
|
label for label in issue_label_names if label not in pull_request_label_names
|
||||||
for label in issue_label_names
|
|
||||||
if label not in pull_request_label_names and label != "actionable"
|
|
||||||
]
|
]
|
||||||
if not labels_to_add:
|
if not labels_to_add:
|
||||||
print("The pull request already has the same labels.")
|
print("The pull request already has the same labels.")
|
||||||
|
|||||||
BIN
.github/scripts/drci_mocks.json.gz
vendored
BIN
.github/scripts/drci_mocks.json.gz
vendored
Binary file not shown.
10
.github/scripts/filter_test_configs.py
vendored
10
.github/scripts/filter_test_configs.py
vendored
@ -41,9 +41,9 @@ SUPPORTED_PERIODICAL_MODES: dict[str, Callable[[Optional[str]], bool]] = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
# The link to the published list of disabled jobs
|
# The link to the published list of disabled jobs
|
||||||
DISABLED_JOBS_URL = "https://ossci-metrics.s3.amazonaws.com/disabled-jobs.json"
|
DISABLED_JOBS_URL = "https://ossci-metrics.s3.amazonaws.com/disabled-jobs.json?versionId=hjktHz2WOejHpxKpkqpDknTt5rMTM9KK"
|
||||||
# and unstable jobs
|
# and unstable jobs
|
||||||
UNSTABLE_JOBS_URL = "https://ossci-metrics.s3.amazonaws.com/unstable-jobs.json"
|
UNSTABLE_JOBS_URL = "https://ossci-metrics.s3.amazonaws.com/unstable-jobs.json?versionId=wrjdvvQTJxgvMO.rGw5MEuMsj6XbjuV7"
|
||||||
|
|
||||||
# Some constants used to handle disabled and unstable jobs
|
# Some constants used to handle disabled and unstable jobs
|
||||||
JOB_NAME_SEP = "/"
|
JOB_NAME_SEP = "/"
|
||||||
@ -502,7 +502,6 @@ def perform_misc_tasks(
|
|||||||
job_name: str,
|
job_name: str,
|
||||||
pr_body: str,
|
pr_body: str,
|
||||||
branch: Optional[str] = None,
|
branch: Optional[str] = None,
|
||||||
tag: Optional[str] = None,
|
|
||||||
) -> None:
|
) -> None:
|
||||||
"""
|
"""
|
||||||
In addition to apply the filter logic, the script also does the following
|
In addition to apply the filter logic, the script also does the following
|
||||||
@ -510,9 +509,7 @@ def perform_misc_tasks(
|
|||||||
"""
|
"""
|
||||||
set_output(
|
set_output(
|
||||||
"keep-going",
|
"keep-going",
|
||||||
branch == MAIN_BRANCH
|
branch == MAIN_BRANCH or check_for_setting(labels, pr_body, "keep-going"),
|
||||||
or bool(tag and re.match(r"^trunk/[a-f0-9]{40}$", tag))
|
|
||||||
or check_for_setting(labels, pr_body, "keep-going"),
|
|
||||||
)
|
)
|
||||||
set_output(
|
set_output(
|
||||||
"ci-verbose-test-logs",
|
"ci-verbose-test-logs",
|
||||||
@ -637,7 +634,6 @@ def main() -> None:
|
|||||||
job_name=args.job_name,
|
job_name=args.job_name,
|
||||||
pr_body=pr_body if pr_body else "",
|
pr_body=pr_body if pr_body else "",
|
||||||
branch=args.branch,
|
branch=args.branch,
|
||||||
tag=tag,
|
|
||||||
)
|
)
|
||||||
|
|
||||||
# Set the filtered test matrix as the output
|
# Set the filtered test matrix as the output
|
||||||
|
|||||||
44
.github/scripts/generate_binary_build_matrix.py
vendored
44
.github/scripts/generate_binary_build_matrix.py
vendored
@ -16,21 +16,23 @@ from typing import Optional
|
|||||||
|
|
||||||
|
|
||||||
# NOTE: Please also update the CUDA sources in `PIP_SOURCES` in tools/nightly.py when changing this
|
# NOTE: Please also update the CUDA sources in `PIP_SOURCES` in tools/nightly.py when changing this
|
||||||
CUDA_ARCHES = ["12.6", "12.8", "13.0"]
|
CUDA_ARCHES = ["12.6", "12.8", "12.9", "13.0"]
|
||||||
CUDA_STABLE = "12.8"
|
CUDA_STABLE = "12.8"
|
||||||
CUDA_ARCHES_FULL_VERSION = {
|
CUDA_ARCHES_FULL_VERSION = {
|
||||||
"12.6": "12.6.3",
|
"12.6": "12.6.3",
|
||||||
"12.8": "12.8.1",
|
"12.8": "12.8.1",
|
||||||
|
"12.9": "12.9.1",
|
||||||
"13.0": "13.0.0",
|
"13.0": "13.0.0",
|
||||||
}
|
}
|
||||||
CUDA_ARCHES_CUDNN_VERSION = {
|
CUDA_ARCHES_CUDNN_VERSION = {
|
||||||
"12.6": "9",
|
"12.6": "9",
|
||||||
"12.8": "9",
|
"12.8": "9",
|
||||||
|
"12.9": "9",
|
||||||
"13.0": "9",
|
"13.0": "9",
|
||||||
}
|
}
|
||||||
|
|
||||||
# NOTE: Please also update the ROCm sources in `PIP_SOURCES` in tools/nightly.py when changing this
|
# NOTE: Please also update the ROCm sources in `PIP_SOURCES` in tools/nightly.py when changing this
|
||||||
ROCM_ARCHES = ["6.4", "7.0"]
|
ROCM_ARCHES = ["6.3", "6.4"]
|
||||||
|
|
||||||
XPU_ARCHES = ["xpu"]
|
XPU_ARCHES = ["xpu"]
|
||||||
|
|
||||||
@ -38,7 +40,7 @@ CPU_AARCH64_ARCH = ["cpu-aarch64"]
|
|||||||
|
|
||||||
CPU_S390X_ARCH = ["cpu-s390x"]
|
CPU_S390X_ARCH = ["cpu-s390x"]
|
||||||
|
|
||||||
CUDA_AARCH64_ARCHES = ["12.6-aarch64", "12.8-aarch64", "13.0-aarch64"]
|
CUDA_AARCH64_ARCHES = ["12.6-aarch64", "12.8-aarch64", "12.9-aarch64", "13.0-aarch64"]
|
||||||
|
|
||||||
|
|
||||||
PYTORCH_EXTRA_INSTALL_REQUIREMENTS = {
|
PYTORCH_EXTRA_INSTALL_REQUIREMENTS = {
|
||||||
@ -54,7 +56,7 @@ PYTORCH_EXTRA_INSTALL_REQUIREMENTS = {
|
|||||||
"nvidia-cusparse-cu12==12.5.4.2; platform_system == 'Linux' | "
|
"nvidia-cusparse-cu12==12.5.4.2; platform_system == 'Linux' | "
|
||||||
"nvidia-cusparselt-cu12==0.7.1; platform_system == 'Linux' | "
|
"nvidia-cusparselt-cu12==0.7.1; platform_system == 'Linux' | "
|
||||||
"nvidia-nccl-cu12==2.27.5; platform_system == 'Linux' | "
|
"nvidia-nccl-cu12==2.27.5; platform_system == 'Linux' | "
|
||||||
"nvidia-nvshmem-cu12==3.3.24; platform_system == 'Linux' | "
|
"nvidia-nvshmem-cu12==3.3.20; platform_system == 'Linux' | "
|
||||||
"nvidia-nvtx-cu12==12.6.77; platform_system == 'Linux' | "
|
"nvidia-nvtx-cu12==12.6.77; platform_system == 'Linux' | "
|
||||||
"nvidia-nvjitlink-cu12==12.6.85; platform_system == 'Linux' | "
|
"nvidia-nvjitlink-cu12==12.6.85; platform_system == 'Linux' | "
|
||||||
"nvidia-cufile-cu12==1.11.1.6; platform_system == 'Linux'"
|
"nvidia-cufile-cu12==1.11.1.6; platform_system == 'Linux'"
|
||||||
@ -71,11 +73,28 @@ PYTORCH_EXTRA_INSTALL_REQUIREMENTS = {
|
|||||||
"nvidia-cusparse-cu12==12.5.8.93; platform_system == 'Linux' | "
|
"nvidia-cusparse-cu12==12.5.8.93; platform_system == 'Linux' | "
|
||||||
"nvidia-cusparselt-cu12==0.7.1; platform_system == 'Linux' | "
|
"nvidia-cusparselt-cu12==0.7.1; platform_system == 'Linux' | "
|
||||||
"nvidia-nccl-cu12==2.27.5; platform_system == 'Linux' | "
|
"nvidia-nccl-cu12==2.27.5; platform_system == 'Linux' | "
|
||||||
"nvidia-nvshmem-cu12==3.3.24; platform_system == 'Linux' | "
|
"nvidia-nvshmem-cu12==3.3.20; platform_system == 'Linux' | "
|
||||||
"nvidia-nvtx-cu12==12.8.90; platform_system == 'Linux' | "
|
"nvidia-nvtx-cu12==12.8.90; platform_system == 'Linux' | "
|
||||||
"nvidia-nvjitlink-cu12==12.8.93; platform_system == 'Linux' | "
|
"nvidia-nvjitlink-cu12==12.8.93; platform_system == 'Linux' | "
|
||||||
"nvidia-cufile-cu12==1.13.1.3; platform_system == 'Linux'"
|
"nvidia-cufile-cu12==1.13.1.3; platform_system == 'Linux'"
|
||||||
),
|
),
|
||||||
|
"12.9": (
|
||||||
|
"nvidia-cuda-nvrtc-cu12==12.9.86; platform_system == 'Linux' | "
|
||||||
|
"nvidia-cuda-runtime-cu12==12.9.79; platform_system == 'Linux' | "
|
||||||
|
"nvidia-cuda-cupti-cu12==12.9.79; platform_system == 'Linux' | "
|
||||||
|
"nvidia-cudnn-cu12==9.10.2.21; platform_system == 'Linux' | "
|
||||||
|
"nvidia-cublas-cu12==12.9.1.4; platform_system == 'Linux' | "
|
||||||
|
"nvidia-cufft-cu12==11.4.1.4; platform_system == 'Linux' | "
|
||||||
|
"nvidia-curand-cu12==10.3.10.19; platform_system == 'Linux' | "
|
||||||
|
"nvidia-cusolver-cu12==11.7.5.82; platform_system == 'Linux' | "
|
||||||
|
"nvidia-cusparse-cu12==12.5.10.65; platform_system == 'Linux' | "
|
||||||
|
"nvidia-cusparselt-cu12==0.7.1; platform_system == 'Linux' | "
|
||||||
|
"nvidia-nccl-cu12==2.27.5; platform_system == 'Linux' | "
|
||||||
|
"nvidia-nvshmem-cu12==3.3.20; platform_system == 'Linux' | "
|
||||||
|
"nvidia-nvtx-cu12==12.9.79; platform_system == 'Linux' | "
|
||||||
|
"nvidia-nvjitlink-cu12==12.9.86; platform_system == 'Linux' | "
|
||||||
|
"nvidia-cufile-cu12==1.14.1.1; platform_system == 'Linux'"
|
||||||
|
),
|
||||||
"13.0": (
|
"13.0": (
|
||||||
"nvidia-cuda-nvrtc==13.0.48; platform_system == 'Linux' | "
|
"nvidia-cuda-nvrtc==13.0.48; platform_system == 'Linux' | "
|
||||||
"nvidia-cuda-runtime==13.0.48; platform_system == 'Linux' | "
|
"nvidia-cuda-runtime==13.0.48; platform_system == 'Linux' | "
|
||||||
@ -222,7 +241,11 @@ def generate_libtorch_matrix(
|
|||||||
arches += CUDA_ARCHES
|
arches += CUDA_ARCHES
|
||||||
arches += ROCM_ARCHES
|
arches += ROCM_ARCHES
|
||||||
elif os == "windows":
|
elif os == "windows":
|
||||||
arches += CUDA_ARCHES
|
# TODO (huydhn): Only build CUDA 12.9 for Linux. This logic is to be cleaned up
|
||||||
|
# in 2.10
|
||||||
|
windows_cuda_arches = CUDA_ARCHES.copy()
|
||||||
|
windows_cuda_arches.remove("12.9")
|
||||||
|
arches += windows_cuda_arches
|
||||||
if libtorch_variants is None:
|
if libtorch_variants is None:
|
||||||
libtorch_variants = [
|
libtorch_variants = [
|
||||||
"shared-with-deps",
|
"shared-with-deps",
|
||||||
@ -286,7 +309,11 @@ def generate_wheels_matrix(
|
|||||||
if os == "linux":
|
if os == "linux":
|
||||||
arches += CUDA_ARCHES + ROCM_ARCHES + XPU_ARCHES
|
arches += CUDA_ARCHES + ROCM_ARCHES + XPU_ARCHES
|
||||||
elif os == "windows":
|
elif os == "windows":
|
||||||
arches += CUDA_ARCHES + XPU_ARCHES
|
# TODO (huydhn): Only build CUDA 12.9 for Linux. This logic is to be cleaned up
|
||||||
|
# in 2.10
|
||||||
|
windows_cuda_arches = CUDA_ARCHES.copy()
|
||||||
|
windows_cuda_arches.remove("12.9")
|
||||||
|
arches += windows_cuda_arches + XPU_ARCHES
|
||||||
elif os == "linux-aarch64":
|
elif os == "linux-aarch64":
|
||||||
# Separate new if as the CPU type is different and
|
# Separate new if as the CPU type is different and
|
||||||
# uses different build/test scripts
|
# uses different build/test scripts
|
||||||
@ -322,7 +349,7 @@ def generate_wheels_matrix(
|
|||||||
# cuda linux wheels require PYTORCH_EXTRA_INSTALL_REQUIREMENTS to install
|
# cuda linux wheels require PYTORCH_EXTRA_INSTALL_REQUIREMENTS to install
|
||||||
|
|
||||||
if (
|
if (
|
||||||
arch_version in ["13.0", "12.8", "12.6"]
|
arch_version in ["13.0", "12.9", "12.8", "12.6"]
|
||||||
and os == "linux"
|
and os == "linux"
|
||||||
or arch_version in CUDA_AARCH64_ARCHES
|
or arch_version in CUDA_AARCH64_ARCHES
|
||||||
):
|
):
|
||||||
@ -386,5 +413,6 @@ def generate_wheels_matrix(
|
|||||||
|
|
||||||
|
|
||||||
validate_nccl_dep_consistency("13.0")
|
validate_nccl_dep_consistency("13.0")
|
||||||
|
validate_nccl_dep_consistency("12.9")
|
||||||
validate_nccl_dep_consistency("12.8")
|
validate_nccl_dep_consistency("12.8")
|
||||||
validate_nccl_dep_consistency("12.6")
|
validate_nccl_dep_consistency("12.6")
|
||||||
|
|||||||
93
.github/scripts/generate_ci_workflows.py
vendored
93
.github/scripts/generate_ci_workflows.py
vendored
@ -127,6 +127,53 @@ LINUX_BINARY_BUILD_WORFKLOWS = [
|
|||||||
),
|
),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
ROCM_SMOKE_WORKFLOWS = [
|
||||||
|
BinaryBuildWorkflow(
|
||||||
|
os=OperatingSystem.LINUX,
|
||||||
|
package_type="manywheel",
|
||||||
|
build_variant="rocm",
|
||||||
|
build_configs=generate_binary_build_matrix.generate_wheels_matrix(
|
||||||
|
OperatingSystem.LINUX,
|
||||||
|
arches=["6.4"],
|
||||||
|
python_versions=["3.10"],
|
||||||
|
),
|
||||||
|
ciflow_config=CIFlowConfig(
|
||||||
|
labels={
|
||||||
|
LABEL_CIFLOW_BINARIES,
|
||||||
|
LABEL_CIFLOW_BINARIES_WHEEL,
|
||||||
|
LABEL_CIFLOW_ROCM,
|
||||||
|
},
|
||||||
|
isolated_workflow=True,
|
||||||
|
),
|
||||||
|
branches="main",
|
||||||
|
),
|
||||||
|
]
|
||||||
|
|
||||||
|
LINUX_BINARY_SMOKE_WORKFLOWS = [
|
||||||
|
BinaryBuildWorkflow(
|
||||||
|
os=OperatingSystem.LINUX,
|
||||||
|
package_type="manywheel",
|
||||||
|
build_configs=generate_binary_build_matrix.generate_wheels_matrix(
|
||||||
|
OperatingSystem.LINUX,
|
||||||
|
arches=["12.8"],
|
||||||
|
python_versions=["3.12"],
|
||||||
|
),
|
||||||
|
branches="main",
|
||||||
|
),
|
||||||
|
BinaryBuildWorkflow(
|
||||||
|
os=OperatingSystem.LINUX,
|
||||||
|
package_type="libtorch",
|
||||||
|
build_variant=generate_binary_build_matrix.RELEASE,
|
||||||
|
build_configs=generate_binary_build_matrix.generate_libtorch_matrix(
|
||||||
|
OperatingSystem.LINUX,
|
||||||
|
generate_binary_build_matrix.RELEASE,
|
||||||
|
arches=["cpu"],
|
||||||
|
libtorch_variants=["shared-with-deps"],
|
||||||
|
),
|
||||||
|
branches="main",
|
||||||
|
),
|
||||||
|
]
|
||||||
|
|
||||||
WINDOWS_BINARY_BUILD_WORKFLOWS = [
|
WINDOWS_BINARY_BUILD_WORKFLOWS = [
|
||||||
BinaryBuildWorkflow(
|
BinaryBuildWorkflow(
|
||||||
os=OperatingSystem.WINDOWS,
|
os=OperatingSystem.WINDOWS,
|
||||||
@ -212,6 +259,39 @@ WINDOWS_BINARY_BUILD_WORKFLOWS = [
|
|||||||
),
|
),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
WINDOWS_BINARY_SMOKE_WORKFLOWS = [
|
||||||
|
BinaryBuildWorkflow(
|
||||||
|
os=OperatingSystem.WINDOWS,
|
||||||
|
package_type="libtorch",
|
||||||
|
build_variant=generate_binary_build_matrix.RELEASE,
|
||||||
|
build_configs=generate_binary_build_matrix.generate_libtorch_matrix(
|
||||||
|
OperatingSystem.WINDOWS,
|
||||||
|
generate_binary_build_matrix.RELEASE,
|
||||||
|
arches=["cpu"],
|
||||||
|
libtorch_variants=["shared-with-deps"],
|
||||||
|
),
|
||||||
|
branches="main",
|
||||||
|
ciflow_config=CIFlowConfig(
|
||||||
|
isolated_workflow=True,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
BinaryBuildWorkflow(
|
||||||
|
os=OperatingSystem.WINDOWS,
|
||||||
|
package_type="libtorch",
|
||||||
|
build_variant=generate_binary_build_matrix.DEBUG,
|
||||||
|
build_configs=generate_binary_build_matrix.generate_libtorch_matrix(
|
||||||
|
OperatingSystem.WINDOWS,
|
||||||
|
generate_binary_build_matrix.DEBUG,
|
||||||
|
arches=["cpu"],
|
||||||
|
libtorch_variants=["shared-with-deps"],
|
||||||
|
),
|
||||||
|
branches="main",
|
||||||
|
ciflow_config=CIFlowConfig(
|
||||||
|
isolated_workflow=True,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
]
|
||||||
|
|
||||||
MACOS_BINARY_BUILD_WORKFLOWS = [
|
MACOS_BINARY_BUILD_WORKFLOWS = [
|
||||||
BinaryBuildWorkflow(
|
BinaryBuildWorkflow(
|
||||||
os=OperatingSystem.MACOS_ARM64,
|
os=OperatingSystem.MACOS_ARM64,
|
||||||
@ -292,10 +372,23 @@ def main() -> None:
|
|||||||
jinja_env.get_template("linux_binary_build_workflow.yml.j2"),
|
jinja_env.get_template("linux_binary_build_workflow.yml.j2"),
|
||||||
S390X_BINARY_BUILD_WORKFLOWS,
|
S390X_BINARY_BUILD_WORKFLOWS,
|
||||||
),
|
),
|
||||||
|
(
|
||||||
|
# Give rocm it's own workflow file
|
||||||
|
jinja_env.get_template("linux_binary_build_workflow.yml.j2"),
|
||||||
|
ROCM_SMOKE_WORKFLOWS,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
jinja_env.get_template("linux_binary_build_workflow.yml.j2"),
|
||||||
|
LINUX_BINARY_SMOKE_WORKFLOWS,
|
||||||
|
),
|
||||||
(
|
(
|
||||||
jinja_env.get_template("windows_binary_build_workflow.yml.j2"),
|
jinja_env.get_template("windows_binary_build_workflow.yml.j2"),
|
||||||
WINDOWS_BINARY_BUILD_WORKFLOWS,
|
WINDOWS_BINARY_BUILD_WORKFLOWS,
|
||||||
),
|
),
|
||||||
|
(
|
||||||
|
jinja_env.get_template("windows_binary_build_workflow.yml.j2"),
|
||||||
|
WINDOWS_BINARY_SMOKE_WORKFLOWS,
|
||||||
|
),
|
||||||
(
|
(
|
||||||
jinja_env.get_template("macos_binary_build_workflow.yml.j2"),
|
jinja_env.get_template("macos_binary_build_workflow.yml.j2"),
|
||||||
MACOS_BINARY_BUILD_WORKFLOWS,
|
MACOS_BINARY_BUILD_WORKFLOWS,
|
||||||
|
|||||||
1
.github/scripts/github_utils.py
vendored
1
.github/scripts/github_utils.py
vendored
@ -18,7 +18,6 @@ class GitHubComment:
|
|||||||
body_text: str
|
body_text: str
|
||||||
created_at: str
|
created_at: str
|
||||||
author_login: str
|
author_login: str
|
||||||
author_url: Optional[str]
|
|
||||||
author_association: str
|
author_association: str
|
||||||
editor_login: Optional[str]
|
editor_login: Optional[str]
|
||||||
database_id: int
|
database_id: int
|
||||||
|
|||||||
BIN
.github/scripts/gql_mocks.json.gz
vendored
BIN
.github/scripts/gql_mocks.json.gz
vendored
Binary file not shown.
94
.github/scripts/prepare_vllm_wheels.sh
vendored
94
.github/scripts/prepare_vllm_wheels.sh
vendored
@ -1,94 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
set -eux
|
|
||||||
|
|
||||||
torch_version=$(unzip -p torch-* '**/METADATA' | grep '^Version: ' | cut -d' ' -f2)
|
|
||||||
nightly=$(echo ${torch_version} | cut -d'.' -f4)
|
|
||||||
|
|
||||||
# Copied from .ci/manywheel/build_common.sh
|
|
||||||
make_wheel_record() {
|
|
||||||
fpath=$1
|
|
||||||
if echo $fpath | grep RECORD >/dev/null 2>&1; then
|
|
||||||
echo "$fpath,,"
|
|
||||||
else
|
|
||||||
fhash=$(openssl dgst -sha256 -binary $fpath | openssl base64 | sed -e 's/+/-/g' | sed -e 's/\//_/g' | sed -e 's/=//g')
|
|
||||||
fsize=$(ls -nl $fpath | awk '{print $5}')
|
|
||||||
echo "$fpath,sha256=$fhash,$fsize"
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
change_wheel_version() {
|
|
||||||
local package=$1
|
|
||||||
local wheel=$2
|
|
||||||
local f_version=$3
|
|
||||||
local t_version=$4
|
|
||||||
|
|
||||||
# Extract the wheel
|
|
||||||
${PYTHON_EXECUTABLE} -mwheel unpack $wheel
|
|
||||||
|
|
||||||
mv "${package}-${f_version}" "${package}-${t_version}"
|
|
||||||
# Change the version from f_version to t_version in the dist-info dir
|
|
||||||
pushd "${package}-${t_version}"
|
|
||||||
mv "${package}-${f_version}.dist-info" "${package}-${t_version}.dist-info"
|
|
||||||
|
|
||||||
pushd "${package}-${t_version}.dist-info"
|
|
||||||
sed -i "s/${package}-${f_version}.dist-info/${package}-${t_version}.dist-info/g" RECORD
|
|
||||||
|
|
||||||
# Update the version in METADATA and its SHA256 hash
|
|
||||||
sed -i "s/Version: ${f_version}/Version: ${t_version}/g" METADATA
|
|
||||||
# then add PyTorch nightly dependency of vLLM
|
|
||||||
if [[ "${package}" == vllm ]] || [[ "${package}" == xformers ]]; then
|
|
||||||
sed -i "/License-File/a\Requires-Dist: torch==${torch_version}" METADATA
|
|
||||||
fi
|
|
||||||
sed -i '/METADATA,sha256/d' RECORD
|
|
||||||
popd
|
|
||||||
|
|
||||||
make_wheel_record "${package}-${t_version}.dist-info/METADATA" >> "${package}-${t_version}.dist-info/RECORD"
|
|
||||||
popd
|
|
||||||
|
|
||||||
# Repack the wheel
|
|
||||||
${PYTHON_EXECUTABLE} -mwheel pack "${package}-${t_version}"
|
|
||||||
|
|
||||||
# Clean up
|
|
||||||
rm -rf "${package}-${t_version}"
|
|
||||||
}
|
|
||||||
|
|
||||||
repackage_wheel() {
|
|
||||||
local package=$1
|
|
||||||
pushd $package
|
|
||||||
|
|
||||||
local orig_wheel=$(find . -name *${package//-/_}*)
|
|
||||||
local orig_version=$(unzip -p $orig_wheel '**/METADATA' | grep '^Version: ' | cut -d' ' -f2)
|
|
||||||
|
|
||||||
local version=""
|
|
||||||
if [[ "${package}" == vllm ]]; then
|
|
||||||
# Copied from vllm/.buildkite/scripts/upload-wheels.sh
|
|
||||||
version=1.0.0
|
|
||||||
else
|
|
||||||
version=$(echo $orig_version | tr '.+' '.' | cut -d'.' -f1-3)
|
|
||||||
fi
|
|
||||||
local nightly_version=$version.$nightly
|
|
||||||
|
|
||||||
# Use nightly version
|
|
||||||
change_wheel_version ${package//-/_} $orig_wheel $orig_version $nightly_version
|
|
||||||
# Clean up
|
|
||||||
rm "${orig_wheel}"
|
|
||||||
|
|
||||||
auditwheel repair --plat $PLATFORM *.whl \
|
|
||||||
--exclude libc10* --exclude libtorch* --exclude libcu* --exclude libnv*
|
|
||||||
local repair_wheel=$(find wheelhouse -name *${PLATFORM}*)
|
|
||||||
local repair_wheel=$(basename ${repair_wheel})
|
|
||||||
popd
|
|
||||||
|
|
||||||
cp ${package}/wheelhouse/${repair_wheel} .
|
|
||||||
rm -rf $package
|
|
||||||
}
|
|
||||||
|
|
||||||
# Require to re-package the wheel
|
|
||||||
${PYTHON_EXECUTABLE} -mpip install wheel==0.45.1
|
|
||||||
|
|
||||||
pushd externals/vllm/wheels
|
|
||||||
for package in xformers flashinfer-python vllm; do
|
|
||||||
repackage_wheel $package
|
|
||||||
done
|
|
||||||
popd
|
|
||||||
2
.github/scripts/test_check_labels.py
vendored
2
.github/scripts/test_check_labels.py
vendored
@ -38,7 +38,6 @@ def mock_get_comments() -> list[GitHubComment]:
|
|||||||
body_text="mock_body_text",
|
body_text="mock_body_text",
|
||||||
created_at="",
|
created_at="",
|
||||||
author_login="",
|
author_login="",
|
||||||
author_url=None,
|
|
||||||
author_association="",
|
author_association="",
|
||||||
editor_login=None,
|
editor_login=None,
|
||||||
database_id=1,
|
database_id=1,
|
||||||
@ -49,7 +48,6 @@ def mock_get_comments() -> list[GitHubComment]:
|
|||||||
body_text=" #" + LABEL_ERR_MSG_TITLE.replace("`", ""),
|
body_text=" #" + LABEL_ERR_MSG_TITLE.replace("`", ""),
|
||||||
created_at="",
|
created_at="",
|
||||||
author_login=BOT_AUTHORS[1],
|
author_login=BOT_AUTHORS[1],
|
||||||
author_url=None,
|
|
||||||
author_association="",
|
author_association="",
|
||||||
editor_login=None,
|
editor_login=None,
|
||||||
database_id=2,
|
database_id=2,
|
||||||
|
|||||||
18
.github/scripts/test_trymerge.py
vendored
18
.github/scripts/test_trymerge.py
vendored
@ -32,7 +32,6 @@ from trymerge import (
|
|||||||
main as trymerge_main,
|
main as trymerge_main,
|
||||||
MandatoryChecksMissingError,
|
MandatoryChecksMissingError,
|
||||||
MergeRule,
|
MergeRule,
|
||||||
PostCommentError,
|
|
||||||
RE_GHSTACK_DESC,
|
RE_GHSTACK_DESC,
|
||||||
read_merge_rules,
|
read_merge_rules,
|
||||||
remove_job_name_suffix,
|
remove_job_name_suffix,
|
||||||
@ -589,23 +588,6 @@ class TestTryMerge(TestCase):
|
|||||||
self.assertEqual(mock_merge_base, pr.get_merge_base())
|
self.assertEqual(mock_merge_base, pr.get_merge_base())
|
||||||
mocked_gh_fetch_merge_base.assert_called_once()
|
mocked_gh_fetch_merge_base.assert_called_once()
|
||||||
|
|
||||||
def test_app_can_revert(self, *args: Any) -> None:
|
|
||||||
pr = GitHubPR("pytorch", "pytorch", 164660)
|
|
||||||
repo = DummyGitRepo()
|
|
||||||
app_comment_id, impostor_comment_id = 3375785595, 3377647892
|
|
||||||
# Check that app can revert
|
|
||||||
self.assertIsNotNone(validate_revert(repo, pr, comment_id=app_comment_id))
|
|
||||||
# But impostor can not
|
|
||||||
self.assertRaises(
|
|
||||||
PostCommentError,
|
|
||||||
lambda: validate_revert(repo, pr, comment_id=impostor_comment_id),
|
|
||||||
)
|
|
||||||
# Despite it's name being the name of the bot
|
|
||||||
self.assertEqual(
|
|
||||||
pr.get_comment_by_id(impostor_comment_id).author_login,
|
|
||||||
"pytorch-auto-revert",
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
@mock.patch("trymerge.gh_graphql", side_effect=mocked_gh_graphql)
|
@mock.patch("trymerge.gh_graphql", side_effect=mocked_gh_graphql)
|
||||||
@mock.patch("trymerge.gh_fetch_merge_base", return_value="")
|
@mock.patch("trymerge.gh_fetch_merge_base", return_value="")
|
||||||
|
|||||||
7
.github/scripts/trymerge.py
vendored
7
.github/scripts/trymerge.py
vendored
@ -234,7 +234,6 @@ query ($owner: String!, $name: String!, $number: Int!) {
|
|||||||
createdAt
|
createdAt
|
||||||
author {
|
author {
|
||||||
login
|
login
|
||||||
url
|
|
||||||
}
|
}
|
||||||
authorAssociation
|
authorAssociation
|
||||||
editor {
|
editor {
|
||||||
@ -1094,7 +1093,6 @@ class GitHubPR:
|
|||||||
body_text=node["bodyText"],
|
body_text=node["bodyText"],
|
||||||
created_at=node["createdAt"] if "createdAt" in node else "",
|
created_at=node["createdAt"] if "createdAt" in node else "",
|
||||||
author_login=node["author"]["login"],
|
author_login=node["author"]["login"],
|
||||||
author_url=node["author"].get("url", None),
|
|
||||||
author_association=node["authorAssociation"],
|
author_association=node["authorAssociation"],
|
||||||
editor_login=editor["login"] if editor else None,
|
editor_login=editor["login"] if editor else None,
|
||||||
database_id=node["databaseId"],
|
database_id=node["databaseId"],
|
||||||
@ -2031,11 +2029,6 @@ def validate_revert(
|
|||||||
# For some reason, one can not be a member of private repo, only CONTRIBUTOR
|
# For some reason, one can not be a member of private repo, only CONTRIBUTOR
|
||||||
if pr.is_base_repo_private():
|
if pr.is_base_repo_private():
|
||||||
allowed_reverters.append("CONTRIBUTOR")
|
allowed_reverters.append("CONTRIBUTOR")
|
||||||
# Special case the pytorch-auto-revert app, whose does not have association
|
|
||||||
# But should be able to issue revert command
|
|
||||||
if comment.author_url == "https://github.com/apps/pytorch-auto-revert":
|
|
||||||
allowed_reverters.append("NONE")
|
|
||||||
|
|
||||||
if author_association not in allowed_reverters:
|
if author_association not in allowed_reverters:
|
||||||
raise PostCommentError(
|
raise PostCommentError(
|
||||||
f"Will not revert as @{author_login} is not one of "
|
f"Will not revert as @{author_login} is not one of "
|
||||||
|
|||||||
2
.github/templates/common.yml.j2
vendored
2
.github/templates/common.yml.j2
vendored
@ -32,7 +32,7 @@ concurrency:
|
|||||||
{%- macro setup_ec2_windows() -%}
|
{%- macro setup_ec2_windows() -%}
|
||||||
!{{ display_ec2_information() }}
|
!{{ display_ec2_information() }}
|
||||||
- name: "[FB EMPLOYEES] Enable SSH (Click me for login details)"
|
- name: "[FB EMPLOYEES] Enable SSH (Click me for login details)"
|
||||||
uses: pytorch/test-infra/.github/actions/setup-ssh@main
|
uses: pytorch/test-infra/.github/actions/setup-ssh@release/2.9
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
with:
|
with:
|
||||||
github-secret: ${{ secrets.GITHUB_TOKEN }}
|
github-secret: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|||||||
@ -56,7 +56,7 @@ jobs:
|
|||||||
get-label-type:
|
get-label-type:
|
||||||
if: github.repository_owner == 'pytorch'
|
if: github.repository_owner == 'pytorch'
|
||||||
name: get-label-type
|
name: get-label-type
|
||||||
uses: pytorch/pytorch/.github/workflows/_runner-determinator.yml@main
|
uses: pytorch/pytorch/.github/workflows/_runner-determinator.yml@release/2.9
|
||||||
with:
|
with:
|
||||||
triggering_actor: ${{ github.triggering_actor }}
|
triggering_actor: ${{ github.triggering_actor }}
|
||||||
issue_owner: ${{ github.event.pull_request.user.login || github.event.issue.user.login }}
|
issue_owner: ${{ github.event.pull_request.user.login || github.event.issue.user.login }}
|
||||||
@ -71,7 +71,7 @@ jobs:
|
|||||||
with:!{{ upload.binary_env_as_input(config) }}
|
with:!{{ upload.binary_env_as_input(config) }}
|
||||||
{%- if "aarch64" in build_environment %}
|
{%- if "aarch64" in build_environment %}
|
||||||
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}"
|
||||||
runs_on: linux.arm64.r7g.12xlarge.memory
|
runs_on: linux.arm64.m7g.4xlarge.ephemeral
|
||||||
ALPINE_IMAGE: "arm64v8/alpine"
|
ALPINE_IMAGE: "arm64v8/alpine"
|
||||||
{%- elif "s390x" in build_environment %}
|
{%- elif "s390x" in build_environment %}
|
||||||
runs_on: linux.s390x
|
runs_on: linux.s390x
|
||||||
@ -138,7 +138,7 @@ jobs:
|
|||||||
contents: read
|
contents: read
|
||||||
steps:
|
steps:
|
||||||
- name: Setup XPU
|
- name: Setup XPU
|
||||||
uses: pytorch/pytorch/.github/actions/setup-xpu@main
|
uses: pytorch/pytorch/.github/actions/setup-xpu@release/2.9
|
||||||
- name: configure aws credentials
|
- name: configure aws credentials
|
||||||
id: aws_creds
|
id: aws_creds
|
||||||
uses: aws-actions/configure-aws-credentials@v4
|
uses: aws-actions/configure-aws-credentials@v4
|
||||||
@ -153,10 +153,10 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: !{{ config["build_name"] }}
|
name: !{{ config["build_name"] }}
|
||||||
path: "${{ runner.temp }}/artifacts/"
|
path: "${{ runner.temp }}/artifacts/"
|
||||||
!{{ common.checkout(deep_clone=False, directory="pytorch") }}
|
!{{ common.checkout(deep_clone=False, directory="pytorch", checkout_pr_head=False) }}
|
||||||
- name: Calculate docker image
|
- name: Calculate docker image
|
||||||
id: calculate-docker-image
|
id: calculate-docker-image
|
||||||
uses: pytorch/test-infra/.github/actions/calculate-docker-image@main
|
uses: pytorch/test-infra/.github/actions/calculate-docker-image@release/2.9
|
||||||
with:
|
with:
|
||||||
docker-registry: ${{ startsWith(github.event.ref, 'refs/tags/ciflow/') && '308535385114.dkr.ecr.us-east-1.amazonaws.com' || 'docker.io' }}
|
docker-registry: ${{ startsWith(github.event.ref, 'refs/tags/ciflow/') && '308535385114.dkr.ecr.us-east-1.amazonaws.com' || 'docker.io' }}
|
||||||
docker-image-name: !{{ config["container_image"] }}
|
docker-image-name: !{{ config["container_image"] }}
|
||||||
@ -164,7 +164,7 @@ jobs:
|
|||||||
docker-build-dir: .ci/docker
|
docker-build-dir: .ci/docker
|
||||||
working-directory: pytorch
|
working-directory: pytorch
|
||||||
- name: Pull Docker image
|
- name: Pull Docker image
|
||||||
uses: pytorch/test-infra/.github/actions/pull-docker-image@main
|
uses: pytorch/test-infra/.github/actions/pull-docker-image@release/2.9
|
||||||
with:
|
with:
|
||||||
docker-image: ${{ steps.calculate-docker-image.outputs.docker-image }}
|
docker-image: ${{ steps.calculate-docker-image.outputs.docker-image }}
|
||||||
- name: Test Pytorch binary
|
- name: Test Pytorch binary
|
||||||
@ -177,9 +177,6 @@ jobs:
|
|||||||
runs-on: linux.rocm.gpu.mi250
|
runs-on: linux.rocm.gpu.mi250
|
||||||
timeout-minutes: !{{ common.timeout_minutes }}
|
timeout-minutes: !{{ common.timeout_minutes }}
|
||||||
!{{ upload.binary_env(config) }}
|
!{{ upload.binary_env(config) }}
|
||||||
permissions:
|
|
||||||
id-token: write
|
|
||||||
contents: read
|
|
||||||
steps:
|
steps:
|
||||||
- name: Setup ROCm
|
- name: Setup ROCm
|
||||||
uses: ./.github/actions/setup-rocm
|
uses: ./.github/actions/setup-rocm
|
||||||
@ -188,7 +185,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: !{{ config["build_name"] }}
|
name: !{{ config["build_name"] }}
|
||||||
path: "${{ runner.temp }}/artifacts/"
|
path: "${{ runner.temp }}/artifacts/"
|
||||||
!{{ common.checkout(deep_clone=False, directory="pytorch") }}
|
!{{ common.checkout(deep_clone=False, directory="pytorch", checkout_pr_head=False) }}
|
||||||
- name: ROCm set GPU_FLAG
|
- name: ROCm set GPU_FLAG
|
||||||
run: |
|
run: |
|
||||||
echo "GPU_FLAG=--device=/dev/mem --device=/dev/kfd --device=/dev/dri --group-add video --group-add daemon" >> "${GITHUB_ENV}"
|
echo "GPU_FLAG=--device=/dev/mem --device=/dev/kfd --device=/dev/dri --group-add video --group-add daemon" >> "${GITHUB_ENV}"
|
||||||
@ -202,7 +199,7 @@ jobs:
|
|||||||
role-duration-seconds: 18000
|
role-duration-seconds: 18000
|
||||||
- name: Calculate docker image
|
- name: Calculate docker image
|
||||||
id: calculate-docker-image
|
id: calculate-docker-image
|
||||||
uses: pytorch/test-infra/.github/actions/calculate-docker-image@main
|
uses: pytorch/test-infra/.github/actions/calculate-docker-image@release/2.9
|
||||||
with:
|
with:
|
||||||
docker-registry: ${{ startsWith(github.event.ref, 'refs/tags/ciflow/') && '308535385114.dkr.ecr.us-east-1.amazonaws.com' || 'docker.io' }}
|
docker-registry: ${{ startsWith(github.event.ref, 'refs/tags/ciflow/') && '308535385114.dkr.ecr.us-east-1.amazonaws.com' || 'docker.io' }}
|
||||||
docker-image-name: !{{ config["container_image"] }}
|
docker-image-name: !{{ config["container_image"] }}
|
||||||
@ -210,7 +207,7 @@ jobs:
|
|||||||
docker-build-dir: .ci/docker
|
docker-build-dir: .ci/docker
|
||||||
working-directory: pytorch
|
working-directory: pytorch
|
||||||
- name: Pull Docker image
|
- name: Pull Docker image
|
||||||
uses: pytorch/test-infra/.github/actions/pull-docker-image@main
|
uses: pytorch/test-infra/.github/actions/pull-docker-image@release/2.9
|
||||||
with:
|
with:
|
||||||
docker-image: ${{ steps.calculate-docker-image.outputs.docker-image }}
|
docker-image: ${{ steps.calculate-docker-image.outputs.docker-image }}
|
||||||
- name: Test Pytorch binary
|
- name: Test Pytorch binary
|
||||||
|
|||||||
@ -22,16 +22,6 @@ name: !{{ build_environment }}
|
|||||||
echo "MAC_PACKAGE_WORK_DIR=${RUNNER_TEMP}" >> "${GITHUB_ENV}"
|
echo "MAC_PACKAGE_WORK_DIR=${RUNNER_TEMP}" >> "${GITHUB_ENV}"
|
||||||
{%- endmacro %}
|
{%- endmacro %}
|
||||||
|
|
||||||
{%- macro setup_python(py_ver) -%}
|
|
||||||
- name: Setup Python
|
|
||||||
uses: actions/setup-python@v6
|
|
||||||
with:
|
|
||||||
# TODO: Removeme once 3.14 is out
|
|
||||||
# .4 version is min minor for 3.10, and also no-gil version of 3.13 needs at least 3.13.3
|
|
||||||
python-version: "!{{ (py_ver.strip('t') + '.4') if '3.14' not in py_ver else '3.14.0-rc.2' }}"
|
|
||||||
freethreaded: !{{ "true" if py_ver.endswith('t') else "false" }}
|
|
||||||
{%- endmacro %}
|
|
||||||
|
|
||||||
on:
|
on:
|
||||||
# TODO: Migrate to new ciflow trigger, reference https://github.com/pytorch/pytorch/pull/70321
|
# TODO: Migrate to new ciflow trigger, reference https://github.com/pytorch/pytorch/pull/70321
|
||||||
push:
|
push:
|
||||||
@ -71,13 +61,23 @@ jobs:
|
|||||||
{%- endif %}
|
{%- endif %}
|
||||||
steps:
|
steps:
|
||||||
!{{ set_runner_specific_vars() }}
|
!{{ set_runner_specific_vars() }}
|
||||||
!{{ setup_python(config.get("python_version", "3.10")) }}
|
- name: Install conda and dependencies
|
||||||
!{{ common.checkout(deep_clone=False, directory="pytorch") }}
|
run: |
|
||||||
|
# Install conda, setup-miniconda messes with the path that messes with the ruby stuff we do later on
|
||||||
|
curl --retry 3 --retry-all-errors -o "${RUNNER_TEMP}/conda.sh" "https://repo.anaconda.com/miniconda/Miniconda3-py310_23.5.2-0-MacOSX-$(uname -m).sh"
|
||||||
|
chmod +x "${RUNNER_TEMP}/conda.sh"
|
||||||
|
/bin/bash "${RUNNER_TEMP}/conda.sh" -b -p "${RUNNER_TEMP}/anaconda"
|
||||||
|
echo "${RUNNER_TEMP}/anaconda/bin" >> "${GITHUB_PATH}"
|
||||||
|
!{{ common.checkout(deep_clone=False, directory="pytorch", checkout_pr_head=False) }}
|
||||||
- name: Populate binary env
|
- name: Populate binary env
|
||||||
run: |
|
run: |
|
||||||
|
# shellcheck disable=SC1091
|
||||||
|
source "${RUNNER_TEMP}/anaconda/bin/activate"
|
||||||
"${PYTORCH_ROOT}/.circleci/scripts/binary_populate_env.sh"
|
"${PYTORCH_ROOT}/.circleci/scripts/binary_populate_env.sh"
|
||||||
- name: Build PyTorch binary
|
- name: Build PyTorch binary
|
||||||
run: |
|
run: |
|
||||||
|
# shellcheck disable=SC1091
|
||||||
|
source "${RUNNER_TEMP}/anaconda/bin/activate"
|
||||||
set -eux -o pipefail
|
set -eux -o pipefail
|
||||||
# shellcheck disable=SC1090
|
# shellcheck disable=SC1090
|
||||||
source "${BINARY_ENV_FILE:-/Users/distiller/project/env}"
|
source "${BINARY_ENV_FILE:-/Users/distiller/project/env}"
|
||||||
@ -94,6 +94,8 @@ jobs:
|
|||||||
{%- if config["package_type"] == "wheel" %}
|
{%- if config["package_type"] == "wheel" %}
|
||||||
- name: Test PyTorch wheel
|
- name: Test PyTorch wheel
|
||||||
run: |
|
run: |
|
||||||
|
# shellcheck disable=SC1091
|
||||||
|
source "${RUNNER_TEMP}/anaconda/bin/activate"
|
||||||
set -eux -o pipefail
|
set -eux -o pipefail
|
||||||
# shellcheck disable=SC1090
|
# shellcheck disable=SC1090
|
||||||
source "${BINARY_ENV_FILE:-/Users/distiller/project/env}"
|
source "${BINARY_ENV_FILE:-/Users/distiller/project/env}"
|
||||||
@ -104,9 +106,33 @@ jobs:
|
|||||||
|
|
||||||
SMOKE_TEST_PARAMS=""
|
SMOKE_TEST_PARAMS=""
|
||||||
|
|
||||||
|
EXTRA_CONDA_INSTALL_FLAGS=""
|
||||||
|
CONDA_ENV_CREATE_FLAGS=""
|
||||||
|
# shellcheck disable=SC2153
|
||||||
|
case $DESIRED_PYTHON in
|
||||||
|
3.14t)
|
||||||
|
CONDA_ENV_CREATE_FLAGS="python-freethreading"
|
||||||
|
EXTRA_CONDA_INSTALL_FLAGS="-c conda-forge/label/python_rc -c conda-forge"
|
||||||
|
desired_python="3.14.0rc1"
|
||||||
|
;;
|
||||||
|
3.14)
|
||||||
|
EXTRA_CONDA_INSTALL_FLAGS="-c conda-forge/label/python_rc -c conda-forge"
|
||||||
|
desired_python="3.14.0rc1"
|
||||||
|
;;
|
||||||
|
3.13t)
|
||||||
|
CONDA_ENV_CREATE_FLAGS="python-freethreading"
|
||||||
|
EXTRA_CONDA_INSTALL_FLAGS="-c conda-forge"
|
||||||
|
desired_python="3.13"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
# shellcheck disable=SC2153
|
||||||
|
desired_python=${DESIRED_PYTHON}
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
# shellcheck disable=SC2086
|
# shellcheck disable=SC2086
|
||||||
python -mvenv test_venv
|
conda create -yn "test_conda_env" python="$desired_python" ${CONDA_ENV_CREATE_FLAGS} ${EXTRA_CONDA_INSTALL_FLAGS}
|
||||||
source test_venv/bin/activate
|
conda activate test_conda_env
|
||||||
pip install "$PYTORCH_FINAL_PACKAGE_DIR"/*.whl numpy -v
|
pip install "$PYTORCH_FINAL_PACKAGE_DIR"/*.whl numpy -v
|
||||||
|
|
||||||
# shellcheck disable=SC2086
|
# shellcheck disable=SC2086
|
||||||
|
|||||||
@ -64,7 +64,7 @@ jobs:
|
|||||||
get-label-type:
|
get-label-type:
|
||||||
if: github.repository_owner == 'pytorch'
|
if: github.repository_owner == 'pytorch'
|
||||||
name: get-label-type
|
name: get-label-type
|
||||||
uses: pytorch/pytorch/.github/workflows/_runner-determinator.yml@main
|
uses: pytorch/pytorch/.github/workflows/_runner-determinator.yml@release/2.9
|
||||||
with:
|
with:
|
||||||
triggering_actor: ${{ github.triggering_actor }}
|
triggering_actor: ${{ github.triggering_actor }}
|
||||||
issue_owner: ${{ github.event.pull_request.user.login || github.event.issue.user.login }}
|
issue_owner: ${{ github.event.pull_request.user.login || github.event.issue.user.login }}
|
||||||
@ -135,7 +135,7 @@ jobs:
|
|||||||
{%- else %}
|
{%- else %}
|
||||||
!{{ set_runner_specific_vars() }}
|
!{{ set_runner_specific_vars() }}
|
||||||
!{{ common.setup_ec2_windows() }}
|
!{{ common.setup_ec2_windows() }}
|
||||||
!{{ common.checkout(deep_clone=False, directory="pytorch") }}
|
!{{ common.checkout(deep_clone=False, directory="pytorch", checkout_pr_head=False) }}
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
- name: Populate binary env
|
- name: Populate binary env
|
||||||
shell: bash
|
shell: bash
|
||||||
@ -211,7 +211,7 @@ jobs:
|
|||||||
"pytorch/.ci/pytorch/windows/arm64/bootstrap_rust.bat"
|
"pytorch/.ci/pytorch/windows/arm64/bootstrap_rust.bat"
|
||||||
{%- else %}
|
{%- else %}
|
||||||
!{{ common.setup_ec2_windows() }}
|
!{{ common.setup_ec2_windows() }}
|
||||||
!{{ common.checkout(deep_clone=False, directory="pytorch") }}
|
!{{ common.checkout(deep_clone=False, directory="pytorch", checkout_pr_head=False) }}
|
||||||
!{{ set_runner_specific_vars() }}
|
!{{ set_runner_specific_vars() }}
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
- uses: !{{ common.download_artifact_action }}
|
- uses: !{{ common.download_artifact_action }}
|
||||||
|
|||||||
14
.github/workflows/_bazel-build-test.yml
vendored
14
.github/workflows/_bazel-build-test.yml
vendored
@ -47,7 +47,7 @@ jobs:
|
|||||||
reenabled-issues: ${{ steps.filter.outputs.reenabled-issues }}
|
reenabled-issues: ${{ steps.filter.outputs.reenabled-issues }}
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: pytorch/pytorch/.github/actions/checkout-pytorch@main
|
uses: pytorch/pytorch/.github/actions/checkout-pytorch@release/2.9
|
||||||
with:
|
with:
|
||||||
fetch-depth: 1
|
fetch-depth: 1
|
||||||
submodules: false
|
submodules: false
|
||||||
@ -69,25 +69,25 @@ jobs:
|
|||||||
runs-on: ${{ matrix.runner }}
|
runs-on: ${{ matrix.runner }}
|
||||||
steps:
|
steps:
|
||||||
- name: Setup SSH (Click me for login details)
|
- name: Setup SSH (Click me for login details)
|
||||||
uses: pytorch/test-infra/.github/actions/setup-ssh@main
|
uses: pytorch/test-infra/.github/actions/setup-ssh@release/2.9
|
||||||
with:
|
with:
|
||||||
github-secret: ${{ secrets.GITHUB_TOKEN }}
|
github-secret: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
# [see note: pytorch repo ref]
|
# [see note: pytorch repo ref]
|
||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: pytorch/pytorch/.github/actions/checkout-pytorch@main
|
uses: pytorch/pytorch/.github/actions/checkout-pytorch@release/2.9
|
||||||
|
|
||||||
- name: Setup Linux
|
- name: Setup Linux
|
||||||
uses: ./.github/actions/setup-linux
|
uses: ./.github/actions/setup-linux
|
||||||
|
|
||||||
- name: Calculate docker image
|
- name: Calculate docker image
|
||||||
id: calculate-docker-image
|
id: calculate-docker-image
|
||||||
uses: pytorch/test-infra/.github/actions/calculate-docker-image@main
|
uses: pytorch/test-infra/.github/actions/calculate-docker-image@release/2.9
|
||||||
with:
|
with:
|
||||||
docker-image-name: ${{ inputs.docker-image-name }}
|
docker-image-name: ${{ inputs.docker-image-name }}
|
||||||
|
|
||||||
- name: Pull docker image
|
- name: Pull docker image
|
||||||
uses: pytorch/test-infra/.github/actions/pull-docker-image@main
|
uses: pytorch/test-infra/.github/actions/pull-docker-image@release/2.9
|
||||||
with:
|
with:
|
||||||
docker-image: ${{ steps.calculate-docker-image.outputs.docker-image }}
|
docker-image: ${{ steps.calculate-docker-image.outputs.docker-image }}
|
||||||
|
|
||||||
@ -97,7 +97,7 @@ jobs:
|
|||||||
run: echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT"
|
run: echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT"
|
||||||
|
|
||||||
- name: Install nvidia driver, nvidia-docker runtime, set GPU_FLAG
|
- name: Install nvidia driver, nvidia-docker runtime, set GPU_FLAG
|
||||||
uses: pytorch/test-infra/.github/actions/setup-nvidia@main
|
uses: pytorch/test-infra/.github/actions/setup-nvidia@release/2.9
|
||||||
if: ${{ inputs.cuda-version != 'cpu' && steps.check_container_runner.outputs.IN_CONTAINER_RUNNER == 'false' }}
|
if: ${{ inputs.cuda-version != 'cpu' && steps.check_container_runner.outputs.IN_CONTAINER_RUNNER == 'false' }}
|
||||||
|
|
||||||
- name: Output disk space left
|
- name: Output disk space left
|
||||||
@ -209,5 +209,5 @@ jobs:
|
|||||||
file-suffix: bazel-${{ github.job }}_${{ steps.get-job-id.outputs.job-id }}
|
file-suffix: bazel-${{ github.job }}_${{ steps.get-job-id.outputs.job-id }}
|
||||||
|
|
||||||
- name: Teardown Linux
|
- name: Teardown Linux
|
||||||
uses: pytorch/test-infra/.github/actions/teardown-linux@main
|
uses: pytorch/test-infra/.github/actions/teardown-linux@release/2.9
|
||||||
if: always()
|
if: always()
|
||||||
|
|||||||
13
.github/workflows/_binary-build-linux.yml
vendored
13
.github/workflows/_binary-build-linux.yml
vendored
@ -142,13 +142,13 @@ jobs:
|
|||||||
|
|
||||||
- name: "[FB EMPLOYEES] Enable SSH (Click me for login details)"
|
- name: "[FB EMPLOYEES] Enable SSH (Click me for login details)"
|
||||||
if: inputs.build_environment != 'linux-s390x-binary-manywheel'
|
if: inputs.build_environment != 'linux-s390x-binary-manywheel'
|
||||||
uses: pytorch/test-infra/.github/actions/setup-ssh@main
|
uses: pytorch/test-infra/.github/actions/setup-ssh@release/2.9
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
with:
|
with:
|
||||||
github-secret: ${{ secrets.github-token }}
|
github-secret: ${{ secrets.github-token }}
|
||||||
|
|
||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: pytorch/pytorch/.github/actions/checkout-pytorch@main
|
uses: pytorch/pytorch/.github/actions/checkout-pytorch@release/2.9
|
||||||
with:
|
with:
|
||||||
no-sudo: ${{ inputs.build_environment == 'linux-aarch64-binary-manywheel' || inputs.build_environment == 'linux-s390x-binary-manywheel' }}
|
no-sudo: ${{ inputs.build_environment == 'linux-aarch64-binary-manywheel' || inputs.build_environment == 'linux-s390x-binary-manywheel' }}
|
||||||
|
|
||||||
@ -178,7 +178,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch to pytorch dir
|
- name: Checkout PyTorch to pytorch dir
|
||||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
path: pytorch
|
path: pytorch
|
||||||
show-progress: false
|
show-progress: false
|
||||||
@ -213,9 +212,9 @@ jobs:
|
|||||||
- name: Calculate docker image
|
- name: Calculate docker image
|
||||||
id: calculate-docker-image
|
id: calculate-docker-image
|
||||||
if: ${{ steps.filter.outputs.is-test-matrix-empty == 'False' && inputs.build_environment != 'linux-s390x-binary-manywheel' }}
|
if: ${{ steps.filter.outputs.is-test-matrix-empty == 'False' && inputs.build_environment != 'linux-s390x-binary-manywheel' }}
|
||||||
uses: pytorch/test-infra/.github/actions/calculate-docker-image@main
|
uses: pytorch/test-infra/.github/actions/calculate-docker-image@release/2.9
|
||||||
with:
|
with:
|
||||||
# If doing this in main or release branch, use docker.io. Otherwise
|
# If doing this in release/2.9 or release branch, use docker.io. Otherwise
|
||||||
# use ECR
|
# use ECR
|
||||||
docker-registry: ${{ startsWith(github.event.ref, 'refs/tags/ciflow/') && '308535385114.dkr.ecr.us-east-1.amazonaws.com' || 'docker.io' }}
|
docker-registry: ${{ startsWith(github.event.ref, 'refs/tags/ciflow/') && '308535385114.dkr.ecr.us-east-1.amazonaws.com' || 'docker.io' }}
|
||||||
docker-image-name: ${{ inputs.DOCKER_IMAGE }}
|
docker-image-name: ${{ inputs.DOCKER_IMAGE }}
|
||||||
@ -227,7 +226,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Pull Docker image
|
- name: Pull Docker image
|
||||||
if: ${{ steps.filter.outputs.is-test-matrix-empty == 'False' && inputs.build_environment != 'linux-s390x-binary-manywheel' }}
|
if: ${{ steps.filter.outputs.is-test-matrix-empty == 'False' && inputs.build_environment != 'linux-s390x-binary-manywheel' }}
|
||||||
uses: pytorch/test-infra/.github/actions/pull-docker-image@main
|
uses: pytorch/test-infra/.github/actions/pull-docker-image@release/2.9
|
||||||
with:
|
with:
|
||||||
docker-image: ${{ steps.calculate-docker-image.outputs.docker-image }}
|
docker-image: ${{ steps.calculate-docker-image.outputs.docker-image }}
|
||||||
|
|
||||||
@ -283,7 +282,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Teardown Linux
|
- name: Teardown Linux
|
||||||
if: always() && inputs.build_environment != 'linux-s390x-binary-manywheel'
|
if: always() && inputs.build_environment != 'linux-s390x-binary-manywheel'
|
||||||
uses: pytorch/test-infra/.github/actions/teardown-linux@main
|
uses: pytorch/test-infra/.github/actions/teardown-linux@release/2.9
|
||||||
|
|
||||||
- name: Chown workspace
|
- name: Chown workspace
|
||||||
if: always() && inputs.build_environment != 'linux-s390x-binary-manywheel'
|
if: always() && inputs.build_environment != 'linux-s390x-binary-manywheel'
|
||||||
|
|||||||
13
.github/workflows/_binary-test-linux.yml
vendored
13
.github/workflows/_binary-test-linux.yml
vendored
@ -125,14 +125,14 @@ jobs:
|
|||||||
|
|
||||||
- name: "[FB EMPLOYEES] Enable SSH (Click me for login details)"
|
- name: "[FB EMPLOYEES] Enable SSH (Click me for login details)"
|
||||||
if: inputs.build_environment != 'linux-s390x-binary-manywheel'
|
if: inputs.build_environment != 'linux-s390x-binary-manywheel'
|
||||||
uses: pytorch/test-infra/.github/actions/setup-ssh@main
|
uses: pytorch/test-infra/.github/actions/setup-ssh@release/2.9
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
with:
|
with:
|
||||||
github-secret: ${{ secrets.github-token }}
|
github-secret: ${{ secrets.github-token }}
|
||||||
|
|
||||||
# Setup the environment
|
# Setup the environment
|
||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: pytorch/pytorch/.github/actions/checkout-pytorch@main
|
uses: pytorch/pytorch/.github/actions/checkout-pytorch@release/2.9
|
||||||
with:
|
with:
|
||||||
no-sudo: ${{ inputs.build_environment == 'linux-aarch64-binary-manywheel' || inputs.build_environment == 'linux-s390x-binary-manywheel' }}
|
no-sudo: ${{ inputs.build_environment == 'linux-aarch64-binary-manywheel' || inputs.build_environment == 'linux-s390x-binary-manywheel' }}
|
||||||
|
|
||||||
@ -155,7 +155,6 @@ jobs:
|
|||||||
- name: Checkout PyTorch to pytorch dir
|
- name: Checkout PyTorch to pytorch dir
|
||||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
show-progress: false
|
show-progress: false
|
||||||
path: pytorch
|
path: pytorch
|
||||||
@ -186,7 +185,7 @@ jobs:
|
|||||||
path: "${{ runner.temp }}/artifacts/"
|
path: "${{ runner.temp }}/artifacts/"
|
||||||
|
|
||||||
- name: Install nvidia driver, nvidia-docker runtime, set GPU_FLAG
|
- name: Install nvidia driver, nvidia-docker runtime, set GPU_FLAG
|
||||||
uses: pytorch/test-infra/.github/actions/setup-nvidia@main
|
uses: pytorch/test-infra/.github/actions/setup-nvidia@release/2.9
|
||||||
if: ${{ inputs.GPU_ARCH_TYPE == 'cuda' && steps.filter.outputs.is-test-matrix-empty == 'False' }}
|
if: ${{ inputs.GPU_ARCH_TYPE == 'cuda' && steps.filter.outputs.is-test-matrix-empty == 'False' }}
|
||||||
|
|
||||||
- name: configure aws credentials
|
- name: configure aws credentials
|
||||||
@ -201,7 +200,7 @@ jobs:
|
|||||||
- name: Calculate docker image
|
- name: Calculate docker image
|
||||||
id: calculate-docker-image
|
id: calculate-docker-image
|
||||||
if: ${{ steps.filter.outputs.is-test-matrix-empty == 'False' && inputs.build_environment != 'linux-s390x-binary-manywheel' }}
|
if: ${{ steps.filter.outputs.is-test-matrix-empty == 'False' && inputs.build_environment != 'linux-s390x-binary-manywheel' }}
|
||||||
uses: pytorch/test-infra/.github/actions/calculate-docker-image@main
|
uses: pytorch/test-infra/.github/actions/calculate-docker-image@release/2.9
|
||||||
with:
|
with:
|
||||||
docker-registry: ${{ startsWith(github.event.ref, 'refs/tags/ciflow/') && '308535385114.dkr.ecr.us-east-1.amazonaws.com' || 'docker.io' }}
|
docker-registry: ${{ startsWith(github.event.ref, 'refs/tags/ciflow/') && '308535385114.dkr.ecr.us-east-1.amazonaws.com' || 'docker.io' }}
|
||||||
docker-image-name: ${{ inputs.DOCKER_IMAGE }}
|
docker-image-name: ${{ inputs.DOCKER_IMAGE }}
|
||||||
@ -211,7 +210,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Pull Docker image
|
- name: Pull Docker image
|
||||||
if: ${{ steps.filter.outputs.is-test-matrix-empty == 'False' && inputs.build_environment != 'linux-s390x-binary-manywheel' }}
|
if: ${{ steps.filter.outputs.is-test-matrix-empty == 'False' && inputs.build_environment != 'linux-s390x-binary-manywheel' }}
|
||||||
uses: pytorch/test-infra/.github/actions/pull-docker-image@main
|
uses: pytorch/test-infra/.github/actions/pull-docker-image@release/2.9
|
||||||
with:
|
with:
|
||||||
docker-image: ${{ steps.calculate-docker-image.outputs.docker-image }}
|
docker-image: ${{ steps.calculate-docker-image.outputs.docker-image }}
|
||||||
|
|
||||||
@ -223,7 +222,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Teardown Linux
|
- name: Teardown Linux
|
||||||
if: always() && inputs.build_environment != 'linux-s390x-binary-manywheel'
|
if: always() && inputs.build_environment != 'linux-s390x-binary-manywheel'
|
||||||
uses: pytorch/test-infra/.github/actions/teardown-linux@main
|
uses: pytorch/test-infra/.github/actions/teardown-linux@release/2.9
|
||||||
|
|
||||||
- name: Chown workspace
|
- name: Chown workspace
|
||||||
if: always() && inputs.build_environment != 'linux-s390x-binary-manywheel'
|
if: always() && inputs.build_environment != 'linux-s390x-binary-manywheel'
|
||||||
|
|||||||
2
.github/workflows/_binary-upload.yml
vendored
2
.github/workflows/_binary-upload.yml
vendored
@ -81,7 +81,7 @@ jobs:
|
|||||||
SHA1: ${{ github.event.pull_request.head.sha || github.sha }}
|
SHA1: ${{ github.event.pull_request.head.sha || github.sha }}
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout PyTorch
|
- name: Checkout PyTorch
|
||||||
uses: pytorch/pytorch/.github/actions/checkout-pytorch@main
|
uses: pytorch/pytorch/.github/actions/checkout-pytorch@release/2.9
|
||||||
with:
|
with:
|
||||||
no-sudo: true
|
no-sudo: true
|
||||||
|
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user