Fix s_range in rnnt_loss (#1245) #177
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright 2022 Fangjun Kuang ([email protected]) | |
# See ../../LICENSE for clarification regarding multiple authors | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
# refer to https://github.com/actions/starter-workflows/pull/47/files | |
name: test-k2-as-third-party-lib-cuda-ubuntu | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- '.github/workflows/test-k2-as-third-party-lib-cuda-ubuntu.yml' | |
- 'CMakeLists.txt' | |
- 'cmake/**' | |
- 'k2/csrc/**' | |
- 'k2/python/**' | |
- 'scripts/github_actions/k2-torch-api-test/**' | |
pull_request: | |
types: [labeled] | |
paths: | |
- '.github/workflows/test-k2-as-third-party-lib-cuda-ubuntu.yml' | |
- 'CMakeLists.txt' | |
- 'cmake/**' | |
- 'k2/csrc/**' | |
- 'k2/python/**' | |
- 'scripts/github_actions/k2-torch-api-test/**' | |
concurrency: | |
group: test-k2-as-third-party-lib-cuda-ubuntu-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
BUILD_TYPE: Release | |
jobs: | |
generate_build_matrix: | |
# see https://github.com/pytorch/pytorch/pull/50633 | |
runs-on: macos-latest | |
outputs: | |
matrix: ${{ steps.set-matrix.outputs.matrix }} | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Generating build matrix | |
id: set-matrix | |
run: | | |
# outputting for debugging purposes | |
python scripts/github_actions/generate_build_matrix.py --test-only-latest-torch --enable-cuda | |
MATRIX=$(python scripts/github_actions/generate_build_matrix.py --test-only-latest-torch --enable-cuda) | |
echo "::set-output name=matrix::${MATRIX}" | |
test-k2-as-third-party-lib-cuda-ubuntu: | |
if: github.event.label.name == 'ready' || github.event_name == 'push' | |
needs: generate_build_matrix | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
${{ fromJson(needs.generate_build_matrix.outputs.matrix) }} | |
steps: | |
# refer to https://github.com/actions/checkout | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Setup Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Display Python version | |
run: python -c "import sys; print(sys.version)" | |
- name: Install CUDA Toolkit ${{ matrix.cuda }} | |
env: | |
cuda: ${{ matrix.cuda }} | |
run: | | |
source ./scripts/github_actions/install_cuda.sh | |
echo "CUDA_HOME=${CUDA_HOME}" >> $GITHUB_ENV | |
echo "${CUDA_HOME}/bin" >> $GITHUB_PATH | |
echo "LD_LIBRARY_PATH=${CUDA_HOME}/lib:${CUDA_HOME}/lib64:${LD_LIBRARY_PATH}" >> $GITHUB_ENV | |
shell: bash | |
- name: Display NVCC version | |
run: | | |
which nvcc | |
nvcc --version | |
- name: Install GCC 7 | |
run: | | |
sudo apt update | |
sudo apt install software-properties-common | |
sudo add-apt-repository "deb [arch=amd64] http://archive.ubuntu.com/ubuntu focal main universe" | |
sudo apt-get install -y gcc-7 g++-7 | |
echo "CC=/usr/bin/gcc-7" >> $GITHUB_ENV | |
echo "CXX=/usr/bin/g++-7" >> $GITHUB_ENV | |
echo "CUDAHOSTCXX=/usr/bin/g++-7" >> $GITHUB_ENV | |
- name: Install PyTorch ${{ matrix.torch }} | |
env: | |
cuda: ${{ matrix.cuda }} | |
torch: ${{ matrix.torch }} | |
shell: bash | |
run: | | |
python3 -m pip install --upgrade pip | |
python3 -m pip install wheel twine typing_extensions | |
python3 -m pip install bs4 requests tqdm numpy | |
./scripts/github_actions/install_torch.sh | |
python3 -c "import torch; print('torch version:', torch.__version__)" | |
- name: Install git lfs | |
run: | | |
sudo apt-get install -y git-lfs | |
- name: Download cudnn 8.0 | |
env: | |
cuda: ${{ matrix.cuda }} | |
run: | | |
./scripts/github_actions/install_cudnn.sh | |
- name: Install k2 | |
shell: bash -l {0} | |
run: | | |
export K2_CMAKE_ARGS="-DCMAKE_BUILD_TYPE=$BUILD_TYPE -DK2_WITH_CUDA=ON" | |
export K2_MAKE_ARGS="-j2" | |
python3 setup.py install | |
python3 -m k2.version | |
python3 setup.py clean | |
python3 -m k2.version | |
- name: test k2 | |
shell: bash -l {0} | |
run: | | |
cat $(python3 -c "import k2; print(k2.cmake_prefix_path)")/k2/k2Config.cmake | |
cd ./scripts/github_actions/k2-torch-api-test | |
make |