2020-08-05 09:57:59 +08:00
|
|
|
name: Build and Test
|
|
|
|
|
2021-10-22 12:23:21 +08:00
|
|
|
on:
|
2021-10-06 07:26:26 +08:00
|
|
|
push:
|
2021-10-22 12:23:21 +08:00
|
|
|
branches:
|
|
|
|
- main
|
2021-10-06 07:26:26 +08:00
|
|
|
pull_request:
|
|
|
|
workflow_dispatch:
|
|
|
|
inputs:
|
|
|
|
release_id:
|
|
|
|
description: 'Release id to upload artifacts to'
|
|
|
|
default: ''
|
2022-03-31 01:51:52 +08:00
|
|
|
python_package_version:
|
|
|
|
description: 'Version to use for creating the Python package'
|
|
|
|
default: ''
|
2020-08-05 09:57:59 +08:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2021-07-28 07:10:10 +08:00
|
|
|
name: Build and Test (Release Asserts)
|
2020-08-08 01:32:02 +08:00
|
|
|
runs-on: ubuntu-20.04
|
2020-08-05 09:57:59 +08:00
|
|
|
steps:
|
2021-09-28 05:07:24 +08:00
|
|
|
- name: Get torch-mlir
|
2020-08-05 09:57:59 +08:00
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
submodules: 'true'
|
2022-04-04 18:13:29 +08:00
|
|
|
- uses: ./.github/actions/setup-build
|
2021-09-28 05:07:24 +08:00
|
|
|
- name: Build and Test torch-mlir (Assert)
|
2020-08-05 09:57:59 +08:00
|
|
|
run: |
|
2021-07-28 07:10:10 +08:00
|
|
|
cd $GITHUB_WORKSPACE
|
|
|
|
mkdir build
|
|
|
|
cd build
|
2022-03-27 00:12:27 +08:00
|
|
|
cmake $GITHUB_WORKSPACE/externals/llvm-project/llvm -GNinja \
|
2021-07-28 07:10:10 +08:00
|
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
|
|
-DCMAKE_LINKER=lld \
|
|
|
|
-DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache \
|
|
|
|
-DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ \
|
2021-07-30 01:43:18 +08:00
|
|
|
-DPython3_EXECUTABLE=$(which python) \
|
2021-07-28 07:10:10 +08:00
|
|
|
-DLLVM_ENABLE_ASSERTIONS=ON \
|
2021-09-28 05:07:24 +08:00
|
|
|
-DLLVM_ENABLE_PROJECTS=mlir \
|
2022-02-03 07:01:38 +08:00
|
|
|
-DLLVM_EXTERNAL_PROJECTS="torch-mlir;torch-mlir-dialects" \
|
2021-09-28 05:07:24 +08:00
|
|
|
-DLLVM_EXTERNAL_TORCH_MLIR_SOURCE_DIR="$GITHUB_WORKSPACE" \
|
2022-02-03 07:01:38 +08:00
|
|
|
-DLLVM_EXTERNAL_TORCH_MLIR_DIALECTS_SOURCE_DIR="${GITHUB_WORKSPACE}/external/llvm-external-projects/torch-mlir-dialects" \
|
2021-09-28 05:07:24 +08:00
|
|
|
-DMLIR_ENABLE_BINDINGS_PYTHON=ON \
|
2021-09-11 02:44:38 +08:00
|
|
|
-DLLVM_TARGETS_TO_BUILD=host
|
2021-09-28 05:07:24 +08:00
|
|
|
ninja check-torch-mlir-all
|
2021-10-29 02:25:53 +08:00
|
|
|
- name: RefBackend - TorchScript end-to-end tests
|
2021-07-30 13:50:52 +08:00
|
|
|
run: |
|
|
|
|
cd $GITHUB_WORKSPACE
|
2021-09-28 05:07:24 +08:00
|
|
|
export PYTHONPATH="$GITHUB_WORKSPACE/build/tools/torch-mlir/python_packages/torch_mlir"
|
2021-09-17 06:18:17 +08:00
|
|
|
python -m e2e_testing.torchscript.main --config=refbackend -v
|
2021-10-29 02:25:53 +08:00
|
|
|
- name: TOSA backend - TorchScript end-to-end tests
|
|
|
|
run: |
|
|
|
|
cd $GITHUB_WORKSPACE
|
|
|
|
export PYTHONPATH="$GITHUB_WORKSPACE/build/tools/torch-mlir/python_packages/torch_mlir"
|
2021-10-08 10:07:03 +08:00
|
|
|
python -m e2e_testing.torchscript.main --config=tosa -v
|
2021-10-06 07:26:26 +08:00
|
|
|
|
|
|
|
# TODO: Only build packages in full Release mode.
|
|
|
|
# On the other hand, having assertions on isn't too bad of an idea at this
|
|
|
|
# early stage.
|
|
|
|
- name: Build Python wheels and smoke test.
|
|
|
|
run: |
|
|
|
|
cd $GITHUB_WORKSPACE
|
|
|
|
python -m pip install wheel
|
|
|
|
TORCH_MLIR_CMAKE_BUILD_DIR="$GITHUB_WORKSPACE/build" \
|
|
|
|
TORCH_MLIR_CMAKE_BUILD_DIR_ALREADY_BUILT=1 \
|
2022-03-31 01:51:52 +08:00
|
|
|
TORCH_MLIR_PYTHON_PACKAGE_VERSION="${{ github.event.inputs.python_package_version }}" \
|
2021-10-06 07:26:26 +08:00
|
|
|
./build_tools/build_python_wheels.sh
|
2021-10-07 06:47:26 +08:00
|
|
|
|
2022-04-04 18:13:29 +08:00
|
|
|
# upload the package we just built to the github releases page.
|
2021-10-06 07:26:26 +08:00
|
|
|
- name: Upload Release Assets (if requested)
|
|
|
|
id: upload-release-assets
|
2022-04-04 18:13:29 +08:00
|
|
|
if: github.event.inputs.release_id != ''
|
2021-10-06 07:26:26 +08:00
|
|
|
uses: dwenegar/upload-release-assets@v1
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.WORKFLOW_INVOCATION_TOKEN }}
|
|
|
|
with:
|
|
|
|
release_id: ${{ github.event.inputs.release_id }}
|
|
|
|
assets_path: ./wheelhouse/*.whl
|
2021-10-07 06:47:26 +08:00
|
|
|
# Publishing is necessary to make the release visible to `pip`
|
|
|
|
# on the github releases page.
|
|
|
|
- name: Publish Release (if requested)
|
|
|
|
id: publish_release
|
2022-04-04 18:13:29 +08:00
|
|
|
if: github.event.inputs.release_id != ''
|
2021-10-07 06:47:26 +08:00
|
|
|
uses: eregon/publish-release@v1
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.WORKFLOW_INVOCATION_TOKEN }}
|
|
|
|
with:
|
|
|
|
release_id: ${{ github.event.inputs.release_id }}
|