Skip to content

[refactor] rename Executor to ThreadPool. #43

[refactor] rename Executor to ThreadPool.

[refactor] rename Executor to ThreadPool. #43

Workflow file for this run

name: build and test
on:
push:
paths-ignore:
- ".github/**"
- "docs/**"
- "tools/**"
- "gateway/**"
- "scripts/**"
- "**/*.md"
- "**/*.txt"
- "**/*.yml"
- "**/*.sh"
- "Dockerfile"
- "Dockerfile.*"
branches:
- main
pull_request:
paths-ignore:
- ".github/**"
- "docs/**"
- "tools/**"
- "gateway/**"
- "scripts/**"
- "**/*.md"
- "**/*.txt"
- "**/*.yml"
- "**/*.sh"
- "Dockerfile"
- "Dockerfile.*"
branches:
- main
jobs:
linux-gcc:
strategy:
matrix:
os: [ubuntu-22.04]
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
build_type: [Release]
runs-on: [self-hosted, linux, x64, 1gpu]
env:
BUILD_TYPE: ${{ matrix.build_type }}
# Tells vcpkg where binary packages are stored.
VCPKG_DEFAULT_BINARY_CACHE: ${{ github.workspace }}/.vcpkg/bincache
steps:
- name: Install toolkits
run: |
sudo apt-get install -y build-essential ninja-build bison gcc-12 libunwind-dev python3-dev libboost-all-dev
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
# Restore both vcpkg and its artifacts from the GitHub cache service.
- name: Restore vcpkg and its artifacts.
uses: actions/cache@v3
with:
path: ${{ env.VCPKG_DEFAULT_BINARY_CACHE }}
key: |
scalellm-${{ matrix.os }}-gcc-x64-linux-${{env.BUILD_TYPE}}-${{ hashFiles( 'vcpkg.json' ) }}
- name: CMake Build in the 'build' subdirectory
run: |
cmake -G Ninja -S . -B build -DCMAKE_CUDA_ARCHITECTURES=80 -DTORCH_CUDA_ARCH_LIST=8.0
cmake --build build --config ${{env.BUILD_TYPE}} --target all
# - name: benchmark
# if: ${{ env.BUILD_TYPE == 'Release' }}
# run: ./build/src/benchmark/micro_benchmark
- name: Run unit tests
working-directory: ${{github.workspace}}/build
# Execute tests defined by the CMake configuration.
run: ctest --output-on-failure -C ${{env.BUILD_TYPE}}