2022-04-21 17:19:12 +08:00
|
|
|
#!/bin/bash
|
|
|
|
# Copyright 2022 The IREE Authors
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
# See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
|
|
|
|
# build_linux_packages.sh
|
|
|
|
# One stop build of IREE Python packages for Linux. The Linux build is
|
|
|
|
# complicated because it has to be done via a docker container that has
|
|
|
|
# an LTS glibc version, all Python packages and other deps.
|
|
|
|
# This script handles all of those details.
|
|
|
|
#
|
|
|
|
# Usage:
|
|
|
|
# Build everything (all packages, all python versions):
|
|
|
|
# ./build_tools/python_deploy/build_linux_packages.sh
|
|
|
|
#
|
|
|
|
# Build specific Python versions and packages to custom directory:
|
2022-08-31 02:07:25 +08:00
|
|
|
# TM_PYTHON_VERSIONS="cp38-cp38 cp39-cp39" \
|
|
|
|
# TM_PACKAGES="torch-mlir" \
|
|
|
|
# TM_OUTPUT_DIR="/tmp/wheelhouse" \
|
2022-04-21 17:19:12 +08:00
|
|
|
# ./build_tools/python_deploy/build_linux_packages.sh
|
|
|
|
#
|
|
|
|
# Valid Python versions match a subdirectory under /opt/python in the docker
|
|
|
|
# image. Typically:
|
2022-09-01 11:30:01 +08:00
|
|
|
# cp39-cp39 cp310-cp310
|
2022-04-21 17:19:12 +08:00
|
|
|
#
|
|
|
|
# Valid packages:
|
2022-08-31 02:07:25 +08:00
|
|
|
# torch-mlir, in-tree, out-of-tree
|
2022-04-21 17:19:12 +08:00
|
|
|
#
|
|
|
|
# Note that this script is meant to be run on CI and it will pollute both the
|
2022-08-31 02:07:25 +08:00
|
|
|
# output directory and in-tree build/ directories with docker created, root owned builds.
|
|
|
|
# Sorry - there is no good way around it but TODO: move to using user UID/GID.
|
2022-04-21 17:19:12 +08:00
|
|
|
#
|
|
|
|
# It can be run on a workstation but recommend using a git worktree dedicated
|
|
|
|
# to packaging to avoid stomping on development artifacts.
|
|
|
|
set -eu -o errtrace
|
|
|
|
|
2022-07-07 05:39:30 +08:00
|
|
|
this_dir="$(cd "$(dirname "$0")" && pwd)"
|
|
|
|
repo_root="$(cd "$this_dir"/../../ && pwd)"
|
2022-08-31 02:07:25 +08:00
|
|
|
# This needs to be a manylinux image so we can ship pip packages
|
|
|
|
TM_RELEASE_DOCKER_IMAGE="${TM_RELEASE_DOCKER_IMAGE:-stellaraccident/manylinux2014_x86_64-bazel-5.1.0:latest}"
|
|
|
|
# This assumes an Ubuntu LTS like image. You can build your own with
|
|
|
|
# ./build_tools/docker/Dockerfile
|
|
|
|
TM_CI_DOCKER_IMAGE="${TM_CI_DOCKER_IMAGE:-powderluv/torch-mlir-ci:latest}"
|
|
|
|
# Version of Python to use in Release builds. Ignored in CIs.
|
2022-09-15 02:22:09 +08:00
|
|
|
TM_PYTHON_VERSIONS="${TM_PYTHON_VERSIONS:-cp37-cp37m cp39-cp39 cp310-cp310}"
|
2022-08-31 02:07:25 +08:00
|
|
|
# Location to store Release wheels
|
|
|
|
TM_OUTPUT_DIR="${TM_OUTPUT_DIR:-${this_dir}/wheelhouse}"
|
|
|
|
# What "packages to build"
|
2022-09-02 18:37:57 +08:00
|
|
|
TM_PACKAGES="${TM_PACKAGES:-torch-mlir}"
|
2022-08-31 02:07:25 +08:00
|
|
|
# Use pre-built Pytorch
|
|
|
|
TM_USE_PYTORCH_BINARY="${TM_USE_PYTORCH_BINARY:-ON}"
|
|
|
|
# Skip running tests if you want quick iteration
|
|
|
|
TM_SKIP_TESTS="${TM_SKIP_TESTS:-OFF}"
|
2022-10-03 07:02:34 +08:00
|
|
|
# Update ODS and shape library files
|
|
|
|
TM_UPDATE_ODS_AND_SHAPE_LIB="${TM_UPDATE_ODS_AND_SHAPE_LIB:-OFF}"
|
2022-04-21 17:19:12 +08:00
|
|
|
|
2022-07-07 05:39:30 +08:00
|
|
|
PKG_VER_FILE="${repo_root}"/torch_mlir_package_version ; [ -f "$PKG_VER_FILE" ] && . "$PKG_VER_FILE"
|
2022-09-29 04:38:30 +08:00
|
|
|
TORCH_MLIR_PYTHON_PACKAGE_VERSION="${TORCH_MLIR_PYTHON_PACKAGE_VERSION:-0.0.1}"
|
2022-04-26 05:13:17 +08:00
|
|
|
echo "Setting torch-mlir Python Package version to: ${TORCH_MLIR_PYTHON_PACKAGE_VERSION}"
|
|
|
|
|
2022-10-04 16:02:44 +08:00
|
|
|
export TORCH_MLIR_SRC_PYTORCH_REPO="${TORCH_MLIR_SRC_PYTORCH_REPO:-pytorch/pytorch}"
|
2022-09-29 04:38:30 +08:00
|
|
|
echo "Setting torch-mlir PyTorch Repo for source builds to: ${TORCH_MLIR_SRC_PYTORCH_REPO}"
|
2022-10-04 16:02:44 +08:00
|
|
|
export TORCH_MLIR_SRC_PYTORCH_BRANCH="${TORCH_MLIR_SRC_PYTORCH_BRANCH:-master}"
|
2022-09-29 04:38:30 +08:00
|
|
|
echo "Setting torch-mlir PyTorch version for source builds to: ${TORCH_MLIR_SRC_PYTORCH_BRANCH}"
|
|
|
|
|
2022-04-21 17:19:12 +08:00
|
|
|
function run_on_host() {
|
2022-08-31 02:07:25 +08:00
|
|
|
echo "Running on host for $1:$@"
|
|
|
|
echo "Outputting to ${TM_OUTPUT_DIR}"
|
|
|
|
rm -rf "${TM_OUTPUT_DIR}"
|
|
|
|
mkdir -p "${TM_OUTPUT_DIR}"
|
|
|
|
case "$package" in
|
|
|
|
torch-mlir)
|
|
|
|
TM_CURRENT_DOCKER_IMAGE=${TM_RELEASE_DOCKER_IMAGE}
|
|
|
|
export USERID=0
|
|
|
|
export GROUPID=0
|
|
|
|
;;
|
|
|
|
out-of-tree)
|
|
|
|
TM_CURRENT_DOCKER_IMAGE=${TM_CI_DOCKER_IMAGE}
|
|
|
|
# CI uses only Python3.10
|
|
|
|
TM_PYTHON_VERSIONS="cp310-cp310"
|
|
|
|
export USERID=$(id -u)
|
|
|
|
export GROUPID=$(id -g)
|
|
|
|
;;
|
|
|
|
in-tree)
|
|
|
|
TM_CURRENT_DOCKER_IMAGE=${TM_CI_DOCKER_IMAGE}
|
|
|
|
# CI uses only Python3.10
|
|
|
|
TM_PYTHON_VERSIONS="cp310-cp310"
|
|
|
|
export USERID=$(id -u)
|
|
|
|
export GROUPID=$(id -g)
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "Unrecognized package '$package'"
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
echo "Launching docker image ${TM_CURRENT_DOCKER_IMAGE} with UID:${USERID} GID:${GROUPID}"
|
2022-04-21 17:19:12 +08:00
|
|
|
docker run --rm \
|
|
|
|
-v "${repo_root}:/main_checkout/torch-mlir" \
|
2022-08-31 02:07:25 +08:00
|
|
|
-v "${TM_OUTPUT_DIR}:/wheelhouse" \
|
|
|
|
-v "${HOME}:/home/${USER}" \
|
|
|
|
--user ${USERID}:${GROUPID} \
|
|
|
|
--workdir="/home/$USER" \
|
|
|
|
--volume="/etc/group:/etc/group:ro" \
|
|
|
|
--volume="/etc/passwd:/etc/passwd:ro" \
|
|
|
|
--volume="/etc/shadow:/etc/shadow:ro" \
|
|
|
|
--ipc=host \
|
2022-04-21 17:19:12 +08:00
|
|
|
-e __MANYLINUX_BUILD_WHEELS_IN_DOCKER=1 \
|
2022-04-26 05:13:17 +08:00
|
|
|
-e "TORCH_MLIR_PYTHON_PACKAGE_VERSION=${TORCH_MLIR_PYTHON_PACKAGE_VERSION}" \
|
2022-08-31 02:07:25 +08:00
|
|
|
-e "TM_PYTHON_VERSIONS=${TM_PYTHON_VERSIONS}" \
|
|
|
|
-e "TM_PACKAGES=${package}" \
|
|
|
|
-e "TM_SKIP_TESTS=${TM_SKIP_TESTS}" \
|
2022-10-03 07:02:34 +08:00
|
|
|
-e "TM_UPDATE_ODS_AND_SHAPE_LIB=${TM_UPDATE_ODS_AND_SHAPE_LIB}" \
|
2022-08-31 02:07:25 +08:00
|
|
|
-e "TM_USE_PYTORCH_BINARY=${TM_USE_PYTORCH_BINARY}" \
|
2022-09-29 04:38:30 +08:00
|
|
|
-e "TORCH_MLIR_SRC_PYTORCH_REPO=${TORCH_MLIR_SRC_PYTORCH_REPO}" \
|
|
|
|
-e "TORCH_MLIR_SRC_PYTORCH_BRANCH=${TORCH_MLIR_SRC_PYTORCH_BRANCH}" \
|
2022-08-31 02:07:25 +08:00
|
|
|
-e "CCACHE_DIR=/main_checkout/torch-mlir/.ccache" \
|
|
|
|
"${TM_CURRENT_DOCKER_IMAGE}" \
|
|
|
|
/bin/bash /main_checkout/torch-mlir/build_tools/python_deploy/build_linux_packages.sh
|
2022-04-21 17:19:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
function run_in_docker() {
|
|
|
|
echo "Running in docker"
|
2022-08-31 02:07:25 +08:00
|
|
|
echo "Using python versions: ${TM_PYTHON_VERSIONS}"
|
2022-04-21 17:19:12 +08:00
|
|
|
|
|
|
|
local orig_path="$PATH"
|
|
|
|
|
|
|
|
# Build phase.
|
2022-08-31 02:07:25 +08:00
|
|
|
for package in $TM_PACKAGES; do
|
|
|
|
echo "******************** BUILDING PACKAGE ${package} (docker) ************"
|
|
|
|
for python_version in $TM_PYTHON_VERSIONS; do
|
2022-04-21 17:19:12 +08:00
|
|
|
python_dir="/opt/python/$python_version"
|
|
|
|
if ! [ -x "$python_dir/bin/python" ]; then
|
2022-08-31 02:07:25 +08:00
|
|
|
echo "Could not find python: $python_dir (using system default Python3)"
|
|
|
|
python_dir=`which python3`
|
|
|
|
echo "Defaulting to $python_dir (expected for CI builds)"
|
2022-04-21 17:19:12 +08:00
|
|
|
fi
|
|
|
|
export PATH=$python_dir/bin:$orig_path
|
2022-08-31 02:07:25 +08:00
|
|
|
echo ":::: Python version $(python3 --version)"
|
2022-04-21 17:19:12 +08:00
|
|
|
case "$package" in
|
|
|
|
torch-mlir)
|
2022-07-07 05:39:30 +08:00
|
|
|
clean_wheels torch_mlir "$python_version"
|
2022-04-21 17:19:12 +08:00
|
|
|
build_torch_mlir
|
2022-07-07 05:39:30 +08:00
|
|
|
#run_audit_wheel torch_mlir "$python_version"
|
2022-08-31 02:07:25 +08:00
|
|
|
clean_build torch_mlir "$python_version"
|
|
|
|
;;
|
|
|
|
out-of-tree)
|
|
|
|
setup_venv "$python_version"
|
|
|
|
build_out_of_tree "$TM_USE_PYTORCH_BINARY" "$python_version"
|
|
|
|
if [ "${TM_SKIP_TESTS}" == "OFF" ]; then
|
|
|
|
test_out_of_tree
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
in-tree)
|
|
|
|
setup_venv "$python_version"
|
|
|
|
build_in_tree "$TM_USE_PYTORCH_BINARY" "$python_version"
|
2022-10-03 07:02:34 +08:00
|
|
|
if [ "${TM_UPDATE_ODS_AND_SHAPE_LIB}" == "ON" ]; then
|
2022-10-05 00:24:32 +08:00
|
|
|
pushd /main_checkout/torch-mlir
|
2022-10-03 07:02:34 +08:00
|
|
|
./build_tools/update_torch_ods.sh
|
|
|
|
./build_tools/update_shape_lib.sh
|
2022-10-05 00:24:32 +08:00
|
|
|
popd
|
2022-10-03 07:02:34 +08:00
|
|
|
fi
|
2022-08-31 02:07:25 +08:00
|
|
|
if [ "${TM_SKIP_TESTS}" == "OFF" ]; then
|
|
|
|
test_in_tree;
|
|
|
|
fi
|
2022-04-21 17:19:12 +08:00
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "Unrecognized package '$package'"
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2022-08-31 02:07:25 +08:00
|
|
|
|
|
|
|
function build_in_tree() {
|
2022-09-29 04:38:30 +08:00
|
|
|
local torch_from_bin="$1"
|
2022-08-31 02:07:25 +08:00
|
|
|
local python_version="$2"
|
2022-09-29 04:38:30 +08:00
|
|
|
echo ":::: Build in-tree Torch from binary: $torch_from_bin with Python: $python_version"
|
2022-08-31 02:07:25 +08:00
|
|
|
cmake -GNinja -B/main_checkout/torch-mlir/build \
|
|
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
|
|
-DCMAKE_C_COMPILER=clang \
|
|
|
|
-DCMAKE_CXX_COMPILER=clang++ \
|
|
|
|
-DCMAKE_LINKER=lld \
|
|
|
|
-DLLVM_ENABLE_ASSERTIONS=ON \
|
|
|
|
-DCMAKE_C_COMPILER_LAUNCHER=ccache \
|
|
|
|
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache \
|
|
|
|
-DLLVM_ENABLE_PROJECTS=mlir \
|
|
|
|
-DLLVM_EXTERNAL_PROJECTS="torch-mlir;torch-mlir-dialects" \
|
|
|
|
-DLLVM_EXTERNAL_TORCH_MLIR_SOURCE_DIR="/main_checkout/torch-mlir" \
|
|
|
|
-DLLVM_EXTERNAL_TORCH_MLIR_DIALECTS_SOURCE_DIR="/main_checkout/torch-mlir/externals/llvm-external-projects/torch-mlir-dialects" \
|
|
|
|
-DLLVM_TARGETS_TO_BUILD=host \
|
|
|
|
-DMLIR_ENABLE_BINDINGS_PYTHON=ON \
|
2022-10-12 01:29:07 +08:00
|
|
|
-DTORCH_MLIR_ENABLE_LTC=ON \
|
2022-09-29 04:38:30 +08:00
|
|
|
-DTORCH_MLIR_USE_INSTALLED_PYTORCH="$torch_from_bin" \
|
|
|
|
-DTORCH_MLIR_SRC_PYTORCH_REPO=${TORCH_MLIR_SRC_PYTORCH_REPO} \
|
|
|
|
-DTORCH_MLIR_SRC_PYTORCH_BRANCH=${TORCH_MLIR_SRC_PYTORCH_BRANCH} \
|
2022-08-31 02:07:25 +08:00
|
|
|
-DPython3_EXECUTABLE="$(which python3)" \
|
|
|
|
/main_checkout/torch-mlir/externals/llvm-project/llvm
|
|
|
|
cmake --build /main_checkout/torch-mlir/build
|
|
|
|
ccache -s
|
|
|
|
}
|
|
|
|
|
2022-09-01 07:54:51 +08:00
|
|
|
function _check_file_not_changed_by() {
|
|
|
|
# _check_file_not_changed_by <cmd> <file>
|
|
|
|
cmd="$1"
|
|
|
|
file="$2"
|
|
|
|
file_backup="$PWD/$(basename $file)"
|
|
|
|
file_new="$PWD/$(basename $file).new"
|
|
|
|
# Save the original file.
|
|
|
|
cp "$file" "$file_backup"
|
|
|
|
# Run the command to regenerate it.
|
|
|
|
"$1" || return 1
|
|
|
|
# Save the new generated file.
|
|
|
|
cp "$file" "$file_new"
|
|
|
|
# Restore the original file. We want this function to not change the user's
|
|
|
|
# working tree state.
|
|
|
|
mv "$file_backup" "$file"
|
|
|
|
# We use git-diff as "just a diff program" (no SCM stuff) because it has
|
|
|
|
# nicer output than regular `diff`.
|
2022-09-30 01:31:40 +08:00
|
|
|
if ! git diff --no-index --quiet "$file" "$file_new"; then
|
2022-09-01 07:54:51 +08:00
|
|
|
echo "#######################################################"
|
|
|
|
echo "Generated file '${file}' is not up to date (see diff below)"
|
|
|
|
echo ">>> Please run '${cmd}' to update it <<<"
|
|
|
|
echo "#######################################################"
|
2022-09-30 01:31:40 +08:00
|
|
|
git diff --no-index --color=always "$file" "$file_new"
|
2022-09-01 07:54:51 +08:00
|
|
|
# TODO: Is there a better cleanup strategy that doesn't require duplicating
|
|
|
|
# this inside and outside the `if`?
|
|
|
|
rm "$file_new"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
rm "$file_new"
|
|
|
|
}
|
|
|
|
|
2022-08-31 02:07:25 +08:00
|
|
|
function test_in_tree() {
|
|
|
|
echo ":::: Test in-tree"
|
|
|
|
cmake --build /main_checkout/torch-mlir/build --target check-torch-mlir-all
|
|
|
|
|
|
|
|
cd /main_checkout/torch-mlir/
|
|
|
|
export PYTHONPATH="/main_checkout/torch-mlir/build/tools/torch-mlir/python_packages/torch_mlir"
|
|
|
|
|
2022-09-01 07:54:51 +08:00
|
|
|
echo ":::: Check that update_shape_lib.sh has been run"
|
|
|
|
_check_file_not_changed_by ./build_tools/update_shape_lib.sh lib/Dialect/Torch/Transforms/ShapeLibrary.cpp
|
2022-09-01 06:01:59 +08:00
|
|
|
|
2022-09-01 07:54:51 +08:00
|
|
|
echo ":::: Check that update_torch_ods.sh has been run"
|
|
|
|
_check_file_not_changed_by ./build_tools/update_torch_ods.sh include/torch-mlir/Dialect/Torch/IR/GeneratedTorchOps.td
|
2022-09-01 06:01:59 +08:00
|
|
|
|
2022-08-31 02:07:25 +08:00
|
|
|
echo ":::: Run refbackend e2e integration tests"
|
|
|
|
python -m e2e_testing.main --config=refbackend -v
|
|
|
|
|
|
|
|
echo ":::: Run eager_mode e2e integration tests"
|
|
|
|
python -m e2e_testing.main --config=eager_mode -v
|
|
|
|
|
|
|
|
echo ":::: Run TOSA e2e integration tests"
|
2022-09-27 20:35:33 +08:00
|
|
|
python -m e2e_testing.main --config=tosa -v
|
2022-08-31 02:07:25 +08:00
|
|
|
|
2022-10-12 01:29:07 +08:00
|
|
|
echo ":::: Run Lazy Tensor Core e2e integration tests"
|
|
|
|
python -m e2e_testing.main --config=lazy_tensor_core -v
|
2022-08-31 02:07:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
function setup_venv() {
|
|
|
|
local python_version="$1"
|
|
|
|
echo ":::: Setting up VENV with Python: $python_version"
|
|
|
|
python3 -m venv /main_checkout/torch-mlir/docker_venv
|
|
|
|
source /main_checkout/torch-mlir/docker_venv/bin/activate
|
|
|
|
|
|
|
|
echo ":::: pip installing dependencies"
|
2022-09-29 04:38:30 +08:00
|
|
|
python3 -m pip install --upgrade -r /main_checkout/torch-mlir/externals/llvm-project/mlir/python/requirements.txt
|
|
|
|
python3 -m pip install --upgrade -r /main_checkout/torch-mlir/requirements.txt
|
2022-08-31 02:07:25 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function build_out_of_tree() {
|
2022-09-29 04:38:30 +08:00
|
|
|
local torch_from_bin="$1"
|
2022-08-31 02:07:25 +08:00
|
|
|
local python_version="$2"
|
2022-09-29 04:38:30 +08:00
|
|
|
echo ":::: Build out-of-tree Torch from binary: $torch_from_bin with Python: $python_version"
|
2022-08-31 02:07:25 +08:00
|
|
|
|
|
|
|
if [ ! -d "/main_checkout/torch-mlir/llvm-build/lib/cmake/mlir/" ]
|
|
|
|
then
|
|
|
|
echo ":::: LLVM / MLIR is not built so building it first.."
|
|
|
|
cmake -GNinja -B/main_checkout/torch-mlir/llvm-build \
|
|
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
|
|
-DCMAKE_C_COMPILER=clang \
|
|
|
|
-DCMAKE_CXX_COMPILER=clang++ \
|
|
|
|
-DCMAKE_C_COMPILER_LAUNCHER=ccache \
|
|
|
|
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache \
|
|
|
|
-DCMAKE_LINKER=lld \
|
|
|
|
-DLLVM_ENABLE_ASSERTIONS=ON \
|
|
|
|
-DLLVM_ENABLE_PROJECTS=mlir \
|
|
|
|
-DLLVM_TARGETS_TO_BUILD=host \
|
|
|
|
-DMLIR_ENABLE_BINDINGS_PYTHON=ON \
|
|
|
|
-DPython3_EXECUTABLE="$(which python3)" \
|
|
|
|
/main_checkout/torch-mlir/externals/llvm-project/llvm
|
|
|
|
cmake --build /main_checkout/torch-mlir/llvm-build
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Incremental builds come here directly and can run cmake if required.
|
|
|
|
cmake -GNinja -B/main_checkout/torch-mlir/build_oot \
|
|
|
|
-DCMAKE_C_COMPILER=clang \
|
|
|
|
-DCMAKE_CXX_COMPILER=clang++ \
|
|
|
|
-DCMAKE_C_COMPILER_LAUNCHER=ccache \
|
|
|
|
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache \
|
|
|
|
-DCMAKE_LINKER=lld \
|
|
|
|
-DLLVM_DIR="/main_checkout/torch-mlir/llvm-build/lib/cmake/llvm/" \
|
|
|
|
-DMLIR_DIR="/main_checkout/torch-mlir/llvm-build/lib/cmake/mlir/" \
|
|
|
|
-DMLIR_ENABLE_BINDINGS_PYTHON=OFF \
|
2022-10-12 01:29:07 +08:00
|
|
|
-DTORCH_MLIR_ENABLE_LTC=ON \
|
2022-09-29 04:38:30 +08:00
|
|
|
-DTORCH_MLIR_USE_INSTALLED_PYTORCH="$torch_from_bin" \
|
|
|
|
-DTORCH_MLIR_SRC_PYTORCH_REPO=${TORCH_MLIR_SRC_PYTORCH_REPO} \
|
|
|
|
-DTORCH_MLIR_SRC_PYTORCH_BRANCH=${TORCH_MLIR_SRC_PYTORCH_BRANCH} \
|
2022-08-31 02:07:25 +08:00
|
|
|
-DPython3_EXECUTABLE="$(which python3)" \
|
|
|
|
/main_checkout/torch-mlir
|
|
|
|
cmake --build /main_checkout/torch-mlir/build_oot
|
|
|
|
ccache -s
|
|
|
|
}
|
|
|
|
|
|
|
|
function test_out_of_tree() {
|
|
|
|
echo ":::: Test out-of-tree"
|
|
|
|
cmake --build /main_checkout/torch-mlir/build_oot --target check-torch-mlir-all
|
|
|
|
}
|
|
|
|
|
|
|
|
function clean_build() {
|
|
|
|
# clean up for recursive runs
|
|
|
|
local package="$1"
|
|
|
|
local python_version="$2"
|
|
|
|
echo ":::: Clean build dir $package $python_version"
|
|
|
|
rm -rf /main_checkout/torch-mlir/build /main_checkout/torch-mlir/llvm-build /main_checkout/torch-mlir/docker_venv /main_checkout/torch-mlir/libtorch
|
|
|
|
}
|
|
|
|
|
2022-04-21 17:19:12 +08:00
|
|
|
function build_torch_mlir() {
|
2022-09-30 03:09:31 +08:00
|
|
|
python -m pip install --upgrade -r /main_checkout/torch-mlir/requirements.txt \
|
|
|
|
--extra-index-url https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html
|
2022-04-21 17:19:12 +08:00
|
|
|
CMAKE_GENERATOR=Ninja \
|
2022-04-26 05:13:17 +08:00
|
|
|
TORCH_MLIR_PYTHON_PACKAGE_VERSION=${TORCH_MLIR_PYTHON_PACKAGE_VERSION} \
|
2022-09-30 03:09:31 +08:00
|
|
|
python -m pip wheel -v -w /wheelhouse /main_checkout/torch-mlir \
|
|
|
|
-f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html \
|
|
|
|
-r /main_checkout/torch-mlir/whl-requirements.txt
|
2022-04-21 17:19:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
function run_audit_wheel() {
|
|
|
|
local wheel_basename="$1"
|
|
|
|
local python_version="$2"
|
|
|
|
generic_wheel="/wheelhouse/${wheel_basename}-*-${python_version}-linux_x86_64.whl"
|
|
|
|
echo ":::: Auditwheel $generic_wheel"
|
2022-07-07 05:39:30 +08:00
|
|
|
auditwheel repair -w /wheelhouse "$generic_wheel"
|
|
|
|
rm "$generic_wheel"
|
2022-04-21 17:19:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
function clean_wheels() {
|
|
|
|
local wheel_basename="$1"
|
|
|
|
local python_version="$2"
|
|
|
|
echo ":::: Clean wheels $wheel_basename $python_version"
|
2022-07-07 05:39:30 +08:00
|
|
|
rm -f /wheelhouse/"${wheel_basename}"-*-"${python_version}"-*.whl
|
2022-04-21 17:19:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
# Trampoline to the docker container if running on the host.
|
|
|
|
if [ -z "${__MANYLINUX_BUILD_WHEELS_IN_DOCKER-}" ]; then
|
2022-08-31 02:07:25 +08:00
|
|
|
for package in $TM_PACKAGES; do
|
|
|
|
echo "******************** BUILDING PACKAGE ${package} (host) *************"
|
|
|
|
run_on_host "${package} $@"
|
|
|
|
done
|
2022-04-21 17:19:12 +08:00
|
|
|
else
|
|
|
|
run_in_docker "$@"
|
|
|
|
fi
|