2023-08-09T11:34:19.9759588Z Requested labels: linux.g5.4xlarge.nvidia.gpu 2023-08-09T11:34:19.9759732Z Job defined at: pytorch/test-infra/.github/workflows/linux_job.yml@refs/heads/main 2023-08-09T11:34:19.9759926Z Reusable workflow chain: 2023-08-09T11:34:19.9760026Z pytorch/audio/.github/workflows/unittest-linux-gpu.yml@refs/heads/nightly (fe9b9ff75edebf1e0e326f64577d64df3b5858db) 2023-08-09T11:34:19.9760127Z -> pytorch/test-infra/.github/workflows/linux_job.yml@refs/heads/main (264b8afc6d56140163c6b64f4088a17c4cd59bfd) 2023-08-09T11:34:19.9760229Z Waiting for a runner to pick up this job... 2023-08-09T11:34:39.5516918Z Job is about to start running on the runner: i-01c6cc8a42232c8c7 (organization) 2023-08-09T11:34:44.2812487Z Current runner version: '2.307.1' 2023-08-09T11:34:44.2817747Z Runner name: 'i-01c6cc8a42232c8c7' 2023-08-09T11:34:44.2818282Z Runner group name: 'Default' 2023-08-09T11:34:44.2818894Z Machine name: 'ip-10-0-0-43' 2023-08-09T11:34:44.2821036Z ##[group]GITHUB_TOKEN Permissions 2023-08-09T11:34:44.2821779Z Actions: write 2023-08-09T11:34:44.2822075Z Checks: write 2023-08-09T11:34:44.2822416Z Contents: write 2023-08-09T11:34:44.2822737Z Deployments: write 2023-08-09T11:34:44.2823035Z Discussions: write 2023-08-09T11:34:44.2823338Z Issues: write 2023-08-09T11:34:44.2823669Z Metadata: read 2023-08-09T11:34:44.2823966Z Packages: write 2023-08-09T11:34:44.2824303Z Pages: write 2023-08-09T11:34:44.2824618Z PullRequests: write 2023-08-09T11:34:44.2824959Z RepositoryProjects: write 2023-08-09T11:34:44.2825345Z SecurityEvents: write 2023-08-09T11:34:44.2825669Z Statuses: write 2023-08-09T11:34:44.2825959Z ##[endgroup] 2023-08-09T11:34:44.2828828Z Secret source: Actions 2023-08-09T11:34:44.2829540Z Prepare workflow directory 2023-08-09T11:34:44.7346826Z Prepare all required actions 2023-08-09T11:34:44.7528275Z Getting action download info 2023-08-09T11:34:44.9783539Z Download action repository 'actions/checkout@v3' (SHA:c85c95e3d7251135ab7dc9ce3241c5835cc595a9) 2023-08-09T11:34:45.2202359Z Download action repository 'actions/download-artifact@v3' (SHA:9bc31d5ccc31df68ecc42ccf4149144866c47d8a) 2023-08-09T11:34:45.3704521Z Download action repository 'pmeier/pytest-results-action@v0.3.0' (SHA:a2c1430e2bddadbad9f49a6f9b879f062c6b19b1) 2023-08-09T11:34:45.5180508Z Download action repository 'actions/upload-artifact@v3' (SHA:0b7f8abb1508181956e8e162db84b466c27e18ce) 2023-08-09T11:34:45.6974553Z Download action repository 'seemethere/upload-artifact-s3@v5' (SHA:baba72d0712b404f646cebe0730933554ebce96a) 2023-08-09T11:34:45.9866811Z Uses: pytorch/test-infra/.github/workflows/linux_job.yml@refs/heads/main (264b8afc6d56140163c6b64f4088a17c4cd59bfd) 2023-08-09T11:34:45.9868278Z ##[group] Inputs 2023-08-09T11:34:45.9871415Z script: set -ex # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_APPLY_CMVN_SLIDING=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_FBANK_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_KALDI_PITCH_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_MFCC_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_SPECTROGRAM_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_CUDA_SMALL_MEMORY=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_ON_PYTHON_310=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_TEMPORARY_DISABLED=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_DECODER=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_ENCODER=true # Set CHANNEL if [[(${GITHUB_EVENT_NAME} = 'pull_request' && (${GITHUB_BASE_REF} = 'release'*)) || (${GITHUB_REF} = 'refs/heads/release'*) ]]; then export CHANNEL=test else export CHANNEL=nightly fi echo "::group::Create conda env" # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env echo "::endgroup::" echo "::group::Install PyTorch" conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" echo "::endgroup::" echo "::group::Install TorchAudio" conda install --quiet --yes 'cmake>=3.18.0' ninja pip3 install --progress-bar off -v -e . --no-use-pep517 echo "::endgroup::" echo "::group::Build FFmpeg" .github/scripts/ffmpeg/build_gpu.sh echo "::endgroup::" echo "::group::Install other Dependencies" conda install \ --quiet --yes \ -c conda-forge \ -c numba/label/dev \ sox libvorbis 'librosa==0.10.0' parameterized 'requests>=2.20' pip3 install --progress-bar off \ kaldi-io \ SoundFile \ coverage \ pytest \ pytest-cov \ 'scipy==1.7.3' \ transformers \ expecttest \ unidecode \ inflect \ Pillow \ sentencepiece \ pytorch-lightning \ 'protobuf<4.21.0' \ demucs \ tinytag \ flashlight-text \ git+https://github.com/kpu/kenlm/ \ git+https://github.com/pytorch/fairseq.git@e47a4c8 echo "::endgroup::" echo "::group::Run tests" export PATH="${PWD}/third_party/install/bin/:${PATH}" declare -a args=( '-v' '--cov=torchaudio' "--junitxml=${RUNNER_TEST_RESULTS_DIR}/junit.xml" '--durations' '100' '-k' 'cuda or gpu' ) cd test python3 -m torch.utils.collect_env env | grep TORCHAUDIO || true pytest "${args[@]}" torchaudio_unittest coverage html 2023-08-09T11:34:45.9874961Z timeout: 120 2023-08-09T11:34:45.9875202Z runner: linux.g5.4xlarge.nvidia.gpu 2023-08-09T11:34:45.9875446Z upload-artifact: 2023-08-09T11:34:45.9875668Z download-artifact: 2023-08-09T11:34:45.9875898Z repository: pytorch/audio 2023-08-09T11:34:45.9876121Z fetch-depth: 1 2023-08-09T11:34:45.9876320Z submodules: 2023-08-09T11:34:45.9876511Z ref: 2023-08-09T11:34:45.9876746Z test-infra-repository: pytorch/test-infra 2023-08-09T11:34:45.9877013Z test-infra-ref: 2023-08-09T11:34:45.9877251Z docker-image: pytorch/conda-builder 2023-08-09T11:34:45.9877514Z docker-build-dir: .ci/docker 2023-08-09T11:34:45.9877738Z gpu-arch-type: cuda 2023-08-09T11:34:45.9877961Z gpu-arch-version: 11.8 2023-08-09T11:34:45.9878183Z job-name: linux-job 2023-08-09T11:34:45.9878826Z continue-on-error: false 2023-08-09T11:34:45.9879055Z binary-matrix: 2023-08-09T11:34:45.9879271Z run-with-docker: true 2023-08-09T11:34:45.9879470Z secrets-env: 2023-08-09T11:34:45.9879681Z no-sudo: false 2023-08-09T11:34:45.9879919Z ##[endgroup] 2023-08-09T11:34:45.9880350Z Complete job name: tests (3.10, 11.8) / linux-job 2023-08-09T11:34:46.0579572Z ##[group]Run if [[ "${NO_SUDO}" == "false" ]]; then 2023-08-09T11:34:46.0579978Z if [[ "${NO_SUDO}" == "false" ]]; then 2023-08-09T11:34:46.0580256Z  echo "::group::Cleanup with-sudo debug output" 2023-08-09T11:34:46.0580539Z  sudo rm -rfv "${GITHUB_WORKSPACE}" 2023-08-09T11:34:46.0580775Z else 2023-08-09T11:34:46.0581003Z  echo "::group::Cleanup no-sudo debug output" 2023-08-09T11:34:46.0581268Z  rm -rfv "${GITHUB_WORKSPACE}" 2023-08-09T11:34:46.0581477Z fi 2023-08-09T11:34:46.0581740Z  2023-08-09T11:34:46.0581953Z mkdir -p "${GITHUB_WORKSPACE}" 2023-08-09T11:34:46.0582193Z echo "::endgroup::" 2023-08-09T11:34:46.0595545Z shell: /usr/bin/bash -e {0} 2023-08-09T11:34:46.0595758Z env: 2023-08-09T11:34:46.0595991Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T11:34:46.0596247Z REPOSITORY: pytorch/audio 2023-08-09T11:34:46.0596453Z PR_NUMBER: 2023-08-09T11:34:46.0599458Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_APPLY_CMVN_SLIDING=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_FBANK_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_KALDI_PITCH_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_MFCC_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_SPECTROGRAM_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_CUDA_SMALL_MEMORY=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_ON_PYTHON_310=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_TEMPORARY_DISABLED=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_DECODER=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_ENCODER=true # Set CHANNEL if [[(${GITHUB_EVENT_NAME} = 'pull_request' && (${GITHUB_BASE_REF} = 'release'*)) || (${GITHUB_REF} = 'refs/heads/release'*) ]]; then export CHANNEL=test else export CHANNEL=nightly fi echo "::group::Create conda env" # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env echo "::endgroup::" echo "::group::Install PyTorch" conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" echo "::endgroup::" echo "::group::Install TorchAudio" conda install --quiet --yes 'cmake>=3.18.0' ninja pip3 install --progress-bar off -v -e . --no-use-pep517 echo "::endgroup::" echo "::group::Build FFmpeg" .github/scripts/ffmpeg/build_gpu.sh echo "::endgroup::" echo "::group::Install other Dependencies" conda install \ --quiet --yes \ -c conda-forge \ -c numba/label/dev \ sox libvorbis 'librosa==0.10.0' parameterized 'requests>=2.20' pip3 install --progress-bar off \ kaldi-io \ SoundFile \ coverage \ pytest \ pytest-cov \ 'scipy==1.7.3' \ transformers \ expecttest \ unidecode \ inflect \ Pillow \ sentencepiece \ pytorch-lightning \ 'protobuf<4.21.0' \ demucs \ tinytag \ flashlight-text \ git+https://github.com/kpu/kenlm/ \ git+https://github.com/pytorch/fairseq.git@e47a4c8 echo "::endgroup::" echo "::group::Run tests" export PATH="${PWD}/third_party/install/bin/:${PATH}" declare -a args=( '-v' '--cov=torchaudio' "--junitxml=${RUNNER_TEST_RESULTS_DIR}/junit.xml" '--durations' '100' '-k' 'cuda or gpu' ) cd test python3 -m torch.utils.collect_env env | grep TORCHAUDIO || true pytest "${args[@]}" torchaudio_unittest coverage html 2023-08-09T11:34:46.0602530Z NO_SUDO: false 2023-08-09T11:34:46.0602734Z ##[endgroup] 2023-08-09T11:34:46.0796244Z ##[group]Cleanup with-sudo debug output 2023-08-09T11:34:46.0823217Z removed directory: ‘/home/ec2-user/actions-runner/_work/audio/audio’ 2023-08-09T11:34:46.0844316Z ##[endgroup] 2023-08-09T11:34:46.1062438Z ##[group]Run actions/checkout@v3 2023-08-09T11:34:46.1062689Z with: 2023-08-09T11:34:46.1062901Z repository: pytorch/test-infra 2023-08-09T11:34:46.1063126Z path: test-infra 2023-08-09T11:34:46.1063316Z submodules: recursive 2023-08-09T11:34:46.1063660Z token: *** 2023-08-09T11:34:46.1063850Z ssh-strict: true 2023-08-09T11:34:46.1064066Z persist-credentials: true 2023-08-09T11:34:46.1064295Z clean: true 2023-08-09T11:34:46.1064517Z sparse-checkout-cone-mode: true 2023-08-09T11:34:46.1064747Z fetch-depth: 1 2023-08-09T11:34:46.1064927Z lfs: false 2023-08-09T11:34:46.1065129Z set-safe-directory: true 2023-08-09T11:34:46.1065335Z env: 2023-08-09T11:34:46.1065555Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T11:34:46.1065807Z REPOSITORY: pytorch/audio 2023-08-09T11:34:46.1066016Z PR_NUMBER: 2023-08-09T11:34:46.1068974Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_APPLY_CMVN_SLIDING=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_FBANK_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_KALDI_PITCH_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_MFCC_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_SPECTROGRAM_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_CUDA_SMALL_MEMORY=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_ON_PYTHON_310=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_TEMPORARY_DISABLED=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_DECODER=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_ENCODER=true # Set CHANNEL if [[(${GITHUB_EVENT_NAME} = 'pull_request' && (${GITHUB_BASE_REF} = 'release'*)) || (${GITHUB_REF} = 'refs/heads/release'*) ]]; then export CHANNEL=test else export CHANNEL=nightly fi echo "::group::Create conda env" # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env echo "::endgroup::" echo "::group::Install PyTorch" conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" echo "::endgroup::" echo "::group::Install TorchAudio" conda install --quiet --yes 'cmake>=3.18.0' ninja pip3 install --progress-bar off -v -e . --no-use-pep517 echo "::endgroup::" echo "::group::Build FFmpeg" .github/scripts/ffmpeg/build_gpu.sh echo "::endgroup::" echo "::group::Install other Dependencies" conda install \ --quiet --yes \ -c conda-forge \ -c numba/label/dev \ sox libvorbis 'librosa==0.10.0' parameterized 'requests>=2.20' pip3 install --progress-bar off \ kaldi-io \ SoundFile \ coverage \ pytest \ pytest-cov \ 'scipy==1.7.3' \ transformers \ expecttest \ unidecode \ inflect \ Pillow \ sentencepiece \ pytorch-lightning \ 'protobuf<4.21.0' \ demucs \ tinytag \ flashlight-text \ git+https://github.com/kpu/kenlm/ \ git+https://github.com/pytorch/fairseq.git@e47a4c8 echo "::endgroup::" echo "::group::Run tests" export PATH="${PWD}/third_party/install/bin/:${PATH}" declare -a args=( '-v' '--cov=torchaudio' "--junitxml=${RUNNER_TEST_RESULTS_DIR}/junit.xml" '--durations' '100' '-k' 'cuda or gpu' ) cd test python3 -m torch.utils.collect_env env | grep TORCHAUDIO || true pytest "${args[@]}" torchaudio_unittest coverage html 2023-08-09T11:34:46.1072102Z ##[endgroup] 2023-08-09T11:34:46.2030362Z Syncing repository: pytorch/test-infra 2023-08-09T11:34:46.2030966Z ##[group]Getting Git version info 2023-08-09T11:34:46.2031381Z Working directory is '/home/ec2-user/actions-runner/_work/audio/audio/test-infra' 2023-08-09T11:34:46.2031841Z [command]/usr/bin/git version 2023-08-09T11:34:46.2032062Z git version 2.40.1 2023-08-09T11:34:46.2032938Z ##[endgroup] 2023-08-09T11:34:46.2044356Z Temporarily overriding HOME='/home/ec2-user/actions-runner/_work/_temp/2de58490-1ee7-4b8e-ba3a-9ad7ac2c332a' before making global git config changes 2023-08-09T11:34:46.2044831Z Adding repository directory to the temporary git global config as a safe directory 2023-08-09T11:34:46.2045333Z [command]/usr/bin/git config --global --add safe.directory /home/ec2-user/actions-runner/_work/audio/audio/test-infra 2023-08-09T11:34:46.2073232Z ##[group]Initializing the repository 2023-08-09T11:34:46.2076216Z [command]/usr/bin/git init /home/ec2-user/actions-runner/_work/audio/audio/test-infra 2023-08-09T11:34:46.2101395Z hint: Using 'master' as the name for the initial branch. This default branch name 2023-08-09T11:34:46.2101917Z hint: is subject to change. To configure the initial branch name to use in all 2023-08-09T11:34:46.2102382Z hint: of your new repositories, which will suppress this warning, call: 2023-08-09T11:34:46.2102735Z hint: 2023-08-09T11:34:46.2103053Z hint: git config --global init.defaultBranch 2023-08-09T11:34:46.2103316Z hint: 2023-08-09T11:34:46.2103777Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and 2023-08-09T11:34:46.2104275Z hint: 'development'. The just-created branch can be renamed via this command: 2023-08-09T11:34:46.2104541Z hint: 2023-08-09T11:34:46.2104757Z hint: git branch -m 2023-08-09T11:34:46.2105156Z Initialized empty Git repository in /home/ec2-user/actions-runner/_work/audio/audio/test-infra/.git/ 2023-08-09T11:34:46.2109989Z [command]/usr/bin/git remote add origin https://github.com/pytorch/test-infra 2023-08-09T11:34:46.2134951Z ##[endgroup] 2023-08-09T11:34:46.2136174Z ##[group]Disabling automatic garbage collection 2023-08-09T11:34:46.2137866Z [command]/usr/bin/git config --local gc.auto 0 2023-08-09T11:34:46.2160962Z ##[endgroup] 2023-08-09T11:34:46.2161500Z ##[group]Setting up auth 2023-08-09T11:34:46.2166780Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2023-08-09T11:34:46.2190645Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" 2023-08-09T11:34:46.2397551Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2023-08-09T11:34:46.2419143Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" 2023-08-09T11:34:46.2629415Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** 2023-08-09T11:34:46.2666415Z ##[endgroup] 2023-08-09T11:34:46.2666973Z ##[group]Determining the default branch 2023-08-09T11:34:46.2669769Z Retrieving the default branch name 2023-08-09T11:34:46.4588825Z Default branch 'main' 2023-08-09T11:34:46.4589325Z ##[endgroup] 2023-08-09T11:34:46.4589703Z ##[group]Fetching the repository 2023-08-09T11:34:46.4594126Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --progress --no-recurse-submodules --depth=1 origin +refs/heads/main:refs/remotes/origin/main 2023-08-09T11:34:46.7025579Z remote: Enumerating objects: 1076, done. 2023-08-09T11:34:46.7025891Z remote: Counting objects: 0% (1/1076) 2023-08-09T11:34:46.7026197Z remote: Counting objects: 1% (11/1076) 2023-08-09T11:34:46.7026562Z remote: Counting objects: 2% (22/1076) 2023-08-09T11:34:46.7026920Z remote: Counting objects: 3% (33/1076) 2023-08-09T11:34:46.7027261Z remote: Counting objects: 4% (44/1076) 2023-08-09T11:34:46.7027582Z remote: Counting objects: 5% (54/1076) 2023-08-09T11:34:46.7027909Z remote: Counting objects: 6% (65/1076) 2023-08-09T11:34:46.7028225Z remote: Counting objects: 7% (76/1076) 2023-08-09T11:34:46.7028600Z remote: Counting objects: 8% (87/1076) 2023-08-09T11:34:46.7028921Z remote: Counting objects: 9% (97/1076) 2023-08-09T11:34:46.7029250Z remote: Counting objects: 10% (108/1076) 2023-08-09T11:34:46.7029759Z remote: Counting objects: 11% (119/1076) 2023-08-09T11:34:46.7030095Z remote: Counting objects: 12% (130/1076) 2023-08-09T11:34:46.7030429Z remote: Counting objects: 13% (140/1076) 2023-08-09T11:34:46.7030739Z remote: Counting objects: 14% (151/1076) 2023-08-09T11:34:46.7030985Z remote: Counting objects: 15% (162/1076) 2023-08-09T11:34:46.7031299Z remote: Counting objects: 16% (173/1076) 2023-08-09T11:34:46.7031655Z remote: Counting objects: 17% (183/1076) 2023-08-09T11:34:46.7031969Z remote: Counting objects: 18% (194/1076) 2023-08-09T11:34:46.7032294Z remote: Counting objects: 19% (205/1076) 2023-08-09T11:34:46.7032617Z remote: Counting objects: 20% (216/1076) 2023-08-09T11:34:46.7032894Z remote: Counting objects: 21% (226/1076) 2023-08-09T11:34:46.7033130Z remote: Counting objects: 22% (237/1076) 2023-08-09T11:34:46.7033371Z remote: Counting objects: 23% (248/1076) 2023-08-09T11:34:46.7033656Z remote: Counting objects: 24% (259/1076) 2023-08-09T11:34:46.7033972Z remote: Counting objects: 25% (269/1076) 2023-08-09T11:34:46.7034297Z remote: Counting objects: 26% (280/1076) 2023-08-09T11:34:46.7034616Z remote: Counting objects: 27% (291/1076) 2023-08-09T11:34:46.7034956Z remote: Counting objects: 28% (302/1076) 2023-08-09T11:34:46.7035258Z remote: Counting objects: 29% (313/1076) 2023-08-09T11:34:46.7035514Z remote: Counting objects: 30% (323/1076) 2023-08-09T11:34:46.7035817Z remote: Counting objects: 31% (334/1076) 2023-08-09T11:34:46.7036142Z remote: Counting objects: 32% (345/1076) 2023-08-09T11:34:46.7036449Z remote: Counting objects: 33% (356/1076) 2023-08-09T11:34:46.7036695Z remote: Counting objects: 34% (366/1076) 2023-08-09T11:34:46.7036929Z remote: Counting objects: 35% (377/1076) 2023-08-09T11:34:46.7037174Z remote: Counting objects: 36% (388/1076) 2023-08-09T11:34:46.7037422Z remote: Counting objects: 37% (399/1076) 2023-08-09T11:34:46.7037656Z remote: Counting objects: 38% (409/1076) 2023-08-09T11:34:46.7037900Z remote: Counting objects: 39% (420/1076) 2023-08-09T11:34:46.7038138Z remote: Counting objects: 40% (431/1076) 2023-08-09T11:34:46.7038374Z remote: Counting objects: 41% (442/1076) 2023-08-09T11:34:46.7038740Z remote: Counting objects: 42% (452/1076) 2023-08-09T11:34:46.7038983Z remote: Counting objects: 43% (463/1076) 2023-08-09T11:34:46.7039225Z remote: Counting objects: 44% (474/1076) 2023-08-09T11:34:46.7039463Z remote: Counting objects: 45% (485/1076) 2023-08-09T11:34:46.7039706Z remote: Counting objects: 46% (495/1076) 2023-08-09T11:34:46.7039948Z remote: Counting objects: 47% (506/1076) 2023-08-09T11:34:46.7040183Z remote: Counting objects: 48% (517/1076) 2023-08-09T11:34:46.7040431Z remote: Counting objects: 49% (528/1076) 2023-08-09T11:34:46.7040677Z remote: Counting objects: 50% (538/1076) 2023-08-09T11:34:46.7040918Z remote: Counting objects: 51% (549/1076) 2023-08-09T11:34:46.7041161Z remote: Counting objects: 52% (560/1076) 2023-08-09T11:34:46.7041410Z remote: Counting objects: 53% (571/1076) 2023-08-09T11:34:46.7041645Z remote: Counting objects: 54% (582/1076) 2023-08-09T11:34:46.7041897Z remote: Counting objects: 55% (592/1076) 2023-08-09T11:34:46.7042139Z remote: Counting objects: 56% (603/1076) 2023-08-09T11:34:46.7042382Z remote: Counting objects: 57% (614/1076) 2023-08-09T11:34:46.7042618Z remote: Counting objects: 58% (625/1076) 2023-08-09T11:34:46.7042860Z remote: Counting objects: 59% (635/1076) 2023-08-09T11:34:46.7043103Z remote: Counting objects: 60% (646/1076) 2023-08-09T11:34:46.7043342Z remote: Counting objects: 61% (657/1076) 2023-08-09T11:34:46.7043641Z remote: Counting objects: 62% (668/1076) 2023-08-09T11:34:46.7043887Z remote: Counting objects: 63% (678/1076) 2023-08-09T11:34:46.7044280Z remote: Counting objects: 64% (689/1076) 2023-08-09T11:34:46.7044517Z remote: Counting objects: 65% (700/1076) 2023-08-09T11:34:46.7044762Z remote: Counting objects: 66% (711/1076) 2023-08-09T11:34:46.7045008Z remote: Counting objects: 67% (721/1076) 2023-08-09T11:34:46.7045256Z remote: Counting objects: 68% (732/1076) 2023-08-09T11:34:46.7045493Z remote: Counting objects: 69% (743/1076) 2023-08-09T11:34:46.7045738Z remote: Counting objects: 70% (754/1076) 2023-08-09T11:34:46.7045979Z remote: Counting objects: 71% (764/1076) 2023-08-09T11:34:46.7046214Z remote: Counting objects: 72% (775/1076) 2023-08-09T11:34:46.7046455Z remote: Counting objects: 73% (786/1076) 2023-08-09T11:34:46.7046697Z remote: Counting objects: 74% (797/1076) 2023-08-09T11:34:46.7046938Z remote: Counting objects: 75% (807/1076) 2023-08-09T11:34:46.7047181Z remote: Counting objects: 76% (818/1076) 2023-08-09T11:34:46.7047699Z remote: Counting objects: 77% (829/1076) 2023-08-09T11:34:46.7047941Z remote: Counting objects: 78% (840/1076) 2023-08-09T11:34:46.7048187Z remote: Counting objects: 79% (851/1076) 2023-08-09T11:34:46.7048431Z remote: Counting objects: 80% (861/1076) 2023-08-09T11:34:46.7048677Z remote: Counting objects: 81% (872/1076) 2023-08-09T11:34:46.7048911Z remote: Counting objects: 82% (883/1076) 2023-08-09T11:34:46.7049152Z remote: Counting objects: 83% (894/1076) 2023-08-09T11:34:46.7049391Z remote: Counting objects: 84% (904/1076) 2023-08-09T11:34:46.7049625Z remote: Counting objects: 85% (915/1076) 2023-08-09T11:34:46.7049864Z remote: Counting objects: 86% (926/1076) 2023-08-09T11:34:46.7050107Z remote: Counting objects: 87% (937/1076) 2023-08-09T11:34:46.7050347Z remote: Counting objects: 88% (947/1076) 2023-08-09T11:34:46.7050591Z remote: Counting objects: 89% (958/1076) 2023-08-09T11:34:46.7050831Z remote: Counting objects: 90% (969/1076) 2023-08-09T11:34:46.7051064Z remote: Counting objects: 91% (980/1076) 2023-08-09T11:34:46.7051310Z remote: Counting objects: 92% (990/1076) 2023-08-09T11:34:46.7051559Z remote: Counting objects: 93% (1001/1076) 2023-08-09T11:34:46.7051910Z remote: Counting objects: 94% (1012/1076) 2023-08-09T11:34:46.7052160Z remote: Counting objects: 95% (1023/1076) 2023-08-09T11:34:46.7053410Z remote: Counting objects: 96% (1033/1076) 2023-08-09T11:34:46.7053890Z remote: Counting objects: 97% (1044/1076) 2023-08-09T11:34:46.7054134Z remote: Counting objects: 98% (1055/1076) 2023-08-09T11:34:46.7054385Z remote: Counting objects: 99% (1066/1076) 2023-08-09T11:34:46.7054635Z remote: Counting objects: 100% (1076/1076) 2023-08-09T11:34:46.7054896Z remote: Counting objects: 100% (1076/1076), done. 2023-08-09T11:34:46.7055176Z remote: Compressing objects: 0% (1/864) 2023-08-09T11:34:46.7055434Z remote: Compressing objects: 1% (9/864) 2023-08-09T11:34:46.7055758Z remote: Compressing objects: 2% (18/864) 2023-08-09T11:34:46.7056009Z remote: Compressing objects: 3% (26/864) 2023-08-09T11:34:46.7056269Z remote: Compressing objects: 4% (35/864) 2023-08-09T11:34:46.7056574Z remote: Compressing objects: 5% (44/864) 2023-08-09T11:34:46.7056865Z remote: Compressing objects: 6% (52/864) 2023-08-09T11:34:46.7057206Z remote: Compressing objects: 7% (61/864) 2023-08-09T11:34:46.7057507Z remote: Compressing objects: 8% (70/864) 2023-08-09T11:34:46.7057771Z remote: Compressing objects: 9% (78/864) 2023-08-09T11:34:46.7058063Z remote: Compressing objects: 10% (87/864) 2023-08-09T11:34:46.7058351Z remote: Compressing objects: 11% (96/864) 2023-08-09T11:34:46.7058739Z remote: Compressing objects: 12% (104/864) 2023-08-09T11:34:46.7059042Z remote: Compressing objects: 13% (113/864) 2023-08-09T11:34:46.7059368Z remote: Compressing objects: 14% (121/864) 2023-08-09T11:34:46.7059656Z remote: Compressing objects: 15% (130/864) 2023-08-09T11:34:46.7059930Z remote: Compressing objects: 16% (139/864) 2023-08-09T11:34:46.7060236Z remote: Compressing objects: 17% (147/864) 2023-08-09T11:34:46.7060529Z remote: Compressing objects: 18% (156/864) 2023-08-09T11:34:46.7060791Z remote: Compressing objects: 19% (165/864) 2023-08-09T11:34:46.7061111Z remote: Compressing objects: 20% (173/864) 2023-08-09T11:34:46.7061412Z remote: Compressing objects: 21% (182/864) 2023-08-09T11:34:46.7061729Z remote: Compressing objects: 22% (191/864) 2023-08-09T11:34:46.7061988Z remote: Compressing objects: 23% (199/864) 2023-08-09T11:34:46.7062280Z remote: Compressing objects: 24% (208/864) 2023-08-09T11:34:46.7062569Z remote: Compressing objects: 25% (216/864) 2023-08-09T11:34:46.7062844Z remote: Compressing objects: 26% (225/864) 2023-08-09T11:34:46.7103089Z remote: Compressing objects: 27% (234/864) 2023-08-09T11:34:46.7103442Z remote: Compressing objects: 28% (242/864) 2023-08-09T11:34:46.7103721Z remote: Compressing objects: 29% (251/864) 2023-08-09T11:34:46.7103990Z remote: Compressing objects: 30% (260/864) 2023-08-09T11:34:46.7104252Z remote: Compressing objects: 31% (268/864) 2023-08-09T11:34:46.7104511Z remote: Compressing objects: 32% (277/864) 2023-08-09T11:34:46.7104763Z remote: Compressing objects: 33% (286/864) 2023-08-09T11:34:46.7105026Z remote: Compressing objects: 34% (294/864) 2023-08-09T11:34:46.7105289Z remote: Compressing objects: 35% (303/864) 2023-08-09T11:34:46.7105539Z remote: Compressing objects: 36% (312/864) 2023-08-09T11:34:46.7105801Z remote: Compressing objects: 37% (320/864) 2023-08-09T11:34:46.7106061Z remote: Compressing objects: 38% (329/864) 2023-08-09T11:34:46.7106320Z remote: Compressing objects: 39% (337/864) 2023-08-09T11:34:46.7106569Z remote: Compressing objects: 40% (346/864) 2023-08-09T11:34:46.7106824Z remote: Compressing objects: 41% (355/864) 2023-08-09T11:34:46.7107085Z remote: Compressing objects: 42% (363/864) 2023-08-09T11:34:46.7107469Z remote: Compressing objects: 43% (372/864) 2023-08-09T11:34:46.7107727Z remote: Compressing objects: 44% (381/864) 2023-08-09T11:34:46.7107984Z remote: Compressing objects: 45% (389/864) 2023-08-09T11:34:46.7108232Z remote: Compressing objects: 46% (398/864) 2023-08-09T11:34:46.7108488Z remote: Compressing objects: 47% (407/864) 2023-08-09T11:34:46.7108744Z remote: Compressing objects: 48% (415/864) 2023-08-09T11:34:46.7109000Z remote: Compressing objects: 49% (424/864) 2023-08-09T11:34:46.7109257Z remote: Compressing objects: 50% (432/864) 2023-08-09T11:34:46.7109517Z remote: Compressing objects: 51% (441/864) 2023-08-09T11:34:46.7109772Z remote: Compressing objects: 52% (450/864) 2023-08-09T11:34:46.7110018Z remote: Compressing objects: 53% (458/864) 2023-08-09T11:34:46.7110270Z remote: Compressing objects: 54% (467/864) 2023-08-09T11:34:46.7110521Z remote: Compressing objects: 55% (476/864) 2023-08-09T11:34:46.7110773Z remote: Compressing objects: 56% (484/864) 2023-08-09T11:34:46.7111022Z remote: Compressing objects: 57% (493/864) 2023-08-09T11:34:46.7111280Z remote: Compressing objects: 58% (502/864) 2023-08-09T11:34:46.7111537Z remote: Compressing objects: 59% (510/864) 2023-08-09T11:34:46.7111787Z remote: Compressing objects: 60% (519/864) 2023-08-09T11:34:46.7112044Z remote: Compressing objects: 61% (528/864) 2023-08-09T11:34:46.7112301Z remote: Compressing objects: 62% (536/864) 2023-08-09T11:34:46.7112627Z remote: Compressing objects: 63% (545/864) 2023-08-09T11:34:46.7112889Z remote: Compressing objects: 64% (553/864) 2023-08-09T11:34:46.7113146Z remote: Compressing objects: 65% (562/864) 2023-08-09T11:34:46.7113394Z remote: Compressing objects: 66% (571/864) 2023-08-09T11:34:46.7113651Z remote: Compressing objects: 67% (579/864) 2023-08-09T11:34:46.7113909Z remote: Compressing objects: 68% (588/864) 2023-08-09T11:34:46.7114157Z remote: Compressing objects: 69% (597/864) 2023-08-09T11:34:46.7114410Z remote: Compressing objects: 70% (605/864) 2023-08-09T11:34:46.7114667Z remote: Compressing objects: 71% (614/864) 2023-08-09T11:34:46.7114924Z remote: Compressing objects: 72% (623/864) 2023-08-09T11:34:46.7115168Z remote: Compressing objects: 73% (631/864) 2023-08-09T11:34:46.7115423Z remote: Compressing objects: 74% (640/864) 2023-08-09T11:34:46.7115684Z remote: Compressing objects: 75% (648/864) 2023-08-09T11:34:46.7115927Z remote: Compressing objects: 76% (657/864) 2023-08-09T11:34:46.7116183Z remote: Compressing objects: 77% (666/864) 2023-08-09T11:34:46.7116432Z remote: Compressing objects: 78% (674/864) 2023-08-09T11:34:46.7116680Z remote: Compressing objects: 79% (683/864) 2023-08-09T11:34:46.7116937Z remote: Compressing objects: 80% (692/864) 2023-08-09T11:34:46.7117186Z remote: Compressing objects: 81% (700/864) 2023-08-09T11:34:46.7117440Z remote: Compressing objects: 82% (709/864) 2023-08-09T11:34:46.7117687Z remote: Compressing objects: 83% (718/864) 2023-08-09T11:34:46.7117940Z remote: Compressing objects: 84% (726/864) 2023-08-09T11:34:46.7118195Z remote: Compressing objects: 85% (735/864) 2023-08-09T11:34:46.7118443Z remote: Compressing objects: 86% (744/864) 2023-08-09T11:34:46.7118702Z remote: Compressing objects: 87% (752/864) 2023-08-09T11:34:46.7118962Z remote: Compressing objects: 88% (761/864) 2023-08-09T11:34:46.7119209Z remote: Compressing objects: 89% (769/864) 2023-08-09T11:34:46.7119483Z remote: Compressing objects: 90% (778/864) 2023-08-09T11:34:46.7119729Z remote: Compressing objects: 91% (787/864) 2023-08-09T11:34:46.7119983Z remote: Compressing objects: 92% (795/864) 2023-08-09T11:34:46.7120231Z remote: Compressing objects: 93% (804/864) 2023-08-09T11:34:46.7120547Z remote: Compressing objects: 94% (813/864) 2023-08-09T11:34:46.7120797Z remote: Compressing objects: 95% (821/864) 2023-08-09T11:34:46.7121049Z remote: Compressing objects: 96% (830/864) 2023-08-09T11:34:46.7121306Z remote: Compressing objects: 97% (839/864) 2023-08-09T11:34:46.7121548Z remote: Compressing objects: 98% (847/864) 2023-08-09T11:34:46.7121794Z remote: Compressing objects: 99% (856/864) 2023-08-09T11:34:46.7122051Z remote: Compressing objects: 100% (864/864) 2023-08-09T11:34:46.7122310Z remote: Compressing objects: 100% (864/864), done. 2023-08-09T11:34:46.7122560Z Receiving objects: 0% (1/1076) 2023-08-09T11:34:46.7122785Z Receiving objects: 1% (11/1076) 2023-08-09T11:34:46.7123003Z Receiving objects: 2% (22/1076) 2023-08-09T11:34:46.7158253Z Receiving objects: 3% (33/1076) 2023-08-09T11:34:46.7162460Z Receiving objects: 4% (44/1076) 2023-08-09T11:34:46.7169425Z Receiving objects: 5% (54/1076) 2023-08-09T11:34:46.7173670Z Receiving objects: 6% (65/1076) 2023-08-09T11:34:46.7179736Z Receiving objects: 7% (76/1076) 2023-08-09T11:34:46.7181940Z Receiving objects: 8% (87/1076) 2023-08-09T11:34:46.7185995Z Receiving objects: 9% (97/1076) 2023-08-09T11:34:46.7187009Z Receiving objects: 10% (108/1076) 2023-08-09T11:34:46.7188225Z Receiving objects: 11% (119/1076) 2023-08-09T11:34:46.7189951Z Receiving objects: 12% (130/1076) 2023-08-09T11:34:46.7195905Z Receiving objects: 13% (140/1076) 2023-08-09T11:34:46.7196528Z Receiving objects: 14% (151/1076) 2023-08-09T11:34:46.7201179Z Receiving objects: 15% (162/1076) 2023-08-09T11:34:46.7202422Z Receiving objects: 16% (173/1076) 2023-08-09T11:34:46.7211151Z Receiving objects: 17% (183/1076) 2023-08-09T11:34:46.7217912Z Receiving objects: 18% (194/1076) 2023-08-09T11:34:46.7220410Z Receiving objects: 19% (205/1076) 2023-08-09T11:34:46.7222166Z Receiving objects: 20% (216/1076) 2023-08-09T11:34:46.7223434Z Receiving objects: 21% (226/1076) 2023-08-09T11:34:46.7266222Z Receiving objects: 22% (237/1076) 2023-08-09T11:34:46.7282671Z Receiving objects: 23% (248/1076) 2023-08-09T11:34:46.7283797Z Receiving objects: 24% (259/1076) 2023-08-09T11:34:46.7284211Z Receiving objects: 25% (269/1076) 2023-08-09T11:34:46.7288025Z Receiving objects: 26% (280/1076) 2023-08-09T11:34:46.7289934Z Receiving objects: 27% (291/1076) 2023-08-09T11:34:46.7292062Z Receiving objects: 28% (302/1076) 2023-08-09T11:34:46.7292687Z Receiving objects: 29% (313/1076) 2023-08-09T11:34:46.7294503Z Receiving objects: 30% (323/1076) 2023-08-09T11:34:46.7301873Z Receiving objects: 31% (334/1076) 2023-08-09T11:34:46.7313828Z Receiving objects: 32% (345/1076) 2023-08-09T11:34:46.7318638Z Receiving objects: 33% (356/1076) 2023-08-09T11:34:46.7364369Z Receiving objects: 34% (366/1076) 2023-08-09T11:34:46.7365745Z Receiving objects: 35% (377/1076) 2023-08-09T11:34:46.7366064Z Receiving objects: 36% (388/1076) 2023-08-09T11:34:46.7370566Z Receiving objects: 37% (399/1076) 2023-08-09T11:34:46.7370848Z Receiving objects: 38% (409/1076) 2023-08-09T11:34:46.7373082Z Receiving objects: 39% (420/1076) 2023-08-09T11:34:46.7380403Z Receiving objects: 40% (431/1076) 2023-08-09T11:34:46.7383813Z Receiving objects: 41% (442/1076) 2023-08-09T11:34:46.7387314Z Receiving objects: 42% (452/1076) 2023-08-09T11:34:46.7391885Z Receiving objects: 43% (463/1076) 2023-08-09T11:34:46.7395367Z Receiving objects: 44% (474/1076) 2023-08-09T11:34:46.7400174Z Receiving objects: 45% (485/1076) 2023-08-09T11:34:46.7400931Z Receiving objects: 46% (495/1076) 2023-08-09T11:34:46.7403887Z Receiving objects: 47% (506/1076) 2023-08-09T11:34:46.7406987Z Receiving objects: 48% (517/1076) 2023-08-09T11:34:46.7407969Z Receiving objects: 49% (528/1076) 2023-08-09T11:34:46.7410607Z Receiving objects: 50% (538/1076) 2023-08-09T11:34:46.7410942Z Receiving objects: 51% (549/1076) 2023-08-09T11:34:46.7411681Z Receiving objects: 52% (560/1076) 2023-08-09T11:34:46.7412334Z Receiving objects: 53% (571/1076) 2023-08-09T11:34:46.7412713Z Receiving objects: 54% (582/1076) 2023-08-09T11:34:46.7415596Z Receiving objects: 55% (592/1076) 2023-08-09T11:34:46.7417592Z Receiving objects: 56% (603/1076) 2023-08-09T11:34:46.7420266Z Receiving objects: 57% (614/1076) 2023-08-09T11:34:46.7422761Z Receiving objects: 58% (625/1076) 2023-08-09T11:34:46.7424693Z Receiving objects: 59% (635/1076) 2023-08-09T11:34:46.7426933Z Receiving objects: 60% (646/1076) 2023-08-09T11:34:46.7433852Z Receiving objects: 61% (657/1076) 2023-08-09T11:34:46.7438382Z Receiving objects: 62% (668/1076) 2023-08-09T11:34:46.7473215Z Receiving objects: 63% (678/1076) 2023-08-09T11:34:46.7476382Z Receiving objects: 64% (689/1076) 2023-08-09T11:34:46.7479105Z Receiving objects: 65% (700/1076) 2023-08-09T11:34:46.7556010Z Receiving objects: 66% (711/1076) 2023-08-09T11:34:46.7558875Z Receiving objects: 67% (721/1076) 2023-08-09T11:34:46.7560826Z Receiving objects: 68% (732/1076) 2023-08-09T11:34:46.7562902Z Receiving objects: 69% (743/1076) 2023-08-09T11:34:46.7563187Z Receiving objects: 70% (754/1076) 2023-08-09T11:34:46.7564858Z Receiving objects: 71% (764/1076) 2023-08-09T11:34:46.7571859Z Receiving objects: 72% (775/1076) 2023-08-09T11:34:46.7575763Z Receiving objects: 73% (786/1076) 2023-08-09T11:34:46.7579703Z Receiving objects: 74% (797/1076) 2023-08-09T11:34:46.7582085Z Receiving objects: 75% (807/1076) 2023-08-09T11:34:46.7584047Z Receiving objects: 76% (818/1076) 2023-08-09T11:34:46.7586043Z Receiving objects: 77% (829/1076) 2023-08-09T11:34:46.7588086Z Receiving objects: 78% (840/1076) 2023-08-09T11:34:46.7589890Z Receiving objects: 79% (851/1076) 2023-08-09T11:34:46.7590313Z Receiving objects: 80% (861/1076) 2023-08-09T11:34:46.7590586Z Receiving objects: 81% (872/1076) 2023-08-09T11:34:46.7590973Z Receiving objects: 82% (883/1076) 2023-08-09T11:34:46.7591636Z Receiving objects: 83% (894/1076) 2023-08-09T11:34:46.7593839Z Receiving objects: 84% (904/1076) 2023-08-09T11:34:46.7595115Z Receiving objects: 85% (915/1076) 2023-08-09T11:34:46.7597067Z Receiving objects: 86% (926/1076) 2023-08-09T11:34:46.7597551Z Receiving objects: 87% (937/1076) 2023-08-09T11:34:46.7597847Z Receiving objects: 88% (947/1076) 2023-08-09T11:34:46.7598125Z Receiving objects: 89% (958/1076) 2023-08-09T11:34:46.7599396Z Receiving objects: 90% (969/1076) 2023-08-09T11:34:46.7600234Z Receiving objects: 91% (980/1076) 2023-08-09T11:34:46.7602852Z Receiving objects: 92% (990/1076) 2023-08-09T11:34:46.7603148Z Receiving objects: 93% (1001/1076) 2023-08-09T11:34:46.7610447Z Receiving objects: 94% (1012/1076) 2023-08-09T11:34:46.7613048Z Receiving objects: 95% (1023/1076) 2023-08-09T11:34:46.7621075Z Receiving objects: 96% (1033/1076) 2023-08-09T11:34:46.7629884Z Receiving objects: 97% (1044/1076) 2023-08-09T11:34:46.7634856Z Receiving objects: 98% (1055/1076) 2023-08-09T11:34:46.7658359Z Receiving objects: 99% (1066/1076) 2023-08-09T11:34:46.7658918Z remote: Total 1076 (delta 184), reused 637 (delta 101), pack-reused 0 2023-08-09T11:34:46.7672730Z Receiving objects: 100% (1076/1076) 2023-08-09T11:34:46.7673377Z Receiving objects: 100% (1076/1076), 1.50 MiB | 24.41 MiB/s, done. 2023-08-09T11:34:46.7679996Z Resolving deltas: 0% (0/184) 2023-08-09T11:34:46.7680490Z Resolving deltas: 1% (3/184) 2023-08-09T11:34:46.7680959Z Resolving deltas: 2% (4/184) 2023-08-09T11:34:46.7682507Z Resolving deltas: 3% (7/184) 2023-08-09T11:34:46.7682792Z Resolving deltas: 4% (9/184) 2023-08-09T11:34:46.7683506Z Resolving deltas: 5% (10/184) 2023-08-09T11:34:46.7683788Z Resolving deltas: 6% (12/184) 2023-08-09T11:34:46.7684114Z Resolving deltas: 7% (13/184) 2023-08-09T11:34:46.7684438Z Resolving deltas: 8% (15/184) 2023-08-09T11:34:46.7684750Z Resolving deltas: 9% (17/184) 2023-08-09T11:34:46.7684972Z Resolving deltas: 11% (21/184) 2023-08-09T11:34:46.7685190Z Resolving deltas: 12% (23/184) 2023-08-09T11:34:46.7685444Z Resolving deltas: 13% (24/184) 2023-08-09T11:34:46.7685742Z Resolving deltas: 14% (26/184) 2023-08-09T11:34:46.7686504Z Resolving deltas: 15% (28/184) 2023-08-09T11:34:46.7686737Z Resolving deltas: 16% (31/184) 2023-08-09T11:34:46.7688534Z Resolving deltas: 17% (32/184) 2023-08-09T11:34:46.7688969Z Resolving deltas: 18% (34/184) 2023-08-09T11:34:46.7689503Z Resolving deltas: 19% (35/184) 2023-08-09T11:34:46.7689925Z Resolving deltas: 20% (37/184) 2023-08-09T11:34:46.7690231Z Resolving deltas: 21% (40/184) 2023-08-09T11:34:46.7690954Z Resolving deltas: 22% (41/184) 2023-08-09T11:34:46.7691469Z Resolving deltas: 23% (43/184) 2023-08-09T11:34:46.7692965Z Resolving deltas: 24% (45/184) 2023-08-09T11:34:46.7693325Z Resolving deltas: 25% (46/184) 2023-08-09T11:34:46.7694465Z Resolving deltas: 26% (48/184) 2023-08-09T11:34:46.7703776Z Resolving deltas: 27% (50/184) 2023-08-09T11:34:46.7704876Z Resolving deltas: 28% (52/184) 2023-08-09T11:34:46.7707768Z Resolving deltas: 29% (54/184) 2023-08-09T11:34:46.7708919Z Resolving deltas: 30% (56/184) 2023-08-09T11:34:46.7709284Z Resolving deltas: 31% (58/184) 2023-08-09T11:34:46.7709585Z Resolving deltas: 32% (59/184) 2023-08-09T11:34:46.7710815Z Resolving deltas: 33% (61/184) 2023-08-09T11:34:46.7711168Z Resolving deltas: 34% (63/184) 2023-08-09T11:34:46.7712680Z Resolving deltas: 35% (66/184) 2023-08-09T11:34:46.7713828Z Resolving deltas: 36% (67/184) 2023-08-09T11:34:46.7714559Z Resolving deltas: 38% (70/184) 2023-08-09T11:34:46.7714920Z Resolving deltas: 39% (73/184) 2023-08-09T11:34:46.7715196Z Resolving deltas: 40% (74/184) 2023-08-09T11:34:46.7715466Z Resolving deltas: 41% (77/184) 2023-08-09T11:34:46.7715886Z Resolving deltas: 42% (78/184) 2023-08-09T11:34:46.7716153Z Resolving deltas: 43% (80/184) 2023-08-09T11:34:46.7716420Z Resolving deltas: 44% (81/184) 2023-08-09T11:34:46.7716693Z Resolving deltas: 45% (83/184) 2023-08-09T11:34:46.7717839Z Resolving deltas: 46% (85/184) 2023-08-09T11:34:46.7718104Z Resolving deltas: 47% (87/184) 2023-08-09T11:34:46.7718426Z Resolving deltas: 48% (89/184) 2023-08-09T11:34:46.7718808Z Resolving deltas: 50% (92/184) 2023-08-09T11:34:46.7719091Z Resolving deltas: 51% (94/184) 2023-08-09T11:34:46.7719371Z Resolving deltas: 53% (98/184) 2023-08-09T11:34:46.7719639Z Resolving deltas: 54% (101/184) 2023-08-09T11:34:46.7719954Z Resolving deltas: 55% (103/184) 2023-08-09T11:34:46.7720338Z Resolving deltas: 56% (104/184) 2023-08-09T11:34:46.7720708Z Resolving deltas: 57% (105/184) 2023-08-09T11:34:46.7721085Z Resolving deltas: 58% (107/184) 2023-08-09T11:34:46.7721444Z Resolving deltas: 59% (110/184) 2023-08-09T11:34:46.7721811Z Resolving deltas: 60% (111/184) 2023-08-09T11:34:46.7722139Z Resolving deltas: 61% (113/184) 2023-08-09T11:34:46.7722447Z Resolving deltas: 63% (116/184) 2023-08-09T11:34:46.7722792Z Resolving deltas: 64% (118/184) 2023-08-09T11:34:46.7723111Z Resolving deltas: 65% (120/184) 2023-08-09T11:34:46.7723400Z Resolving deltas: 66% (122/184) 2023-08-09T11:34:46.7723801Z Resolving deltas: 67% (124/184) 2023-08-09T11:34:46.7724183Z Resolving deltas: 70% (129/184) 2023-08-09T11:34:46.7724519Z Resolving deltas: 71% (131/184) 2023-08-09T11:34:46.7724787Z Resolving deltas: 73% (136/184) 2023-08-09T11:34:46.7725052Z Resolving deltas: 75% (139/184) 2023-08-09T11:34:46.7725316Z Resolving deltas: 76% (140/184) 2023-08-09T11:34:46.7725703Z Resolving deltas: 77% (143/184) 2023-08-09T11:34:46.7726096Z Resolving deltas: 78% (145/184) 2023-08-09T11:34:46.7726509Z Resolving deltas: 79% (146/184) 2023-08-09T11:34:46.7726773Z Resolving deltas: 80% (148/184) 2023-08-09T11:34:46.7727039Z Resolving deltas: 81% (150/184) 2023-08-09T11:34:46.7727314Z Resolving deltas: 82% (151/184) 2023-08-09T11:34:46.7727800Z Resolving deltas: 83% (154/184) 2023-08-09T11:34:46.7728078Z Resolving deltas: 84% (156/184) 2023-08-09T11:34:46.7728382Z Resolving deltas: 85% (157/184) 2023-08-09T11:34:46.7728732Z Resolving deltas: 86% (159/184) 2023-08-09T11:34:46.7729023Z Resolving deltas: 87% (161/184) 2023-08-09T11:34:46.7729290Z Resolving deltas: 88% (163/184) 2023-08-09T11:34:46.7729803Z Resolving deltas: 89% (165/184) 2023-08-09T11:34:46.7730170Z Resolving deltas: 90% (166/184) 2023-08-09T11:34:46.7730560Z Resolving deltas: 91% (168/184) 2023-08-09T11:34:46.7730958Z Resolving deltas: 92% (170/184) 2023-08-09T11:34:46.7731373Z Resolving deltas: 93% (172/184) 2023-08-09T11:34:46.7732324Z Resolving deltas: 94% (173/184) 2023-08-09T11:34:46.7732600Z Resolving deltas: 95% (176/184) 2023-08-09T11:34:46.7734499Z Resolving deltas: 96% (177/184) 2023-08-09T11:34:46.7735305Z Resolving deltas: 97% (180/184) 2023-08-09T11:34:46.7737109Z Resolving deltas: 98% (181/184) 2023-08-09T11:34:46.7737442Z Resolving deltas: 99% (183/184) 2023-08-09T11:34:46.7739182Z Resolving deltas: 100% (184/184) 2023-08-09T11:34:46.7739465Z Resolving deltas: 100% (184/184), done. 2023-08-09T11:34:46.7863511Z From https://github.com/pytorch/test-infra 2023-08-09T11:34:46.7863893Z * [new branch] main -> origin/main 2023-08-09T11:34:46.7880422Z ##[endgroup] 2023-08-09T11:34:46.7880866Z ##[group]Determining the checkout info 2023-08-09T11:34:46.7882795Z ##[endgroup] 2023-08-09T11:34:46.7883217Z ##[group]Checking out the ref 2023-08-09T11:34:46.7886240Z [command]/usr/bin/git checkout --progress --force -B main refs/remotes/origin/main 2023-08-09T11:34:46.8320002Z Switched to a new branch 'main' 2023-08-09T11:34:46.8321302Z branch 'main' set up to track 'origin/main'. 2023-08-09T11:34:46.8326166Z ##[endgroup] 2023-08-09T11:34:46.8326549Z ##[group]Setting up auth for fetching submodules 2023-08-09T11:34:46.8331271Z [command]/usr/bin/git config --global http.https://github.com/.extraheader AUTHORIZATION: basic *** 2023-08-09T11:34:46.8377355Z [command]/usr/bin/git config --global --unset-all url.https://github.com/.insteadOf 2023-08-09T11:34:46.8404057Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf git@github.com: 2023-08-09T11:34:46.8429008Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf org-21003710@github.com: 2023-08-09T11:34:46.8446917Z ##[endgroup] 2023-08-09T11:34:46.8447292Z ##[group]Fetching submodules 2023-08-09T11:34:46.8450511Z [command]/usr/bin/git submodule sync --recursive 2023-08-09T11:34:46.8655555Z [command]/usr/bin/git -c protocol.version=2 submodule update --init --force --depth=1 --recursive 2023-08-09T11:34:46.8857763Z [command]/usr/bin/git submodule foreach --recursive git config --local gc.auto 0 2023-08-09T11:34:46.9052609Z ##[endgroup] 2023-08-09T11:34:46.9053028Z ##[group]Persisting credentials for submodules 2023-08-09T11:34:46.9057552Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'url\.https\:\/\/github\.com\/\.insteadOf' && git config --local --unset-all 'url.https://github.com/.insteadOf' || :" 2023-08-09T11:34:46.9263096Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local 'http.https://github.com/.extraheader' 'AUTHORIZATION: basic ***' && git config --local --show-origin --name-only --get-regexp remote.origin.url" 2023-08-09T11:34:46.9470472Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'git@github.com:' 2023-08-09T11:34:46.9670577Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'org-21003710@github.com:' 2023-08-09T11:34:46.9870322Z ##[endgroup] 2023-08-09T11:34:46.9898273Z [command]/usr/bin/git log -1 --format='%H' 2023-08-09T11:34:46.9914221Z '264b8afc6d56140163c6b64f4088a17c4cd59bfd' 2023-08-09T11:34:47.0136714Z Prepare all required actions 2023-08-09T11:34:47.0137020Z Getting action download info 2023-08-09T11:34:47.1589396Z Download action repository 'pytorch/test-infra@main' (SHA:264b8afc6d56140163c6b64f4088a17c4cd59bfd) 2023-08-09T11:34:47.4995119Z Getting action download info 2023-08-09T11:34:47.6553322Z Download action repository 'nick-fields/retry@3e91a01664abd3c5cd539100d10d33b9c5b68482' (SHA:3e91a01664abd3c5cd539100d10d33b9c5b68482) 2023-08-09T11:34:48.0054938Z ##[group]Run ./test-infra/.github/actions/setup-linux 2023-08-09T11:34:48.0055316Z env: 2023-08-09T11:34:48.0055542Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T11:34:48.0055870Z REPOSITORY: pytorch/audio 2023-08-09T11:34:48.0056080Z PR_NUMBER: 2023-08-09T11:34:48.0058984Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_APPLY_CMVN_SLIDING=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_FBANK_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_KALDI_PITCH_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_MFCC_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_SPECTROGRAM_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_CUDA_SMALL_MEMORY=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_ON_PYTHON_310=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_TEMPORARY_DISABLED=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_DECODER=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_ENCODER=true # Set CHANNEL if [[(${GITHUB_EVENT_NAME} = 'pull_request' && (${GITHUB_BASE_REF} = 'release'*)) || (${GITHUB_REF} = 'refs/heads/release'*) ]]; then export CHANNEL=test else export CHANNEL=nightly fi echo "::group::Create conda env" # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env echo "::endgroup::" echo "::group::Install PyTorch" conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" echo "::endgroup::" echo "::group::Install TorchAudio" conda install --quiet --yes 'cmake>=3.18.0' ninja pip3 install --progress-bar off -v -e . --no-use-pep517 echo "::endgroup::" echo "::group::Build FFmpeg" .github/scripts/ffmpeg/build_gpu.sh echo "::endgroup::" echo "::group::Install other Dependencies" conda install \ --quiet --yes \ -c conda-forge \ -c numba/label/dev \ sox libvorbis 'librosa==0.10.0' parameterized 'requests>=2.20' pip3 install --progress-bar off \ kaldi-io \ SoundFile \ coverage \ pytest \ pytest-cov \ 'scipy==1.7.3' \ transformers \ expecttest \ unidecode \ inflect \ Pillow \ sentencepiece \ pytorch-lightning \ 'protobuf<4.21.0' \ demucs \ tinytag \ flashlight-text \ git+https://github.com/kpu/kenlm/ \ git+https://github.com/pytorch/fairseq.git@e47a4c8 echo "::endgroup::" echo "::group::Run tests" export PATH="${PWD}/third_party/install/bin/:${PATH}" declare -a args=( '-v' '--cov=torchaudio' "--junitxml=${RUNNER_TEST_RESULTS_DIR}/junit.xml" '--durations' '100' '-k' 'cuda or gpu' ) cd test python3 -m torch.utils.collect_env env | grep TORCHAUDIO || true pytest "${args[@]}" torchaudio_unittest coverage html 2023-08-09T11:34:48.0061899Z ##[endgroup] 2023-08-09T11:34:48.0262045Z ##[group]Run set -euo pipefail 2023-08-09T11:34:48.0262311Z set -euo pipefail 2023-08-09T11:34:48.0262554Z function get_ec2_metadata() { 2023-08-09T11:34:48.0262835Z  # Pulled from instance metadata endpoint for EC2 2023-08-09T11:34:48.0263215Z  # see https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-data-retrieval.html 2023-08-09T11:34:48.0263536Z  category=$1 2023-08-09T11:34:48.0263804Z  curl -fsSL "http://169.254.169.254/latest/meta-data/${category}" 2023-08-09T11:34:48.0264046Z } 2023-08-09T11:34:48.0264391Z echo "ami-id: $(get_ec2_metadata ami-id)" 2023-08-09T11:34:48.0264682Z echo "instance-id: $(get_ec2_metadata instance-id)" 2023-08-09T11:34:48.0264989Z echo "instance-type: $(get_ec2_metadata instance-type)" 2023-08-09T11:34:48.0265258Z echo "system info $(uname -a)" 2023-08-09T11:34:48.0277606Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2023-08-09T11:34:48.0277853Z env: 2023-08-09T11:34:48.0278071Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T11:34:48.0278429Z REPOSITORY: pytorch/audio 2023-08-09T11:34:48.0278638Z PR_NUMBER: 2023-08-09T11:34:48.0281511Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_APPLY_CMVN_SLIDING=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_FBANK_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_KALDI_PITCH_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_MFCC_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_SPECTROGRAM_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_CUDA_SMALL_MEMORY=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_ON_PYTHON_310=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_TEMPORARY_DISABLED=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_DECODER=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_ENCODER=true # Set CHANNEL if [[(${GITHUB_EVENT_NAME} = 'pull_request' && (${GITHUB_BASE_REF} = 'release'*)) || (${GITHUB_REF} = 'refs/heads/release'*) ]]; then export CHANNEL=test else export CHANNEL=nightly fi echo "::group::Create conda env" # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env echo "::endgroup::" echo "::group::Install PyTorch" conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" echo "::endgroup::" echo "::group::Install TorchAudio" conda install --quiet --yes 'cmake>=3.18.0' ninja pip3 install --progress-bar off -v -e . --no-use-pep517 echo "::endgroup::" echo "::group::Build FFmpeg" .github/scripts/ffmpeg/build_gpu.sh echo "::endgroup::" echo "::group::Install other Dependencies" conda install \ --quiet --yes \ -c conda-forge \ -c numba/label/dev \ sox libvorbis 'librosa==0.10.0' parameterized 'requests>=2.20' pip3 install --progress-bar off \ kaldi-io \ SoundFile \ coverage \ pytest \ pytest-cov \ 'scipy==1.7.3' \ transformers \ expecttest \ unidecode \ inflect \ Pillow \ sentencepiece \ pytorch-lightning \ 'protobuf<4.21.0' \ demucs \ tinytag \ flashlight-text \ git+https://github.com/kpu/kenlm/ \ git+https://github.com/pytorch/fairseq.git@e47a4c8 echo "::endgroup::" echo "::group::Run tests" export PATH="${PWD}/third_party/install/bin/:${PATH}" declare -a args=( '-v' '--cov=torchaudio' "--junitxml=${RUNNER_TEST_RESULTS_DIR}/junit.xml" '--durations' '100' '-k' 'cuda or gpu' ) cd test python3 -m torch.utils.collect_env env | grep TORCHAUDIO || true pytest "${args[@]}" torchaudio_unittest coverage html 2023-08-09T11:34:48.0284420Z ##[endgroup] 2023-08-09T11:34:48.0356836Z ami-id: ami-096198a0bccc6bad4 2023-08-09T11:34:48.0401164Z instance-id: i-01c6cc8a42232c8c7 2023-08-09T11:34:48.0444623Z instance-type: g5.4xlarge 2023-08-09T11:34:48.0450781Z system info Linux ip-10-0-0-43.ec2.internal 4.14.252-195.483.amzn2.x86_64 #1 SMP Mon Nov 1 20:58:46 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux 2023-08-09T11:34:48.0472114Z ##[group]Run if systemctl is-active --quiet docker; then 2023-08-09T11:34:48.0472434Z if systemctl is-active --quiet docker; then 2023-08-09T11:34:48.0472710Z  echo "Docker daemon is running..."; 2023-08-09T11:34:48.0472932Z else 2023-08-09T11:34:48.0473181Z  echo "Starting docker deamon..." && sudo systemctl start docker; 2023-08-09T11:34:48.0473568Z fi 2023-08-09T11:34:48.0484148Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2023-08-09T11:34:48.0484387Z env: 2023-08-09T11:34:48.0484615Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T11:34:48.0484873Z REPOSITORY: pytorch/audio 2023-08-09T11:34:48.0485087Z PR_NUMBER: 2023-08-09T11:34:48.0488262Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_APPLY_CMVN_SLIDING=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_FBANK_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_KALDI_PITCH_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_MFCC_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_SPECTROGRAM_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_CUDA_SMALL_MEMORY=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_ON_PYTHON_310=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_TEMPORARY_DISABLED=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_DECODER=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_ENCODER=true # Set CHANNEL if [[(${GITHUB_EVENT_NAME} = 'pull_request' && (${GITHUB_BASE_REF} = 'release'*)) || (${GITHUB_REF} = 'refs/heads/release'*) ]]; then export CHANNEL=test else export CHANNEL=nightly fi echo "::group::Create conda env" # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env echo "::endgroup::" echo "::group::Install PyTorch" conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" echo "::endgroup::" echo "::group::Install TorchAudio" conda install --quiet --yes 'cmake>=3.18.0' ninja pip3 install --progress-bar off -v -e . --no-use-pep517 echo "::endgroup::" echo "::group::Build FFmpeg" .github/scripts/ffmpeg/build_gpu.sh echo "::endgroup::" echo "::group::Install other Dependencies" conda install \ --quiet --yes \ -c conda-forge \ -c numba/label/dev \ sox libvorbis 'librosa==0.10.0' parameterized 'requests>=2.20' pip3 install --progress-bar off \ kaldi-io \ SoundFile \ coverage \ pytest \ pytest-cov \ 'scipy==1.7.3' \ transformers \ expecttest \ unidecode \ inflect \ Pillow \ sentencepiece \ pytorch-lightning \ 'protobuf<4.21.0' \ demucs \ tinytag \ flashlight-text \ git+https://github.com/kpu/kenlm/ \ git+https://github.com/pytorch/fairseq.git@e47a4c8 echo "::endgroup::" echo "::group::Run tests" export PATH="${PWD}/third_party/install/bin/:${PATH}" declare -a args=( '-v' '--cov=torchaudio' "--junitxml=${RUNNER_TEST_RESULTS_DIR}/junit.xml" '--durations' '100' '-k' 'cuda or gpu' ) cd test python3 -m torch.utils.collect_env env | grep TORCHAUDIO || true pytest "${args[@]}" torchaudio_unittest coverage html 2023-08-09T11:34:48.0491334Z ##[endgroup] 2023-08-09T11:34:48.0528313Z Docker daemon is running... 2023-08-09T11:34:48.0543531Z ##[group]Run AWS_ACCOUNT_ID=$(aws sts get-caller-identity|grep Account|cut -f4 -d\") 2023-08-09T11:34:48.0543932Z AWS_ACCOUNT_ID=$(aws sts get-caller-identity|grep Account|cut -f4 -d\") 2023-08-09T11:34:48.0544250Z retry () { "$@" || (sleep 1 && "$@") || (sleep 2 && "$@") } 2023-08-09T11:34:48.0544681Z retry aws ecr get-login*** "$AWS_DEFAULT_REGION" | docker login --username AWS \ 2023-08-09T11:34:48.0545065Z  --password-stdin "$AWS_ACCOUNT_ID.dkr.ecr.$AWS_DEFAULT_REGION.amazonaws.com" 2023-08-09T11:34:48.0555422Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2023-08-09T11:34:48.0555665Z env: 2023-08-09T11:34:48.0555891Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T11:34:48.0556136Z REPOSITORY: pytorch/audio 2023-08-09T11:34:48.0556350Z PR_NUMBER: 2023-08-09T11:34:48.0559390Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_APPLY_CMVN_SLIDING=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_FBANK_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_KALDI_PITCH_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_MFCC_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_SPECTROGRAM_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_CUDA_SMALL_MEMORY=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_ON_PYTHON_310=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_TEMPORARY_DISABLED=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_DECODER=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_ENCODER=true # Set CHANNEL if [[(${GITHUB_EVENT_NAME} = 'pull_request' && (${GITHUB_BASE_REF} = 'release'*)) || (${GITHUB_REF} = 'refs/heads/release'*) ]]; then export CHANNEL=test else export CHANNEL=nightly fi echo "::group::Create conda env" # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env echo "::endgroup::" echo "::group::Install PyTorch" conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" echo "::endgroup::" echo "::group::Install TorchAudio" conda install --quiet --yes 'cmake>=3.18.0' ninja pip3 install --progress-bar off -v -e . --no-use-pep517 echo "::endgroup::" echo "::group::Build FFmpeg" .github/scripts/ffmpeg/build_gpu.sh echo "::endgroup::" echo "::group::Install other Dependencies" conda install \ --quiet --yes \ -c conda-forge \ -c numba/label/dev \ sox libvorbis 'librosa==0.10.0' parameterized 'requests>=2.20' pip3 install --progress-bar off \ kaldi-io \ SoundFile \ coverage \ pytest \ pytest-cov \ 'scipy==1.7.3' \ transformers \ expecttest \ unidecode \ inflect \ Pillow \ sentencepiece \ pytorch-lightning \ 'protobuf<4.21.0' \ demucs \ tinytag \ flashlight-text \ git+https://github.com/kpu/kenlm/ \ git+https://github.com/pytorch/fairseq.git@e47a4c8 echo "::endgroup::" echo "::group::Run tests" export PATH="${PWD}/third_party/install/bin/:${PATH}" declare -a args=( '-v' '--cov=torchaudio' "--junitxml=${RUNNER_TEST_RESULTS_DIR}/junit.xml" '--durations' '100' '-k' 'cuda or gpu' ) cd test python3 -m torch.utils.collect_env env | grep TORCHAUDIO || true pytest "${args[@]}" torchaudio_unittest coverage html 2023-08-09T11:34:48.0562457Z AWS_RETRY_MODE: standard 2023-08-09T11:34:48.0562678Z AWS_MAX_ATTEMPTS: 5 2023-08-09T11:34:48.0562895Z AWS_DEFAULT_REGION: us-east-1 2023-08-09T11:34:48.0563100Z ##[endgroup] 2023-08-09T11:34:48.9119089Z WARNING! Your password will be stored unencrypted in /home/ec2-user/.docker/config.json. 2023-08-09T11:34:48.9119488Z Configure a credential helper to remove this warning. See 2023-08-09T11:34:48.9119938Z https://docs.docker.com/engine/reference/commandline/login/#credentials-store 2023-08-09T11:34:48.9120175Z 2023-08-09T11:34:48.9123717Z Login Succeeded 2023-08-09T11:34:48.9152001Z ##[group]Run env | grep '^GITHUB' >> "${RUNNER_TEMP}/github_env_${GITHUB_RUN_ID}" 2023-08-09T11:34:48.9152354Z env | grep '^GITHUB' >> "${RUNNER_TEMP}/github_env_${GITHUB_RUN_ID}" 2023-08-09T11:34:48.9152674Z env | grep '^CI' >> "${RUNNER_TEMP}/github_env_${GITHUB_RUN_ID}" 2023-08-09T11:34:48.9163321Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2023-08-09T11:34:48.9163555Z env: 2023-08-09T11:34:48.9163788Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T11:34:48.9164041Z REPOSITORY: pytorch/audio 2023-08-09T11:34:48.9164243Z PR_NUMBER: 2023-08-09T11:34:48.9167206Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_APPLY_CMVN_SLIDING=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_FBANK_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_KALDI_PITCH_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_MFCC_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_SPECTROGRAM_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_CUDA_SMALL_MEMORY=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_ON_PYTHON_310=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_TEMPORARY_DISABLED=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_DECODER=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_ENCODER=true # Set CHANNEL if [[(${GITHUB_EVENT_NAME} = 'pull_request' && (${GITHUB_BASE_REF} = 'release'*)) || (${GITHUB_REF} = 'refs/heads/release'*) ]]; then export CHANNEL=test else export CHANNEL=nightly fi echo "::group::Create conda env" # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env echo "::endgroup::" echo "::group::Install PyTorch" conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" echo "::endgroup::" echo "::group::Install TorchAudio" conda install --quiet --yes 'cmake>=3.18.0' ninja pip3 install --progress-bar off -v -e . --no-use-pep517 echo "::endgroup::" echo "::group::Build FFmpeg" .github/scripts/ffmpeg/build_gpu.sh echo "::endgroup::" echo "::group::Install other Dependencies" conda install \ --quiet --yes \ -c conda-forge \ -c numba/label/dev \ sox libvorbis 'librosa==0.10.0' parameterized 'requests>=2.20' pip3 install --progress-bar off \ kaldi-io \ SoundFile \ coverage \ pytest \ pytest-cov \ 'scipy==1.7.3' \ transformers \ expecttest \ unidecode \ inflect \ Pillow \ sentencepiece \ pytorch-lightning \ 'protobuf<4.21.0' \ demucs \ tinytag \ flashlight-text \ git+https://github.com/kpu/kenlm/ \ git+https://github.com/pytorch/fairseq.git@e47a4c8 echo "::endgroup::" echo "::group::Run tests" export PATH="${PWD}/third_party/install/bin/:${PATH}" declare -a args=( '-v' '--cov=torchaudio' "--junitxml=${RUNNER_TEST_RESULTS_DIR}/junit.xml" '--durations' '100' '-k' 'cuda or gpu' ) cd test python3 -m torch.utils.collect_env env | grep TORCHAUDIO || true pytest "${args[@]}" torchaudio_unittest coverage html 2023-08-09T11:34:48.9170541Z ##[endgroup] 2023-08-09T11:34:48.9223503Z ##[group]Run RUNNER_ARTIFACT_DIR="${RUNNER_TEMP}/artifacts" 2023-08-09T11:34:48.9223825Z RUNNER_ARTIFACT_DIR="${RUNNER_TEMP}/artifacts" 2023-08-09T11:34:48.9224110Z mkdir -p "${RUNNER_ARTIFACT_DIR}" 2023-08-09T11:34:48.9224411Z echo "RUNNER_ARTIFACT_DIR=${RUNNER_ARTIFACT_DIR}" >> "${GITHUB_ENV}" 2023-08-09T11:34:48.9224671Z  2023-08-09T11:34:48.9224909Z RUNNER_TEST_RESULTS_DIR="${RUNNER_TEMP}/test-results" 2023-08-09T11:34:48.9225195Z mkdir -p "${RUNNER_TEST_RESULTS_DIR}" 2023-08-09T11:34:48.9225503Z echo "RUNNER_TEST_RESULTS_DIR=${RUNNER_TEST_RESULTS_DIR}" >> "${GITHUB_ENV}" 2023-08-09T11:34:48.9225760Z  2023-08-09T11:34:48.9225979Z RUNNER_DOCS_DIR="${RUNNER_TEMP}/docs" 2023-08-09T11:34:48.9226236Z mkdir -p "${RUNNER_DOCS_DIR}" 2023-08-09T11:34:48.9226514Z echo "RUNNER_DOCS_DIR=${RUNNER_DOCS_DIR}" >> "${GITHUB_ENV}" 2023-08-09T11:34:48.9235521Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2023-08-09T11:34:48.9235762Z env: 2023-08-09T11:34:48.9235987Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T11:34:48.9236232Z REPOSITORY: pytorch/audio 2023-08-09T11:34:48.9236451Z PR_NUMBER: 2023-08-09T11:34:48.9239394Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_APPLY_CMVN_SLIDING=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_FBANK_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_KALDI_PITCH_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_MFCC_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_SPECTROGRAM_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_CUDA_SMALL_MEMORY=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_ON_PYTHON_310=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_TEMPORARY_DISABLED=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_DECODER=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_ENCODER=true # Set CHANNEL if [[(${GITHUB_EVENT_NAME} = 'pull_request' && (${GITHUB_BASE_REF} = 'release'*)) || (${GITHUB_REF} = 'refs/heads/release'*) ]]; then export CHANNEL=test else export CHANNEL=nightly fi echo "::group::Create conda env" # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env echo "::endgroup::" echo "::group::Install PyTorch" conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" echo "::endgroup::" echo "::group::Install TorchAudio" conda install --quiet --yes 'cmake>=3.18.0' ninja pip3 install --progress-bar off -v -e . --no-use-pep517 echo "::endgroup::" echo "::group::Build FFmpeg" .github/scripts/ffmpeg/build_gpu.sh echo "::endgroup::" echo "::group::Install other Dependencies" conda install \ --quiet --yes \ -c conda-forge \ -c numba/label/dev \ sox libvorbis 'librosa==0.10.0' parameterized 'requests>=2.20' pip3 install --progress-bar off \ kaldi-io \ SoundFile \ coverage \ pytest \ pytest-cov \ 'scipy==1.7.3' \ transformers \ expecttest \ unidecode \ inflect \ Pillow \ sentencepiece \ pytorch-lightning \ 'protobuf<4.21.0' \ demucs \ tinytag \ flashlight-text \ git+https://github.com/kpu/kenlm/ \ git+https://github.com/pytorch/fairseq.git@e47a4c8 echo "::endgroup::" echo "::group::Run tests" export PATH="${PWD}/third_party/install/bin/:${PATH}" declare -a args=( '-v' '--cov=torchaudio' "--junitxml=${RUNNER_TEST_RESULTS_DIR}/junit.xml" '--durations' '100' '-k' 'cuda or gpu' ) cd test python3 -m torch.utils.collect_env env | grep TORCHAUDIO || true pytest "${args[@]}" torchaudio_unittest coverage html 2023-08-09T11:34:48.9242397Z ##[endgroup] 2023-08-09T11:34:48.9302361Z ##[group]Run needs=0 2023-08-09T11:34:48.9302578Z needs=0 2023-08-09T11:34:48.9302856Z if lspci -v | grep -e 'controller.*NVIDIA' >/dev/null 2>/dev/null; then 2023-08-09T11:34:48.9303120Z  needs=1 2023-08-09T11:34:48.9303309Z fi 2023-08-09T11:34:48.9303546Z echo "does=${needs}" >> $GITHUB_OUTPUT 2023-08-09T11:34:48.9314268Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2023-08-09T11:34:48.9314504Z env: 2023-08-09T11:34:48.9314727Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T11:34:48.9314978Z REPOSITORY: pytorch/audio 2023-08-09T11:34:48.9315180Z PR_NUMBER: 2023-08-09T11:34:48.9318230Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_APPLY_CMVN_SLIDING=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_FBANK_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_KALDI_PITCH_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_MFCC_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_SPECTROGRAM_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_CUDA_SMALL_MEMORY=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_ON_PYTHON_310=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_TEMPORARY_DISABLED=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_DECODER=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_ENCODER=true # Set CHANNEL if [[(${GITHUB_EVENT_NAME} = 'pull_request' && (${GITHUB_BASE_REF} = 'release'*)) || (${GITHUB_REF} = 'refs/heads/release'*) ]]; then export CHANNEL=test else export CHANNEL=nightly fi echo "::group::Create conda env" # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env echo "::endgroup::" echo "::group::Install PyTorch" conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" echo "::endgroup::" echo "::group::Install TorchAudio" conda install --quiet --yes 'cmake>=3.18.0' ninja pip3 install --progress-bar off -v -e . --no-use-pep517 echo "::endgroup::" echo "::group::Build FFmpeg" .github/scripts/ffmpeg/build_gpu.sh echo "::endgroup::" echo "::group::Install other Dependencies" conda install \ --quiet --yes \ -c conda-forge \ -c numba/label/dev \ sox libvorbis 'librosa==0.10.0' parameterized 'requests>=2.20' pip3 install --progress-bar off \ kaldi-io \ SoundFile \ coverage \ pytest \ pytest-cov \ 'scipy==1.7.3' \ transformers \ expecttest \ unidecode \ inflect \ Pillow \ sentencepiece \ pytorch-lightning \ 'protobuf<4.21.0' \ demucs \ tinytag \ flashlight-text \ git+https://github.com/kpu/kenlm/ \ git+https://github.com/pytorch/fairseq.git@e47a4c8 echo "::endgroup::" echo "::group::Run tests" export PATH="${PWD}/third_party/install/bin/:${PATH}" declare -a args=( '-v' '--cov=torchaudio' "--junitxml=${RUNNER_TEST_RESULTS_DIR}/junit.xml" '--durations' '100' '-k' 'cuda or gpu' ) cd test python3 -m torch.utils.collect_env env | grep TORCHAUDIO || true pytest "${args[@]}" torchaudio_unittest coverage html 2023-08-09T11:34:48.9321310Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-08-09T11:34:48.9321667Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-08-09T11:34:48.9321999Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-08-09T11:34:48.9322251Z ##[endgroup] 2023-08-09T11:34:48.9500307Z ##[group]Run pytorch/test-infra/.github/actions/setup-nvidia@main 2023-08-09T11:34:48.9500569Z with: 2023-08-09T11:34:48.9500775Z driver-version: 535.54.03 2023-08-09T11:34:48.9500967Z env: 2023-08-09T11:34:48.9501189Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T11:34:48.9501438Z REPOSITORY: pytorch/audio 2023-08-09T11:34:48.9501638Z PR_NUMBER: 2023-08-09T11:34:48.9504597Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_APPLY_CMVN_SLIDING=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_FBANK_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_KALDI_PITCH_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_MFCC_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_SPECTROGRAM_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_CUDA_SMALL_MEMORY=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_ON_PYTHON_310=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_TEMPORARY_DISABLED=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_DECODER=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_ENCODER=true # Set CHANNEL if [[(${GITHUB_EVENT_NAME} = 'pull_request' && (${GITHUB_BASE_REF} = 'release'*)) || (${GITHUB_REF} = 'refs/heads/release'*) ]]; then export CHANNEL=test else export CHANNEL=nightly fi echo "::group::Create conda env" # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env echo "::endgroup::" echo "::group::Install PyTorch" conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" echo "::endgroup::" echo "::group::Install TorchAudio" conda install --quiet --yes 'cmake>=3.18.0' ninja pip3 install --progress-bar off -v -e . --no-use-pep517 echo "::endgroup::" echo "::group::Build FFmpeg" .github/scripts/ffmpeg/build_gpu.sh echo "::endgroup::" echo "::group::Install other Dependencies" conda install \ --quiet --yes \ -c conda-forge \ -c numba/label/dev \ sox libvorbis 'librosa==0.10.0' parameterized 'requests>=2.20' pip3 install --progress-bar off \ kaldi-io \ SoundFile \ coverage \ pytest \ pytest-cov \ 'scipy==1.7.3' \ transformers \ expecttest \ unidecode \ inflect \ Pillow \ sentencepiece \ pytorch-lightning \ 'protobuf<4.21.0' \ demucs \ tinytag \ flashlight-text \ git+https://github.com/kpu/kenlm/ \ git+https://github.com/pytorch/fairseq.git@e47a4c8 echo "::endgroup::" echo "::group::Run tests" export PATH="${PWD}/third_party/install/bin/:${PATH}" declare -a args=( '-v' '--cov=torchaudio' "--junitxml=${RUNNER_TEST_RESULTS_DIR}/junit.xml" '--durations' '100' '-k' 'cuda or gpu' ) cd test python3 -m torch.utils.collect_env env | grep TORCHAUDIO || true pytest "${args[@]}" torchaudio_unittest coverage html 2023-08-09T11:34:48.9507668Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-08-09T11:34:48.9508043Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-08-09T11:34:48.9508397Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-08-09T11:34:48.9508643Z ##[endgroup] 2023-08-09T11:34:48.9533762Z ##[group]Run nick-fields/retry@3e91a01664abd3c5cd539100d10d33b9c5b68482 2023-08-09T11:34:48.9534016Z with: 2023-08-09T11:34:48.9534194Z timeout_minutes: 10 2023-08-09T11:34:48.9534392Z max_attempts: 3 2023-08-09T11:34:48.9541809Z command: # Is it disgusting to have a full shell script here in this github action? Sure # But is it the best way to make it so that this action relies on nothing else? Absolutely set -eou pipefail DISTRIBUTION=$(. /etc/os-release;echo $ID$VERSION_ID) DRIVER_FN="NVIDIA-Linux-x86_64-${DRIVER_VERSION}.run" YUM_REPO_URL="https://nvidia.github.io/nvidia-docker/${DISTRIBUTION}/nvidia-docker.repo" install_nvidia_docker2_amzn2() { ( set -x # Needed for yum-config-manager sudo yum install -y yum-utils sudo yum-config-manager --add-repo "${YUM_REPO_URL}" sudo yum install -y nvidia-docker2 sudo systemctl restart docker ) } install_nvidia_docker2_ubuntu20() { ( set -x sudo apt-get install -y nvidia-docker2 sudo systemctl restart docker ) } pre_install_nvidia_driver_amzn2() { ( # Purge any nvidia driver installed from RHEL repo sudo yum remove -y nvidia-driver-latest-dkms ) } install_nvidia_driver_common() { ( # Try to gather more information about the runner and its existing NVIDIA driver if any echo "Before installing NVIDIA driver" lspci lsmod modinfo nvidia || true HAS_NVIDIA_DRIVER=0 # Check if NVIDIA driver has already been installed if [ -x "$(command -v nvidia-smi)" ]; then set +e # The driver exists, check its version next. Also check only the first GPU if there are more than one of them # so that the same driver version is not print over multiple lines INSTALLED_DRIVER_VERSION=$(nvidia-smi --query-gpu=driver_version --format=csv,noheader --id=0) NVIDIA_SMI_STATUS=$? if [ "$NVIDIA_SMI_STATUS" -ne 0 ] && [ "$NVIDIA_SMI_STATUS" -ne 14 ]; then echo "Failed to get NVIDIA driver version ($INSTALLED_DRIVER_VERSION). Continuing" elif [ "$INSTALLED_DRIVER_VERSION" != "$DRIVER_VERSION" ]; then echo "NVIDIA driver ($INSTALLED_DRIVER_VERSION) has been installed, but we expect to have $DRIVER_VERSION instead. Continuing" else HAS_NVIDIA_DRIVER=1 echo "NVIDIA driver ($INSTALLED_DRIVER_VERSION) has already been installed. Skipping NVIDIA driver installation" fi set -e fi if [ "$HAS_NVIDIA_DRIVER" -eq 0 ]; then # CAUTION: this may need to be updated in future if [ "${DISTRIBUTION}" != ubuntu20.04 ]; then sudo yum groupinstall -y "Development Tools" # ensure our kernel install is the same as our underlying kernel, # groupinstall "Development Tools" has a habit of mismatching kernel headers sudo yum install -y "kernel-devel-uname-r == $(uname -r)" sudo modprobe backlight fi sudo curl -fsL -o /tmp/nvidia_driver "https://s3.amazonaws.com/ossci-linux/nvidia_driver/$DRIVER_FN" set +e sudo /bin/bash /tmp/nvidia_driver -s --no-drm NVIDIA_INSTALLATION_STATUS=$? RESET_GPU=0 if [ "$NVIDIA_INSTALLATION_STATUS" -ne 0 ]; then sudo cat /var/log/nvidia-installer.log # Fail to install NVIDIA driver, try to reset the GPU RESET_GPU=1 elif [ -x "$(command -v nvidia-smi)" ]; then # Check again if nvidia-smi works even if the driver installation completes successfully INSTALLED_DRIVER_VERSION=$(nvidia-smi --query-gpu=driver_version --format=csv,noheader --id=0) NVIDIA_SMI_STATUS=$? if [ "$NVIDIA_SMI_STATUS" -ne 0 ] && [ "$NVIDIA_SMI_STATUS" -ne 14 ]; then RESET_GPU=1 fi fi if [ "$RESET_GPU" -eq 1 ]; then NVIDIA_DEVICES=$(lspci -D | grep -i NVIDIA | cut -d' ' -f1) # The GPU can get stuck in a failure state if somehow the test crashs the GPU microcode. When this # happens, we'll try to reset all NVIDIA devices https://github.com/pytorch/pytorch/issues/88388 for PCI_ID in $NVIDIA_DEVICES; do DEVICE_ENABLED=$(cat /sys/bus/pci/devices/$PCI_ID/enable) echo "Reseting $PCI_ID (enabled state: $DEVICE_ENABLED)" # This requires sudo permission of course echo "1" | sudo tee /sys/bus/pci/devices/$PCI_ID/reset sleep 1 done fi sudo rm -fv /tmp/nvidia_driver set -e fi ) } post_install_nvidia_driver_common() { ( sudo modprobe nvidia || true echo "After installing NVIDIA driver" lspci lsmod modinfo nvidia || true ( set +e nvidia-smi # NB: Annoyingly, nvidia-smi command returns successfully with return code 0 even in # the case where the driver has already crashed as it still can get the driver version # and some basic information like the bus ID. However, the rest of the information # would be missing (ERR!), for example: # # +-----------------------------------------------------------------------------+ # | NVIDIA-SMI 525.89.02 Driver Version: 525.89.02 CUDA Version: 12.0 | # |-------------------------------+----------------------+----------------------+ # | GPU Name Persistence-M| Bus-Id Disp.A | Volatile Uncorr. ECC | # | Fan Temp Perf Pwr:Usage/Cap| Memory-Usage | GPU-Util Compute M. | # | | | MIG M. | # |===============================+======================+======================| # | 0 ERR! Off | 00000000:00:1E.0 Off | ERR! | # |ERR! ERR! ERR! ERR! / ERR! | 4184MiB / 23028MiB | ERR! Default | # | | | ERR! | # +-------------------------------+----------------------+----------------------+ # # +-----------------------------------------------------------------------------+ # | Processes: | # | GPU GI CI PID Type Process name GPU Memory | # | ID ID Usage | # |=============================================================================| # +-----------------------------------------------------------------------------+ # # This should be reported as a failure instead as it will guarantee to fail when # Docker tries to run with --gpus all # # So, the correct check here is to query one of the missing piece of info like # GPU name, so that the command can fail accordingly nvidia-smi --query-gpu=gpu_name --format=csv,noheader --id=0 NVIDIA_SMI_STATUS=$? # Allowable exit statuses for nvidia-smi, see: https://github.com/NVIDIA/gpu-operator/issues/285 if [ "$NVIDIA_SMI_STATUS" -eq 0 ] || [ "$NVIDIA_SMI_STATUS" -eq 14 ]; then echo "INFO: Ignoring allowed status ${NVIDIA_SMI_STATUS}" else echo "ERROR: nvidia-smi exited with unresolved status ${NVIDIA_SMI_STATUS}" exit ${NVIDIA_SMI_STATUS} fi set -e ) ) } install_nvidia_driver_amzn2() { ( set -x pre_install_nvidia_driver_amzn2 install_nvidia_driver_common post_install_nvidia_driver_common ) } install_nvidia_driver_ubuntu20() { ( set -x install_nvidia_driver_common post_install_nvidia_driver_common ) } echo "== Installing nvidia driver ${DRIVER_FN} ==" case "${DISTRIBUTION}" in amzn*) install_nvidia_driver_amzn2 ;; ubuntu20.04) install_nvidia_driver_ubuntu20 ;; *) echo "ERROR: Unknown distribution ${DISTRIBUTION}" exit 1 ;; esac # Install container toolkit based on distribution echo "== Installing nvidia container toolkit for ${DISTRIBUTION} ==" case "${DISTRIBUTION}" in amzn*) install_nvidia_docker2_amzn2 ;; ubuntu20.04) install_nvidia_docker2_ubuntu20 ;; *) echo "ERROR: Unknown distribution ${DISTRIBUTION}" exit 1 ;; esac echo "GPU_FLAG=--gpus all -e NVIDIA_DRIVER_CAPABILITIES=all" >> "${GITHUB_ENV}" 2023-08-09T11:34:48.9549192Z retry_wait_seconds: 10 2023-08-09T11:34:48.9549416Z polling_interval_seconds: 1 2023-08-09T11:34:48.9549634Z warning_on_retry: true 2023-08-09T11:34:48.9549838Z continue_on_error: false 2023-08-09T11:34:48.9550041Z env: 2023-08-09T11:34:48.9550264Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T11:34:48.9550515Z REPOSITORY: pytorch/audio 2023-08-09T11:34:48.9550719Z PR_NUMBER: 2023-08-09T11:34:48.9553602Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_APPLY_CMVN_SLIDING=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_FBANK_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_KALDI_PITCH_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_MFCC_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_SPECTROGRAM_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_CUDA_SMALL_MEMORY=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_ON_PYTHON_310=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_TEMPORARY_DISABLED=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_DECODER=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_ENCODER=true # Set CHANNEL if [[(${GITHUB_EVENT_NAME} = 'pull_request' && (${GITHUB_BASE_REF} = 'release'*)) || (${GITHUB_REF} = 'refs/heads/release'*) ]]; then export CHANNEL=test else export CHANNEL=nightly fi echo "::group::Create conda env" # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env echo "::endgroup::" echo "::group::Install PyTorch" conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" echo "::endgroup::" echo "::group::Install TorchAudio" conda install --quiet --yes 'cmake>=3.18.0' ninja pip3 install --progress-bar off -v -e . --no-use-pep517 echo "::endgroup::" echo "::group::Build FFmpeg" .github/scripts/ffmpeg/build_gpu.sh echo "::endgroup::" echo "::group::Install other Dependencies" conda install \ --quiet --yes \ -c conda-forge \ -c numba/label/dev \ sox libvorbis 'librosa==0.10.0' parameterized 'requests>=2.20' pip3 install --progress-bar off \ kaldi-io \ SoundFile \ coverage \ pytest \ pytest-cov \ 'scipy==1.7.3' \ transformers \ expecttest \ unidecode \ inflect \ Pillow \ sentencepiece \ pytorch-lightning \ 'protobuf<4.21.0' \ demucs \ tinytag \ flashlight-text \ git+https://github.com/kpu/kenlm/ \ git+https://github.com/pytorch/fairseq.git@e47a4c8 echo "::endgroup::" echo "::group::Run tests" export PATH="${PWD}/third_party/install/bin/:${PATH}" declare -a args=( '-v' '--cov=torchaudio' "--junitxml=${RUNNER_TEST_RESULTS_DIR}/junit.xml" '--durations' '100' '-k' 'cuda or gpu' ) cd test python3 -m torch.utils.collect_env env | grep TORCHAUDIO || true pytest "${args[@]}" torchaudio_unittest coverage html 2023-08-09T11:34:48.9556689Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-08-09T11:34:48.9557040Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-08-09T11:34:48.9557373Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-08-09T11:34:48.9557633Z DRIVER_VERSION: 535.54.03 2023-08-09T11:34:48.9557830Z ##[endgroup] 2023-08-09T11:34:49.0026240Z == Installing nvidia driver NVIDIA-Linux-x86_64-535.54.03.run == 2023-08-09T11:34:49.0026935Z + pre_install_nvidia_driver_amzn2 2023-08-09T11:34:49.0027259Z + sudo yum remove -y nvidia-driver-latest-dkms 2023-08-09T11:34:49.2808082Z Loaded plugins: extras_suggestions, langpacks, priorities, update-motd 2023-08-09T11:34:49.3206624Z No Match for argument: nvidia-driver-latest-dkms 2023-08-09T11:34:49.3453528Z No Packages marked for removal 2023-08-09T11:34:49.3581420Z + install_nvidia_driver_common 2023-08-09T11:34:49.3583140Z + echo 'Before installing NVIDIA driver' 2023-08-09T11:34:49.3583380Z + lspci 2023-08-09T11:34:49.3584809Z Before installing NVIDIA driver 2023-08-09T11:34:49.3667719Z 00:00.0 Host bridge: Intel Corporation 440FX - 82441FX PMC [Natoma] 2023-08-09T11:34:49.3668064Z 00:01.0 ISA bridge: Intel Corporation 82371SB PIIX3 ISA [Natoma/Triton II] 2023-08-09T11:34:49.3668495Z 00:01.3 Non-VGA unclassified device: Intel Corporation 82371AB/EB/MB PIIX4 ACPI (rev 08) 2023-08-09T11:34:49.3668846Z 00:03.0 VGA compatible controller: Amazon.com, Inc. Device 1111 2023-08-09T11:34:49.3669223Z 00:04.0 Non-Volatile memory controller: Amazon.com, Inc. Device 8061 2023-08-09T11:34:49.3669555Z 00:05.0 Ethernet controller: Amazon.com, Inc. Elastic Network Adapter (ENA) 2023-08-09T11:34:49.3669874Z 00:1e.0 3D controller: NVIDIA Corporation Device 2237 (rev a1) 2023-08-09T11:34:49.3670268Z 00:1f.0 Non-Volatile memory controller: Amazon.com, Inc. NVMe SSD Controller 2023-08-09T11:34:49.3670533Z + lsmod 2023-08-09T11:34:49.3680804Z Module Size Used by 2023-08-09T11:34:49.3681567Z nvidia_modeset 1306624 0 2023-08-09T11:34:49.3681892Z veth 16384 0 2023-08-09T11:34:49.3682167Z nvidia_uvm 1466368 0 2023-08-09T11:34:49.3682501Z nvidia 56422400 2 nvidia_uvm,nvidia_modeset 2023-08-09T11:34:49.3682812Z drm 425984 1 nvidia 2023-08-09T11:34:49.3683099Z i2c_core 77824 2 nvidia,drm 2023-08-09T11:34:49.3683449Z backlight 16384 1 nvidia_modeset 2023-08-09T11:34:49.3683707Z xt_conntrack 16384 1 2023-08-09T11:34:49.3683928Z ipt_MASQUERADE 16384 1 2023-08-09T11:34:49.3684177Z nf_nat_masquerade_ipv4 16384 1 ipt_MASQUERADE 2023-08-09T11:34:49.3684420Z nf_conntrack_netlink 49152 0 2023-08-09T11:34:49.3684667Z nfnetlink 16384 2 nf_conntrack_netlink 2023-08-09T11:34:49.3684899Z xfrm_user 45056 1 2023-08-09T11:34:49.3685299Z xfrm_algo 16384 1 xfrm_user 2023-08-09T11:34:49.3685522Z iptable_nat 16384 1 2023-08-09T11:34:49.3685738Z nf_conntrack_ipv4 16384 3 2023-08-09T11:34:49.3685968Z nf_defrag_ipv4 16384 1 nf_conntrack_ipv4 2023-08-09T11:34:49.3686219Z nf_nat_ipv4 16384 1 iptable_nat 2023-08-09T11:34:49.3686483Z nf_nat 36864 2 nf_nat_masquerade_ipv4,nf_nat_ipv4 2023-08-09T11:34:49.3686865Z nf_conntrack 155648 7 xt_conntrack,nf_nat_masquerade_ipv4,nf_conntrack_ipv4,nf_nat,ipt_MASQUERADE,nf_nat_ipv4,nf_conntrack_netlink 2023-08-09T11:34:49.3687279Z xt_addrtype 16384 2 2023-08-09T11:34:49.3687789Z iptable_filter 16384 1 2023-08-09T11:34:49.3688089Z br_netfilter 24576 0 2023-08-09T11:34:49.3688378Z bridge 172032 1 br_netfilter 2023-08-09T11:34:49.3688671Z stp 16384 1 bridge 2023-08-09T11:34:49.3688955Z llc 16384 2 bridge,stp 2023-08-09T11:34:49.3689237Z overlay 86016 0 2023-08-09T11:34:49.3689541Z sunrpc 393216 1 2023-08-09T11:34:49.3689812Z dm_mirror 28672 0 2023-08-09T11:34:49.3690051Z dm_region_hash 20480 1 dm_mirror 2023-08-09T11:34:49.3690338Z dm_log 20480 2 dm_region_hash,dm_mirror 2023-08-09T11:34:49.3690621Z dm_mod 143360 2 dm_log,dm_mirror 2023-08-09T11:34:49.3690842Z dax 69632 1 dm_mod 2023-08-09T11:34:49.3691045Z crc32_pclmul 16384 0 2023-08-09T11:34:49.3691268Z ghash_clmulni_intel 16384 0 2023-08-09T11:34:49.3691505Z pcbc 16384 0 2023-08-09T11:34:49.3691772Z aesni_intel 188416 0 2023-08-09T11:34:49.3692021Z aes_x86_64 20480 1 aesni_intel 2023-08-09T11:34:49.3692278Z crypto_simd 16384 1 aesni_intel 2023-08-09T11:34:49.3692502Z glue_helper 16384 1 aesni_intel 2023-08-09T11:34:49.3692714Z mousedev 24576 0 2023-08-09T11:34:49.3692980Z cryptd 28672 3 crypto_simd,ghash_clmulni_intel,aesni_intel 2023-08-09T11:34:49.3693235Z psmouse 32768 0 2023-08-09T11:34:49.3693430Z evdev 20480 3 2023-08-09T11:34:49.3693625Z button 16384 0 2023-08-09T11:34:49.3693881Z ena 114688 0 2023-08-09T11:34:49.3694104Z crc32c_intel 24576 0 2023-08-09T11:34:49.3694303Z autofs4 49152 2 2023-08-09T11:34:49.3694497Z + modinfo nvidia 2023-08-09T11:34:49.3694956Z filename: /lib/modules/4.14.252-195.483.amzn2.x86_64/kernel/drivers/video/nvidia.ko 2023-08-09T11:34:49.3695257Z firmware: nvidia/535.54.03/gsp_tu10x.bin 2023-08-09T11:34:49.3695504Z firmware: nvidia/535.54.03/gsp_ga10x.bin 2023-08-09T11:34:49.3695848Z alias: char-major-195-* 2023-08-09T11:34:49.3696067Z version: 535.54.03 2023-08-09T11:34:49.3696270Z supported: external 2023-08-09T11:34:49.3696464Z license: NVIDIA 2023-08-09T11:34:49.3696691Z srcversion: EA9C7EF32617E104C8240C4 2023-08-09T11:34:49.3696940Z alias: pci:v000010DEd*sv*sd*bc06sc80i00* 2023-08-09T11:34:49.3697188Z alias: pci:v000010DEd*sv*sd*bc03sc02i00* 2023-08-09T11:34:49.3697441Z alias: pci:v000010DEd*sv*sd*bc03sc00i00* 2023-08-09T11:34:49.3697706Z depends: i2c-core,drm 2023-08-09T11:34:49.3697917Z retpoline: Y 2023-08-09T11:34:49.3698103Z name: nvidia 2023-08-09T11:34:49.3698413Z vermagic: 4.14.252-195.483.amzn2.x86_64 SMP mod_unload modversions 2023-08-09T11:34:49.3698721Z parm: NvSwitchRegDwords:NvSwitch regkey (charp) 2023-08-09T11:34:49.3699046Z parm: NvSwitchBlacklist:NvSwitchBlacklist=uuid[,uuid...] (charp) 2023-08-09T11:34:49.3699343Z parm: NVreg_ResmanDebugLevel:int 2023-08-09T11:34:49.3699635Z parm: NVreg_RmLogonRC:int 2023-08-09T11:34:49.3699883Z parm: NVreg_ModifyDeviceFiles:int 2023-08-09T11:34:49.3700129Z parm: NVreg_DeviceFileUID:int 2023-08-09T11:34:49.3700568Z parm: NVreg_DeviceFileGID:int 2023-08-09T11:34:49.3700812Z parm: NVreg_DeviceFileMode:int 2023-08-09T11:34:49.3701111Z parm: NVreg_InitializeSystemMemoryAllocations:int 2023-08-09T11:34:49.3701422Z parm: NVreg_UsePageAttributeTable:int 2023-08-09T11:34:49.3701674Z parm: NVreg_EnablePCIeGen3:int 2023-08-09T11:34:49.3701908Z parm: NVreg_EnableMSI:int 2023-08-09T11:34:49.3702142Z parm: NVreg_TCEBypassMode:int 2023-08-09T11:34:49.3702402Z parm: NVreg_EnableStreamMemOPs:int 2023-08-09T11:34:49.3702755Z parm: NVreg_RestrictProfilingToAdminUsers:int 2023-08-09T11:34:49.3703080Z parm: NVreg_PreserveVideoMemoryAllocations:int 2023-08-09T11:34:49.3703387Z parm: NVreg_EnableS0ixPowerManagement:int 2023-08-09T11:34:49.3703720Z parm: NVreg_S0ixPowerManagementVideoMemoryThreshold:int 2023-08-09T11:34:49.3704043Z parm: NVreg_DynamicPowerManagement:int 2023-08-09T11:34:49.3704400Z parm: NVreg_DynamicPowerManagementVideoMemoryThreshold:int 2023-08-09T11:34:49.3704713Z parm: NVreg_EnableGpuFirmware:int 2023-08-09T11:34:49.3704982Z parm: NVreg_EnableGpuFirmwareLogs:int 2023-08-09T11:34:49.3705276Z parm: NVreg_OpenRmEnableUnsupportedGpus:int 2023-08-09T11:34:49.3705571Z parm: NVreg_EnableUserNUMAManagement:int 2023-08-09T11:34:49.3705840Z parm: NVreg_MemoryPoolSize:int 2023-08-09T11:34:49.3706099Z parm: NVreg_KMallocHeapMaxSize:int 2023-08-09T11:34:49.3706362Z parm: NVreg_VMallocHeapMaxSize:int 2023-08-09T11:34:49.3706615Z parm: NVreg_IgnoreMMIOCheck:int 2023-08-09T11:34:49.3706873Z parm: NVreg_NvLinkDisable:int 2023-08-09T11:34:49.3707156Z parm: NVreg_EnablePCIERelaxedOrderingMode:int 2023-08-09T11:34:49.3707437Z parm: NVreg_RegisterPCIDriver:int 2023-08-09T11:34:49.3707701Z parm: NVreg_EnableResizableBar:int 2023-08-09T11:34:49.3707967Z parm: NVreg_EnableDbgBreakpoint:int 2023-08-09T11:34:49.3708225Z parm: NVreg_RegistryDwords:charp 2023-08-09T11:34:49.3708501Z parm: NVreg_RegistryDwordsPerDevice:charp 2023-08-09T11:34:49.3708754Z parm: NVreg_RmMsg:charp 2023-08-09T11:34:49.3708982Z parm: NVreg_GpuBlacklist:charp 2023-08-09T11:34:49.3709243Z parm: NVreg_TemporaryFilePath:charp 2023-08-09T11:34:49.3709501Z parm: NVreg_ExcludedGpus:charp 2023-08-09T11:34:49.3709752Z parm: NVreg_DmaRemapPeerMmio:int 2023-08-09T11:34:49.3710002Z parm: NVreg_RmNvlinkBandwidth:charp 2023-08-09T11:34:49.3710255Z parm: rm_firmware_active:charp 2023-08-09T11:34:49.3710475Z + HAS_NVIDIA_DRIVER=0 2023-08-09T11:34:49.3710712Z ++ command -v nvidia-smi 2023-08-09T11:34:49.3710964Z + '[' -x /usr/bin/nvidia-smi ']' 2023-08-09T11:34:49.3711171Z + set +e 2023-08-09T11:34:49.3711479Z ++ nvidia-smi --query-gpu=driver_version --format=csv,noheader --id=0 2023-08-09T11:34:51.8401655Z + INSTALLED_DRIVER_VERSION=535.54.03 2023-08-09T11:34:51.8402065Z + NVIDIA_SMI_STATUS=0 2023-08-09T11:34:51.8402485Z + '[' 0 -ne 0 ']' 2023-08-09T11:34:51.8402765Z + '[' 535.54.03 '!=' 535.54.03 ']' 2023-08-09T11:34:51.8402964Z + HAS_NVIDIA_DRIVER=1 2023-08-09T11:34:51.8403333Z + echo 'NVIDIA driver (535.54.03) has already been installed. Skipping NVIDIA driver installation' 2023-08-09T11:34:51.8403618Z + set -e 2023-08-09T11:34:51.8403820Z + '[' 1 -eq 0 ']' 2023-08-09T11:34:51.8404095Z NVIDIA driver (535.54.03) has already been installed. Skipping NVIDIA driver installation 2023-08-09T11:34:51.8404411Z + post_install_nvidia_driver_common 2023-08-09T11:34:51.8404636Z + sudo modprobe nvidia 2023-08-09T11:34:51.8501076Z + echo 'After installing NVIDIA driver' 2023-08-09T11:34:51.8501415Z + lspci 2023-08-09T11:34:51.8502783Z After installing NVIDIA driver 2023-08-09T11:34:51.8585484Z 00:00.0 Host bridge: Intel Corporation 440FX - 82441FX PMC [Natoma] 2023-08-09T11:34:51.8585851Z 00:01.0 ISA bridge: Intel Corporation 82371SB PIIX3 ISA [Natoma/Triton II] 2023-08-09T11:34:51.8586552Z 00:01.3 Non-VGA unclassified device: Intel Corporation 82371AB/EB/MB PIIX4 ACPI (rev 08) 2023-08-09T11:34:51.8586899Z 00:03.0 VGA compatible controller: Amazon.com, Inc. Device 1111 2023-08-09T11:34:51.8587278Z 00:04.0 Non-Volatile memory controller: Amazon.com, Inc. Device 8061 2023-08-09T11:34:51.8587598Z 00:05.0 Ethernet controller: Amazon.com, Inc. Elastic Network Adapter (ENA) 2023-08-09T11:34:51.8587915Z 00:1e.0 3D controller: NVIDIA Corporation Device 2237 (rev a1) 2023-08-09T11:34:51.8588290Z 00:1f.0 Non-Volatile memory controller: Amazon.com, Inc. NVMe SSD Controller 2023-08-09T11:34:51.8588625Z + lsmod 2023-08-09T11:34:51.8598855Z Module Size Used by 2023-08-09T11:34:51.8599086Z nvidia_modeset 1306624 0 2023-08-09T11:34:51.8599296Z veth 16384 0 2023-08-09T11:34:51.8599495Z nvidia_uvm 1466368 0 2023-08-09T11:34:51.8599813Z nvidia 56422400 2 nvidia_uvm,nvidia_modeset 2023-08-09T11:34:51.8600171Z drm 425984 1 nvidia 2023-08-09T11:34:51.8600462Z i2c_core 77824 2 nvidia,drm 2023-08-09T11:34:51.8600789Z backlight 16384 1 nvidia_modeset 2023-08-09T11:34:51.8601077Z xt_conntrack 16384 1 2023-08-09T11:34:51.8601296Z ipt_MASQUERADE 16384 1 2023-08-09T11:34:51.8601624Z nf_nat_masquerade_ipv4 16384 1 ipt_MASQUERADE 2023-08-09T11:34:51.8601939Z nf_conntrack_netlink 49152 0 2023-08-09T11:34:51.8602258Z nfnetlink 16384 2 nf_conntrack_netlink 2023-08-09T11:34:51.8602584Z xfrm_user 45056 1 2023-08-09T11:34:51.8602883Z xfrm_algo 16384 1 xfrm_user 2023-08-09T11:34:51.8603195Z iptable_nat 16384 1 2023-08-09T11:34:51.8603492Z nf_conntrack_ipv4 16384 3 2023-08-09T11:34:51.8603814Z nf_defrag_ipv4 16384 1 nf_conntrack_ipv4 2023-08-09T11:34:51.8604146Z nf_nat_ipv4 16384 1 iptable_nat 2023-08-09T11:34:51.8604500Z nf_nat 36864 2 nf_nat_masquerade_ipv4,nf_nat_ipv4 2023-08-09T11:34:51.8605032Z nf_conntrack 155648 7 xt_conntrack,nf_nat_masquerade_ipv4,nf_conntrack_ipv4,nf_nat,ipt_MASQUERADE,nf_nat_ipv4,nf_conntrack_netlink 2023-08-09T11:34:51.8605456Z xt_addrtype 16384 2 2023-08-09T11:34:51.8605697Z iptable_filter 16384 1 2023-08-09T11:34:51.8605995Z br_netfilter 24576 0 2023-08-09T11:34:51.8606300Z bridge 172032 1 br_netfilter 2023-08-09T11:34:51.8606593Z stp 16384 1 bridge 2023-08-09T11:34:51.8606803Z llc 16384 2 bridge,stp 2023-08-09T11:34:51.8607084Z overlay 86016 0 2023-08-09T11:34:51.8607345Z sunrpc 393216 1 2023-08-09T11:34:51.8607846Z dm_mirror 28672 0 2023-08-09T11:34:51.8608180Z dm_region_hash 20480 1 dm_mirror 2023-08-09T11:34:51.8608519Z dm_log 20480 2 dm_region_hash,dm_mirror 2023-08-09T11:34:51.8608847Z dm_mod 143360 2 dm_log,dm_mirror 2023-08-09T11:34:51.8609150Z dax 69632 1 dm_mod 2023-08-09T11:34:51.8609428Z crc32_pclmul 16384 0 2023-08-09T11:34:51.8609716Z ghash_clmulni_intel 16384 0 2023-08-09T11:34:51.8609979Z pcbc 16384 0 2023-08-09T11:34:51.8610240Z aesni_intel 188416 0 2023-08-09T11:34:51.8610517Z aes_x86_64 20480 1 aesni_intel 2023-08-09T11:34:51.8610805Z crypto_simd 16384 1 aesni_intel 2023-08-09T11:34:51.8611106Z glue_helper 16384 1 aesni_intel 2023-08-09T11:34:51.8611387Z mousedev 24576 0 2023-08-09T11:34:51.8611722Z cryptd 28672 3 crypto_simd,ghash_clmulni_intel,aesni_intel 2023-08-09T11:34:51.8611982Z psmouse 32768 0 2023-08-09T11:34:51.8612177Z evdev 20480 3 2023-08-09T11:34:51.8612365Z button 16384 0 2023-08-09T11:34:51.8612555Z ena 114688 0 2023-08-09T11:34:51.8612751Z crc32c_intel 24576 0 2023-08-09T11:34:51.8612940Z autofs4 49152 2 2023-08-09T11:34:51.8613260Z + modinfo nvidia 2023-08-09T11:34:51.8613681Z filename: /lib/modules/4.14.252-195.483.amzn2.x86_64/kernel/drivers/video/nvidia.ko 2023-08-09T11:34:51.8613970Z firmware: nvidia/535.54.03/gsp_tu10x.bin 2023-08-09T11:34:51.8614303Z firmware: nvidia/535.54.03/gsp_ga10x.bin 2023-08-09T11:34:51.8614578Z alias: char-major-195-* 2023-08-09T11:34:51.8614785Z version: 535.54.03 2023-08-09T11:34:51.8614993Z supported: external 2023-08-09T11:34:51.8615200Z license: NVIDIA 2023-08-09T11:34:51.8615518Z srcversion: EA9C7EF32617E104C8240C4 2023-08-09T11:34:51.8615881Z alias: pci:v000010DEd*sv*sd*bc06sc80i00* 2023-08-09T11:34:51.8616137Z alias: pci:v000010DEd*sv*sd*bc03sc02i00* 2023-08-09T11:34:51.8616384Z alias: pci:v000010DEd*sv*sd*bc03sc00i00* 2023-08-09T11:34:51.8616647Z depends: i2c-core,drm 2023-08-09T11:34:51.8616855Z retpoline: Y 2023-08-09T11:34:51.8617047Z name: nvidia 2023-08-09T11:34:51.8617363Z vermagic: 4.14.252-195.483.amzn2.x86_64 SMP mod_unload modversions 2023-08-09T11:34:51.8617669Z parm: NvSwitchRegDwords:NvSwitch regkey (charp) 2023-08-09T11:34:51.8618000Z parm: NvSwitchBlacklist:NvSwitchBlacklist=uuid[,uuid...] (charp) 2023-08-09T11:34:51.8618291Z parm: NVreg_ResmanDebugLevel:int 2023-08-09T11:34:51.8618536Z parm: NVreg_RmLogonRC:int 2023-08-09T11:34:51.8618780Z parm: NVreg_ModifyDeviceFiles:int 2023-08-09T11:34:51.8619022Z parm: NVreg_DeviceFileUID:int 2023-08-09T11:34:51.8619270Z parm: NVreg_DeviceFileGID:int 2023-08-09T11:34:51.8619516Z parm: NVreg_DeviceFileMode:int 2023-08-09T11:34:51.8619816Z parm: NVreg_InitializeSystemMemoryAllocations:int 2023-08-09T11:34:51.8620119Z parm: NVreg_UsePageAttributeTable:int 2023-08-09T11:34:51.8620382Z parm: NVreg_EnablePCIeGen3:int 2023-08-09T11:34:51.8620627Z parm: NVreg_EnableMSI:int 2023-08-09T11:34:51.8620862Z parm: NVreg_TCEBypassMode:int 2023-08-09T11:34:51.8621123Z parm: NVreg_EnableStreamMemOPs:int 2023-08-09T11:34:51.8621422Z parm: NVreg_RestrictProfilingToAdminUsers:int 2023-08-09T11:34:51.8621756Z parm: NVreg_PreserveVideoMemoryAllocations:int 2023-08-09T11:34:51.8622069Z parm: NVreg_EnableS0ixPowerManagement:int 2023-08-09T11:34:51.8622410Z parm: NVreg_S0ixPowerManagementVideoMemoryThreshold:int 2023-08-09T11:34:51.8622734Z parm: NVreg_DynamicPowerManagement:int 2023-08-09T11:34:51.8623084Z parm: NVreg_DynamicPowerManagementVideoMemoryThreshold:int 2023-08-09T11:34:51.8623408Z parm: NVreg_EnableGpuFirmware:int 2023-08-09T11:34:51.8623678Z parm: NVreg_EnableGpuFirmwareLogs:int 2023-08-09T11:34:51.8623971Z parm: NVreg_OpenRmEnableUnsupportedGpus:int 2023-08-09T11:34:51.8624274Z parm: NVreg_EnableUserNUMAManagement:int 2023-08-09T11:34:51.8624544Z parm: NVreg_MemoryPoolSize:int 2023-08-09T11:34:51.8624806Z parm: NVreg_KMallocHeapMaxSize:int 2023-08-09T11:34:51.8625078Z parm: NVreg_VMallocHeapMaxSize:int 2023-08-09T11:34:51.8625334Z parm: NVreg_IgnoreMMIOCheck:int 2023-08-09T11:34:51.8625573Z parm: NVreg_NvLinkDisable:int 2023-08-09T11:34:51.8625860Z parm: NVreg_EnablePCIERelaxedOrderingMode:int 2023-08-09T11:34:51.8626151Z parm: NVreg_RegisterPCIDriver:int 2023-08-09T11:34:51.8626406Z parm: NVreg_EnableResizableBar:int 2023-08-09T11:34:51.8626676Z parm: NVreg_EnableDbgBreakpoint:int 2023-08-09T11:34:51.8626945Z parm: NVreg_RegistryDwords:charp 2023-08-09T11:34:51.8627227Z parm: NVreg_RegistryDwordsPerDevice:charp 2023-08-09T11:34:51.8627478Z parm: NVreg_RmMsg:charp 2023-08-09T11:34:51.8627715Z parm: NVreg_GpuBlacklist:charp 2023-08-09T11:34:51.8627985Z parm: NVreg_TemporaryFilePath:charp 2023-08-09T11:34:51.8628234Z parm: NVreg_ExcludedGpus:charp 2023-08-09T11:34:51.8628561Z parm: NVreg_DmaRemapPeerMmio:int 2023-08-09T11:34:51.8628828Z parm: NVreg_RmNvlinkBandwidth:charp 2023-08-09T11:34:51.8629068Z parm: rm_firmware_active:charp 2023-08-09T11:34:51.8629274Z + set +e 2023-08-09T11:34:51.8629479Z + nvidia-smi 2023-08-09T11:34:53.9940541Z Wed Aug 9 11:34:53 2023 2023-08-09T11:34:53.9941183Z +---------------------------------------------------------------------------------------+ 2023-08-09T11:34:53.9941781Z | NVIDIA-SMI 535.54.03 Driver Version: 535.54.03 CUDA Version: 12.2 | 2023-08-09T11:34:53.9942669Z |-----------------------------------------+----------------------+----------------------+ 2023-08-09T11:34:53.9943166Z | GPU Name Persistence-M | Bus-Id Disp.A | Volatile Uncorr. ECC | 2023-08-09T11:34:53.9943587Z | Fan Temp Perf Pwr:Usage/Cap | Memory-Usage | GPU-Util Compute M. | 2023-08-09T11:34:53.9943904Z | | | MIG M. | 2023-08-09T11:34:53.9944151Z |=========================================+======================+======================| 2023-08-09T11:34:54.0004208Z | 0 NVIDIA A10G Off | 00000000:00:1E.0 Off | 0 | 2023-08-09T11:34:54.0004590Z | 0% 29C P0 53W / 300W | 4MiB / 23028MiB | 4% Default | 2023-08-09T11:34:54.0004929Z | | | N/A | 2023-08-09T11:34:54.0005345Z +-----------------------------------------+----------------------+----------------------+ 2023-08-09T11:34:54.0005883Z 2023-08-09T11:34:54.0006385Z +---------------------------------------------------------------------------------------+ 2023-08-09T11:34:54.0006733Z | Processes: | 2023-08-09T11:34:54.0007028Z | GPU GI CI PID Type Process name GPU Memory | 2023-08-09T11:34:54.0007313Z | ID ID Usage | 2023-08-09T11:34:54.0007842Z |=======================================================================================| 2023-08-09T11:34:54.0008292Z | No running processes found | 2023-08-09T11:34:54.0008828Z +---------------------------------------------------------------------------------------+ 2023-08-09T11:34:54.5096504Z + nvidia-smi --query-gpu=gpu_name --format=csv,noheader --id=0 2023-08-09T11:34:56.6414626Z NVIDIA A10G 2023-08-09T11:34:56.9382970Z + NVIDIA_SMI_STATUS=0 2023-08-09T11:34:56.9383433Z + '[' 0 -eq 0 ']' 2023-08-09T11:34:56.9384064Z + echo 'INFO: Ignoring allowed status 0' 2023-08-09T11:34:56.9384331Z + set -e 2023-08-09T11:34:56.9384537Z INFO: Ignoring allowed status 0 2023-08-09T11:34:56.9387126Z == Installing nvidia container toolkit for amzn2 == 2023-08-09T11:34:56.9389988Z + sudo yum install -y yum-utils 2023-08-09T11:34:57.2122590Z Loaded plugins: extras_suggestions, langpacks, priorities, update-motd 2023-08-09T11:34:58.5468914Z Package yum-utils-1.1.31-46.amzn2.0.1.noarch already installed and latest version 2023-08-09T11:34:58.5469319Z Nothing to do 2023-08-09T11:34:58.6948083Z + sudo yum-config-manager --add-repo https://nvidia.github.io/nvidia-docker/amzn2/nvidia-docker.repo 2023-08-09T11:34:58.9841639Z Loaded plugins: extras_suggestions, langpacks, priorities, update-motd 2023-08-09T11:34:59.0097556Z adding repo from: https://nvidia.github.io/nvidia-docker/amzn2/nvidia-docker.repo 2023-08-09T11:34:59.0098153Z grabbing file https://nvidia.github.io/nvidia-docker/amzn2/nvidia-docker.repo to /etc/yum.repos.d/nvidia-docker.repo 2023-08-09T11:34:59.0098582Z repo saved to /etc/yum.repos.d/nvidia-docker.repo 2023-08-09T11:34:59.0211918Z + sudo yum install -y nvidia-docker2 2023-08-09T11:34:59.2939456Z Loaded plugins: extras_suggestions, langpacks, priorities, update-motd 2023-08-09T11:35:00.6356066Z Package nvidia-docker2-2.13.0-1.noarch already installed and latest version 2023-08-09T11:35:00.6356472Z Nothing to do 2023-08-09T11:35:00.7819208Z + sudo systemctl restart docker 2023-08-09T11:35:02.0084267Z Command completed after 1 attempt(s). 2023-08-09T11:35:02.0137229Z ##[group]Run # ignore expansion of "docker ps -q" since it could be empty 2023-08-09T11:35:02.0137592Z # ignore expansion of "docker ps -q" since it could be empty 2023-08-09T11:35:02.0137997Z # shellcheck disable=SC2046 2023-08-09T11:35:02.0138256Z docker stop $(docker ps -q) || true 2023-08-09T11:35:02.0138511Z # Prune all of the docker images 2023-08-09T11:35:02.0138758Z docker system prune -af 2023-08-09T11:35:02.0149736Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2023-08-09T11:35:02.0149977Z env: 2023-08-09T11:35:02.0150208Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T11:35:02.0150480Z REPOSITORY: pytorch/audio 2023-08-09T11:35:02.0150691Z PR_NUMBER: 2023-08-09T11:35:02.0153567Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_APPLY_CMVN_SLIDING=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_FBANK_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_KALDI_PITCH_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_MFCC_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_SPECTROGRAM_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_CUDA_SMALL_MEMORY=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_ON_PYTHON_310=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_TEMPORARY_DISABLED=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_DECODER=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_ENCODER=true # Set CHANNEL if [[(${GITHUB_EVENT_NAME} = 'pull_request' && (${GITHUB_BASE_REF} = 'release'*)) || (${GITHUB_REF} = 'refs/heads/release'*) ]]; then export CHANNEL=test else export CHANNEL=nightly fi echo "::group::Create conda env" # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env echo "::endgroup::" echo "::group::Install PyTorch" conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" echo "::endgroup::" echo "::group::Install TorchAudio" conda install --quiet --yes 'cmake>=3.18.0' ninja pip3 install --progress-bar off -v -e . --no-use-pep517 echo "::endgroup::" echo "::group::Build FFmpeg" .github/scripts/ffmpeg/build_gpu.sh echo "::endgroup::" echo "::group::Install other Dependencies" conda install \ --quiet --yes \ -c conda-forge \ -c numba/label/dev \ sox libvorbis 'librosa==0.10.0' parameterized 'requests>=2.20' pip3 install --progress-bar off \ kaldi-io \ SoundFile \ coverage \ pytest \ pytest-cov \ 'scipy==1.7.3' \ transformers \ expecttest \ unidecode \ inflect \ Pillow \ sentencepiece \ pytorch-lightning \ 'protobuf<4.21.0' \ demucs \ tinytag \ flashlight-text \ git+https://github.com/kpu/kenlm/ \ git+https://github.com/pytorch/fairseq.git@e47a4c8 echo "::endgroup::" echo "::group::Run tests" export PATH="${PWD}/third_party/install/bin/:${PATH}" declare -a args=( '-v' '--cov=torchaudio' "--junitxml=${RUNNER_TEST_RESULTS_DIR}/junit.xml" '--durations' '100' '-k' 'cuda or gpu' ) cd test python3 -m torch.utils.collect_env env | grep TORCHAUDIO || true pytest "${args[@]}" torchaudio_unittest coverage html 2023-08-09T11:35:02.0156583Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-08-09T11:35:02.0156938Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-08-09T11:35:02.0157275Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-08-09T11:35:02.0157722Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-08-09T11:35:02.0157979Z ##[endgroup] 2023-08-09T11:35:02.0458161Z "docker stop" requires at least 1 argument. 2023-08-09T11:35:02.0458691Z See 'docker stop --help'. 2023-08-09T11:35:02.0458927Z 2023-08-09T11:35:02.0459155Z Usage: docker stop [OPTIONS] CONTAINER [CONTAINER...] 2023-08-09T11:35:02.0459357Z 2023-08-09T11:35:02.0459569Z Stop one or more running containers 2023-08-09T11:35:02.0644383Z Total reclaimed space: 0B 2023-08-09T11:35:02.0685149Z ##[group]Run ./test-infra/.github/actions/setup-ssh 2023-08-09T11:35:02.0685561Z with: 2023-08-09T11:35:02.0685941Z github-secret: *** 2023-08-09T11:35:02.0686213Z activate-with-label: false 2023-08-09T11:35:02.0686446Z label: with-ssh 2023-08-09T11:35:02.0686734Z remove-existing-keys: true 2023-08-09T11:35:02.0686979Z env: 2023-08-09T11:35:02.0687212Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T11:35:02.0687804Z REPOSITORY: pytorch/audio 2023-08-09T11:35:02.0688098Z PR_NUMBER: 2023-08-09T11:35:02.0691091Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_APPLY_CMVN_SLIDING=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_FBANK_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_KALDI_PITCH_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_MFCC_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_SPECTROGRAM_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_CUDA_SMALL_MEMORY=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_ON_PYTHON_310=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_TEMPORARY_DISABLED=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_DECODER=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_ENCODER=true # Set CHANNEL if [[(${GITHUB_EVENT_NAME} = 'pull_request' && (${GITHUB_BASE_REF} = 'release'*)) || (${GITHUB_REF} = 'refs/heads/release'*) ]]; then export CHANNEL=test else export CHANNEL=nightly fi echo "::group::Create conda env" # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env echo "::endgroup::" echo "::group::Install PyTorch" conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" echo "::endgroup::" echo "::group::Install TorchAudio" conda install --quiet --yes 'cmake>=3.18.0' ninja pip3 install --progress-bar off -v -e . --no-use-pep517 echo "::endgroup::" echo "::group::Build FFmpeg" .github/scripts/ffmpeg/build_gpu.sh echo "::endgroup::" echo "::group::Install other Dependencies" conda install \ --quiet --yes \ -c conda-forge \ -c numba/label/dev \ sox libvorbis 'librosa==0.10.0' parameterized 'requests>=2.20' pip3 install --progress-bar off \ kaldi-io \ SoundFile \ coverage \ pytest \ pytest-cov \ 'scipy==1.7.3' \ transformers \ expecttest \ unidecode \ inflect \ Pillow \ sentencepiece \ pytorch-lightning \ 'protobuf<4.21.0' \ demucs \ tinytag \ flashlight-text \ git+https://github.com/kpu/kenlm/ \ git+https://github.com/pytorch/fairseq.git@e47a4c8 echo "::endgroup::" echo "::group::Run tests" export PATH="${PWD}/third_party/install/bin/:${PATH}" declare -a args=( '-v' '--cov=torchaudio' "--junitxml=${RUNNER_TEST_RESULTS_DIR}/junit.xml" '--durations' '100' '-k' 'cuda or gpu' ) cd test python3 -m torch.utils.collect_env env | grep TORCHAUDIO || true pytest "${args[@]}" torchaudio_unittest coverage html 2023-08-09T11:35:02.0694336Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-08-09T11:35:02.0694700Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-08-09T11:35:02.0695074Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-08-09T11:35:02.0695420Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-08-09T11:35:02.0695861Z ##[endgroup] 2023-08-09T11:35:02.1310448Z Please see https://github.com/pytorch/pytorch/wiki/Debugging-using-with-ssh-for-Github-Actions for more info. 2023-08-09T11:35:02.1312955Z Not on pull request and ciflow reference could not be extracted, skipping adding ssh keys 2023-08-09T11:35:02.1431284Z ##[group]Run actions/checkout@v3 2023-08-09T11:35:02.1431510Z with: 2023-08-09T11:35:02.1431732Z repository: pytorch/audio 2023-08-09T11:35:02.1431979Z ref: refs/heads/nightly 2023-08-09T11:35:02.1432281Z path: pytorch/audio 2023-08-09T11:35:02.1432488Z fetch-depth: 1 2023-08-09T11:35:02.1432781Z token: *** 2023-08-09T11:35:02.1432965Z ssh-strict: true 2023-08-09T11:35:02.1433185Z persist-credentials: true 2023-08-09T11:35:02.1433396Z clean: true 2023-08-09T11:35:02.1433618Z sparse-checkout-cone-mode: true 2023-08-09T11:35:02.1433835Z lfs: false 2023-08-09T11:35:02.1434037Z set-safe-directory: true 2023-08-09T11:35:02.1434234Z env: 2023-08-09T11:35:02.1434449Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T11:35:02.1434697Z REPOSITORY: pytorch/audio 2023-08-09T11:35:02.1434910Z PR_NUMBER: 2023-08-09T11:35:02.1437795Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_APPLY_CMVN_SLIDING=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_FBANK_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_KALDI_PITCH_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_MFCC_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_SPECTROGRAM_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_CUDA_SMALL_MEMORY=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_ON_PYTHON_310=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_TEMPORARY_DISABLED=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_DECODER=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_ENCODER=true # Set CHANNEL if [[(${GITHUB_EVENT_NAME} = 'pull_request' && (${GITHUB_BASE_REF} = 'release'*)) || (${GITHUB_REF} = 'refs/heads/release'*) ]]; then export CHANNEL=test else export CHANNEL=nightly fi echo "::group::Create conda env" # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env echo "::endgroup::" echo "::group::Install PyTorch" conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" echo "::endgroup::" echo "::group::Install TorchAudio" conda install --quiet --yes 'cmake>=3.18.0' ninja pip3 install --progress-bar off -v -e . --no-use-pep517 echo "::endgroup::" echo "::group::Build FFmpeg" .github/scripts/ffmpeg/build_gpu.sh echo "::endgroup::" echo "::group::Install other Dependencies" conda install \ --quiet --yes \ -c conda-forge \ -c numba/label/dev \ sox libvorbis 'librosa==0.10.0' parameterized 'requests>=2.20' pip3 install --progress-bar off \ kaldi-io \ SoundFile \ coverage \ pytest \ pytest-cov \ 'scipy==1.7.3' \ transformers \ expecttest \ unidecode \ inflect \ Pillow \ sentencepiece \ pytorch-lightning \ 'protobuf<4.21.0' \ demucs \ tinytag \ flashlight-text \ git+https://github.com/kpu/kenlm/ \ git+https://github.com/pytorch/fairseq.git@e47a4c8 echo "::endgroup::" echo "::group::Run tests" export PATH="${PWD}/third_party/install/bin/:${PATH}" declare -a args=( '-v' '--cov=torchaudio' "--junitxml=${RUNNER_TEST_RESULTS_DIR}/junit.xml" '--durations' '100' '-k' 'cuda or gpu' ) cd test python3 -m torch.utils.collect_env env | grep TORCHAUDIO || true pytest "${args[@]}" torchaudio_unittest coverage html 2023-08-09T11:35:02.1440858Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-08-09T11:35:02.1441214Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-08-09T11:35:02.1441558Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-08-09T11:35:02.1441862Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-08-09T11:35:02.1442113Z ##[endgroup] 2023-08-09T11:35:02.2238449Z Syncing repository: pytorch/audio 2023-08-09T11:35:02.2247981Z ##[group]Getting Git version info 2023-08-09T11:35:02.2248420Z Working directory is '/home/ec2-user/actions-runner/_work/audio/audio/pytorch/audio' 2023-08-09T11:35:02.2270547Z [command]/usr/bin/git version 2023-08-09T11:35:02.2307602Z git version 2.40.1 2023-08-09T11:35:02.2328943Z ##[endgroup] 2023-08-09T11:35:02.2341200Z Temporarily overriding HOME='/home/ec2-user/actions-runner/_work/_temp/b9c965db-ce20-4107-b4e5-f62899ecaf22' before making global git config changes 2023-08-09T11:35:02.2341708Z Adding repository directory to the temporary git global config as a safe directory 2023-08-09T11:35:02.2346627Z [command]/usr/bin/git config --global --add safe.directory /home/ec2-user/actions-runner/_work/audio/audio/pytorch/audio 2023-08-09T11:35:02.2375265Z ##[group]Initializing the repository 2023-08-09T11:35:02.2378721Z [command]/usr/bin/git init /home/ec2-user/actions-runner/_work/audio/audio/pytorch/audio 2023-08-09T11:35:02.2398526Z hint: Using 'master' as the name for the initial branch. This default branch name 2023-08-09T11:35:02.2398947Z hint: is subject to change. To configure the initial branch name to use in all 2023-08-09T11:35:02.2399369Z hint: of your new repositories, which will suppress this warning, call: 2023-08-09T11:35:02.2399743Z hint: 2023-08-09T11:35:02.2400216Z hint: git config --global init.defaultBranch 2023-08-09T11:35:02.2400553Z hint: 2023-08-09T11:35:02.2401015Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and 2023-08-09T11:35:02.2401624Z hint: 'development'. The just-created branch can be renamed via this command: 2023-08-09T11:35:02.2402025Z hint: 2023-08-09T11:35:02.2402427Z hint: git branch -m 2023-08-09T11:35:02.2403062Z Initialized empty Git repository in /home/ec2-user/actions-runner/_work/audio/audio/pytorch/audio/.git/ 2023-08-09T11:35:02.2408216Z [command]/usr/bin/git remote add origin https://github.com/pytorch/audio 2023-08-09T11:35:02.2428482Z ##[endgroup] 2023-08-09T11:35:02.2429030Z ##[group]Disabling automatic garbage collection 2023-08-09T11:35:02.2431984Z [command]/usr/bin/git config --local gc.auto 0 2023-08-09T11:35:02.2455033Z ##[endgroup] 2023-08-09T11:35:02.2455389Z ##[group]Setting up auth 2023-08-09T11:35:02.2460159Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2023-08-09T11:35:02.2484942Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" 2023-08-09T11:35:02.2690229Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2023-08-09T11:35:02.2710268Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" 2023-08-09T11:35:02.2916638Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** 2023-08-09T11:35:02.2953496Z ##[endgroup] 2023-08-09T11:35:02.2953906Z ##[group]Fetching the repository 2023-08-09T11:35:02.2960374Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --progress --no-recurse-submodules --depth=1 origin +refs/heads/nightly:refs/remotes/origin/nightly 2023-08-09T11:35:02.6383031Z remote: Enumerating objects: 987, done. 2023-08-09T11:35:02.6383322Z remote: Counting objects: 0% (1/987) 2023-08-09T11:35:02.6383584Z remote: Counting objects: 1% (10/987) 2023-08-09T11:35:02.6384089Z remote: Counting objects: 2% (20/987) 2023-08-09T11:35:02.6384609Z remote: Counting objects: 3% (30/987) 2023-08-09T11:35:02.6384981Z remote: Counting objects: 4% (40/987) 2023-08-09T11:35:02.6385296Z remote: Counting objects: 5% (50/987) 2023-08-09T11:35:02.6385561Z remote: Counting objects: 6% (60/987) 2023-08-09T11:35:02.6385882Z remote: Counting objects: 7% (70/987) 2023-08-09T11:35:02.6386389Z remote: Counting objects: 8% (79/987) 2023-08-09T11:35:02.6386742Z remote: Counting objects: 9% (89/987) 2023-08-09T11:35:02.6387081Z remote: Counting objects: 10% (99/987) 2023-08-09T11:35:02.6387409Z remote: Counting objects: 11% (109/987) 2023-08-09T11:35:02.6387963Z remote: Counting objects: 12% (119/987) 2023-08-09T11:35:02.6388329Z remote: Counting objects: 13% (129/987) 2023-08-09T11:35:02.6388693Z remote: Counting objects: 14% (139/987) 2023-08-09T11:35:02.6388999Z remote: Counting objects: 15% (149/987) 2023-08-09T11:35:02.6389253Z remote: Counting objects: 16% (158/987) 2023-08-09T11:35:02.6389595Z remote: Counting objects: 17% (168/987) 2023-08-09T11:35:02.6389844Z remote: Counting objects: 18% (178/987) 2023-08-09T11:35:02.6390125Z remote: Counting objects: 19% (188/987) 2023-08-09T11:35:02.6390465Z remote: Counting objects: 20% (198/987) 2023-08-09T11:35:02.6390744Z remote: Counting objects: 21% (208/987) 2023-08-09T11:35:02.6390998Z remote: Counting objects: 22% (218/987) 2023-08-09T11:35:02.6391310Z remote: Counting objects: 23% (228/987) 2023-08-09T11:35:02.6391640Z remote: Counting objects: 24% (237/987) 2023-08-09T11:35:02.6391982Z remote: Counting objects: 25% (247/987) 2023-08-09T11:35:02.6392306Z remote: Counting objects: 26% (257/987) 2023-08-09T11:35:02.6392629Z remote: Counting objects: 27% (267/987) 2023-08-09T11:35:02.6392932Z remote: Counting objects: 28% (277/987) 2023-08-09T11:35:02.6393249Z remote: Counting objects: 29% (287/987) 2023-08-09T11:35:02.6393611Z remote: Counting objects: 30% (297/987) 2023-08-09T11:35:02.6393928Z remote: Counting objects: 31% (306/987) 2023-08-09T11:35:02.6394253Z remote: Counting objects: 32% (316/987) 2023-08-09T11:35:02.6394506Z remote: Counting objects: 33% (326/987) 2023-08-09T11:35:02.6394754Z remote: Counting objects: 34% (336/987) 2023-08-09T11:35:02.6395005Z remote: Counting objects: 35% (346/987) 2023-08-09T11:35:02.6395242Z remote: Counting objects: 36% (356/987) 2023-08-09T11:35:02.6395488Z remote: Counting objects: 37% (366/987) 2023-08-09T11:35:02.6395736Z remote: Counting objects: 38% (376/987) 2023-08-09T11:35:02.6395982Z remote: Counting objects: 39% (385/987) 2023-08-09T11:35:02.6396219Z remote: Counting objects: 40% (395/987) 2023-08-09T11:35:02.6396464Z remote: Counting objects: 41% (405/987) 2023-08-09T11:35:02.6396709Z remote: Counting objects: 42% (415/987) 2023-08-09T11:35:02.6396946Z remote: Counting objects: 43% (425/987) 2023-08-09T11:35:02.6397224Z remote: Counting objects: 44% (435/987) 2023-08-09T11:35:02.6397555Z remote: Counting objects: 45% (445/987) 2023-08-09T11:35:02.6397888Z remote: Counting objects: 46% (455/987) 2023-08-09T11:35:02.6398150Z remote: Counting objects: 47% (464/987) 2023-08-09T11:35:02.6398405Z remote: Counting objects: 48% (474/987) 2023-08-09T11:35:02.6398645Z remote: Counting objects: 49% (484/987) 2023-08-09T11:35:02.6398896Z remote: Counting objects: 50% (494/987) 2023-08-09T11:35:02.6399147Z remote: Counting objects: 51% (504/987) 2023-08-09T11:35:02.6399395Z remote: Counting objects: 52% (514/987) 2023-08-09T11:35:02.6399636Z remote: Counting objects: 53% (524/987) 2023-08-09T11:35:02.6399882Z remote: Counting objects: 54% (533/987) 2023-08-09T11:35:02.6400130Z remote: Counting objects: 55% (543/987) 2023-08-09T11:35:02.6400370Z remote: Counting objects: 56% (553/987) 2023-08-09T11:35:02.6400615Z remote: Counting objects: 57% (563/987) 2023-08-09T11:35:02.6400862Z remote: Counting objects: 58% (573/987) 2023-08-09T11:35:02.6401101Z remote: Counting objects: 59% (583/987) 2023-08-09T11:35:02.6401349Z remote: Counting objects: 60% (593/987) 2023-08-09T11:35:02.6401694Z remote: Counting objects: 61% (603/987) 2023-08-09T11:35:02.6401967Z remote: Counting objects: 62% (612/987) 2023-08-09T11:35:02.6402245Z remote: Counting objects: 63% (622/987) 2023-08-09T11:35:02.6402493Z remote: Counting objects: 64% (632/987) 2023-08-09T11:35:02.6402794Z remote: Counting objects: 65% (642/987) 2023-08-09T11:35:02.6403034Z remote: Counting objects: 66% (652/987) 2023-08-09T11:35:02.6403283Z remote: Counting objects: 67% (662/987) 2023-08-09T11:35:02.6403531Z remote: Counting objects: 68% (672/987) 2023-08-09T11:35:02.6403772Z remote: Counting objects: 69% (682/987) 2023-08-09T11:35:02.6404017Z remote: Counting objects: 70% (691/987) 2023-08-09T11:35:02.6404268Z remote: Counting objects: 71% (701/987) 2023-08-09T11:35:02.6404538Z remote: Counting objects: 72% (711/987) 2023-08-09T11:35:02.6404875Z remote: Counting objects: 73% (721/987) 2023-08-09T11:35:02.6405228Z remote: Counting objects: 74% (731/987) 2023-08-09T11:35:02.6405578Z remote: Counting objects: 75% (741/987) 2023-08-09T11:35:02.6405915Z remote: Counting objects: 76% (751/987) 2023-08-09T11:35:02.6406261Z remote: Counting objects: 77% (760/987) 2023-08-09T11:35:02.6406618Z remote: Counting objects: 78% (770/987) 2023-08-09T11:35:02.6406893Z remote: Counting objects: 79% (780/987) 2023-08-09T11:35:02.6407144Z remote: Counting objects: 80% (790/987) 2023-08-09T11:35:02.6407392Z remote: Counting objects: 81% (800/987) 2023-08-09T11:35:02.6407828Z remote: Counting objects: 82% (810/987) 2023-08-09T11:35:02.6408075Z remote: Counting objects: 83% (820/987) 2023-08-09T11:35:02.6408325Z remote: Counting objects: 84% (830/987) 2023-08-09T11:35:02.6408565Z remote: Counting objects: 85% (839/987) 2023-08-09T11:35:02.6408815Z remote: Counting objects: 86% (849/987) 2023-08-09T11:35:02.6409067Z remote: Counting objects: 87% (859/987) 2023-08-09T11:35:02.6409317Z remote: Counting objects: 88% (869/987) 2023-08-09T11:35:02.6409556Z remote: Counting objects: 89% (879/987) 2023-08-09T11:35:02.6409802Z remote: Counting objects: 90% (889/987) 2023-08-09T11:35:02.6410053Z remote: Counting objects: 91% (899/987) 2023-08-09T11:35:02.6410295Z remote: Counting objects: 92% (909/987) 2023-08-09T11:35:02.6410541Z remote: Counting objects: 93% (918/987) 2023-08-09T11:35:02.6410789Z remote: Counting objects: 94% (928/987) 2023-08-09T11:35:02.6411031Z remote: Counting objects: 95% (938/987) 2023-08-09T11:35:02.6411280Z remote: Counting objects: 96% (948/987) 2023-08-09T11:35:02.6411527Z remote: Counting objects: 97% (958/987) 2023-08-09T11:35:02.6411767Z remote: Counting objects: 98% (968/987) 2023-08-09T11:35:02.6412017Z remote: Counting objects: 99% (978/987) 2023-08-09T11:35:02.6412273Z remote: Counting objects: 100% (987/987) 2023-08-09T11:35:02.6412575Z remote: Counting objects: 100% (987/987), done. 2023-08-09T11:35:02.6412856Z remote: Compressing objects: 0% (1/865) 2023-08-09T11:35:02.6413129Z remote: Compressing objects: 1% (9/865) 2023-08-09T11:35:02.6413402Z remote: Compressing objects: 2% (18/865) 2023-08-09T11:35:02.6413666Z remote: Compressing objects: 3% (26/865) 2023-08-09T11:35:02.6413937Z remote: Compressing objects: 4% (35/865) 2023-08-09T11:35:02.6414232Z remote: Compressing objects: 5% (44/865) 2023-08-09T11:35:02.6414571Z remote: Compressing objects: 6% (52/865) 2023-08-09T11:35:02.6414938Z remote: Compressing objects: 7% (61/865) 2023-08-09T11:35:02.6415224Z remote: Compressing objects: 8% (70/865) 2023-08-09T11:35:02.6415486Z remote: Compressing objects: 9% (78/865) 2023-08-09T11:35:02.6415849Z remote: Compressing objects: 10% (87/865) 2023-08-09T11:35:02.6416242Z remote: Compressing objects: 11% (96/865) 2023-08-09T11:35:02.6416513Z remote: Compressing objects: 12% (104/865) 2023-08-09T11:35:02.6416779Z remote: Compressing objects: 13% (113/865) 2023-08-09T11:35:02.6417050Z remote: Compressing objects: 14% (122/865) 2023-08-09T11:35:02.6417399Z remote: Compressing objects: 15% (130/865) 2023-08-09T11:35:02.6417655Z remote: Compressing objects: 16% (139/865) 2023-08-09T11:35:02.6417923Z remote: Compressing objects: 17% (148/865) 2023-08-09T11:35:02.6418186Z remote: Compressing objects: 18% (156/865) 2023-08-09T11:35:02.6418441Z remote: Compressing objects: 19% (165/865) 2023-08-09T11:35:02.6418704Z remote: Compressing objects: 20% (173/865) 2023-08-09T11:35:02.6418967Z remote: Compressing objects: 21% (182/865) 2023-08-09T11:35:02.6419233Z remote: Compressing objects: 22% (191/865) 2023-08-09T11:35:02.6419485Z remote: Compressing objects: 23% (199/865) 2023-08-09T11:35:02.6419753Z remote: Compressing objects: 24% (208/865) 2023-08-09T11:35:02.6420016Z remote: Compressing objects: 25% (217/865) 2023-08-09T11:35:02.6420269Z remote: Compressing objects: 26% (225/865) 2023-08-09T11:35:02.6420536Z remote: Compressing objects: 27% (234/865) 2023-08-09T11:35:02.6420795Z remote: Compressing objects: 28% (243/865) 2023-08-09T11:35:02.6421047Z remote: Compressing objects: 29% (251/865) 2023-08-09T11:35:02.6421308Z remote: Compressing objects: 30% (260/865) 2023-08-09T11:35:02.6421568Z remote: Compressing objects: 31% (269/865) 2023-08-09T11:35:02.6421849Z remote: Compressing objects: 32% (277/865) 2023-08-09T11:35:02.6422187Z remote: Compressing objects: 33% (286/865) 2023-08-09T11:35:02.6422553Z remote: Compressing objects: 34% (295/865) 2023-08-09T11:35:02.6422913Z remote: Compressing objects: 35% (303/865) 2023-08-09T11:35:02.6423283Z remote: Compressing objects: 36% (312/865) 2023-08-09T11:35:02.6423654Z remote: Compressing objects: 37% (321/865) 2023-08-09T11:35:02.6424011Z remote: Compressing objects: 38% (329/865) 2023-08-09T11:35:02.6424297Z remote: Compressing objects: 39% (338/865) 2023-08-09T11:35:02.6424569Z remote: Compressing objects: 40% (346/865) 2023-08-09T11:35:02.6424833Z remote: Compressing objects: 41% (355/865) 2023-08-09T11:35:02.6425090Z remote: Compressing objects: 42% (364/865) 2023-08-09T11:35:02.6425353Z remote: Compressing objects: 43% (372/865) 2023-08-09T11:35:02.6425617Z remote: Compressing objects: 44% (381/865) 2023-08-09T11:35:02.6425881Z remote: Compressing objects: 45% (390/865) 2023-08-09T11:35:02.6426133Z remote: Compressing objects: 46% (398/865) 2023-08-09T11:35:02.6426394Z remote: Compressing objects: 47% (407/865) 2023-08-09T11:35:02.6426655Z remote: Compressing objects: 48% (416/865) 2023-08-09T11:35:02.6426913Z remote: Compressing objects: 49% (424/865) 2023-08-09T11:35:02.6427176Z remote: Compressing objects: 50% (433/865) 2023-08-09T11:35:02.6427439Z remote: Compressing objects: 51% (442/865) 2023-08-09T11:35:02.6427691Z remote: Compressing objects: 52% (450/865) 2023-08-09T11:35:02.6427957Z remote: Compressing objects: 53% (459/865) 2023-08-09T11:35:02.6428217Z remote: Compressing objects: 54% (468/865) 2023-08-09T11:35:02.6428479Z remote: Compressing objects: 55% (476/865) 2023-08-09T11:35:02.6428732Z remote: Compressing objects: 56% (485/865) 2023-08-09T11:35:02.6428994Z remote: Compressing objects: 57% (494/865) 2023-08-09T11:35:02.6429256Z remote: Compressing objects: 58% (502/865) 2023-08-09T11:35:02.6429508Z remote: Compressing objects: 59% (511/865) 2023-08-09T11:35:02.6429769Z remote: Compressing objects: 60% (519/865) 2023-08-09T11:35:02.6430034Z remote: Compressing objects: 61% (528/865) 2023-08-09T11:35:02.6430373Z remote: Compressing objects: 62% (537/865) 2023-08-09T11:35:02.6430634Z remote: Compressing objects: 63% (545/865) 2023-08-09T11:35:02.6430890Z remote: Compressing objects: 64% (554/865) 2023-08-09T11:35:02.6431252Z remote: Compressing objects: 65% (563/865) 2023-08-09T11:35:02.6431506Z remote: Compressing objects: 66% (571/865) 2023-08-09T11:35:02.6431848Z remote: Compressing objects: 67% (580/865) 2023-08-09T11:35:02.6432209Z remote: Compressing objects: 68% (589/865) 2023-08-09T11:35:02.6432486Z remote: Compressing objects: 69% (597/865) 2023-08-09T11:35:02.6432745Z remote: Compressing objects: 70% (606/865) 2023-08-09T11:35:02.6433002Z remote: Compressing objects: 71% (615/865) 2023-08-09T11:35:02.6433254Z remote: Compressing objects: 72% (623/865) 2023-08-09T11:35:02.6433515Z remote: Compressing objects: 73% (632/865) 2023-08-09T11:35:02.6433786Z remote: Compressing objects: 74% (641/865) 2023-08-09T11:35:02.6434040Z remote: Compressing objects: 75% (649/865) 2023-08-09T11:35:02.6434303Z remote: Compressing objects: 76% (658/865) 2023-08-09T11:35:02.6434562Z remote: Compressing objects: 77% (667/865) 2023-08-09T11:35:02.6434830Z remote: Compressing objects: 78% (675/865) 2023-08-09T11:35:02.6435081Z remote: Compressing objects: 79% (684/865) 2023-08-09T11:35:02.6435341Z remote: Compressing objects: 80% (692/865) 2023-08-09T11:35:02.6435598Z remote: Compressing objects: 81% (701/865) 2023-08-09T11:35:02.6435849Z remote: Compressing objects: 82% (710/865) 2023-08-09T11:35:02.6436108Z remote: Compressing objects: 83% (718/865) 2023-08-09T11:35:02.6436366Z remote: Compressing objects: 84% (727/865) 2023-08-09T11:35:02.6436616Z remote: Compressing objects: 85% (736/865) 2023-08-09T11:35:02.6436873Z remote: Compressing objects: 86% (744/865) 2023-08-09T11:35:02.6437139Z remote: Compressing objects: 87% (753/865) 2023-08-09T11:35:02.6437403Z remote: Compressing objects: 88% (762/865) 2023-08-09T11:35:02.6437654Z remote: Compressing objects: 89% (770/865) 2023-08-09T11:35:02.6437932Z remote: Compressing objects: 90% (779/865) 2023-08-09T11:35:02.6438197Z remote: Compressing objects: 91% (788/865) 2023-08-09T11:35:02.6438447Z remote: Compressing objects: 92% (796/865) 2023-08-09T11:35:02.6438706Z remote: Compressing objects: 93% (805/865) 2023-08-09T11:35:02.6438966Z remote: Compressing objects: 94% (814/865) 2023-08-09T11:35:02.6439215Z remote: Compressing objects: 95% (822/865) 2023-08-09T11:35:02.6439476Z remote: Compressing objects: 96% (831/865) 2023-08-09T11:35:02.6439738Z remote: Compressing objects: 97% (840/865) 2023-08-09T11:35:02.6439998Z remote: Compressing objects: 98% (848/865) 2023-08-09T11:35:02.6440251Z remote: Compressing objects: 99% (857/865) 2023-08-09T11:35:02.6440514Z remote: Compressing objects: 100% (865/865) 2023-08-09T11:35:02.6440862Z remote: Compressing objects: 100% (865/865), done. 2023-08-09T11:35:02.6441211Z Receiving objects: 0% (1/987) 2023-08-09T11:35:02.6441541Z Receiving objects: 1% (10/987) 2023-08-09T11:35:02.6441871Z Receiving objects: 2% (20/987) 2023-08-09T11:35:02.6442181Z Receiving objects: 3% (30/987) 2023-08-09T11:35:02.6442555Z Receiving objects: 4% (40/987) 2023-08-09T11:35:02.6442872Z Receiving objects: 5% (50/987) 2023-08-09T11:35:02.6450452Z Receiving objects: 6% (60/987) 2023-08-09T11:35:02.6467555Z Receiving objects: 7% (70/987) 2023-08-09T11:35:02.6469757Z Receiving objects: 8% (79/987) 2023-08-09T11:35:02.6480408Z Receiving objects: 9% (89/987) 2023-08-09T11:35:02.6483707Z Receiving objects: 10% (99/987) 2023-08-09T11:35:02.6485654Z Receiving objects: 11% (109/987) 2023-08-09T11:35:02.6498851Z Receiving objects: 12% (119/987) 2023-08-09T11:35:02.6502105Z Receiving objects: 13% (129/987) 2023-08-09T11:35:02.6504416Z Receiving objects: 14% (139/987) 2023-08-09T11:35:02.6513945Z Receiving objects: 15% (149/987) 2023-08-09T11:35:02.6516317Z Receiving objects: 16% (158/987) 2023-08-09T11:35:02.6519000Z Receiving objects: 17% (168/987) 2023-08-09T11:35:02.6521046Z Receiving objects: 18% (178/987) 2023-08-09T11:35:02.6523081Z Receiving objects: 19% (188/987) 2023-08-09T11:35:02.6526135Z Receiving objects: 20% (198/987) 2023-08-09T11:35:02.6534048Z Receiving objects: 21% (208/987) 2023-08-09T11:35:02.6539949Z Receiving objects: 22% (218/987) 2023-08-09T11:35:02.6549997Z Receiving objects: 23% (228/987) 2023-08-09T11:35:02.6551280Z Receiving objects: 24% (237/987) 2023-08-09T11:35:02.6595407Z Receiving objects: 25% (247/987) 2023-08-09T11:35:02.6607284Z Receiving objects: 26% (257/987) 2023-08-09T11:35:02.6612790Z Receiving objects: 27% (267/987) 2023-08-09T11:35:02.6616054Z Receiving objects: 28% (277/987) 2023-08-09T11:35:02.6625645Z Receiving objects: 29% (287/987) 2023-08-09T11:35:02.6626904Z Receiving objects: 30% (297/987) 2023-08-09T11:35:02.6630938Z Receiving objects: 31% (306/987) 2023-08-09T11:35:02.6637095Z Receiving objects: 32% (316/987) 2023-08-09T11:35:02.6648708Z Receiving objects: 33% (326/987) 2023-08-09T11:35:02.6664077Z Receiving objects: 34% (336/987) 2023-08-09T11:35:02.6671278Z Receiving objects: 35% (346/987) 2023-08-09T11:35:02.6672845Z Receiving objects: 36% (356/987) 2023-08-09T11:35:02.6675047Z Receiving objects: 37% (366/987) 2023-08-09T11:35:02.6678924Z Receiving objects: 38% (376/987) 2023-08-09T11:35:02.6752803Z Receiving objects: 39% (385/987) 2023-08-09T11:35:02.6753038Z Receiving objects: 40% (395/987) 2023-08-09T11:35:02.6767217Z Receiving objects: 41% (405/987) 2023-08-09T11:35:02.6906301Z Receiving objects: 42% (415/987) 2023-08-09T11:35:02.7260267Z Receiving objects: 43% (425/987) 2023-08-09T11:35:02.7283315Z Receiving objects: 44% (435/987) 2023-08-09T11:35:02.7284289Z Receiving objects: 45% (445/987) 2023-08-09T11:35:02.7285192Z Receiving objects: 46% (455/987) 2023-08-09T11:35:02.7285416Z Receiving objects: 47% (464/987) 2023-08-09T11:35:02.7290569Z Receiving objects: 48% (474/987) 2023-08-09T11:35:02.7293903Z Receiving objects: 49% (484/987) 2023-08-09T11:35:02.7294467Z Receiving objects: 50% (494/987) 2023-08-09T11:35:02.7298492Z Receiving objects: 51% (504/987) 2023-08-09T11:35:02.7301666Z Receiving objects: 52% (514/987) 2023-08-09T11:35:02.7304744Z Receiving objects: 53% (524/987) 2023-08-09T11:35:02.7308333Z Receiving objects: 54% (533/987) 2023-08-09T11:35:02.7311895Z Receiving objects: 55% (543/987) 2023-08-09T11:35:02.7313173Z Receiving objects: 56% (553/987) 2023-08-09T11:35:02.7315199Z Receiving objects: 57% (563/987) 2023-08-09T11:35:02.7322506Z Receiving objects: 58% (573/987) 2023-08-09T11:35:02.7326817Z Receiving objects: 59% (583/987) 2023-08-09T11:35:02.7333137Z Receiving objects: 60% (593/987) 2023-08-09T11:35:02.7335336Z Receiving objects: 61% (603/987) 2023-08-09T11:35:02.7337048Z Receiving objects: 62% (612/987) 2023-08-09T11:35:02.7338016Z Receiving objects: 63% (622/987) 2023-08-09T11:35:02.7342587Z Receiving objects: 64% (632/987) 2023-08-09T11:35:02.7345655Z Receiving objects: 65% (642/987) 2023-08-09T11:35:02.7347109Z Receiving objects: 66% (652/987) 2023-08-09T11:35:02.7350136Z Receiving objects: 67% (662/987) 2023-08-09T11:35:02.7353151Z Receiving objects: 68% (672/987) 2023-08-09T11:35:02.7355363Z Receiving objects: 69% (682/987) 2023-08-09T11:35:02.7357832Z Receiving objects: 70% (691/987) 2023-08-09T11:35:02.7359366Z Receiving objects: 71% (701/987) 2023-08-09T11:35:02.7362249Z Receiving objects: 72% (711/987) 2023-08-09T11:35:02.7366659Z Receiving objects: 73% (721/987) 2023-08-09T11:35:02.7371469Z Receiving objects: 74% (731/987) 2023-08-09T11:35:02.7375693Z Receiving objects: 75% (741/987) 2023-08-09T11:35:02.7381694Z Receiving objects: 76% (751/987) 2023-08-09T11:35:02.7387496Z Receiving objects: 77% (760/987) 2023-08-09T11:35:02.7391105Z Receiving objects: 78% (770/987) 2023-08-09T11:35:02.7396303Z Receiving objects: 79% (780/987) 2023-08-09T11:35:02.7403083Z Receiving objects: 80% (790/987) 2023-08-09T11:35:02.7408011Z Receiving objects: 81% (800/987) 2023-08-09T11:35:02.7411809Z Receiving objects: 82% (810/987) 2023-08-09T11:35:02.7414282Z Receiving objects: 83% (820/987) 2023-08-09T11:35:02.7416466Z Receiving objects: 84% (830/987) 2023-08-09T11:35:02.7418790Z Receiving objects: 85% (839/987) 2023-08-09T11:35:02.7421962Z Receiving objects: 86% (849/987) 2023-08-09T11:35:02.7425405Z Receiving objects: 87% (859/987) 2023-08-09T11:35:02.7431265Z Receiving objects: 88% (869/987) 2023-08-09T11:35:02.7436678Z Receiving objects: 89% (879/987) 2023-08-09T11:35:02.7454012Z Receiving objects: 90% (889/987) 2023-08-09T11:35:02.7461839Z Receiving objects: 91% (899/987) 2023-08-09T11:35:02.7470886Z Receiving objects: 92% (909/987) 2023-08-09T11:35:02.7483126Z Receiving objects: 93% (918/987) 2023-08-09T11:35:02.7488478Z Receiving objects: 94% (928/987) 2023-08-09T11:35:02.7497007Z Receiving objects: 95% (938/987) 2023-08-09T11:35:02.7497304Z Receiving objects: 96% (948/987) 2023-08-09T11:35:02.7497880Z remote: Total 987 (delta 162), reused 444 (delta 89), pack-reused 0 2023-08-09T11:35:02.7508249Z Receiving objects: 97% (958/987) 2023-08-09T11:35:02.7517084Z Receiving objects: 98% (968/987) 2023-08-09T11:35:02.7520407Z Receiving objects: 99% (978/987) 2023-08-09T11:35:02.7520720Z Receiving objects: 100% (987/987) 2023-08-09T11:35:02.7521070Z Receiving objects: 100% (987/987), 4.42 MiB | 40.09 MiB/s, done. 2023-08-09T11:35:02.7526248Z Resolving deltas: 0% (0/162) 2023-08-09T11:35:02.7527847Z Resolving deltas: 1% (2/162) 2023-08-09T11:35:02.7528506Z Resolving deltas: 3% (5/162) 2023-08-09T11:35:02.7528851Z Resolving deltas: 4% (7/162) 2023-08-09T11:35:02.7529186Z Resolving deltas: 5% (9/162) 2023-08-09T11:35:02.7529519Z Resolving deltas: 6% (10/162) 2023-08-09T11:35:02.7529882Z Resolving deltas: 8% (13/162) 2023-08-09T11:35:02.7530169Z Resolving deltas: 9% (15/162) 2023-08-09T11:35:02.7531500Z Resolving deltas: 10% (17/162) 2023-08-09T11:35:02.7532464Z Resolving deltas: 12% (21/162) 2023-08-09T11:35:02.7532970Z Resolving deltas: 13% (22/162) 2023-08-09T11:35:02.7533239Z Resolving deltas: 14% (23/162) 2023-08-09T11:35:02.7533498Z Resolving deltas: 15% (25/162) 2023-08-09T11:35:02.7533728Z Resolving deltas: 16% (27/162) 2023-08-09T11:35:02.7534343Z Resolving deltas: 17% (28/162) 2023-08-09T11:35:02.7534777Z Resolving deltas: 18% (30/162) 2023-08-09T11:35:02.7536662Z Resolving deltas: 19% (31/162) 2023-08-09T11:35:02.7538060Z Resolving deltas: 20% (33/162) 2023-08-09T11:35:02.7540001Z Resolving deltas: 22% (36/162) 2023-08-09T11:35:02.7540235Z Resolving deltas: 23% (38/162) 2023-08-09T11:35:02.7542823Z Resolving deltas: 24% (39/162) 2023-08-09T11:35:02.7544089Z Resolving deltas: 25% (41/162) 2023-08-09T11:35:02.7546113Z Resolving deltas: 27% (44/162) 2023-08-09T11:35:02.7546346Z Resolving deltas: 28% (46/162) 2023-08-09T11:35:02.7548340Z Resolving deltas: 29% (47/162) 2023-08-09T11:35:02.7550000Z Resolving deltas: 30% (50/162) 2023-08-09T11:35:02.7550368Z Resolving deltas: 31% (51/162) 2023-08-09T11:35:02.7550693Z Resolving deltas: 32% (52/162) 2023-08-09T11:35:02.7551017Z Resolving deltas: 33% (54/162) 2023-08-09T11:35:02.7551374Z Resolving deltas: 35% (57/162) 2023-08-09T11:35:02.7551714Z Resolving deltas: 37% (60/162) 2023-08-09T11:35:02.7552047Z Resolving deltas: 38% (62/162) 2023-08-09T11:35:02.7552418Z Resolving deltas: 39% (64/162) 2023-08-09T11:35:02.7552683Z Resolving deltas: 40% (65/162) 2023-08-09T11:35:02.7552905Z Resolving deltas: 41% (67/162) 2023-08-09T11:35:02.7553112Z Resolving deltas: 42% (69/162) 2023-08-09T11:35:02.7553326Z Resolving deltas: 43% (70/162) 2023-08-09T11:35:02.7553545Z Resolving deltas: 44% (72/162) 2023-08-09T11:35:02.7553754Z Resolving deltas: 45% (73/162) 2023-08-09T11:35:02.7554896Z Resolving deltas: 46% (75/162) 2023-08-09T11:35:02.7555241Z Resolving deltas: 48% (78/162) 2023-08-09T11:35:02.7555768Z Resolving deltas: 49% (80/162) 2023-08-09T11:35:02.7556439Z Resolving deltas: 50% (82/162) 2023-08-09T11:35:02.7557190Z Resolving deltas: 51% (83/162) 2023-08-09T11:35:02.7557535Z Resolving deltas: 52% (85/162) 2023-08-09T11:35:02.7558050Z Resolving deltas: 53% (86/162) 2023-08-09T11:35:02.7558296Z Resolving deltas: 54% (88/162) 2023-08-09T11:35:02.7558604Z Resolving deltas: 55% (90/162) 2023-08-09T11:35:02.7559297Z Resolving deltas: 56% (91/162) 2023-08-09T11:35:02.7559561Z Resolving deltas: 57% (93/162) 2023-08-09T11:35:02.7559782Z Resolving deltas: 58% (94/162) 2023-08-09T11:35:02.7560547Z Resolving deltas: 59% (96/162) 2023-08-09T11:35:02.7561119Z Resolving deltas: 61% (99/162) 2023-08-09T11:35:02.7561374Z Resolving deltas: 62% (101/162) 2023-08-09T11:35:02.7562089Z Resolving deltas: 64% (104/162) 2023-08-09T11:35:02.7562350Z Resolving deltas: 66% (108/162) 2023-08-09T11:35:02.7563551Z Resolving deltas: 67% (109/162) 2023-08-09T11:35:02.7563885Z Resolving deltas: 68% (111/162) 2023-08-09T11:35:02.7564190Z Resolving deltas: 69% (112/162) 2023-08-09T11:35:02.7564405Z Resolving deltas: 70% (114/162) 2023-08-09T11:35:02.7564624Z Resolving deltas: 71% (116/162) 2023-08-09T11:35:02.7564856Z Resolving deltas: 72% (117/162) 2023-08-09T11:35:02.7565132Z Resolving deltas: 73% (119/162) 2023-08-09T11:35:02.7565404Z Resolving deltas: 74% (120/162) 2023-08-09T11:35:02.7565632Z Resolving deltas: 75% (122/162) 2023-08-09T11:35:02.7565842Z Resolving deltas: 76% (124/162) 2023-08-09T11:35:02.7566076Z Resolving deltas: 77% (125/162) 2023-08-09T11:35:02.7566341Z Resolving deltas: 78% (127/162) 2023-08-09T11:35:02.7566605Z Resolving deltas: 79% (128/162) 2023-08-09T11:35:02.7566874Z Resolving deltas: 80% (130/162) 2023-08-09T11:35:02.7567095Z Resolving deltas: 81% (132/162) 2023-08-09T11:35:02.7567312Z Resolving deltas: 82% (133/162) 2023-08-09T11:35:02.7568122Z Resolving deltas: 83% (135/162) 2023-08-09T11:35:02.7568396Z Resolving deltas: 84% (137/162) 2023-08-09T11:35:02.7568692Z Resolving deltas: 85% (138/162) 2023-08-09T11:35:02.7568914Z Resolving deltas: 86% (140/162) 2023-08-09T11:35:02.7570278Z Resolving deltas: 87% (141/162) 2023-08-09T11:35:02.7572129Z Resolving deltas: 88% (143/162) 2023-08-09T11:35:02.7572383Z Resolving deltas: 89% (145/162) 2023-08-09T11:35:02.7573134Z Resolving deltas: 90% (146/162) 2023-08-09T11:35:02.7573814Z Resolving deltas: 91% (148/162) 2023-08-09T11:35:02.7574250Z Resolving deltas: 92% (150/162) 2023-08-09T11:35:02.7575251Z Resolving deltas: 93% (152/162) 2023-08-09T11:35:02.7578597Z Resolving deltas: 95% (154/162) 2023-08-09T11:35:02.7579712Z Resolving deltas: 96% (156/162) 2023-08-09T11:35:02.7579980Z Resolving deltas: 97% (158/162) 2023-08-09T11:35:02.7583908Z Resolving deltas: 98% (159/162) 2023-08-09T11:35:02.7584166Z Resolving deltas: 99% (161/162) 2023-08-09T11:35:02.7586650Z Resolving deltas: 100% (162/162) 2023-08-09T11:35:02.7586898Z Resolving deltas: 100% (162/162), done. 2023-08-09T11:35:02.7782040Z From https://github.com/pytorch/audio 2023-08-09T11:35:02.7782547Z * [new branch] nightly -> origin/nightly 2023-08-09T11:35:02.7799377Z ##[endgroup] 2023-08-09T11:35:02.7799762Z ##[group]Determining the checkout info 2023-08-09T11:35:02.7801766Z ##[endgroup] 2023-08-09T11:35:02.7802119Z ##[group]Checking out the ref 2023-08-09T11:35:02.7805372Z [command]/usr/bin/git checkout --progress --force -B nightly refs/remotes/origin/nightly 2023-08-09T11:35:02.8371295Z Switched to a new branch 'nightly' 2023-08-09T11:35:02.8372144Z branch 'nightly' set up to track 'origin/nightly'. 2023-08-09T11:35:02.8378138Z ##[endgroup] 2023-08-09T11:35:02.8411031Z [command]/usr/bin/git log -1 --format='%H' 2023-08-09T11:35:02.8432454Z 'fe9b9ff75edebf1e0e326f64577d64df3b5858db' 2023-08-09T11:35:02.8529824Z Prepare all required actions 2023-08-09T11:35:02.8578266Z ##[group]Run ./test-infra/.github/actions/calculate-docker-image 2023-08-09T11:35:02.8578531Z with: 2023-08-09T11:35:02.8578760Z docker-image-name: pytorch/conda-builder:cuda11.8 2023-08-09T11:35:02.8579030Z docker-build-dir: .ci/docker 2023-08-09T11:35:02.8579272Z working-directory: pytorch/audio 2023-08-09T11:35:02.8579549Z docker-registry: 308535385114.dkr.ecr.us-east-1.amazonaws.com 2023-08-09T11:35:02.8579928Z env: 2023-08-09T11:35:02.8580148Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T11:35:02.8580393Z REPOSITORY: pytorch/audio 2023-08-09T11:35:02.8580605Z PR_NUMBER: 2023-08-09T11:35:02.8583503Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_APPLY_CMVN_SLIDING=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_FBANK_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_KALDI_PITCH_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_MFCC_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_SPECTROGRAM_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_CUDA_SMALL_MEMORY=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_ON_PYTHON_310=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_TEMPORARY_DISABLED=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_DECODER=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_ENCODER=true # Set CHANNEL if [[(${GITHUB_EVENT_NAME} = 'pull_request' && (${GITHUB_BASE_REF} = 'release'*)) || (${GITHUB_REF} = 'refs/heads/release'*) ]]; then export CHANNEL=test else export CHANNEL=nightly fi echo "::group::Create conda env" # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env echo "::endgroup::" echo "::group::Install PyTorch" conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" echo "::endgroup::" echo "::group::Install TorchAudio" conda install --quiet --yes 'cmake>=3.18.0' ninja pip3 install --progress-bar off -v -e . --no-use-pep517 echo "::endgroup::" echo "::group::Build FFmpeg" .github/scripts/ffmpeg/build_gpu.sh echo "::endgroup::" echo "::group::Install other Dependencies" conda install \ --quiet --yes \ -c conda-forge \ -c numba/label/dev \ sox libvorbis 'librosa==0.10.0' parameterized 'requests>=2.20' pip3 install --progress-bar off \ kaldi-io \ SoundFile \ coverage \ pytest \ pytest-cov \ 'scipy==1.7.3' \ transformers \ expecttest \ unidecode \ inflect \ Pillow \ sentencepiece \ pytorch-lightning \ 'protobuf<4.21.0' \ demucs \ tinytag \ flashlight-text \ git+https://github.com/kpu/kenlm/ \ git+https://github.com/pytorch/fairseq.git@e47a4c8 echo "::endgroup::" echo "::group::Run tests" export PATH="${PWD}/third_party/install/bin/:${PATH}" declare -a args=( '-v' '--cov=torchaudio' "--junitxml=${RUNNER_TEST_RESULTS_DIR}/junit.xml" '--durations' '100' '-k' 'cuda or gpu' ) cd test python3 -m torch.utils.collect_env env | grep TORCHAUDIO || true pytest "${args[@]}" torchaudio_unittest coverage html 2023-08-09T11:35:02.8586576Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-08-09T11:35:02.8586925Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-08-09T11:35:02.8587263Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-08-09T11:35:02.8587567Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-08-09T11:35:02.8587814Z ##[endgroup] 2023-08-09T11:35:02.8600847Z ##[group]Run set -ex 2023-08-09T11:35:02.8601086Z set -ex 2023-08-09T11:35:02.8601260Z  2023-08-09T11:35:02.8601533Z # If the docker build directory or the build script doesn't exist, the action will 2023-08-09T11:35:02.8602020Z # gracefully return the docker image name as it is. Pulling docker image in Linux 2023-08-09T11:35:02.8602390Z # job could then download the pre-built image as usual 2023-08-09T11:35:02.8602710Z if [[ ! -d "${DOCKER_BUILD_DIR}" ]] || [[ ! -f "${DOCKER_BUILD_DIR}/build.sh" ]]; then 2023-08-09T11:35:02.8603004Z  echo "skip=true" >> "${GITHUB_OUTPUT}" 2023-08-09T11:35:02.8603299Z  echo "docker-image=${DOCKER_IMAGE_NAME}" >> "${GITHUB_OUTPUT}" 2023-08-09T11:35:02.8603603Z  2023-08-09T11:35:02.8603862Z  echo "There is no Docker build script in ${REPO_NAME} repo, skipping..." 2023-08-09T11:35:02.8604127Z  exit 0 2023-08-09T11:35:02.8604310Z else 2023-08-09T11:35:02.8604526Z  echo "skip=false" >> "${GITHUB_OUTPUT}" 2023-08-09T11:35:02.8604744Z fi 2023-08-09T11:35:02.8604917Z  2023-08-09T11:35:02.8605167Z if [[ "${DOCKER_IMAGE_NAME}" == *"${DOCKER_REGISTRY}/${REPO_NAME}"* ]]; then 2023-08-09T11:35:02.8605512Z  # The docker image name already includes the ECR prefix and tag, so we can just 2023-08-09T11:35:02.8605833Z  # use it as it is, but first let's extract the tag 2023-08-09T11:35:02.8606145Z  DOCKER_TAG=$(echo "${DOCKER_IMAGE_NAME}" | awk -F '[:,]' '{print $2}') 2023-08-09T11:35:02.8606447Z  echo "docker-tag=${DOCKER_TAG}" >> "${GITHUB_OUTPUT}" 2023-08-09T11:35:02.8606755Z  echo "docker-image=${DOCKER_IMAGE_NAME}" >> "${GITHUB_OUTPUT}" 2023-08-09T11:35:02.8607009Z else 2023-08-09T11:35:02.8607248Z  DOCKER_TAG=$(git rev-parse HEAD:"${DOCKER_BUILD_DIR}") 2023-08-09T11:35:02.8607776Z  echo "docker-tag=${DOCKER_TAG}" >> "${GITHUB_OUTPUT}" 2023-08-09T11:35:02.8608150Z  echo "docker-image=${DOCKER_REGISTRY}/${REPO_NAME}/${DOCKER_IMAGE_NAME}:${DOCKER_TAG}" >> "${GITHUB_OUTPUT}" 2023-08-09T11:35:02.8608444Z fi 2023-08-09T11:35:02.8619129Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2023-08-09T11:35:02.8619370Z env: 2023-08-09T11:35:02.8619589Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T11:35:02.8619829Z REPOSITORY: pytorch/audio 2023-08-09T11:35:02.8620036Z PR_NUMBER: 2023-08-09T11:35:02.8622968Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_APPLY_CMVN_SLIDING=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_FBANK_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_KALDI_PITCH_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_MFCC_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_SPECTROGRAM_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_CUDA_SMALL_MEMORY=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_ON_PYTHON_310=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_TEMPORARY_DISABLED=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_DECODER=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_ENCODER=true # Set CHANNEL if [[(${GITHUB_EVENT_NAME} = 'pull_request' && (${GITHUB_BASE_REF} = 'release'*)) || (${GITHUB_REF} = 'refs/heads/release'*) ]]; then export CHANNEL=test else export CHANNEL=nightly fi echo "::group::Create conda env" # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env echo "::endgroup::" echo "::group::Install PyTorch" conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" echo "::endgroup::" echo "::group::Install TorchAudio" conda install --quiet --yes 'cmake>=3.18.0' ninja pip3 install --progress-bar off -v -e . --no-use-pep517 echo "::endgroup::" echo "::group::Build FFmpeg" .github/scripts/ffmpeg/build_gpu.sh echo "::endgroup::" echo "::group::Install other Dependencies" conda install \ --quiet --yes \ -c conda-forge \ -c numba/label/dev \ sox libvorbis 'librosa==0.10.0' parameterized 'requests>=2.20' pip3 install --progress-bar off \ kaldi-io \ SoundFile \ coverage \ pytest \ pytest-cov \ 'scipy==1.7.3' \ transformers \ expecttest \ unidecode \ inflect \ Pillow \ sentencepiece \ pytorch-lightning \ 'protobuf<4.21.0' \ demucs \ tinytag \ flashlight-text \ git+https://github.com/kpu/kenlm/ \ git+https://github.com/pytorch/fairseq.git@e47a4c8 echo "::endgroup::" echo "::group::Run tests" export PATH="${PWD}/third_party/install/bin/:${PATH}" declare -a args=( '-v' '--cov=torchaudio' "--junitxml=${RUNNER_TEST_RESULTS_DIR}/junit.xml" '--durations' '100' '-k' 'cuda or gpu' ) cd test python3 -m torch.utils.collect_env env | grep TORCHAUDIO || true pytest "${args[@]}" torchaudio_unittest coverage html 2023-08-09T11:35:02.8626100Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-08-09T11:35:02.8626458Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-08-09T11:35:02.8626787Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-08-09T11:35:02.8627085Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-08-09T11:35:02.8627330Z REPO_NAME: audio 2023-08-09T11:35:02.8627568Z DOCKER_IMAGE_NAME: pytorch/conda-builder:cuda11.8 2023-08-09T11:35:02.8627821Z DOCKER_BUILD_DIR: .ci/docker 2023-08-09T11:35:02.8628084Z DOCKER_REGISTRY: 308535385114.dkr.ecr.us-east-1.amazonaws.com 2023-08-09T11:35:02.8628336Z ##[endgroup] 2023-08-09T11:35:02.8654037Z + [[ ! -d .ci/docker ]] 2023-08-09T11:35:02.8654269Z + echo skip=true 2023-08-09T11:35:02.8654589Z + echo docker-image=pytorch/conda-builder:cuda11.8 2023-08-09T11:35:02.8655393Z + echo 'There is no Docker build script in audio repo, skipping...' 2023-08-09T11:35:02.8656097Z There is no Docker build script in audio repo, skipping... 2023-08-09T11:35:02.8656347Z + exit 0 2023-08-09T11:35:02.8747338Z Prepare all required actions 2023-08-09T11:35:02.8763563Z ##[group]Run ./test-infra/.github/actions/pull-docker-image 2023-08-09T11:35:02.8763817Z with: 2023-08-09T11:35:02.8764033Z docker-image: pytorch/conda-builder:cuda11.8 2023-08-09T11:35:02.8764260Z env: 2023-08-09T11:35:02.8764502Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T11:35:02.8764812Z REPOSITORY: pytorch/audio 2023-08-09T11:35:02.8765076Z PR_NUMBER: 2023-08-09T11:35:02.8768140Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_APPLY_CMVN_SLIDING=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_FBANK_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_KALDI_PITCH_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_MFCC_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_SPECTROGRAM_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_CUDA_SMALL_MEMORY=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_ON_PYTHON_310=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_TEMPORARY_DISABLED=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_DECODER=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_ENCODER=true # Set CHANNEL if [[(${GITHUB_EVENT_NAME} = 'pull_request' && (${GITHUB_BASE_REF} = 'release'*)) || (${GITHUB_REF} = 'refs/heads/release'*) ]]; then export CHANNEL=test else export CHANNEL=nightly fi echo "::group::Create conda env" # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env echo "::endgroup::" echo "::group::Install PyTorch" conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" echo "::endgroup::" echo "::group::Install TorchAudio" conda install --quiet --yes 'cmake>=3.18.0' ninja pip3 install --progress-bar off -v -e . --no-use-pep517 echo "::endgroup::" echo "::group::Build FFmpeg" .github/scripts/ffmpeg/build_gpu.sh echo "::endgroup::" echo "::group::Install other Dependencies" conda install \ --quiet --yes \ -c conda-forge \ -c numba/label/dev \ sox libvorbis 'librosa==0.10.0' parameterized 'requests>=2.20' pip3 install --progress-bar off \ kaldi-io \ SoundFile \ coverage \ pytest \ pytest-cov \ 'scipy==1.7.3' \ transformers \ expecttest \ unidecode \ inflect \ Pillow \ sentencepiece \ pytorch-lightning \ 'protobuf<4.21.0' \ demucs \ tinytag \ flashlight-text \ git+https://github.com/kpu/kenlm/ \ git+https://github.com/pytorch/fairseq.git@e47a4c8 echo "::endgroup::" echo "::group::Run tests" export PATH="${PWD}/third_party/install/bin/:${PATH}" declare -a args=( '-v' '--cov=torchaudio' "--junitxml=${RUNNER_TEST_RESULTS_DIR}/junit.xml" '--durations' '100' '-k' 'cuda or gpu' ) cd test python3 -m torch.utils.collect_env env | grep TORCHAUDIO || true pytest "${args[@]}" torchaudio_unittest coverage html 2023-08-09T11:35:02.8771266Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-08-09T11:35:02.8771619Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-08-09T11:35:02.8771952Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-08-09T11:35:02.8772256Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-08-09T11:35:02.8772509Z ##[endgroup] 2023-08-09T11:35:02.8783405Z ##[group]Run retry () { "$@" || (sleep 1 && "$@") || (sleep 2 && "$@") } 2023-08-09T11:35:02.8783775Z retry () { "$@" || (sleep 1 && "$@") || (sleep 2 && "$@") } 2023-08-09T11:35:02.8784075Z # ignore output since only exit code is used for conditional 2023-08-09T11:35:02.8784386Z # only pull docker image if it's not available locally 2023-08-09T11:35:02.8784711Z if ! docker inspect --type=image "${DOCKER_IMAGE}" >/dev/null 2>/dev/null; then 2023-08-09T11:35:02.8785111Z  retry docker pull "${DOCKER_IMAGE}" 2023-08-09T11:35:02.8785337Z fi 2023-08-09T11:35:02.8796106Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2023-08-09T11:35:02.8796335Z env: 2023-08-09T11:35:02.8796554Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T11:35:02.8796797Z REPOSITORY: pytorch/audio 2023-08-09T11:35:02.8796996Z PR_NUMBER: 2023-08-09T11:35:02.8799833Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_APPLY_CMVN_SLIDING=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_FBANK_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_KALDI_PITCH_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_MFCC_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_SPECTROGRAM_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_CUDA_SMALL_MEMORY=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_ON_PYTHON_310=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_TEMPORARY_DISABLED=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_DECODER=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_ENCODER=true # Set CHANNEL if [[(${GITHUB_EVENT_NAME} = 'pull_request' && (${GITHUB_BASE_REF} = 'release'*)) || (${GITHUB_REF} = 'refs/heads/release'*) ]]; then export CHANNEL=test else export CHANNEL=nightly fi echo "::group::Create conda env" # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env echo "::endgroup::" echo "::group::Install PyTorch" conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" echo "::endgroup::" echo "::group::Install TorchAudio" conda install --quiet --yes 'cmake>=3.18.0' ninja pip3 install --progress-bar off -v -e . --no-use-pep517 echo "::endgroup::" echo "::group::Build FFmpeg" .github/scripts/ffmpeg/build_gpu.sh echo "::endgroup::" echo "::group::Install other Dependencies" conda install \ --quiet --yes \ -c conda-forge \ -c numba/label/dev \ sox libvorbis 'librosa==0.10.0' parameterized 'requests>=2.20' pip3 install --progress-bar off \ kaldi-io \ SoundFile \ coverage \ pytest \ pytest-cov \ 'scipy==1.7.3' \ transformers \ expecttest \ unidecode \ inflect \ Pillow \ sentencepiece \ pytorch-lightning \ 'protobuf<4.21.0' \ demucs \ tinytag \ flashlight-text \ git+https://github.com/kpu/kenlm/ \ git+https://github.com/pytorch/fairseq.git@e47a4c8 echo "::endgroup::" echo "::group::Run tests" export PATH="${PWD}/third_party/install/bin/:${PATH}" declare -a args=( '-v' '--cov=torchaudio' "--junitxml=${RUNNER_TEST_RESULTS_DIR}/junit.xml" '--durations' '100' '-k' 'cuda or gpu' ) cd test python3 -m torch.utils.collect_env env | grep TORCHAUDIO || true pytest "${args[@]}" torchaudio_unittest coverage html 2023-08-09T11:35:02.8802899Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-08-09T11:35:02.8803240Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-08-09T11:35:02.8803569Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-08-09T11:35:02.8803874Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-08-09T11:35:02.8804108Z ##[endgroup] 2023-08-09T11:35:03.1547363Z cuda11.8: Pulling from pytorch/conda-builder 2023-08-09T11:35:03.1549736Z 2d473b07cdd5: Pulling fs layer 2023-08-09T11:35:03.1550280Z c465e63dcd7b: Pulling fs layer 2023-08-09T11:35:03.1550543Z a7f6430c8a00: Pulling fs layer 2023-08-09T11:35:03.1551904Z 06ba10ca5c81: Pulling fs layer 2023-08-09T11:35:03.1552331Z 2388e8dd226d: Pulling fs layer 2023-08-09T11:35:03.1552560Z 62ba1c2b4591: Pulling fs layer 2023-08-09T11:35:03.1552827Z b09cb1ee2eff: Pulling fs layer 2023-08-09T11:35:03.1553062Z 63ff7b8d20e2: Pulling fs layer 2023-08-09T11:35:03.1556125Z 06ba10ca5c81: Waiting 2023-08-09T11:35:03.1556345Z 270053ceedab: Pulling fs layer 2023-08-09T11:35:03.1556572Z 4f4fb700ef54: Pulling fs layer 2023-08-09T11:35:03.1556801Z 2388e8dd226d: Waiting 2023-08-09T11:35:03.1557063Z 62ba1c2b4591: Waiting 2023-08-09T11:35:03.1557333Z 83391fa0c49e: Pulling fs layer 2023-08-09T11:35:03.1557562Z 9337207c4d02: Pulling fs layer 2023-08-09T11:35:03.1557781Z 93aaaef2fa05: Pulling fs layer 2023-08-09T11:35:03.1557980Z 63ff7b8d20e2: Waiting 2023-08-09T11:35:03.1558198Z 8aca3975db6d: Pulling fs layer 2023-08-09T11:35:03.1558503Z 6c98ad6aee13: Pulling fs layer 2023-08-09T11:35:03.1558706Z 270053ceedab: Waiting 2023-08-09T11:35:03.1558908Z 2e33826627e5: Pulling fs layer 2023-08-09T11:35:03.1559120Z 843a9af61985: Pulling fs layer 2023-08-09T11:35:03.1559334Z 4f4fb700ef54: Waiting 2023-08-09T11:35:03.1559550Z bdb161d9acc8: Pulling fs layer 2023-08-09T11:35:03.1559758Z 9337207c4d02: Waiting 2023-08-09T11:35:03.1559954Z fe807f8a9f46: Pulling fs layer 2023-08-09T11:35:03.1560180Z a393777e5737: Pulling fs layer 2023-08-09T11:35:03.1560387Z 93aaaef2fa05: Waiting 2023-08-09T11:35:03.1560578Z 8aca3975db6d: Waiting 2023-08-09T11:35:03.1560772Z 83391fa0c49e: Waiting 2023-08-09T11:35:03.1560963Z 2e33826627e5: Waiting 2023-08-09T11:35:03.1561145Z b09cb1ee2eff: Waiting 2023-08-09T11:35:03.1561337Z 843a9af61985: Waiting 2023-08-09T11:35:03.1561527Z fe807f8a9f46: Waiting 2023-08-09T11:35:03.1561710Z bdb161d9acc8: Waiting 2023-08-09T11:35:03.1561904Z a393777e5737: Waiting 2023-08-09T11:35:03.1562100Z 6c98ad6aee13: Waiting 2023-08-09T11:35:03.2221184Z a7f6430c8a00: Verifying Checksum 2023-08-09T11:35:03.2221549Z a7f6430c8a00: Download complete 2023-08-09T11:35:03.5974261Z 06ba10ca5c81: Verifying Checksum 2023-08-09T11:35:03.5974538Z 06ba10ca5c81: Download complete 2023-08-09T11:35:03.9241053Z 2388e8dd226d: Download complete 2023-08-09T11:35:03.9474826Z 2d473b07cdd5: Verifying Checksum 2023-08-09T11:35:03.9475127Z 2d473b07cdd5: Download complete 2023-08-09T11:35:04.3730953Z b09cb1ee2eff: Verifying Checksum 2023-08-09T11:35:04.3731355Z b09cb1ee2eff: Download complete 2023-08-09T11:35:04.4072575Z c465e63dcd7b: Verifying Checksum 2023-08-09T11:35:04.4072900Z c465e63dcd7b: Download complete 2023-08-09T11:35:04.6531509Z 270053ceedab: Download complete 2023-08-09T11:35:04.7168640Z 4f4fb700ef54: Verifying Checksum 2023-08-09T11:35:04.7826216Z 4f4fb700ef54: Download complete 2023-08-09T11:35:04.7826605Z 83391fa0c49e: Verifying Checksum 2023-08-09T11:35:04.7826862Z 83391fa0c49e: Download complete 2023-08-09T11:35:05.0556905Z 62ba1c2b4591: Verifying Checksum 2023-08-09T11:35:05.0557540Z 62ba1c2b4591: Download complete 2023-08-09T11:35:05.2185668Z 63ff7b8d20e2: Verifying Checksum 2023-08-09T11:35:05.2186015Z 63ff7b8d20e2: Download complete 2023-08-09T11:35:05.2849649Z 93aaaef2fa05: Download complete 2023-08-09T11:35:05.3518971Z 8aca3975db6d: Download complete 2023-08-09T11:35:05.4286553Z 2e33826627e5: Download complete 2023-08-09T11:35:05.7189924Z 2d473b07cdd5: Pull complete 2023-08-09T11:35:05.7367626Z 843a9af61985: Verifying Checksum 2023-08-09T11:35:05.7368036Z 843a9af61985: Download complete 2023-08-09T11:35:05.7828687Z bdb161d9acc8: Verifying Checksum 2023-08-09T11:35:05.7829010Z bdb161d9acc8: Download complete 2023-08-09T11:35:05.8548824Z fe807f8a9f46: Download complete 2023-08-09T11:35:07.3506411Z c465e63dcd7b: Pull complete 2023-08-09T11:35:07.4452789Z a7f6430c8a00: Pull complete 2023-08-09T11:35:07.6459994Z 06ba10ca5c81: Pull complete 2023-08-09T11:35:07.7566672Z 2388e8dd226d: Pull complete 2023-08-09T11:35:09.5873481Z 62ba1c2b4591: Pull complete 2023-08-09T11:35:09.7993212Z b09cb1ee2eff: Pull complete 2023-08-09T11:35:10.8232655Z 6c98ad6aee13: Verifying Checksum 2023-08-09T11:35:10.8232940Z 6c98ad6aee13: Download complete 2023-08-09T11:35:11.1398367Z 63ff7b8d20e2: Pull complete 2023-08-09T11:35:11.4177671Z 270053ceedab: Pull complete 2023-08-09T11:35:11.5041833Z 4f4fb700ef54: Pull complete 2023-08-09T11:35:12.2761195Z a393777e5737: Verifying Checksum 2023-08-09T11:35:12.2761834Z a393777e5737: Download complete 2023-08-09T11:35:40.1996429Z 83391fa0c49e: Pull complete 2023-08-09T11:36:04.2170852Z 9337207c4d02: Verifying Checksum 2023-08-09T11:36:04.2171379Z 9337207c4d02: Download complete 2023-08-09T11:36:50.4868690Z 9337207c4d02: Pull complete 2023-08-09T11:36:50.8828436Z 93aaaef2fa05: Pull complete 2023-08-09T11:36:51.1069279Z 8aca3975db6d: Pull complete 2023-08-09T11:36:58.5975285Z 6c98ad6aee13: Pull complete 2023-08-09T11:36:58.7357367Z 2e33826627e5: Pull complete 2023-08-09T11:36:59.2067482Z 843a9af61985: Pull complete 2023-08-09T11:36:59.4223152Z bdb161d9acc8: Pull complete 2023-08-09T11:36:59.6563778Z fe807f8a9f46: Pull complete 2023-08-09T11:37:09.6067332Z a393777e5737: Pull complete 2023-08-09T11:37:09.7207153Z Digest: sha256:5fee47bc124a0ed44d8d74af710d4825c9f96a5454399b86028e45592dbc8c3f 2023-08-09T11:37:09.7672005Z Status: Downloaded newer image for pytorch/conda-builder:cuda11.8 2023-08-09T11:37:09.7867784Z docker.io/pytorch/conda-builder:cuda11.8 2023-08-09T11:37:09.7954001Z ##[group]Run set -ex 2023-08-09T11:37:09.7954255Z set -ex 2023-08-09T11:37:09.7954441Z { 2023-08-09T11:37:09.7954651Z  echo "#!/usr/bin/env bash"; 2023-08-09T11:37:09.7954882Z  echo "set -eou pipefail"; 2023-08-09T11:37:09.7955126Z  # shellcheck disable=SC2016 2023-08-09T11:37:09.7955386Z  echo 'eval "$(conda shell.bash hook)"'; 2023-08-09T11:37:09.7955614Z  echo "set -x"; 2023-08-09T11:37:09.7955829Z  echo "${SCRIPT}"; 2023-08-09T11:37:09.7956064Z } > "${RUNNER_TEMP}/exec_script" 2023-08-09T11:37:09.7956329Z chmod +x "${RUNNER_TEMP}/exec_script" 2023-08-09T11:37:09.7956706Z python3 "/home/ec2-user/actions-runner/_work/audio/audio/test-infra/.github/scripts/run_docker_with_env_secrets.py" "" 2023-08-09T11:37:09.7967380Z shell: /usr/bin/bash -e {0} 2023-08-09T11:37:09.7967805Z env: 2023-08-09T11:37:09.7968027Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T11:37:09.7968309Z REPOSITORY: pytorch/audio 2023-08-09T11:37:09.7968513Z PR_NUMBER: 2023-08-09T11:37:09.7971380Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_APPLY_CMVN_SLIDING=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_FBANK_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_KALDI_PITCH_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_MFCC_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_SPECTROGRAM_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_CUDA_SMALL_MEMORY=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_ON_PYTHON_310=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_TEMPORARY_DISABLED=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_DECODER=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_ENCODER=true # Set CHANNEL if [[(${GITHUB_EVENT_NAME} = 'pull_request' && (${GITHUB_BASE_REF} = 'release'*)) || (${GITHUB_REF} = 'refs/heads/release'*) ]]; then export CHANNEL=test else export CHANNEL=nightly fi echo "::group::Create conda env" # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env echo "::endgroup::" echo "::group::Install PyTorch" conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" echo "::endgroup::" echo "::group::Install TorchAudio" conda install --quiet --yes 'cmake>=3.18.0' ninja pip3 install --progress-bar off -v -e . --no-use-pep517 echo "::endgroup::" echo "::group::Build FFmpeg" .github/scripts/ffmpeg/build_gpu.sh echo "::endgroup::" echo "::group::Install other Dependencies" conda install \ --quiet --yes \ -c conda-forge \ -c numba/label/dev \ sox libvorbis 'librosa==0.10.0' parameterized 'requests>=2.20' pip3 install --progress-bar off \ kaldi-io \ SoundFile \ coverage \ pytest \ pytest-cov \ 'scipy==1.7.3' \ transformers \ expecttest \ unidecode \ inflect \ Pillow \ sentencepiece \ pytorch-lightning \ 'protobuf<4.21.0' \ demucs \ tinytag \ flashlight-text \ git+https://github.com/kpu/kenlm/ \ git+https://github.com/pytorch/fairseq.git@e47a4c8 echo "::endgroup::" echo "::group::Run tests" export PATH="${PWD}/third_party/install/bin/:${PATH}" declare -a args=( '-v' '--cov=torchaudio' "--junitxml=${RUNNER_TEST_RESULTS_DIR}/junit.xml" '--durations' '100' '-k' 'cuda or gpu' ) cd test python3 -m torch.utils.collect_env env | grep TORCHAUDIO || true pytest "${args[@]}" torchaudio_unittest coverage html 2023-08-09T11:37:09.7974527Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-08-09T11:37:09.7974868Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-08-09T11:37:09.7975265Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-08-09T11:37:09.7975585Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-08-09T11:37:09.7976061Z ALL_SECRETS: { "github_token": "***" } 2023-08-09T11:37:09.7976274Z ##[endgroup] 2023-08-09T11:37:09.7998699Z + echo '#!/usr/bin/env bash' 2023-08-09T11:37:09.7999033Z + echo 'set -eou pipefail' 2023-08-09T11:37:09.7999344Z + echo 'eval "$(conda shell.bash hook)"' 2023-08-09T11:37:09.7999591Z + echo 'set -x' 2023-08-09T11:37:09.7999815Z + echo 'set -ex 2023-08-09T11:37:09.8000034Z # Set up Environment Variables 2023-08-09T11:37:09.8000260Z export PYTHON_VERSION="3.10" 2023-08-09T11:37:09.8000502Z export CU_VERSION="11.8" 2023-08-09T11:37:09.8002781Z export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" 2023-08-09T11:37:09.8003234Z export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_APPLY_CMVN_SLIDING=true 2023-08-09T11:37:09.8003571Z export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_FBANK_FEATS=true 2023-08-09T11:37:09.8003927Z export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_KALDI_PITCH_FEATS=true 2023-08-09T11:37:09.8004345Z export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_MFCC_FEATS=true 2023-08-09T11:37:09.8004729Z export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_SPECTROGRAM_FEATS=true 2023-08-09T11:37:09.8005131Z export TORCHAUDIO_TEST_ALLOW_SKIP_IF_CUDA_SMALL_MEMORY=true 2023-08-09T11:37:09.8005540Z export TORCHAUDIO_TEST_ALLOW_SKIP_IF_ON_PYTHON_310=true 2023-08-09T11:37:09.8005959Z export TORCHAUDIO_TEST_ALLOW_SKIP_IF_TEMPORARY_DISABLED=true 2023-08-09T11:37:09.8006358Z export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_DECODER=true 2023-08-09T11:37:09.8006661Z export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_ENCODER=true 2023-08-09T11:37:09.8006952Z 2023-08-09T11:37:09.8007029Z # Set CHANNEL 2023-08-09T11:37:09.8007765Z if [[(${GITHUB_EVENT_NAME} = '\''pull_request'\'' && (${GITHUB_BASE_REF} = '\''release'\''*)) || (${GITHUB_REF} = '\''refs/heads/release'\''*) ]]; then 2023-08-09T11:37:09.8008153Z export CHANNEL=test 2023-08-09T11:37:09.8008401Z else 2023-08-09T11:37:09.8008638Z export CHANNEL=nightly 2023-08-09T11:37:09.8008841Z fi 2023-08-09T11:37:09.8008968Z 2023-08-09T11:37:09.8020901Z echo "::group::Create conda env" 2023-08-09T11:37:09.8021131Z # Mark Build Directory Safe 2023-08-09T11:37:09.8021479Z git config --global --add safe.directory /__w/audio/audio 2023-08-09T11:37:09.8021896Z conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" 2023-08-09T11:37:09.8022167Z conda activate ./ci_env 2023-08-09T11:37:09.8022289Z 2023-08-09T11:37:09.8022378Z echo "::endgroup::" 2023-08-09T11:37:09.8022590Z echo "::group::Install PyTorch" 2023-08-09T11:37:09.8022796Z conda install \ 2023-08-09T11:37:09.8023002Z --yes \ 2023-08-09T11:37:09.8023197Z --quiet \ 2023-08-09T11:37:09.8023418Z -c "pytorch-${CHANNEL}" \ 2023-08-09T11:37:09.8023931Z -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ 2023-08-09T11:37:09.8024189Z "${CUDATOOLKIT}" 2023-08-09T11:37:09.8024309Z 2023-08-09T11:37:09.8024392Z echo "::endgroup::" 2023-08-09T11:37:09.8024607Z echo "::group::Install TorchAudio" 2023-08-09T11:37:09.8024921Z conda install --quiet --yes '\''cmake>=3.18.0'\'' ninja 2023-08-09T11:37:09.8025261Z pip3 install --progress-bar off -v -e . --no-use-pep517 2023-08-09T11:37:09.8025437Z 2023-08-09T11:37:09.8025518Z echo "::endgroup::" 2023-08-09T11:37:09.8025718Z echo "::group::Build FFmpeg" 2023-08-09T11:37:09.8025951Z .github/scripts/ffmpeg/build_gpu.sh 2023-08-09T11:37:09.8026096Z 2023-08-09T11:37:09.8026176Z echo "::endgroup::" 2023-08-09T11:37:09.8026397Z echo "::group::Install other Dependencies" 2023-08-09T11:37:09.8026617Z conda install \ 2023-08-09T11:37:09.8026830Z --quiet --yes \ 2023-08-09T11:37:09.8027043Z -c conda-forge \ 2023-08-09T11:37:09.8027264Z -c numba/label/dev \ 2023-08-09T11:37:09.8027596Z sox libvorbis '\''librosa==0.10.0'\'' parameterized '\''requests>=2.20'\'' 2023-08-09T11:37:09.8027909Z pip3 install --progress-bar off \ 2023-08-09T11:37:09.8028147Z kaldi-io \ 2023-08-09T11:37:09.8028328Z SoundFile \ 2023-08-09T11:37:09.8028665Z coverage \ 2023-08-09T11:37:09.8028852Z pytest \ 2023-08-09T11:37:09.8029060Z pytest-cov \ 2023-08-09T11:37:09.8029275Z '\''scipy==1.7.3'\'' \ 2023-08-09T11:37:09.8029471Z transformers \ 2023-08-09T11:37:09.8029669Z expecttest \ 2023-08-09T11:37:09.8029843Z unidecode \ 2023-08-09T11:37:09.8030020Z inflect \ 2023-08-09T11:37:09.8030195Z Pillow \ 2023-08-09T11:37:09.8030370Z sentencepiece \ 2023-08-09T11:37:09.8030600Z pytorch-lightning \ 2023-08-09T11:37:09.8030843Z '\''protobuf<4.21.0'\'' \ 2023-08-09T11:37:09.8031031Z demucs \ 2023-08-09T11:37:09.8031201Z tinytag \ 2023-08-09T11:37:09.8031426Z flashlight-text \ 2023-08-09T11:37:09.8031655Z git+https://github.com/kpu/kenlm/ \ 2023-08-09T11:37:09.8031945Z git+https://github.com/pytorch/fairseq.git@e47a4c8 2023-08-09T11:37:09.8032120Z 2023-08-09T11:37:09.8032202Z echo "::endgroup::" 2023-08-09T11:37:09.8032394Z echo "::group::Run tests" 2023-08-09T11:37:09.8032647Z export PATH="${PWD}/third_party/install/bin/:${PATH}" 2023-08-09T11:37:09.8032820Z 2023-08-09T11:37:09.8032929Z declare -a args=( 2023-08-09T11:37:09.8033138Z '\''-v'\'' 2023-08-09T11:37:09.8033354Z '\''--cov=torchaudio'\'' 2023-08-09T11:37:09.8033647Z "--junitxml=${RUNNER_TEST_RESULTS_DIR}/junit.xml" 2023-08-09T11:37:09.8033929Z '\''--durations'\'' '\''100'\'' 2023-08-09T11:37:09.8034174Z '\''-k'\'' '\''cuda or gpu'\'' 2023-08-09T11:37:09.8034369Z ) 2023-08-09T11:37:09.8034466Z 2023-08-09T11:37:09.8034535Z cd test 2023-08-09T11:37:09.8034765Z python3 -m torch.utils.collect_env 2023-08-09T11:37:09.8035001Z env | grep TORCHAUDIO || true 2023-08-09T11:37:09.8035316Z pytest "${args[@]}" torchaudio_unittest 2023-08-09T11:37:09.8035523Z coverage html 2023-08-09T11:37:09.8035716Z ' 2023-08-09T11:37:09.8036003Z + chmod +x /home/ec2-user/actions-runner/_work/_temp/exec_script 2023-08-09T11:37:09.8036463Z + python3 /home/ec2-user/actions-runner/_work/audio/audio/test-infra/.github/scripts/run_docker_with_env_secrets.py '' 2023-08-09T11:38:14.6267429Z Running command: 2023-08-09T11:38:14.6269927Z docker run -e PR_NUMBER -e RUNNER_ARTIFACT_DIR=/artifacts -e RUNNER_DOCS_DIR=/docs -e RUNNER_TEST_RESULTS_DIR=/test-results --env-file="/home/ec2-user/actions-runner/_work/_temp/github_env_5808497226" `# It is unknown why the container sees a different value for this.` -e GITHUB_STEP_SUMMARY -e SECRET_GITHUB_TOKEN --cap-add=SYS_PTRACE --detach --ipc=host --security-opt seccomp=unconfined --shm-size=2g --tty --ulimit stack=10485760:83886080 --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all -v "/home/ec2-user/actions-runner/_work/audio/audio/pytorch/audio:/work" -v "/home/ec2-user/actions-runner/_work/audio/audio/test-infra:/test-infra" -v "/home/ec2-user/actions-runner/_work/_temp/artifacts:/artifacts" -v "/home/ec2-user/actions-runner/_work/_temp/docs:/docs" -v "/home/ec2-user/actions-runner/_work/_temp/test-results:/test-results" -v "/home/ec2-user/actions-runner/_work/_temp/exec_script:/exec" -v "/home/ec2-user/actions-runner/_work/_temp/_runner_file_commands/step_summary_68fe5875-5b65-45c7-9b2b-25fd4e84bc2d":"/home/ec2-user/actions-runner/_work/_temp/_runner_file_commands/step_summary_68fe5875-5b65-45c7-9b2b-25fd4e84bc2d" -w /work "pytorch/conda-builder:cuda11.8" 2023-08-09T11:38:14.6271772Z 2023-08-09T11:38:14.6272067Z 22e6a775e605fd218e015c5dcc86a807399d882d567185392dc9e740cfb074f6 2023-08-09T11:38:14.6272631Z Running command: docker exec -t 22e6a775e605fd218e015c5dcc86a807399d882d567185392dc9e740cfb074f6 /exec 2023-08-09T11:38:14.6272951Z + set -ex 2023-08-09T11:38:14.6273153Z + export PYTHON_VERSION=3.10 2023-08-09T11:38:14.6273382Z + PYTHON_VERSION=3.10 2023-08-09T11:38:14.6273595Z + export CU_VERSION=11.8 2023-08-09T11:38:14.6273806Z + CU_VERSION=11.8 2023-08-09T11:38:14.6274095Z + export CUDATOOLKIT=pytorch-cuda=11.8 2023-08-09T11:38:14.6274744Z + CUDATOOLKIT=pytorch-cuda=11.8 2023-08-09T11:38:14.6275153Z + export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_APPLY_CMVN_SLIDING=true 2023-08-09T11:38:14.6275573Z + TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_APPLY_CMVN_SLIDING=true 2023-08-09T11:38:14.6276052Z + export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_FBANK_FEATS=true 2023-08-09T11:38:14.6276375Z + TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_FBANK_FEATS=true 2023-08-09T11:38:14.6276707Z + export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_KALDI_PITCH_FEATS=true 2023-08-09T11:38:14.6277036Z + TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_KALDI_PITCH_FEATS=true 2023-08-09T11:38:14.6277372Z + export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_MFCC_FEATS=true 2023-08-09T11:38:14.6277692Z + TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_MFCC_FEATS=true 2023-08-09T11:38:14.6278041Z + export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_SPECTROGRAM_FEATS=true 2023-08-09T11:38:14.6278479Z + TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_SPECTROGRAM_FEATS=true 2023-08-09T11:38:14.6278915Z + export TORCHAUDIO_TEST_ALLOW_SKIP_IF_CUDA_SMALL_MEMORY=true 2023-08-09T11:38:14.6279306Z + TORCHAUDIO_TEST_ALLOW_SKIP_IF_CUDA_SMALL_MEMORY=true 2023-08-09T11:38:14.6279635Z + export TORCHAUDIO_TEST_ALLOW_SKIP_IF_ON_PYTHON_310=true 2023-08-09T11:38:14.6279925Z + TORCHAUDIO_TEST_ALLOW_SKIP_IF_ON_PYTHON_310=true 2023-08-09T11:38:14.6280222Z + export TORCHAUDIO_TEST_ALLOW_SKIP_IF_TEMPORARY_DISABLED=true 2023-08-09T11:38:14.6280514Z + TORCHAUDIO_TEST_ALLOW_SKIP_IF_TEMPORARY_DISABLED=true 2023-08-09T11:38:14.6280814Z + export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_DECODER=true 2023-08-09T11:38:14.6281102Z + TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_DECODER=true 2023-08-09T11:38:14.6281546Z + export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_ENCODER=true 2023-08-09T11:38:14.6281823Z + TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_ENCODER=true 2023-08-09T11:38:14.6282082Z + [[ push = \p\u\l\l\_\r\e\q\u\e\s\t ]] 2023-08-09T11:38:14.6282357Z + [[ refs/heads/nightly = \r\e\f\s\/\h\e\a\d\s\/\r\e\l\e\a\s\e* ]] 2023-08-09T11:38:14.6282611Z + export CHANNEL=nightly 2023-08-09T11:38:14.6282818Z + CHANNEL=nightly 2023-08-09T11:38:14.6283160Z + echo '::group::Create conda env' 2023-08-09T11:38:14.6283706Z ##[group]Create conda env 2023-08-09T11:38:14.6284027Z + git config --global --add safe.directory /__w/audio/audio 2023-08-09T11:38:14.6284381Z + conda create --quiet -y --prefix ci_env python=3.10 2023-08-09T11:38:14.6284616Z + local cmd=create 2023-08-09T11:38:14.6284806Z + case "$cmd" in 2023-08-09T11:38:14.6285105Z + __conda_exe create --quiet -y --prefix ci_env python=3.10 2023-08-09T11:38:14.6285469Z + /opt/conda/bin/conda create --quiet -y --prefix ci_env python=3.10 2023-08-09T11:38:14.6285817Z Collecting package metadata (current_repodata.json): ...working... done 2023-08-09T11:38:14.6286117Z Solving environment: ...working... done 2023-08-09T11:38:14.6286268Z 2023-08-09T11:38:14.6286344Z ## Package Plan ## 2023-08-09T11:38:14.6286468Z 2023-08-09T11:38:14.6286573Z environment location: /work/ci_env 2023-08-09T11:38:14.6286720Z 2023-08-09T11:38:14.6286815Z added / updated specs: 2023-08-09T11:38:14.6287038Z - python=3.10 2023-08-09T11:38:14.6287160Z 2023-08-09T11:38:14.6287165Z 2023-08-09T11:38:14.6287289Z The following packages will be downloaded: 2023-08-09T11:38:14.6287762Z 2023-08-09T11:38:14.6287873Z package | build 2023-08-09T11:38:14.6288176Z ---------------------------|----------------- 2023-08-09T11:38:14.6288487Z libffi-3.4.4 | h6a678d5_0 142 KB 2023-08-09T11:38:14.6288801Z openssl-3.0.10 | h7f8727e_0 5.2 MB 2023-08-09T11:38:14.6289121Z pip-23.2.1 | py310h06a4308_0 2.6 MB 2023-08-09T11:38:14.6289428Z python-3.10.12 | h955ad1f_0 26.8 MB 2023-08-09T11:38:14.6289750Z setuptools-68.0.0 | py310h06a4308_0 936 KB 2023-08-09T11:38:14.6290059Z sqlite-3.41.2 | h5eee18b_0 1.2 MB 2023-08-09T11:38:14.6290470Z xz-5.4.2 | h5eee18b_0 642 KB 2023-08-09T11:38:14.6290782Z ------------------------------------------------------------ 2023-08-09T11:38:14.6291044Z Total: 37.5 MB 2023-08-09T11:38:14.6291183Z 2023-08-09T11:38:14.6291306Z The following NEW packages will be INSTALLED: 2023-08-09T11:38:14.6291464Z 2023-08-09T11:38:14.6291685Z _libgcc_mutex pkgs/main/linux-64::_libgcc_mutex-0.1-main 2023-08-09T11:38:14.6292071Z _openmp_mutex pkgs/main/linux-64::_openmp_mutex-5.1-1_gnu 2023-08-09T11:38:14.6292456Z bzip2 pkgs/main/linux-64::bzip2-1.0.8-h7b6447c_0 2023-08-09T11:38:14.6292879Z ca-certificates pkgs/main/linux-64::ca-certificates-2023.05.30-h06a4308_0 2023-08-09T11:38:14.6293310Z ld_impl_linux-64 pkgs/main/linux-64::ld_impl_linux-64-2.38-h1181459_1 2023-08-09T11:38:14.6293705Z libffi pkgs/main/linux-64::libffi-3.4.4-h6a678d5_0 2023-08-09T11:38:14.6294105Z libgcc-ng pkgs/main/linux-64::libgcc-ng-11.2.0-h1234567_1 2023-08-09T11:38:14.6294497Z libgomp pkgs/main/linux-64::libgomp-11.2.0-h1234567_1 2023-08-09T11:38:14.6294900Z libstdcxx-ng pkgs/main/linux-64::libstdcxx-ng-11.2.0-h1234567_1 2023-08-09T11:38:14.6295305Z libuuid pkgs/main/linux-64::libuuid-1.41.5-h5eee18b_0 2023-08-09T11:38:14.6295840Z ncurses pkgs/main/linux-64::ncurses-6.4-h6a678d5_0 2023-08-09T11:38:14.6296217Z openssl pkgs/main/linux-64::openssl-3.0.10-h7f8727e_0 2023-08-09T11:38:14.6296608Z pip pkgs/main/linux-64::pip-23.2.1-py310h06a4308_0 2023-08-09T11:38:14.6297078Z python pkgs/main/linux-64::python-3.10.12-h955ad1f_0 2023-08-09T11:38:14.6297456Z readline pkgs/main/linux-64::readline-8.2-h5eee18b_0 2023-08-09T11:38:14.6297860Z setuptools pkgs/main/linux-64::setuptools-68.0.0-py310h06a4308_0 2023-08-09T11:38:14.6298262Z sqlite pkgs/main/linux-64::sqlite-3.41.2-h5eee18b_0 2023-08-09T11:38:14.6298633Z tk pkgs/main/linux-64::tk-8.6.12-h1ccaba5_0 2023-08-09T11:38:14.6298979Z tzdata pkgs/main/noarch::tzdata-2023c-h04d1e81_0 2023-08-09T11:38:14.6299362Z wheel pkgs/main/linux-64::wheel-0.38.4-py310h06a4308_0 2023-08-09T11:38:14.6299731Z xz pkgs/main/linux-64::xz-5.4.2-h5eee18b_0 2023-08-09T11:38:14.6300090Z zlib pkgs/main/linux-64::zlib-1.2.13-h5eee18b_0 2023-08-09T11:38:14.6300250Z 2023-08-09T11:38:14.6300256Z 2023-08-09T11:38:14.6300364Z Preparing transaction: ...working... done 2023-08-09T11:38:14.6300626Z Verifying transaction: ...working... done 2023-08-09T11:38:14.6300876Z Executing transaction: ...working... done 2023-08-09T11:38:14.6301100Z + conda activate ./ci_env 2023-08-09T11:38:14.6301304Z + local cmd=activate 2023-08-09T11:38:14.6301499Z + case "$cmd" in 2023-08-09T11:38:14.6301708Z + __conda_activate activate ./ci_env 2023-08-09T11:38:14.6301935Z + '[' -n '' ']' 2023-08-09T11:38:14.6302127Z + local ask_conda 2023-08-09T11:38:14.6302339Z ++ PS1='(base) ' 2023-08-09T11:38:14.6302555Z ++ __conda_exe shell.posix activate ./ci_env 2023-08-09T11:38:14.6302827Z ++ /opt/conda/bin/conda shell.posix activate ./ci_env 2023-08-09T11:38:14.6303127Z + ask_conda='PS1='\''(/work/ci_env) '\'' 2023-08-09T11:38:14.6303648Z export PATH='\''/work/ci_env/bin:/opt/conda/condabin:/opt/conda/bin:/usr/local/cuda-11.8/bin:/opt/rh/devtoolset-9/root/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'\'' 2023-08-09T11:38:14.6304084Z export CONDA_PREFIX='\''/work/ci_env'\'' 2023-08-09T11:38:14.6304349Z export CONDA_SHLVL='\''2'\'' 2023-08-09T11:38:14.6304626Z export CONDA_DEFAULT_ENV='\''/work/ci_env'\'' 2023-08-09T11:38:14.6304941Z export CONDA_PROMPT_MODIFIER='\''(/work/ci_env) '\'' 2023-08-09T11:38:14.6305244Z export CONDA_PREFIX_1='\''/opt/conda'\'' 2023-08-09T11:38:14.6305533Z export CONDA_EXE='\''/opt/conda/bin/conda'\'' 2023-08-09T11:38:14.6305790Z export _CE_M='\'''\'' 2023-08-09T11:38:14.6306079Z export _CE_CONDA='\'''\'' 2023-08-09T11:38:14.6306382Z export CONDA_PYTHON_EXE='\''/opt/conda/bin/python'\''' 2023-08-09T11:38:14.6306668Z + eval 'PS1='\''(/work/ci_env) '\'' 2023-08-09T11:38:14.6307184Z export PATH='\''/work/ci_env/bin:/opt/conda/condabin:/opt/conda/bin:/usr/local/cuda-11.8/bin:/opt/rh/devtoolset-9/root/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'\'' 2023-08-09T11:38:14.6307615Z export CONDA_PREFIX='\''/work/ci_env'\'' 2023-08-09T11:38:14.6307895Z export CONDA_SHLVL='\''2'\'' 2023-08-09T11:38:14.6308195Z export CONDA_DEFAULT_ENV='\''/work/ci_env'\'' 2023-08-09T11:38:14.6308515Z export CONDA_PROMPT_MODIFIER='\''(/work/ci_env) '\'' 2023-08-09T11:38:14.6308807Z export CONDA_PREFIX_1='\''/opt/conda'\'' 2023-08-09T11:38:14.6309098Z export CONDA_EXE='\''/opt/conda/bin/conda'\'' 2023-08-09T11:38:14.6309353Z export _CE_M='\'''\'' 2023-08-09T11:38:14.6309574Z export _CE_CONDA='\'''\'' 2023-08-09T11:38:14.6309875Z export CONDA_PYTHON_EXE='\''/opt/conda/bin/python'\''' 2023-08-09T11:38:14.6310155Z ++ PS1='(/work/ci_env) ' 2023-08-09T11:38:14.6310654Z ++ export PATH=/work/ci_env/bin:/opt/conda/condabin:/opt/conda/bin:/usr/local/cuda-11.8/bin:/opt/rh/devtoolset-9/root/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin 2023-08-09T11:38:14.6311294Z ++ PATH=/work/ci_env/bin:/opt/conda/condabin:/opt/conda/bin:/usr/local/cuda-11.8/bin:/opt/rh/devtoolset-9/root/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin 2023-08-09T11:38:14.6311668Z ++ export CONDA_PREFIX=/work/ci_env 2023-08-09T11:38:14.6311898Z ++ CONDA_PREFIX=/work/ci_env 2023-08-09T11:38:14.6312153Z ++ export CONDA_SHLVL=2 2023-08-09T11:38:14.6312347Z ++ CONDA_SHLVL=2 2023-08-09T11:38:14.6312563Z ++ export CONDA_DEFAULT_ENV=/work/ci_env 2023-08-09T11:38:14.6312790Z ++ CONDA_DEFAULT_ENV=/work/ci_env 2023-08-09T11:38:14.6313083Z ++ export 'CONDA_PROMPT_MODIFIER=(/work/ci_env) ' 2023-08-09T11:38:14.6313389Z ++ CONDA_PROMPT_MODIFIER='(/work/ci_env) ' 2023-08-09T11:42:06.2120301Z ++ export CONDA_PREFIX_1=/opt/conda 2023-08-09T11:42:06.2122175Z ++ CONDA_PREFIX_1=/opt/conda 2023-08-09T11:42:06.2122533Z ++ export CONDA_EXE=/opt/conda/bin/conda 2023-08-09T11:42:06.2122837Z ++ CONDA_EXE=/opt/conda/bin/conda 2023-08-09T11:42:06.2123051Z ++ export _CE_M= 2023-08-09T11:42:06.2123265Z ++ _CE_M= 2023-08-09T11:42:06.2123515Z ++ export _CE_CONDA= 2023-08-09T11:42:06.2127332Z ++ _CE_CONDA= 2023-08-09T11:42:06.2127985Z ++ export CONDA_PYTHON_EXE=/opt/conda/bin/python 2023-08-09T11:42:06.2128332Z ++ CONDA_PYTHON_EXE=/opt/conda/bin/python 2023-08-09T11:42:06.2128556Z + __conda_hashr 2023-08-09T11:42:06.2129492Z + '[' -n '' ']' 2023-08-09T11:42:06.2129864Z + '[' -n '' ']' 2023-08-09T11:42:06.2130152Z + hash -r 2023-08-09T11:42:06.2130403Z + echo ::endgroup:: 2023-08-09T11:42:06.2131181Z ##[endgroup] 2023-08-09T11:42:06.2131624Z + echo '::group::Install PyTorch' 2023-08-09T11:42:06.2132065Z ##[group]Install PyTorch 2023-08-09T11:42:06.2132805Z + conda install --yes --quiet -c pytorch-nightly -c nvidia 'pytorch-nightly::pytorch[build=*11.8*]' pytorch-cuda=11.8 2023-08-09T11:42:06.2133260Z + local cmd=install 2023-08-09T11:42:06.2133511Z + case "$cmd" in 2023-08-09T11:42:06.2134021Z + __conda_exe install --yes --quiet -c pytorch-nightly -c nvidia 'pytorch-nightly::pytorch[build=*11.8*]' pytorch-cuda=11.8 2023-08-09T11:42:06.2134647Z + /opt/conda/bin/conda install --yes --quiet -c pytorch-nightly -c nvidia 'pytorch-nightly::pytorch[build=*11.8*]' pytorch-cuda=11.8 2023-08-09T11:42:06.2135094Z Collecting package metadata (current_repodata.json): ...working... done 2023-08-09T11:42:06.2135613Z Solving environment: ...working... unsuccessful initial attempt using frozen solve. Retrying with flexible solve. 2023-08-09T11:42:06.2136077Z Solving environment: ...working... unsuccessful attempt using repodata from current_repodata.json, retrying with next repodata source. 2023-08-09T11:42:06.2136505Z Collecting package metadata (repodata.json): ...working... done 2023-08-09T11:42:06.2136887Z Solving environment: ...working... done 2023-08-09T11:42:06.2137348Z 2023-08-09T11:42:06.2137455Z ## Package Plan ## 2023-08-09T11:42:06.2137589Z 2023-08-09T11:42:06.2137695Z environment location: /work/ci_env 2023-08-09T11:42:06.2138037Z 2023-08-09T11:42:06.2138126Z added / updated specs: 2023-08-09T11:42:06.2138380Z - pytorch-cuda=11.8 2023-08-09T11:42:06.2138841Z - pytorch-nightly::pytorch[build=*11.8*] 2023-08-09T11:42:06.2139043Z 2023-08-09T11:42:06.2139060Z 2023-08-09T11:42:06.2139178Z The following packages will be downloaded: 2023-08-09T11:42:06.2139378Z 2023-08-09T11:42:06.2139513Z package | build 2023-08-09T11:42:06.2139936Z ---------------------------|----------------- 2023-08-09T11:42:06.2140358Z blas-1.0 | mkl 6 KB 2023-08-09T11:42:06.2141025Z cuda-cudart-11.8.89 | 0 197 KB nvidia 2023-08-09T11:42:06.2141489Z cuda-cupti-11.8.87 | 0 25.3 MB nvidia 2023-08-09T11:42:06.2142618Z cuda-libraries-11.8.0 | 0 1 KB nvidia 2023-08-09T11:42:06.2142957Z cuda-nvrtc-11.8.89 | 0 19.1 MB nvidia 2023-08-09T11:42:06.2143282Z cuda-nvtx-11.8.86 | 0 57 KB nvidia 2023-08-09T11:42:06.2143611Z cuda-runtime-11.8.0 | 0 1 KB nvidia 2023-08-09T11:42:06.2143932Z gmp-6.2.1 | h295c915_3 544 KB 2023-08-09T11:42:06.2144248Z gmpy2-2.1.2 | py310heeb90bb_0 517 KB 2023-08-09T11:42:06.2144570Z intel-openmp-2023.1.0 | hdb19cb5_46305 17.1 MB 2023-08-09T11:42:06.2145096Z libcublas-11.11.3.6 | 0 364.0 MB nvidia 2023-08-09T11:42:06.2145475Z libcufft-10.9.0.58 | 0 142.8 MB nvidia 2023-08-09T11:42:06.2145787Z libcufile-1.7.1.12 | 0 1021 KB nvidia 2023-08-09T11:42:06.2146161Z libcurand-10.3.3.129 | 0 51.6 MB nvidia 2023-08-09T11:42:06.2146495Z libcusolver-11.4.1.48 | 0 96.5 MB nvidia 2023-08-09T11:42:06.2147008Z libcusparse-11.7.5.86 | 0 176.3 MB nvidia 2023-08-09T11:42:06.2147348Z libnpp-11.8.0.86 | 0 147.8 MB nvidia 2023-08-09T11:42:06.2147663Z libnvjpeg-11.9.0.86 | 0 2.4 MB nvidia 2023-08-09T11:42:06.2147978Z mkl-2023.1.0 | h213fc3f_46343 171.6 MB 2023-08-09T11:42:06.2148281Z mpc-1.1.0 | h10f8cd9_1 90 KB 2023-08-09T11:42:06.2148586Z mpfr-4.0.2 | hb69a4c5_1 487 KB 2023-08-09T11:42:06.2148895Z mpmath-1.3.0 | py310h06a4308_0 834 KB 2023-08-09T11:42:06.2149210Z networkx-3.1 | py310h06a4308_0 2.8 MB 2023-08-09T11:42:06.2149586Z pytorch-2.1.0.dev20230809 |py3.10_cuda11.8_cudnn8.7.0_0 1.45 GB pytorch-nightly 2023-08-09T11:42:06.2149986Z pytorch-cuda-11.8 | h7e8668a_5 3 KB pytorch-nightly 2023-08-09T11:42:06.2150362Z pytorch-mutex-1.0 | cuda 3 KB pytorch-nightly 2023-08-09T11:42:06.2150705Z sympy-1.11.1 | py310h06a4308_0 11.8 MB 2023-08-09T11:42:06.2151013Z tbb-2021.8.0 | hdb19cb5_0 1.6 MB 2023-08-09T11:42:06.2151363Z torchtriton-2.1.0+e6216047b8| py310 90.9 MB pytorch-nightly 2023-08-09T11:42:06.2151719Z typing_extensions-4.7.1 | py310h06a4308_0 55 KB 2023-08-09T11:42:06.2152062Z ------------------------------------------------------------ 2023-08-09T11:42:06.2152326Z Total: 2.75 GB 2023-08-09T11:42:06.2152464Z 2023-08-09T11:42:06.2152589Z The following NEW packages will be INSTALLED: 2023-08-09T11:42:06.2152753Z 2023-08-09T11:42:06.2153033Z blas pkgs/main/linux-64::blas-1.0-mkl 2023-08-09T11:42:06.2153407Z cuda-cudart nvidia/linux-64::cuda-cudart-11.8.89-0 2023-08-09T11:42:06.2153796Z cuda-cupti nvidia/linux-64::cuda-cupti-11.8.87-0 2023-08-09T11:42:06.2154349Z cuda-libraries nvidia/linux-64::cuda-libraries-11.8.0-0 2023-08-09T11:42:06.2154723Z cuda-nvrtc nvidia/linux-64::cuda-nvrtc-11.8.89-0 2023-08-09T11:42:06.2155095Z cuda-nvtx nvidia/linux-64::cuda-nvtx-11.8.86-0 2023-08-09T11:42:06.2155468Z cuda-runtime nvidia/linux-64::cuda-runtime-11.8.0-0 2023-08-09T11:42:06.2155872Z filelock pkgs/main/linux-64::filelock-3.9.0-py310h06a4308_0 2023-08-09T11:42:06.2156256Z gmp pkgs/main/linux-64::gmp-6.2.1-h295c915_3 2023-08-09T11:42:06.2156634Z gmpy2 pkgs/main/linux-64::gmpy2-2.1.2-py310heeb90bb_0 2023-08-09T11:42:06.2157062Z intel-openmp pkgs/main/linux-64::intel-openmp-2023.1.0-hdb19cb5_46305 2023-08-09T11:42:06.2157491Z jinja2 pkgs/main/linux-64::jinja2-3.1.2-py310h06a4308_0 2023-08-09T11:42:06.2157861Z libcublas nvidia/linux-64::libcublas-11.11.3.6-0 2023-08-09T11:42:06.2158233Z libcufft nvidia/linux-64::libcufft-10.9.0.58-0 2023-08-09T11:42:06.2158598Z libcufile nvidia/linux-64::libcufile-1.7.1.12-0 2023-08-09T11:42:06.2158964Z libcurand nvidia/linux-64::libcurand-10.3.3.129-0 2023-08-09T11:42:06.2159341Z libcusolver nvidia/linux-64::libcusolver-11.4.1.48-0 2023-08-09T11:42:06.2159719Z libcusparse nvidia/linux-64::libcusparse-11.7.5.86-0 2023-08-09T11:42:06.2160087Z libnpp nvidia/linux-64::libnpp-11.8.0.86-0 2023-08-09T11:42:06.2160518Z libnvjpeg nvidia/linux-64::libnvjpeg-11.9.0.86-0 2023-08-09T11:42:06.2160922Z markupsafe pkgs/main/linux-64::markupsafe-2.1.1-py310h7f8727e_0 2023-08-09T11:42:06.2161329Z mkl pkgs/main/linux-64::mkl-2023.1.0-h213fc3f_46343 2023-08-09T11:42:06.2161858Z mpc pkgs/main/linux-64::mpc-1.1.0-h10f8cd9_1 2023-08-09T11:42:06.2162220Z mpfr pkgs/main/linux-64::mpfr-4.0.2-hb69a4c5_1 2023-08-09T11:42:06.2162610Z mpmath pkgs/main/linux-64::mpmath-1.3.0-py310h06a4308_0 2023-08-09T11:42:06.2163005Z networkx pkgs/main/linux-64::networkx-3.1-py310h06a4308_0 2023-08-09T11:42:06.2163598Z pytorch pytorch-nightly/linux-64::pytorch-2.1.0.dev20230809-py3.10_cuda11.8_cudnn8.7.0_0 2023-08-09T11:42:06.2164066Z pytorch-cuda pytorch-nightly/linux-64::pytorch-cuda-11.8-h7e8668a_5 2023-08-09T11:42:06.2164563Z pytorch-mutex pytorch-nightly/noarch::pytorch-mutex-1.0-cuda 2023-08-09T11:42:06.2164990Z pyyaml pkgs/main/linux-64::pyyaml-6.0-py310h5eee18b_1 2023-08-09T11:42:06.2165378Z sympy pkgs/main/linux-64::sympy-1.11.1-py310h06a4308_0 2023-08-09T11:42:06.2165788Z tbb pkgs/main/linux-64::tbb-2021.8.0-hdb19cb5_0 2023-08-09T11:42:06.2166482Z torchtriton pytorch-nightly/linux-64::torchtriton-2.1.0+e6216047b8-py310 2023-08-09T11:42:06.2166939Z typing_extensions pkgs/main/linux-64::typing_extensions-4.7.1-py310h06a4308_0 2023-08-09T11:42:06.2167341Z yaml pkgs/main/linux-64::yaml-0.2.5-h7b6447c_0 2023-08-09T11:42:06.2167685Z 2023-08-09T11:42:06.2167693Z 2023-08-09T11:42:06.2167826Z Preparing transaction: ...working... done 2023-08-09T11:42:06.2168084Z Verifying transaction: ...working... done 2023-08-09T11:42:06.2168328Z Executing transaction: ...working... done 2023-08-09T11:42:06.2168544Z + __conda_reactivate 2023-08-09T11:42:06.2168738Z + local ask_conda 2023-08-09T11:42:06.2169149Z ++ PS1='(/work/ci_env) ' 2023-08-09T11:42:06.2169373Z ++ __conda_exe shell.posix reactivate 2023-08-09T11:42:06.2169629Z ++ /opt/conda/bin/conda shell.posix reactivate 2023-08-09T11:42:06.2169911Z + ask_conda='PS1='\''(/work/ci_env) '\'' 2023-08-09T11:42:06.2170555Z export PATH='\''/work/ci_env/bin:/opt/conda/condabin:/opt/conda/bin:/usr/local/cuda-11.8/bin:/opt/rh/devtoolset-9/root/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'\'' 2023-08-09T11:42:06.2171226Z export CONDA_SHLVL='\''2'\'' 2023-08-09T11:42:06.2171528Z export CONDA_PROMPT_MODIFIER='\''(/work/ci_env) '\''' 2023-08-09T11:42:06.2171810Z + eval 'PS1='\''(/work/ci_env) '\'' 2023-08-09T11:42:06.2172329Z export PATH='\''/work/ci_env/bin:/opt/conda/condabin:/opt/conda/bin:/usr/local/cuda-11.8/bin:/opt/rh/devtoolset-9/root/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'\'' 2023-08-09T11:42:06.2172740Z export CONDA_SHLVL='\''2'\'' 2023-08-09T11:42:06.2173033Z export CONDA_PROMPT_MODIFIER='\''(/work/ci_env) '\''' 2023-08-09T11:42:06.2173309Z ++ PS1='(/work/ci_env) ' 2023-08-09T11:42:06.2173814Z ++ export PATH=/work/ci_env/bin:/opt/conda/condabin:/opt/conda/bin:/usr/local/cuda-11.8/bin:/opt/rh/devtoolset-9/root/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin 2023-08-09T11:42:06.2174460Z ++ PATH=/work/ci_env/bin:/opt/conda/condabin:/opt/conda/bin:/usr/local/cuda-11.8/bin:/opt/rh/devtoolset-9/root/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin 2023-08-09T11:42:06.2174805Z ++ export CONDA_SHLVL=2 2023-08-09T11:42:06.2175005Z ++ CONDA_SHLVL=2 2023-08-09T11:42:06.2175558Z ++ export 'CONDA_PROMPT_MODIFIER=(/work/ci_env) ' 2023-08-09T11:42:06.2175863Z ++ CONDA_PROMPT_MODIFIER='(/work/ci_env) ' 2023-08-09T11:42:06.2176086Z + __conda_hashr 2023-08-09T11:42:06.2176288Z + '[' -n '' ']' 2023-08-09T11:42:06.2176483Z + '[' -n '' ']' 2023-08-09T11:42:06.2176667Z + hash -r 2023-08-09T11:42:06.2176861Z + echo ::endgroup:: 2023-08-09T11:42:06.2178613Z ##[endgroup] 2023-08-09T11:42:06.2179041Z + echo '::group::Install TorchAudio' 2023-08-09T11:42:06.2179432Z ##[group]Install TorchAudio 2023-08-09T11:42:06.2179727Z + conda install --quiet --yes 'cmake>=3.18.0' ninja 2023-08-09T11:42:06.2179961Z + local cmd=install 2023-08-09T11:42:06.2180145Z + case "$cmd" in 2023-08-09T11:42:06.2180437Z + __conda_exe install --quiet --yes 'cmake>=3.18.0' ninja 2023-08-09T11:42:06.2180794Z + /opt/conda/bin/conda install --quiet --yes 'cmake>=3.18.0' ninja 2023-08-09T11:42:06.2181124Z Collecting package metadata (current_repodata.json): ...working... done 2023-08-09T11:42:06.2181411Z Solving environment: ...working... done 2023-08-09T11:42:06.2181835Z 2023-08-09T11:42:06.2181923Z ## Package Plan ## 2023-08-09T11:42:06.2182049Z 2023-08-09T11:42:17.9013193Z environment location: /work/ci_env 2023-08-09T11:42:17.9013377Z 2023-08-09T11:42:17.9013474Z added / updated specs: 2023-08-09T11:42:17.9013879Z - cmake[version='>=3.18.0'] 2023-08-09T11:42:17.9014192Z - ninja 2023-08-09T11:42:17.9014354Z 2023-08-09T11:42:17.9014361Z 2023-08-09T11:42:17.9014523Z The following packages will be downloaded: 2023-08-09T11:42:17.9014685Z 2023-08-09T11:42:17.9014801Z package | build 2023-08-09T11:42:17.9015121Z ---------------------------|----------------- 2023-08-09T11:42:17.9015587Z cmake-3.26.4 | h96355d8_0 16.7 MB 2023-08-09T11:42:17.9016013Z krb5-1.20.1 | h143b758_1 1.3 MB 2023-08-09T11:42:17.9016434Z libcurl-8.1.1 | h251f7ec_2 397 KB 2023-08-09T11:42:17.9016845Z libnghttp2-1.52.0 | h2d74bed_1 672 KB 2023-08-09T11:42:17.9017258Z libssh2-1.10.0 | hdbd6064_2 292 KB 2023-08-09T11:42:17.9017648Z rhash-1.4.3 | hdbd6064_0 220 KB 2023-08-09T11:42:17.9018039Z zstd-1.5.5 | hc292b87_0 647 KB 2023-08-09T11:42:17.9018480Z ------------------------------------------------------------ 2023-08-09T11:42:17.9018840Z Total: 20.2 MB 2023-08-09T11:42:17.9018985Z 2023-08-09T11:42:17.9019105Z The following NEW packages will be INSTALLED: 2023-08-09T11:42:17.9019270Z 2023-08-09T11:42:17.9019644Z c-ares pkgs/main/linux-64::c-ares-1.19.0-h5eee18b_0 2023-08-09T11:42:17.9020332Z cmake pkgs/main/linux-64::cmake-3.26.4-h96355d8_0 2023-08-09T11:42:17.9020873Z expat pkgs/main/linux-64::expat-2.4.9-h6a678d5_0 2023-08-09T11:42:17.9021363Z krb5 pkgs/main/linux-64::krb5-1.20.1-h143b758_1 2023-08-09T11:42:17.9021886Z libcurl pkgs/main/linux-64::libcurl-8.1.1-h251f7ec_2 2023-08-09T11:42:17.9022417Z libedit pkgs/main/linux-64::libedit-3.1.20221030-h5eee18b_0 2023-08-09T11:42:17.9022865Z libev pkgs/main/linux-64::libev-4.33-h7f8727e_1 2023-08-09T11:42:17.9023257Z libnghttp2 pkgs/main/linux-64::libnghttp2-1.52.0-h2d74bed_1 2023-08-09T11:42:17.9023657Z libssh2 pkgs/main/linux-64::libssh2-1.10.0-hdbd6064_2 2023-08-09T11:42:17.9024036Z libuv pkgs/main/linux-64::libuv-1.44.2-h5eee18b_0 2023-08-09T11:42:17.9024406Z lz4-c pkgs/main/linux-64::lz4-c-1.9.4-h6a678d5_0 2023-08-09T11:42:17.9024779Z ninja pkgs/main/linux-64::ninja-1.10.2-h06a4308_5 2023-08-09T11:42:17.9025168Z ninja-base pkgs/main/linux-64::ninja-base-1.10.2-hd09550d_5 2023-08-09T11:42:17.9025557Z rhash pkgs/main/linux-64::rhash-1.4.3-hdbd6064_0 2023-08-09T11:42:17.9025922Z zstd pkgs/main/linux-64::zstd-1.5.5-hc292b87_0 2023-08-09T11:42:17.9026084Z 2023-08-09T11:42:17.9026090Z 2023-08-09T11:42:17.9026205Z Preparing transaction: ...working... done 2023-08-09T11:42:17.9026458Z Verifying transaction: ...working... done 2023-08-09T11:42:17.9026707Z Executing transaction: ...working... done 2023-08-09T11:42:17.9026931Z + __conda_reactivate 2023-08-09T11:42:17.9027237Z + local ask_conda 2023-08-09T11:42:17.9027470Z ++ PS1='(/work/ci_env) ' 2023-08-09T11:42:17.9027693Z ++ __conda_exe shell.posix reactivate 2023-08-09T11:42:17.9027942Z ++ /opt/conda/bin/conda shell.posix reactivate 2023-08-09T11:42:17.9028229Z + ask_conda='PS1='\''(/work/ci_env) '\'' 2023-08-09T11:42:17.9028769Z export PATH='\''/work/ci_env/bin:/opt/conda/condabin:/opt/conda/bin:/usr/local/cuda-11.8/bin:/opt/rh/devtoolset-9/root/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'\'' 2023-08-09T11:42:17.9029175Z export CONDA_SHLVL='\''2'\'' 2023-08-09T11:42:17.9029476Z export CONDA_PROMPT_MODIFIER='\''(/work/ci_env) '\''' 2023-08-09T11:42:17.9029766Z + eval 'PS1='\''(/work/ci_env) '\'' 2023-08-09T11:42:17.9030283Z export PATH='\''/work/ci_env/bin:/opt/conda/condabin:/opt/conda/bin:/usr/local/cuda-11.8/bin:/opt/rh/devtoolset-9/root/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'\'' 2023-08-09T11:42:17.9030689Z export CONDA_SHLVL='\''2'\'' 2023-08-09T11:42:17.9030992Z export CONDA_PROMPT_MODIFIER='\''(/work/ci_env) '\''' 2023-08-09T11:42:17.9031264Z ++ PS1='(/work/ci_env) ' 2023-08-09T11:42:17.9031760Z ++ export PATH=/work/ci_env/bin:/opt/conda/condabin:/opt/conda/bin:/usr/local/cuda-11.8/bin:/opt/rh/devtoolset-9/root/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin 2023-08-09T11:42:17.9032417Z ++ PATH=/work/ci_env/bin:/opt/conda/condabin:/opt/conda/bin:/usr/local/cuda-11.8/bin:/opt/rh/devtoolset-9/root/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin 2023-08-09T11:42:17.9032772Z ++ export CONDA_SHLVL=2 2023-08-09T11:42:17.9032964Z ++ CONDA_SHLVL=2 2023-08-09T11:42:17.9033233Z ++ export 'CONDA_PROMPT_MODIFIER=(/work/ci_env) ' 2023-08-09T11:42:17.9033541Z ++ CONDA_PROMPT_MODIFIER='(/work/ci_env) ' 2023-08-09T11:42:17.9033763Z + __conda_hashr 2023-08-09T11:42:17.9033965Z + '[' -n '' ']' 2023-08-09T11:42:17.9034165Z + '[' -n '' ']' 2023-08-09T11:42:17.9034355Z + hash -r 2023-08-09T11:42:17.9034644Z + pip3 install --progress-bar off -v -e . --no-use-pep517 2023-08-09T11:42:17.9035050Z Using pip 23.2.1 from /work/ci_env/lib/python3.10/site-packages/pip (python 3.10) 2023-08-09T11:42:17.9035336Z Obtaining file:///work 2023-08-09T11:42:17.9035568Z Running command python setup.py egg_info 2023-08-09T11:42:17.9036289Z /work/ci_env/lib/python3.10/site-packages/torch/nn/modules/transformer.py:20: UserWarning: Failed to initialize NumPy: No module named 'numpy' (Triggered internally at /opt/conda/conda-bld/pytorch_1691566927058/work/torch/csrc/utils/tensor_numpy.cpp:84.) 2023-08-09T11:42:17.9036913Z device: torch.device = torch.device(torch._C._get_default_device()), # torch.device('cpu'), 2023-08-09T11:42:17.9037231Z -- Git branch: nightly 2023-08-09T11:42:17.9037529Z -- Git SHA: fe9b9ff75edebf1e0e326f64577d64df3b5858db 2023-08-09T11:42:17.9037795Z -- Git tag: None 2023-08-09T11:42:17.9038047Z -- PyTorch dependency: torch 2023-08-09T11:42:17.9038311Z -- Building version 2.1.0a0+fe9b9ff 2023-08-09T11:42:17.9038529Z running egg_info 2023-08-09T11:42:17.9038853Z creating /tmp/pip-pip-egg-info-7xzemc04/torchaudio.egg-info 2023-08-09T11:42:17.9039254Z writing /tmp/pip-pip-egg-info-7xzemc04/torchaudio.egg-info/PKG-INFO 2023-08-09T11:42:17.9039731Z writing dependency_links to /tmp/pip-pip-egg-info-7xzemc04/torchaudio.egg-info/dependency_links.txt 2023-08-09T11:42:17.9040222Z writing requirements to /tmp/pip-pip-egg-info-7xzemc04/torchaudio.egg-info/requires.txt 2023-08-09T11:42:17.9040696Z writing top-level names to /tmp/pip-pip-egg-info-7xzemc04/torchaudio.egg-info/top_level.txt 2023-08-09T11:42:17.9041166Z writing manifest file '/tmp/pip-pip-egg-info-7xzemc04/torchaudio.egg-info/SOURCES.txt' 2023-08-09T11:42:17.9041641Z reading manifest file '/tmp/pip-pip-egg-info-7xzemc04/torchaudio.egg-info/SOURCES.txt' 2023-08-09T11:42:17.9041985Z adding license file 'LICENSE' 2023-08-09T11:42:17.9042355Z writing manifest file '/tmp/pip-pip-egg-info-7xzemc04/torchaudio.egg-info/SOURCES.txt' 2023-08-09T11:42:17.9042743Z Preparing metadata (setup.py) ... [?25l[?25hdone 2023-08-09T11:42:17.9043263Z Requirement already satisfied: torch in ./ci_env/lib/python3.10/site-packages (from torchaudio==2.1.0a0+fe9b9ff) (2.1.0.dev20230809) 2023-08-09T11:42:17.9043809Z Requirement already satisfied: filelock in ./ci_env/lib/python3.10/site-packages (from torch->torchaudio==2.1.0a0+fe9b9ff) (3.9.0) 2023-08-09T11:42:17.9044370Z Requirement already satisfied: typing-extensions in ./ci_env/lib/python3.10/site-packages (from torch->torchaudio==2.1.0a0+fe9b9ff) (4.7.1) 2023-08-09T11:42:17.9044930Z Requirement already satisfied: sympy in ./ci_env/lib/python3.10/site-packages (from torch->torchaudio==2.1.0a0+fe9b9ff) (1.11.1) 2023-08-09T11:42:17.9045465Z Requirement already satisfied: networkx in ./ci_env/lib/python3.10/site-packages (from torch->torchaudio==2.1.0a0+fe9b9ff) (3.1) 2023-08-09T11:42:17.9045996Z Requirement already satisfied: jinja2 in ./ci_env/lib/python3.10/site-packages (from torch->torchaudio==2.1.0a0+fe9b9ff) (3.1.2) 2023-08-09T11:42:17.9046412Z Collecting fsspec (from torch->torchaudio==2.1.0a0+fe9b9ff) 2023-08-09T11:42:17.9047032Z Obtaining dependency information for fsspec from https://files.pythonhosted.org/packages/e3/bd/4c0a4619494188a9db5d77e2100ab7d544a42e76b2447869d8e124e981d8/fsspec-2023.6.0-py3-none-any.whl.metadata 2023-08-09T11:42:17.9047798Z Downloading fsspec-2023.6.0-py3-none-any.whl.metadata (6.7 kB) 2023-08-09T11:42:17.9048331Z Requirement already satisfied: MarkupSafe>=2.0 in ./ci_env/lib/python3.10/site-packages (from jinja2->torch->torchaudio==2.1.0a0+fe9b9ff) (2.1.1) 2023-08-09T11:42:17.9048942Z Requirement already satisfied: mpmath>=0.19 in ./ci_env/lib/python3.10/site-packages (from sympy->torch->torchaudio==2.1.0a0+fe9b9ff) (1.3.0) 2023-08-09T11:42:17.9049364Z Downloading fsspec-2023.6.0-py3-none-any.whl (163 kB) 2023-08-09T11:42:17.9049655Z Installing collected packages: fsspec, torchaudio 2023-08-09T11:42:17.9049916Z Running setup.py develop for torchaudio 2023-08-09T11:42:17.9050178Z Running command python setup.py develop 2023-08-09T11:42:17.9050838Z /work/ci_env/lib/python3.10/site-packages/torch/nn/modules/transformer.py:20: UserWarning: Failed to initialize NumPy: No module named 'numpy' (Triggered internally at /opt/conda/conda-bld/pytorch_1691566927058/work/torch/csrc/utils/tensor_numpy.cpp:84.) 2023-08-09T11:42:17.9051551Z device: torch.device = torch.device(torch._C._get_default_device()), # torch.device('cpu'), 2023-08-09T11:42:17.9051864Z -- Git branch: nightly 2023-08-09T11:42:17.9052175Z -- Git SHA: fe9b9ff75edebf1e0e326f64577d64df3b5858db 2023-08-09T11:42:17.9052442Z -- Git tag: None 2023-08-09T11:42:17.9052678Z -- PyTorch dependency: torch 2023-08-09T11:42:17.9052948Z -- Building version 2.1.0a0+fe9b9ff 2023-08-09T11:42:17.9053174Z running develop 2023-08-09T11:42:17.9053651Z /work/ci_env/lib/python3.10/site-packages/setuptools/command/develop.py:40: EasyInstallDeprecationWarning: easy_install command is deprecated. 2023-08-09T11:42:17.9053984Z !! 2023-08-09T11:42:17.9054092Z 2023-08-09T11:42:17.9054209Z ******************************************************************************** 2023-08-09T11:42:17.9054486Z Please avoid running ``setup.py`` and ``easy_install``. 2023-08-09T11:42:17.9054779Z Instead, use pypa/build, pypa/installer or other 2023-08-09T11:42:17.9055070Z standards-based tools. 2023-08-09T11:42:17.9055336Z 2023-08-09T11:42:17.9055495Z See https://github.com/pypa/setuptools/issues/917 for details. 2023-08-09T11:42:17.9055791Z ******************************************************************************** 2023-08-09T11:42:17.9055930Z 2023-08-09T11:42:17.9056000Z !! 2023-08-09T11:42:17.9056217Z easy_install.initialize_options(self) 2023-08-09T11:42:17.9056708Z /work/ci_env/lib/python3.10/site-packages/setuptools/_distutils/cmd.py:66: SetuptoolsDeprecationWarning: setup.py install is deprecated. 2023-08-09T11:42:17.9057043Z !! 2023-08-09T11:42:17.9057252Z 2023-08-09T11:42:17.9057368Z ******************************************************************************** 2023-08-09T11:42:17.9057631Z Please avoid running ``setup.py`` directly. 2023-08-09T11:42:17.9057922Z Instead, use pypa/build, pypa/installer or other 2023-08-09T11:42:17.9058214Z standards-based tools. 2023-08-09T11:42:17.9058355Z 2023-08-09T11:42:17.9058614Z See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details. 2023-08-09T11:42:17.9058941Z ******************************************************************************** 2023-08-09T11:42:39.1587750Z 2023-08-09T11:42:39.1588798Z !! 2023-08-09T11:42:39.1589321Z self.initialize_options() 2023-08-09T11:42:39.1589620Z running egg_info 2023-08-09T11:42:39.1972479Z creating torchaudio.egg-info 2023-08-09T11:42:39.1973185Z writing torchaudio.egg-info/PKG-INFO 2023-08-09T11:42:39.1973973Z writing dependency_links to torchaudio.egg-info/dependency_links.txt 2023-08-09T11:42:39.1974845Z writing requirements to torchaudio.egg-info/requires.txt 2023-08-09T11:42:39.1976224Z writing top-level names to torchaudio.egg-info/top_level.txt 2023-08-09T11:42:39.1976807Z writing manifest file 'torchaudio.egg-info/SOURCES.txt' 2023-08-09T11:42:39.1977346Z reading manifest file 'torchaudio.egg-info/SOURCES.txt' 2023-08-09T11:42:39.1977810Z adding license file 'LICENSE' 2023-08-09T11:42:39.1978285Z writing manifest file 'torchaudio.egg-info/SOURCES.txt' 2023-08-09T11:42:39.2209314Z running build_ext 2023-08-09T11:42:39.2210067Z -- The C compiler identification is GNU 9.3.1 2023-08-09T11:42:39.2210533Z -- The CXX compiler identification is GNU 9.3.1 2023-08-09T11:42:39.2210935Z -- Detecting C compiler ABI info 2023-08-09T11:42:39.2211334Z -- Detecting C compiler ABI info - done 2023-08-09T11:42:39.2211869Z -- Check for working C compiler: /opt/rh/devtoolset-9/root/usr/bin/cc - skipped 2023-08-09T11:42:39.2212369Z -- Detecting C compile features 2023-08-09T11:42:39.2212757Z -- Detecting C compile features - done 2023-08-09T11:42:39.2213159Z -- Detecting CXX compiler ABI info 2023-08-09T11:42:39.2213568Z -- Detecting CXX compiler ABI info - done 2023-08-09T11:42:39.2410273Z -- Check for working CXX compiler: /opt/rh/devtoolset-9/root/usr/bin/c++ - skipped 2023-08-09T11:42:39.2411298Z -- Detecting CXX compile features 2023-08-09T11:42:39.2411774Z -- Detecting CXX compile features - done 2023-08-09T11:42:39.2412930Z -- The CUDA compiler identification is NVIDIA 11.8.89 2023-08-09T11:42:39.2414458Z -- Detecting CUDA compiler ABI info 2023-08-09T11:42:39.2449526Z -- Detecting CUDA compiler ABI info - done 2023-08-09T11:42:39.2569381Z -- Check for working CUDA compiler: /usr/local/cuda-11.8/bin/nvcc - skipped 2023-08-09T11:42:39.2649863Z -- Detecting CUDA compile features 2023-08-09T11:42:39.2729817Z -- Detecting CUDA compile features - done 2023-08-09T11:42:39.2809609Z -- Found CUDA: /usr/local/cuda-11.8 (found version "11.8") 2023-08-09T11:42:39.2889880Z -- Found CUDAToolkit: /usr/local/cuda-11.8/include (found version "11.8.89") 2023-08-09T11:42:39.2929361Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD 2023-08-09T11:42:39.3009709Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Failed 2023-08-09T11:42:39.3049373Z -- Looking for pthread_create in pthreads 2023-08-09T11:42:39.3050092Z -- Looking for pthread_create in pthreads - not found 2023-08-09T11:42:39.3089716Z -- Looking for pthread_create in pthread 2023-08-09T11:42:39.3169893Z -- Looking for pthread_create in pthread - found 2023-08-09T11:42:39.3210069Z -- Found Threads: TRUE 2023-08-09T11:42:39.3270526Z -- Caffe2: CUDA detected: 11.8 2023-08-09T11:42:39.3329987Z -- Caffe2: CUDA nvcc is: /usr/local/cuda-11.8/bin/nvcc 2023-08-09T11:42:39.3369395Z -- Caffe2: CUDA toolkit directory: /usr/local/cuda-11.8 2023-08-09T11:42:39.3409574Z -- Caffe2: Header version is: 11.8 2023-08-09T11:42:39.3489400Z -- /usr/local/cuda-11.8/lib64/libnvrtc.so shorthash is 672ee683 2023-08-09T11:42:39.3569602Z -- USE_CUDNN is set to 0. Compiling without cuDNN support 2023-08-09T11:42:39.3610529Z -- USE_CUSPARSELT is set to 0. Compiling without cuSPARSELt support 2023-08-09T11:42:39.3611124Z -- Autodetected CUDA architecture(s): 8.6 2023-08-09T11:42:39.3611679Z -- Added CUDA NVCC flags for: -gencode;arch=compute_86,code=sm_86 2023-08-09T11:42:39.3612350Z CMake Warning at ci_env/lib/python3.10/site-packages/torch/share/cmake/Torch/TorchConfig.cmake:22 (message): 2023-08-09T11:42:39.3689755Z static library kineto_LIBRARY-NOTFOUND not found. 2023-08-09T11:42:39.3769495Z Call Stack (most recent call first): 2023-08-09T11:42:39.3850007Z ci_env/lib/python3.10/site-packages/torch/share/cmake/Torch/TorchConfig.cmake:127 (append_torchlib_if_found) 2023-08-09T11:42:39.3929614Z cmake/TorchAudioHelper.cmake:1 (find_package) 2023-08-09T11:42:39.4009197Z CMakeLists.txt:93 (include) 2023-08-09T11:42:39.4049297Z 2023-08-09T11:42:39.4049323Z 2023-08-09T11:42:39.4050213Z -- Found Torch: /work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch.so 2023-08-09T11:42:39.4050785Z -- Found OpenMP_C: -fopenmp (found version "4.5") 2023-08-09T11:42:39.4051220Z -- Found OpenMP_CXX: -fopenmp (found version "4.5") 2023-08-09T11:42:39.4051649Z -- Found OpenMP: TRUE (found version "4.5") 2023-08-09T11:42:39.4052151Z -- Could not find ccache. Consider installing ccache to speed up compilation. 2023-08-09T11:42:39.4052688Z -- Building FFmpeg integration with multi version support 2023-08-09T11:42:39.4053118Z -- Configuring done (4.4s) 2023-08-09T11:42:39.4053477Z -- Generating done (0.0s) 2023-08-09T11:42:39.4053966Z -- Build files have been written to: /work/build/temp.linux-x86_64-cpython-310 2023-08-09T11:42:39.4056673Z [1/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DINCLUDE_ALIGN -DINCLUDE_RIR -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_EXPORTS -I/work -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -fopenmp -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/utils.cpp.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/utils.cpp.o.d -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/utils.cpp.o -c /work/torchaudio/csrc/utils.cpp 2023-08-09T11:42:39.4059998Z [2/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DINCLUDE_ALIGN -DINCLUDE_RIR -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_EXPORTS -I/work -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -fopenmp -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/forced_align/compute.cpp.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/forced_align/compute.cpp.o.d -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/forced_align/compute.cpp.o -c /work/torchaudio/csrc/forced_align/compute.cpp 2023-08-09T11:42:39.4063253Z [3/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DINCLUDE_ALIGN -DINCLUDE_RIR -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_EXPORTS -I/work -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -fopenmp -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/compute_betas.cpp.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/compute_betas.cpp.o.d -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/compute_betas.cpp.o -c /work/torchaudio/csrc/rnnt/compute_betas.cpp 2023-08-09T11:42:39.4065574Z [4/94] /opt/rh/devtoolset-9/root/usr/bin/cc -Dsox_EXPORTS -I/work/build/temp.linux-x86_64-cpython-310/_deps/sox_src-src/src -O3 -DNDEBUG -std=gnu11 -fPIC -MD -MT third_party/sox/CMakeFiles/sox.dir/stub.c.o -MF third_party/sox/CMakeFiles/sox.dir/stub.c.o.d -o third_party/sox/CMakeFiles/sox.dir/stub.c.o -c /work/third_party/sox/stub.c 2023-08-09T11:42:39.4068146Z [5/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DINCLUDE_ALIGN -DINCLUDE_RIR -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_EXPORTS -I/work -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -fopenmp -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/compute_alphas.cpp.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/compute_alphas.cpp.o.d -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/compute_alphas.cpp.o -c /work/torchaudio/csrc/rnnt/compute_alphas.cpp 2023-08-09T11:42:39.4069986Z [6/94] : && /opt/rh/devtoolset-9/root/usr/bin/cc -fPIC -O3 -DNDEBUG -shared -Wl,-soname,libsox.so -o third_party/sox/libsox.so third_party/sox/CMakeFiles/sox.dir/stub.c.o && : 2023-08-09T11:42:39.4072265Z [7/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DINCLUDE_ALIGN -DINCLUDE_RIR -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_EXPORTS -I/work -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -fopenmp -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/compute.cpp.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/compute.cpp.o.d -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/compute.cpp.o -c /work/torchaudio/csrc/rnnt/compute.cpp 2023-08-09T11:42:39.4075554Z [8/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DINCLUDE_ALIGN -DINCLUDE_RIR -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_EXPORTS -I/work -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -fopenmp -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/autograd.cpp.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/autograd.cpp.o.d -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/autograd.cpp.o -c /work/torchaudio/csrc/rnnt/autograd.cpp 2023-08-09T11:42:50.6372447Z [9/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DINCLUDE_ALIGN -DINCLUDE_RIR -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_EXPORTS -I/work -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -fopenmp -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/cpu/compute_alphas.cpp.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/cpu/compute_alphas.cpp.o.d -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/cpu/compute_alphas.cpp.o -c /work/torchaudio/csrc/rnnt/cpu/compute_alphas.cpp 2023-08-09T11:42:50.6376110Z [10/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DINCLUDE_ALIGN -DINCLUDE_RIR -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_EXPORTS -I/work -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -fopenmp -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/cpu/compute_betas.cpp.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/cpu/compute_betas.cpp.o.d -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/cpu/compute_betas.cpp.o -c /work/torchaudio/csrc/rnnt/cpu/compute_betas.cpp 2023-08-09T11:42:50.6379763Z [11/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DINCLUDE_ALIGN -DINCLUDE_RIR -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_EXPORTS -I/work -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -fopenmp -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/cpu/compute.cpp.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/cpu/compute.cpp.o.d -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/cpu/compute.cpp.o -c /work/torchaudio/csrc/rnnt/cpu/compute.cpp 2023-08-09T11:42:50.6382967Z [12/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DINCLUDE_ALIGN -DINCLUDE_RIR -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_EXPORTS -I/work -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -fopenmp -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/overdrive.cpp.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/overdrive.cpp.o.d -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/overdrive.cpp.o -c /work/torchaudio/csrc/overdrive.cpp 2023-08-09T11:42:50.6386361Z [13/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DINCLUDE_ALIGN -DINCLUDE_RIR -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_EXPORTS -I/work -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -fopenmp -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rir.cpp.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rir.cpp.o.d -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rir.cpp.o -c /work/torchaudio/csrc/rir.cpp 2023-08-09T11:42:50.6389572Z [14/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DINCLUDE_ALIGN -DINCLUDE_RIR -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_EXPORTS -I/work -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -fopenmp -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/forced_align/cpu/compute.cpp.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/forced_align/cpu/compute.cpp.o.d -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/forced_align/cpu/compute.cpp.o -c /work/torchaudio/csrc/forced_align/cpu/compute.cpp 2023-08-09T11:42:50.6392907Z [15/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_sox_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/sox_src-src/src -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/sox/CMakeFiles/libtorchaudio_sox.dir/effects_chain.cpp.o -MF torchaudio/csrc/sox/CMakeFiles/libtorchaudio_sox.dir/effects_chain.cpp.o.d -o torchaudio/csrc/sox/CMakeFiles/libtorchaudio_sox.dir/effects_chain.cpp.o -c /work/torchaudio/csrc/sox/effects_chain.cpp 2023-08-09T11:42:50.6396482Z [16/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg6_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/filter_graph.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/filter_graph.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/filter_graph.cpp.o -c /work/torchaudio/csrc/ffmpeg/filter_graph.cpp 2023-08-09T11:42:50.6399286Z /work/torchaudio/csrc/ffmpeg/filter_graph.cpp: In member function ‘torchaudio::io::FilterGraphOutputInfo torchaudio::io::FilterGraph::get_output_info() const’: 2023-08-09T11:42:50.6409240Z /work/torchaudio/csrc/ffmpeg/filter_graph.cpp:193:63: warning: ‘AVFilterLink::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:42:50.6410126Z 193 | ret.num_channels = av_get_channel_layout_nb_channels(l->channel_layout); 2023-08-09T11:42:50.6410573Z | ^~~~~~~~~~~~~~ 2023-08-09T11:42:50.6410994Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:12, 2023-08-09T11:42:50.6411457Z from /work/torchaudio/csrc/ffmpeg/filter_graph.h:3, 2023-08-09T11:42:50.6411951Z from /work/torchaudio/csrc/ffmpeg/filter_graph.cpp:1: 2023-08-09T11:42:50.6412669Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavfilter/avfilter.h:542:14: note: declared here 2023-08-09T11:42:50.6413139Z 542 | uint64_t channel_layout; 2023-08-09T11:42:50.6413720Z | ^~~~~~~~~~~~~~ 2023-08-09T11:42:50.6414550Z /work/torchaudio/csrc/ffmpeg/filter_graph.cpp:193:63: warning: ‘AVFilterLink::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:42:50.6415493Z 193 | ret.num_channels = av_get_channel_layout_nb_channels(l->channel_layout); 2023-08-09T11:42:50.6415933Z | ^~~~~~~~~~~~~~ 2023-08-09T11:42:50.6416338Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:12, 2023-08-09T11:42:50.6416800Z from /work/torchaudio/csrc/ffmpeg/filter_graph.h:3, 2023-08-09T11:42:50.6417271Z from /work/torchaudio/csrc/ffmpeg/filter_graph.cpp:1: 2023-08-09T11:42:50.6417959Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavfilter/avfilter.h:542:14: note: declared here 2023-08-09T11:42:50.6418437Z 542 | uint64_t channel_layout; 2023-08-09T11:42:50.6418746Z | ^~~~~~~~~~~~~~ 2023-08-09T11:42:50.6419587Z /work/torchaudio/csrc/ffmpeg/filter_graph.cpp:193:63: warning: ‘AVFilterLink::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:42:50.6420323Z 193 | ret.num_channels = av_get_channel_layout_nb_channels(l->channel_layout); 2023-08-09T11:42:50.6420762Z | ^~~~~~~~~~~~~~ 2023-08-09T11:42:50.6421188Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:12, 2023-08-09T11:42:55.3522478Z from /work/torchaudio/csrc/ffmpeg/filter_graph.h:3, 2023-08-09T11:42:55.3523366Z from /work/torchaudio/csrc/ffmpeg/filter_graph.cpp:1: 2023-08-09T11:42:55.3524140Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavfilter/avfilter.h:542:14: note: declared here 2023-08-09T11:42:55.3524597Z 542 | uint64_t channel_layout; 2023-08-09T11:42:55.3524895Z | ^~~~~~~~~~~~~~ 2023-08-09T11:42:55.3525681Z /work/torchaudio/csrc/ffmpeg/filter_graph.cpp:193:77: warning: ‘int av_get_channel_layout_nb_channels(uint64_t)’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:42:55.3526444Z 193 | ret.num_channels = av_get_channel_layout_nb_channels(l->channel_layout); 2023-08-09T11:42:55.3526883Z | ^ 2023-08-09T11:42:55.3527958Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:33, 2023-08-09T11:42:55.3528662Z from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:42:55.3529153Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:42:55.3529577Z from /work/torchaudio/csrc/ffmpeg/filter_graph.h:3, 2023-08-09T11:42:55.3530034Z from /work/torchaudio/csrc/ffmpeg/filter_graph.cpp:1: 2023-08-09T11:42:55.3530726Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/channel_layout.h:474:5: note: declared here 2023-08-09T11:42:55.3531277Z 474 | int av_get_channel_layout_nb_channels(uint64_t channel_layout); 2023-08-09T11:42:55.3531660Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:42:55.3532357Z /work/torchaudio/csrc/ffmpeg/filter_graph.cpp:193:77: warning: ‘int av_get_channel_layout_nb_channels(uint64_t)’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:42:55.3533062Z 193 | ret.num_channels = av_get_channel_layout_nb_channels(l->channel_layout); 2023-08-09T11:42:55.3533479Z | ^ 2023-08-09T11:42:55.3534083Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:33, 2023-08-09T11:42:55.3534794Z from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:42:55.3535974Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:42:55.3536447Z from /work/torchaudio/csrc/ffmpeg/filter_graph.h:3, 2023-08-09T11:42:55.3536868Z from /work/torchaudio/csrc/ffmpeg/filter_graph.cpp:1: 2023-08-09T11:42:55.3537564Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/channel_layout.h:474:5: note: declared here 2023-08-09T11:42:55.3538094Z 474 | int av_get_channel_layout_nb_channels(uint64_t channel_layout); 2023-08-09T11:42:55.3538456Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:42:55.3540521Z [17/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DINCLUDE_ALIGN -DINCLUDE_RIR -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_EXPORTS -I/work -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -fopenmp -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/lfilter.cpp.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/lfilter.cpp.o.d -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/lfilter.cpp.o -c /work/torchaudio/csrc/lfilter.cpp 2023-08-09T11:42:55.3543684Z [18/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_sox_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/sox_src-src/src -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/sox/CMakeFiles/libtorchaudio_sox.dir/io.cpp.o -MF torchaudio/csrc/sox/CMakeFiles/libtorchaudio_sox.dir/io.cpp.o.d -o torchaudio/csrc/sox/CMakeFiles/libtorchaudio_sox.dir/io.cpp.o -c /work/torchaudio/csrc/sox/io.cpp 2023-08-09T11:42:55.3547201Z [19/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg4_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f4-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/ffmpeg.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/ffmpeg.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/ffmpeg.cpp.o -c /work/torchaudio/csrc/ffmpeg/ffmpeg.cpp 2023-08-09T11:42:55.3550531Z [20/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_sox_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/sox_src-src/src -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/sox/CMakeFiles/libtorchaudio_sox.dir/utils.cpp.o -MF torchaudio/csrc/sox/CMakeFiles/libtorchaudio_sox.dir/utils.cpp.o.d -o torchaudio/csrc/sox/CMakeFiles/libtorchaudio_sox.dir/utils.cpp.o -c /work/torchaudio/csrc/sox/utils.cpp 2023-08-09T11:42:55.3553837Z [21/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_sox_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/sox_src-src/src -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/sox/CMakeFiles/libtorchaudio_sox.dir/effects.cpp.o -MF torchaudio/csrc/sox/CMakeFiles/libtorchaudio_sox.dir/effects.cpp.o.d -o torchaudio/csrc/sox/CMakeFiles/libtorchaudio_sox.dir/effects.cpp.o -c /work/torchaudio/csrc/sox/effects.cpp 2023-08-09T11:42:55.3556938Z [22/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_sox_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/sox_src-src/src -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/sox/CMakeFiles/libtorchaudio_sox.dir/types.cpp.o -MF torchaudio/csrc/sox/CMakeFiles/libtorchaudio_sox.dir/types.cpp.o.d -o torchaudio/csrc/sox/CMakeFiles/libtorchaudio_sox.dir/types.cpp.o -c /work/torchaudio/csrc/sox/types.cpp 2023-08-09T11:42:55.3561402Z [23/94] : && /opt/rh/devtoolset-9/root/usr/bin/c++ -fPIC -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -shared -Wl,-soname,libtorchaudio_sox.so -o torchaudio/csrc/sox/libtorchaudio_sox.so torchaudio/csrc/sox/CMakeFiles/libtorchaudio_sox.dir/io.cpp.o torchaudio/csrc/sox/CMakeFiles/libtorchaudio_sox.dir/utils.cpp.o torchaudio/csrc/sox/CMakeFiles/libtorchaudio_sox.dir/effects.cpp.o torchaudio/csrc/sox/CMakeFiles/libtorchaudio_sox.dir/effects_chain.cpp.o torchaudio/csrc/sox/CMakeFiles/libtorchaudio_sox.dir/types.cpp.o -Wl,-rpath,/work/ci_env/lib/python3.10/site-packages/torch/lib:/work/build/temp.linux-x86_64-cpython-310/third_party/sox:/usr/local/cuda-11.8/lib64: /work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch.so third_party/sox/libsox.so -Wl,--no-as-needed,"/work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_cpu.so" -Wl,--as-needed -Wl,--no-as-needed,"/work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_cuda.so" -Wl,--as-needed /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10_cuda.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10.so /usr/local/cuda-11.8/lib64/libcudart.so /usr/local/cuda-11.8/lib64/libnvToolsExt.so /usr/local/cuda-11.8/lib64/libcufft.so /usr/local/cuda-11.8/lib64/libcurand.so /usr/local/cuda-11.8/lib64/libcublas.so /usr/local/cuda-11.8/lib64/libcublasLt.so && : 2023-08-09T11:43:02.9415318Z [24/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg4_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f4-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/filter_graph.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/filter_graph.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/filter_graph.cpp.o -c /work/torchaudio/csrc/ffmpeg/filter_graph.cpp 2023-08-09T11:43:02.9419451Z [25/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg4_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f4-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/hw_context.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/hw_context.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/hw_context.cpp.o -c /work/torchaudio/csrc/ffmpeg/hw_context.cpp 2023-08-09T11:43:02.9423159Z [26/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg4_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f4-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/buffer/unchunked_buffer.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/buffer/unchunked_buffer.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/buffer/unchunked_buffer.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_reader/buffer/unchunked_buffer.cpp 2023-08-09T11:43:02.9426819Z [27/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg4_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f4-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/buffer/chunked_buffer.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/buffer/chunked_buffer.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/buffer/chunked_buffer.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_reader/buffer/chunked_buffer.cpp 2023-08-09T11:43:02.9429334Z /work/torchaudio/csrc/ffmpeg/stream_reader/buffer/chunked_buffer.cpp: In member function ‘void torchaudio::io::detail::ChunkedBuffer::push_frame(at::Tensor, int64_t)’: 2023-08-09T11:43:02.9483129Z /work/torchaudio/csrc/ffmpeg/stream_reader/buffer/chunked_buffer.cpp:97:41: warning: comparison of integer expressions of different signedness: ‘std::deque::size_type’ {aka ‘long unsigned int’} and ‘const int64_t’ {aka ‘const long int’} [-Wsign-compare] 2023-08-09T11:43:02.9484067Z 97 | if (num_chunks > 0 && chunks.size() > num_chunks) { 2023-08-09T11:43:02.9484429Z | ~~~~~~~~~~~~~~^~~~~~~~~~~~ 2023-08-09T11:43:02.9488665Z [28/94] /usr/local/cuda-11.8/bin/nvcc -forward-unknown-to-host-compiler -DINCLUDE_ALIGN -DINCLUDE_RIR -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_EXPORTS -I/work -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -DCUDA_HAS_FP16=1 -D__CUDA_NO_HALF_OPERATORS__ -D__CUDA_NO_HALF_CONVERSIONS__ -D__CUDA_NO_HALF2_OPERATORS__ -DONNX_NAMESPACE=onnx_c2 -gencode arch=compute_86,code=sm_86 -Xcudafe --diag_suppress=cc_clobber_ignored,--diag_suppress=set_but_not_used,--diag_suppress=field_without_dll_interface,--diag_suppress=base_class_has_different_dll_interface,--diag_suppress=dll_interface_conflict_none_assumed,--diag_suppress=dll_interface_conflict_dllexport_assumed,--diag_suppress=bad_friend_decl --expt-relaxed-constexpr --expt-extended-lambda -O3 -DNDEBUG -std=c++17 -Xcompiler=-fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/gpu/compute_betas.cu.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/gpu/compute_betas.cu.o.d -x cu -c /work/torchaudio/csrc/rnnt/gpu/compute_betas.cu -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/gpu/compute_betas.cu.o 2023-08-09T11:43:02.9494261Z [29/94] /usr/local/cuda-11.8/bin/nvcc -forward-unknown-to-host-compiler -DINCLUDE_ALIGN -DINCLUDE_RIR -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_EXPORTS -I/work -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -DCUDA_HAS_FP16=1 -D__CUDA_NO_HALF_OPERATORS__ -D__CUDA_NO_HALF_CONVERSIONS__ -D__CUDA_NO_HALF2_OPERATORS__ -DONNX_NAMESPACE=onnx_c2 -gencode arch=compute_86,code=sm_86 -Xcudafe --diag_suppress=cc_clobber_ignored,--diag_suppress=set_but_not_used,--diag_suppress=field_without_dll_interface,--diag_suppress=base_class_has_different_dll_interface,--diag_suppress=dll_interface_conflict_none_assumed,--diag_suppress=dll_interface_conflict_dllexport_assumed,--diag_suppress=bad_friend_decl --expt-relaxed-constexpr --expt-extended-lambda -O3 -DNDEBUG -std=c++17 -Xcompiler=-fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/gpu/compute_alphas.cu.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/gpu/compute_alphas.cu.o.d -x cu -c /work/torchaudio/csrc/rnnt/gpu/compute_alphas.cu -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/gpu/compute_alphas.cu.o 2023-08-09T11:43:02.9499051Z [30/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg4_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f4-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/packet_buffer.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/packet_buffer.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/packet_buffer.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_reader/packet_buffer.cpp 2023-08-09T11:43:02.9502752Z [31/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -D_torchaudio_EXPORTS -I/work -I/work/ci_env/include/python3.10 -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -fopenmp -MD -MT torchaudio/csrc/CMakeFiles/_torchaudio.dir/pybind/pybind.cpp.o -MF torchaudio/csrc/CMakeFiles/_torchaudio.dir/pybind/pybind.cpp.o.d -o torchaudio/csrc/CMakeFiles/_torchaudio.dir/pybind/pybind.cpp.o -c /work/torchaudio/csrc/pybind/pybind.cpp 2023-08-09T11:43:09.9356912Z [32/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg4_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f4-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/stream_reader.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/stream_reader.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/stream_reader.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_reader/stream_reader.cpp 2023-08-09T11:43:09.9359166Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_reader.cpp: In constructor ‘torchaudio::io::StreamReader::StreamReader(AVFormatContext*)’: 2023-08-09T11:43:09.9360139Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_reader.cpp:61:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘unsigned int’ [-Wsign-compare] 2023-08-09T11:43:09.9360830Z 61 | for (int i = 0; i < format_ctx->nb_streams; ++i) { 2023-08-09T11:43:09.9361185Z | ~~^~~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:43:09.9363584Z [33/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg4_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f4-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/stream_processor.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/stream_processor.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/stream_processor.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp 2023-08-09T11:43:09.9368829Z [34/94] /usr/local/cuda-11.8/bin/nvcc -forward-unknown-to-host-compiler -DINCLUDE_ALIGN -DINCLUDE_RIR -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_EXPORTS -I/work -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -DCUDA_HAS_FP16=1 -D__CUDA_NO_HALF_OPERATORS__ -D__CUDA_NO_HALF_CONVERSIONS__ -D__CUDA_NO_HALF2_OPERATORS__ -DONNX_NAMESPACE=onnx_c2 -gencode arch=compute_86,code=sm_86 -Xcudafe --diag_suppress=cc_clobber_ignored,--diag_suppress=set_but_not_used,--diag_suppress=field_without_dll_interface,--diag_suppress=base_class_has_different_dll_interface,--diag_suppress=dll_interface_conflict_none_assumed,--diag_suppress=dll_interface_conflict_dllexport_assumed,--diag_suppress=bad_friend_decl --expt-relaxed-constexpr --expt-extended-lambda -O3 -DNDEBUG -std=c++17 -Xcompiler=-fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/gpu/compute.cu.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/gpu/compute.cu.o.d -x cu -c /work/torchaudio/csrc/rnnt/gpu/compute.cu -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/gpu/compute.cu.o 2023-08-09T11:43:09.9373674Z [35/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg4_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f4-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_writer/encoder.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_writer/encoder.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_writer/encoder.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_writer/encoder.cpp 2023-08-09T11:43:09.9377940Z [36/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg4_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f4-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_writer/encode_process.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_writer/encode_process.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_writer/encode_process.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp 2023-08-09T11:43:09.9381682Z [37/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg4_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f4-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_writer/packet_writer.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_writer/packet_writer.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_writer/packet_writer.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_writer/packet_writer.cpp 2023-08-09T11:43:09.9385378Z [38/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg4_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f4-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/post_process.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/post_process.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/post_process.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_reader/post_process.cpp 2023-08-09T11:43:09.9389132Z [39/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -D_torchaudio_sox_EXPORTS -I/work -I/work/ci_env/include/python3.10 -I/work/build/temp.linux-x86_64-cpython-310/_deps/sox_src-src/src -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/sox/CMakeFiles/_torchaudio_sox.dir/pybind/pybind.cpp.o -MF torchaudio/csrc/sox/CMakeFiles/_torchaudio_sox.dir/pybind/pybind.cpp.o.d -o torchaudio/csrc/sox/CMakeFiles/_torchaudio_sox.dir/pybind/pybind.cpp.o -c /work/torchaudio/csrc/sox/pybind/pybind.cpp 2023-08-09T11:43:09.9392830Z [40/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg4_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f4-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_writer/stream_writer.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_writer/stream_writer.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_writer/stream_writer.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp 2023-08-09T11:43:12.4600576Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/util/Exception.h:4, 2023-08-09T11:43:12.4601304Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Generator.h:11, 2023-08-09T11:43:12.4601992Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/CPUGeneratorImpl.h:3, 2023-08-09T11:43:12.4602657Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Context.h:3, 2023-08-09T11:43:12.4603337Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/ATen.h:7, 2023-08-09T11:43:12.4604017Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/types.h:3, 2023-08-09T11:43:12.4604554Z from /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.h:3, 2023-08-09T11:43:12.4605076Z from /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp:1: 2023-08-09T11:43:12.4606676Z /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp: In member function ‘void torchaudio::io::StreamWriter::add_audio_stream(int, int, const string&, const c10::optional >&, const c10::optional, std::basic_string > >&, const c10::optional >&, const c10::optional&, const c10::optional&, const c10::optional&, const c10::optional >&)’: 2023-08-09T11:43:12.4609154Z /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp:69:30: warning: comparison of integer expressions of different signedness: ‘unsigned int’ and ‘int’ [-Wsign-compare] 2023-08-09T11:43:12.4609851Z 69 | format_ctx->nb_streams == num_output_streams(), 2023-08-09T11:43:12.4610207Z | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:43:12.4611855Z /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp: In member function ‘void torchaudio::io::StreamWriter::add_video_stream(double, int, int, const string&, const c10::optional >&, const c10::optional, std::basic_string > >&, const c10::optional >&, const c10::optional&, const c10::optional&, const c10::optional&, const c10::optional >&, const c10::optional&, const c10::optional >&)’: 2023-08-09T11:43:12.4613309Z /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp:105:30: warning: comparison of integer expressions of different signedness: ‘unsigned int’ and ‘int’ [-Wsign-compare] 2023-08-09T11:43:12.4613989Z 105 | format_ctx->nb_streams == num_output_streams(), 2023-08-09T11:43:12.4614364Z | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:43:12.4616244Z /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp: In member function ‘void torchaudio::io::StreamWriter::add_audio_frame_stream(int, int, const string&, const c10::optional >&, const c10::optional, std::basic_string > >&, const c10::optional >&, const c10::optional&, const c10::optional&, const c10::optional&, const c10::optional >&)’: 2023-08-09T11:43:12.4617666Z /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp:149:30: warning: comparison of integer expressions of different signedness: ‘unsigned int’ and ‘int’ [-Wsign-compare] 2023-08-09T11:43:12.4618398Z 149 | format_ctx->nb_streams == num_output_streams(), 2023-08-09T11:43:12.4618726Z | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:43:12.4620469Z /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp: In member function ‘void torchaudio::io::StreamWriter::add_video_frame_stream(double, int, int, const string&, const c10::optional >&, const c10::optional, std::basic_string > >&, const c10::optional >&, const c10::optional&, const c10::optional&, const c10::optional&, const c10::optional >&, const c10::optional&, const c10::optional >&)’: 2023-08-09T11:43:12.4621732Z /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp:186:30: warning: comparison of integer expressions of different signedness: ‘unsigned int’ and ‘int’ [-Wsign-compare] 2023-08-09T11:43:12.4622324Z 186 | format_ctx->nb_streams == num_output_streams(), 2023-08-09T11:43:12.4622638Z | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:43:12.4623378Z /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp: In member function ‘void torchaudio::io::StreamWriter::open(const c10::optional, std::basic_string > >&)’: 2023-08-09T11:43:12.4624377Z /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp:223:30: warning: comparison of integer expressions of different signedness: ‘unsigned int’ and ‘int’ [-Wsign-compare] 2023-08-09T11:43:12.4625148Z 223 | format_ctx->nb_streams == num_output_streams(), 2023-08-09T11:43:12.4625526Z | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:43:12.4628560Z [41/94] : && /opt/rh/devtoolset-9/root/usr/bin/c++ -fPIC -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -shared -Wl,-soname,_torchaudio_sox.so -o torchaudio/csrc/sox/_torchaudio_sox.so torchaudio/csrc/sox/CMakeFiles/_torchaudio_sox.dir/pybind/pybind.cpp.o -Wl,-rpath,/work/build/temp.linux-x86_64-cpython-310/torchaudio/csrc/sox:/work/ci_env/lib/python3.10/site-packages/torch/lib:/usr/local/cuda-11.8/lib64:/work/build/temp.linux-x86_64-cpython-310/third_party/sox: torchaudio/csrc/sox/libtorchaudio_sox.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_python.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch.so -Wl,--no-as-needed,"/work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_cpu.so" -Wl,--as-needed -Wl,--no-as-needed,"/work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_cuda.so" -Wl,--as-needed /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10_cuda.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10.so /usr/local/cuda-11.8/lib64/libcudart.so /usr/local/cuda-11.8/lib64/libnvToolsExt.so /usr/local/cuda-11.8/lib64/libcufft.so /usr/local/cuda-11.8/lib64/libcurand.so /usr/local/cuda-11.8/lib64/libcublas.so /usr/local/cuda-11.8/lib64/libcublasLt.so third_party/sox/libsox.so && : 2023-08-09T11:43:12.4632910Z [42/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg5_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f5-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/ffmpeg.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/ffmpeg.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/ffmpeg.cpp.o -c /work/torchaudio/csrc/ffmpeg/ffmpeg.cpp 2023-08-09T11:43:12.4636567Z [43/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg4_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f4-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_writer/tensor_converter.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_writer/tensor_converter.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_writer/tensor_converter.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp 2023-08-09T11:43:12.4640136Z [44/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg5_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f5-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/stream_reader.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/stream_reader.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/stream_reader.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_reader/stream_reader.cpp 2023-08-09T11:43:18.2992984Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_reader.cpp: In constructor ‘torchaudio::io::StreamReader::StreamReader(AVFormatContext*)’: 2023-08-09T11:43:18.2994459Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_reader.cpp:61:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘unsigned int’ [-Wsign-compare] 2023-08-09T11:43:18.2995165Z 61 | for (int i = 0; i < format_ctx->nb_streams; ++i) { 2023-08-09T11:43:18.2995506Z | ~~^~~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:43:18.2997800Z [45/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg5_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f5-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/filter_graph.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/filter_graph.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/filter_graph.cpp.o -c /work/torchaudio/csrc/ffmpeg/filter_graph.cpp 2023-08-09T11:43:18.3001079Z [46/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg5_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f5-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/hw_context.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/hw_context.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/hw_context.cpp.o -c /work/torchaudio/csrc/ffmpeg/hw_context.cpp 2023-08-09T11:43:18.3004987Z [47/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg5_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f5-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/buffer/unchunked_buffer.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/buffer/unchunked_buffer.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/buffer/unchunked_buffer.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_reader/buffer/unchunked_buffer.cpp 2023-08-09T11:43:18.3009289Z [48/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg5_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f5-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/packet_buffer.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/packet_buffer.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/packet_buffer.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_reader/packet_buffer.cpp 2023-08-09T11:43:18.3012887Z [49/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg5_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f5-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/buffer/chunked_buffer.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/buffer/chunked_buffer.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/buffer/chunked_buffer.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_reader/buffer/chunked_buffer.cpp 2023-08-09T11:43:18.3015205Z /work/torchaudio/csrc/ffmpeg/stream_reader/buffer/chunked_buffer.cpp: In member function ‘void torchaudio::io::detail::ChunkedBuffer::push_frame(at::Tensor, int64_t)’: 2023-08-09T11:43:18.3016687Z /work/torchaudio/csrc/ffmpeg/stream_reader/buffer/chunked_buffer.cpp:97:41: warning: comparison of integer expressions of different signedness: ‘std::deque::size_type’ {aka ‘long unsigned int’} and ‘const int64_t’ {aka ‘const long int’} [-Wsign-compare] 2023-08-09T11:43:18.3017409Z 97 | if (num_chunks > 0 && chunks.size() > num_chunks) { 2023-08-09T11:43:18.3017776Z | ~~~~~~~~~~~~~~^~~~~~~~~~~~ 2023-08-09T11:43:18.3019993Z [50/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg4_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f4-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/conversion.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/conversion.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/conversion.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp 2023-08-09T11:43:18.3023710Z [51/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg4_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f4-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/compat.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/compat.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/compat.cpp.o -c /work/torchaudio/csrc/ffmpeg/compat.cpp 2023-08-09T11:43:18.3027328Z [52/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg5_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f5-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/stream_processor.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/stream_processor.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/stream_processor.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp 2023-08-09T11:43:18.3035601Z [53/94] : && /opt/rh/devtoolset-9/root/usr/bin/c++ -fPIC -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -shared -Wl,-soname,libtorchaudio_ffmpeg4.so -o torchaudio/csrc/ffmpeg/libtorchaudio_ffmpeg4.so torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/ffmpeg.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/filter_graph.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/hw_context.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/buffer/chunked_buffer.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/buffer/unchunked_buffer.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/conversion.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/packet_buffer.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/post_process.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/stream_processor.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/stream_reader.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_writer/encode_process.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_writer/encoder.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_writer/packet_writer.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_writer/stream_writer.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_writer/tensor_converter.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/compat.cpp.o -Wl,-rpath,/work/ci_env/lib/python3.10/site-packages/torch/lib:/usr/local/cuda-11.8/lib64:/work/build/temp.linux-x86_64-cpython-310/_deps/f4-src/lib: /work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch.so -Wl,--no-as-needed,"/work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_cpu.so" -Wl,--as-needed -Wl,--no-as-needed,"/work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_cuda.so" -Wl,--as-needed /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10_cuda.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10.so /usr/local/cuda-11.8/lib64/libcudart.so /usr/local/cuda-11.8/lib64/libnvToolsExt.so /usr/local/cuda-11.8/lib64/libcufft.so /usr/local/cuda-11.8/lib64/libcurand.so /usr/local/cuda-11.8/lib64/libcublas.so /usr/local/cuda-11.8/lib64/libcublasLt.so _deps/f4-src/lib/libavutil.so.56 _deps/f4-src/lib/libavcodec.so.58 _deps/f4-src/lib/libavformat.so.58 _deps/f4-src/lib/libavdevice.so.58 _deps/f4-src/lib/libavfilter.so.7 /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10_cuda.so /usr/local/cuda-11.8/lib64/libcudart.so && : 2023-08-09T11:43:22.7694145Z [54/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg5_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f5-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/post_process.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/post_process.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/post_process.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_reader/post_process.cpp 2023-08-09T11:43:22.7699102Z [55/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg5_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f5-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_writer/encode_process.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_writer/encode_process.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_writer/encode_process.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp 2023-08-09T11:43:22.7703575Z [56/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg5_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f5-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_writer/encoder.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_writer/encoder.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_writer/encoder.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_writer/encoder.cpp 2023-08-09T11:43:22.7707899Z [57/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg5_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f5-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_writer/packet_writer.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_writer/packet_writer.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_writer/packet_writer.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_writer/packet_writer.cpp 2023-08-09T11:43:22.7712276Z [58/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg6_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/hw_context.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/hw_context.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/hw_context.cpp.o -c /work/torchaudio/csrc/ffmpeg/hw_context.cpp 2023-08-09T11:43:22.7716199Z [59/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg5_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f5-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_writer/stream_writer.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_writer/stream_writer.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_writer/stream_writer.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp 2023-08-09T11:43:22.7718555Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/util/Exception.h:4, 2023-08-09T11:43:22.7719419Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Generator.h:11, 2023-08-09T11:43:22.7720260Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/CPUGeneratorImpl.h:3, 2023-08-09T11:43:22.7721180Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Context.h:3, 2023-08-09T11:43:22.7722023Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/ATen.h:7, 2023-08-09T11:43:22.7722890Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/types.h:3, 2023-08-09T11:43:22.7723652Z from /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.h:3, 2023-08-09T11:43:22.7724424Z from /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp:1: 2023-08-09T11:43:22.7726422Z /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp: In member function ‘void torchaudio::io::StreamWriter::add_audio_stream(int, int, const string&, const c10::optional >&, const c10::optional, std::basic_string > >&, const c10::optional >&, const c10::optional&, const c10::optional&, const c10::optional&, const c10::optional >&)’: 2023-08-09T11:43:22.7728220Z /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp:69:30: warning: comparison of integer expressions of different signedness: ‘unsigned int’ and ‘int’ [-Wsign-compare] 2023-08-09T11:43:22.7729298Z 69 | format_ctx->nb_streams == num_output_streams(), 2023-08-09T11:43:22.7729938Z | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:43:22.7732219Z /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp: In member function ‘void torchaudio::io::StreamWriter::add_video_stream(double, int, int, const string&, const c10::optional >&, const c10::optional, std::basic_string > >&, const c10::optional >&, const c10::optional&, const c10::optional&, const c10::optional&, const c10::optional >&, const c10::optional&, const c10::optional >&)’: 2023-08-09T11:43:22.7733888Z /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp:105:30: warning: comparison of integer expressions of different signedness: ‘unsigned int’ and ‘int’ [-Wsign-compare] 2023-08-09T11:43:22.7734889Z 105 | format_ctx->nb_streams == num_output_streams(), 2023-08-09T11:43:22.7735620Z | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:43:22.7737501Z /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp: In member function ‘void torchaudio::io::StreamWriter::add_audio_frame_stream(int, int, const string&, const c10::optional >&, const c10::optional, std::basic_string > >&, const c10::optional >&, const c10::optional&, const c10::optional&, const c10::optional&, const c10::optional >&)’: 2023-08-09T11:43:28.4434795Z /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp:149:30: warning: comparison of integer expressions of different signedness: ‘unsigned int’ and ‘int’ [-Wsign-compare] 2023-08-09T11:43:28.4435495Z 149 | format_ctx->nb_streams == num_output_streams(), 2023-08-09T11:43:28.4435850Z | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:43:28.4437455Z /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp: In member function ‘void torchaudio::io::StreamWriter::add_video_frame_stream(double, int, int, const string&, const c10::optional >&, const c10::optional, std::basic_string > >&, const c10::optional >&, const c10::optional&, const c10::optional&, const c10::optional&, const c10::optional >&, const c10::optional&, const c10::optional >&)’: 2023-08-09T11:43:28.4439281Z /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp:186:30: warning: comparison of integer expressions of different signedness: ‘unsigned int’ and ‘int’ [-Wsign-compare] 2023-08-09T11:43:28.4439892Z 186 | format_ctx->nb_streams == num_output_streams(), 2023-08-09T11:43:28.4440221Z | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:43:28.4440968Z /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp: In member function ‘void torchaudio::io::StreamWriter::open(const c10::optional, std::basic_string > >&)’: 2023-08-09T11:43:28.4441832Z /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp:223:30: warning: comparison of integer expressions of different signedness: ‘unsigned int’ and ‘int’ [-Wsign-compare] 2023-08-09T11:43:28.4442412Z 223 | format_ctx->nb_streams == num_output_streams(), 2023-08-09T11:43:28.4442715Z | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:43:28.4444539Z [60/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg6_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/ffmpeg.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/ffmpeg.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/ffmpeg.cpp.o -c /work/torchaudio/csrc/ffmpeg/ffmpeg.cpp 2023-08-09T11:43:28.4448158Z [61/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg5_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f5-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_writer/tensor_converter.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_writer/tensor_converter.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_writer/tensor_converter.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp 2023-08-09T11:43:28.4451344Z [62/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg6_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/buffer/unchunked_buffer.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/buffer/unchunked_buffer.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/buffer/unchunked_buffer.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_reader/buffer/unchunked_buffer.cpp 2023-08-09T11:43:28.4454640Z [63/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg6_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/buffer/chunked_buffer.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/buffer/chunked_buffer.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/buffer/chunked_buffer.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_reader/buffer/chunked_buffer.cpp 2023-08-09T11:43:28.4456682Z /work/torchaudio/csrc/ffmpeg/stream_reader/buffer/chunked_buffer.cpp: In member function ‘void torchaudio::io::detail::ChunkedBuffer::push_frame(at::Tensor, int64_t)’: 2023-08-09T11:43:28.4457778Z /work/torchaudio/csrc/ffmpeg/stream_reader/buffer/chunked_buffer.cpp:97:41: warning: comparison of integer expressions of different signedness: ‘std::deque::size_type’ {aka ‘long unsigned int’} and ‘const int64_t’ {aka ‘const long int’} [-Wsign-compare] 2023-08-09T11:43:28.4458395Z 97 | if (num_chunks > 0 && chunks.size() > num_chunks) { 2023-08-09T11:43:28.4458723Z | ~~~~~~~~~~~~~~^~~~~~~~~~~~ 2023-08-09T11:43:28.4460924Z [64/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg6_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/packet_buffer.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/packet_buffer.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/packet_buffer.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_reader/packet_buffer.cpp 2023-08-09T11:43:28.4463595Z [65/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_CUDA -Dlibctc_prefix_decoder_EXPORTS -I/work -I/work/torchaudio/csrc/cuctc -I/usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -fvisibility=default -MD -MT torchaudio/csrc/cuctc/CMakeFiles/libctc_prefix_decoder.dir/src/ctc_prefix_decoder.cpp.o -MF torchaudio/csrc/cuctc/CMakeFiles/libctc_prefix_decoder.dir/src/ctc_prefix_decoder.cpp.o.d -o torchaudio/csrc/cuctc/CMakeFiles/libctc_prefix_decoder.dir/src/ctc_prefix_decoder.cpp.o -c /work/torchaudio/csrc/cuctc/src/ctc_prefix_decoder.cpp 2023-08-09T11:43:28.4466700Z [66/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg6_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/stream_processor.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/stream_processor.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/stream_processor.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp 2023-08-09T11:43:28.4893721Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp: In function ‘void torchaudio::io::{anonymous}::open_codec(AVCodecContext*, const c10::optional, std::basic_string > >&)’: 2023-08-09T11:43:28.4894796Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:141:19: warning: ‘AVCodecContext::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:28.4895605Z 141 | if (!codec_ctx->channel_layout) { 2023-08-09T11:43:28.4895930Z | ^~~~~~~~~~~~~~ 2023-08-09T11:43:28.4896296Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:28.4896705Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:28.4897181Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:1: 2023-08-09T11:43:28.4897838Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:1100:14: note: declared here 2023-08-09T11:43:28.4898241Z 1100 | uint64_t channel_layout; 2023-08-09T11:43:28.4898523Z | ^~~~~~~~~~~~~~ 2023-08-09T11:43:28.4899278Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:141:19: warning: ‘AVCodecContext::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:28.4899908Z 141 | if (!codec_ctx->channel_layout) { 2023-08-09T11:43:28.4900198Z | ^~~~~~~~~~~~~~ 2023-08-09T11:43:28.4900570Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:28.4900969Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:28.4901399Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:1: 2023-08-09T11:43:28.4902070Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:1100:14: note: declared here 2023-08-09T11:43:28.4902497Z 1100 | uint64_t channel_layout; 2023-08-09T11:43:28.4902790Z | ^~~~~~~~~~~~~~ 2023-08-09T11:43:28.4904006Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:141:19: warning: ‘AVCodecContext::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:28.4904612Z 141 | if (!codec_ctx->channel_layout) { 2023-08-09T11:43:28.4904919Z | ^~~~~~~~~~~~~~ 2023-08-09T11:43:28.4905267Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:28.4905677Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:28.4906109Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:1: 2023-08-09T11:43:28.4906764Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:1100:14: note: declared here 2023-08-09T11:43:28.4907200Z 1100 | uint64_t channel_layout; 2023-08-09T11:43:28.4907483Z | ^~~~~~~~~~~~~~ 2023-08-09T11:43:28.4908226Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:142:16: warning: ‘AVCodecContext::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:28.4908820Z 142 | codec_ctx->channel_layout = 2023-08-09T11:43:28.4909115Z | ^~~~~~~~~~~~~~ 2023-08-09T11:43:28.4909473Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:28.4909899Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:28.4910333Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:1: 2023-08-09T11:43:28.4910963Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:1100:14: note: declared here 2023-08-09T11:43:28.4911660Z 1100 | uint64_t channel_layout; 2023-08-09T11:43:28.4911939Z | ^~~~~~~~~~~~~~ 2023-08-09T11:43:28.4912692Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:142:16: warning: ‘AVCodecContext::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:28.4913286Z 142 | codec_ctx->channel_layout = 2023-08-09T11:43:28.4913604Z | ^~~~~~~~~~~~~~ 2023-08-09T11:43:28.4913953Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:28.4914342Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:28.4914765Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:1: 2023-08-09T11:43:28.4915408Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:1100:14: note: declared here 2023-08-09T11:43:28.4915823Z 1100 | uint64_t channel_layout; 2023-08-09T11:43:28.4916124Z | ^~~~~~~~~~~~~~ 2023-08-09T11:43:28.4916839Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:142:16: warning: ‘AVCodecContext::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:28.4917400Z 142 | codec_ctx->channel_layout = 2023-08-09T11:43:28.4917699Z | ^~~~~~~~~~~~~~ 2023-08-09T11:43:28.4918063Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:28.4918460Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:28.4918894Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:1: 2023-08-09T11:43:28.4919586Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:1100:14: note: declared here 2023-08-09T11:43:28.4920007Z 1100 | uint64_t channel_layout; 2023-08-09T11:43:28.4920268Z | ^~~~~~~~~~~~~~ 2023-08-09T11:43:28.4920978Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:143:50: warning: ‘AVCodecContext::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:28.4921587Z 143 | av_get_default_channel_layout(codec_ctx->channels); 2023-08-09T11:43:28.4921956Z | ^~~~~~~~ 2023-08-09T11:43:28.4922517Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:28.4922923Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:28.4923375Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:1: 2023-08-09T11:43:28.4924016Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:1042:9: note: declared here 2023-08-09T11:43:28.4924396Z 1042 | int channels; 2023-08-09T11:43:28.4924668Z | ^~~~~~~~ 2023-08-09T11:43:28.4925376Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:143:50: warning: ‘AVCodecContext::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:28.4926016Z 143 | av_get_default_channel_layout(codec_ctx->channels); 2023-08-09T11:43:28.4926381Z | ^~~~~~~~ 2023-08-09T11:43:28.4926742Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:28.4927163Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:28.4928212Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:1: 2023-08-09T11:43:28.4928867Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:1042:9: note: declared here 2023-08-09T11:43:28.4929286Z 1042 | int channels; 2023-08-09T11:43:28.4929539Z | ^~~~~~~~ 2023-08-09T11:43:28.4930240Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:143:50: warning: ‘AVCodecContext::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:28.4931105Z 143 | av_get_default_channel_layout(codec_ctx->channels); 2023-08-09T11:43:28.4931445Z | ^~~~~~~~ 2023-08-09T11:43:28.4931813Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:28.4932227Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:28.4932654Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:1: 2023-08-09T11:43:28.4933281Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:1042:9: note: declared here 2023-08-09T11:43:28.4933681Z 1042 | int channels; 2023-08-09T11:43:28.4933945Z | ^~~~~~~~ 2023-08-09T11:43:28.4934590Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:143:58: warning: ‘int64_t av_get_default_channel_layout(int)’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:28.4935235Z 143 | av_get_default_channel_layout(codec_ctx->channels); 2023-08-09T11:43:28.4935802Z | ^ 2023-08-09T11:43:28.4936329Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:33, 2023-08-09T11:43:28.4936989Z from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:28.4937437Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:28.4937822Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:28.4938246Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:1: 2023-08-09T11:43:28.4938917Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/channel_layout.h:482:9: note: declared here 2023-08-09T11:43:28.4939411Z 482 | int64_t av_get_default_channel_layout(int nb_channels); 2023-08-09T11:43:28.4939754Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:43:28.4940419Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:143:58: warning: ‘int64_t av_get_default_channel_layout(int)’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:28.4941059Z 143 | av_get_default_channel_layout(codec_ctx->channels); 2023-08-09T11:43:28.4941641Z | ^ 2023-08-09T11:43:28.4942171Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:33, 2023-08-09T11:43:28.4942810Z from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:28.4943262Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:28.4943652Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:28.4944068Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:1: 2023-08-09T11:43:30.9781549Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/channel_layout.h:482:9: note: declared here 2023-08-09T11:43:30.9782004Z 482 | int64_t av_get_default_channel_layout(int nb_channels); 2023-08-09T11:43:30.9782310Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:43:30.9782988Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp: In member function ‘int torchaudio::io::StreamProcessor::process_packet(AVPacket*)’: 2023-08-09T11:43:30.9783744Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:335:33: warning: ‘AVCodecContext::frame_number’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:30.9784257Z 335 | frame->pts = codec_ctx->frame_number + 1; 2023-08-09T11:43:30.9784506Z | ^~~~~~~~~~~~ 2023-08-09T11:43:30.9784830Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:30.9785529Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:30.9785885Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:1: 2023-08-09T11:43:30.9786409Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:1076:9: note: declared here 2023-08-09T11:43:30.9786755Z 1076 | int frame_number; 2023-08-09T11:43:30.9786959Z | ^~~~~~~~~~~~ 2023-08-09T11:43:30.9787557Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:335:33: warning: ‘AVCodecContext::frame_number’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:30.9788048Z 335 | frame->pts = codec_ctx->frame_number + 1; 2023-08-09T11:43:30.9788326Z | ^~~~~~~~~~~~ 2023-08-09T11:43:30.9788596Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:30.9788961Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:30.9789311Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:1: 2023-08-09T11:43:30.9789836Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:1076:9: note: declared here 2023-08-09T11:43:30.9790144Z 1076 | int frame_number; 2023-08-09T11:43:30.9790357Z | ^~~~~~~~~~~~ 2023-08-09T11:43:30.9790959Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:335:33: warning: ‘AVCodecContext::frame_number’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:30.9791467Z 335 | frame->pts = codec_ctx->frame_number + 1; 2023-08-09T11:43:30.9791722Z | ^~~~~~~~~~~~ 2023-08-09T11:43:30.9791995Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:30.9792363Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:30.9792691Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:1: 2023-08-09T11:43:30.9793235Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:1076:9: note: declared here 2023-08-09T11:43:30.9793548Z 1076 | int frame_number; 2023-08-09T11:43:30.9793756Z | ^~~~~~~~~~~~ 2023-08-09T11:43:30.9795593Z [67/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg5_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f5-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/compat.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/compat.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/compat.cpp.o -c /work/torchaudio/csrc/ffmpeg/compat.cpp 2023-08-09T11:43:30.9798227Z [68/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg6_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/stream_reader.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/stream_reader.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/stream_reader.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_reader/stream_reader.cpp 2023-08-09T11:43:30.9799872Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_reader.cpp: In constructor ‘torchaudio::io::StreamReader::StreamReader(AVFormatContext*)’: 2023-08-09T11:43:30.9800644Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_reader.cpp:61:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘unsigned int’ [-Wsign-compare] 2023-08-09T11:43:30.9801122Z 61 | for (int i = 0; i < format_ctx->nb_streams; ++i) { 2023-08-09T11:43:30.9801421Z | ~~^~~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:43:30.9801993Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_reader.cpp: In member function ‘torchaudio::io::SrcStreamInfo torchaudio::io::StreamReader::get_src_stream_info(int) const’: 2023-08-09T11:43:30.9802737Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_reader.cpp:163:36: warning: ‘AVCodecParameters::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:30.9803240Z 163 | ret.num_channels = codecpar->channels; 2023-08-09T11:43:30.9803490Z | ^~~~~~~~ 2023-08-09T11:43:30.9803964Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:42, 2023-08-09T11:43:30.9804321Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:30.9804703Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_reader.cpp:1: 2023-08-09T11:43:30.9805185Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/codec_par.h:173:14: note: declared here 2023-08-09T11:43:30.9805545Z 173 | int channels; 2023-08-09T11:43:30.9805741Z | ^~~~~~~~ 2023-08-09T11:43:30.9806315Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_reader.cpp:163:36: warning: ‘AVCodecParameters::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:30.9806774Z 163 | ret.num_channels = codecpar->channels; 2023-08-09T11:43:30.9807068Z | ^~~~~~~~ 2023-08-09T11:43:30.9807891Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:42, 2023-08-09T11:43:30.9808267Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:30.9808876Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_reader.cpp:1: 2023-08-09T11:43:30.9809416Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/codec_par.h:173:14: note: declared here 2023-08-09T11:43:30.9809745Z 173 | int channels; 2023-08-09T11:43:30.9809953Z | ^~~~~~~~ 2023-08-09T11:43:30.9810554Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_reader.cpp:163:36: warning: ‘AVCodecParameters::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:30.9811045Z 163 | ret.num_channels = codecpar->channels; 2023-08-09T11:43:30.9811323Z | ^~~~~~~~ 2023-08-09T11:43:30.9811742Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:42, 2023-08-09T11:43:30.9812136Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:30.9812484Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_reader.cpp:1: 2023-08-09T11:43:30.9813011Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/codec_par.h:173:14: note: declared here 2023-08-09T11:43:30.9813318Z 173 | int channels; 2023-08-09T11:43:30.9813574Z | ^~~~~~~~ 2023-08-09T11:43:30.9815217Z [69/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg6_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_writer/encoder.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_writer/encoder.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_writer/encoder.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_writer/encoder.cpp 2023-08-09T11:43:30.9818164Z [70/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg6_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_writer/packet_writer.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_writer/packet_writer.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_writer/packet_writer.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_writer/packet_writer.cpp 2023-08-09T11:43:31.1978367Z [71/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg6_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_writer/encode_process.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_writer/encode_process.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_writer/encode_process.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp 2023-08-09T11:43:31.1980660Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp: In function ‘std::string torchaudio::io::{anonymous}::get_supported_channels(const uint64_t*)’: 2023-08-09T11:43:31.1981342Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:318:61: warning: ‘int av_get_channel_layout_nb_channels(uint64_t)’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:31.1981815Z 318 | ss << av_get_channel_layout_nb_channels(*channel_layouts); 2023-08-09T11:43:31.1982170Z | ^ 2023-08-09T11:43:31.1982765Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:33, 2023-08-09T11:43:31.1983312Z from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:31.1983667Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:31.1983978Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:31.1984314Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:43:31.1984802Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/channel_layout.h:474:5: note: declared here 2023-08-09T11:43:31.1985254Z 474 | int av_get_channel_layout_nb_channels(uint64_t channel_layout); 2023-08-09T11:43:31.1985609Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:43:31.1986264Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:318:61: warning: ‘int av_get_channel_layout_nb_channels(uint64_t)’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:31.1986875Z 318 | ss << av_get_channel_layout_nb_channels(*channel_layouts); 2023-08-09T11:43:31.1987151Z | ^ 2023-08-09T11:43:31.1987594Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:33, 2023-08-09T11:43:31.1988090Z from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:31.1988492Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:31.1988887Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:31.1989347Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:43:31.1989873Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/channel_layout.h:474:5: note: declared here 2023-08-09T11:43:31.1990259Z 474 | int av_get_channel_layout_nb_channels(uint64_t channel_layout); 2023-08-09T11:43:31.1990531Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:43:31.1991038Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:319:55: warning: ‘const char* av_get_channel_name(uint64_t)’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:31.1991471Z 319 | ss << " (" << av_get_channel_name(*channel_layouts) << ")"; 2023-08-09T11:43:31.1991762Z | ^ 2023-08-09T11:43:31.1992318Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:33, 2023-08-09T11:43:31.1992977Z from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:31.1993336Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:31.1993638Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:31.1993984Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:43:31.1994475Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/channel_layout.h:515:13: note: declared here 2023-08-09T11:43:31.1994929Z 515 | const char *av_get_channel_name(uint64_t channel); 2023-08-09T11:43:31.1995236Z | ^~~~~~~~~~~~~~~~~~~ 2023-08-09T11:43:31.1995930Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:319:55: warning: ‘const char* av_get_channel_name(uint64_t)’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:31.1996418Z 319 | ss << " (" << av_get_channel_name(*channel_layouts) << ")"; 2023-08-09T11:43:31.1996682Z | ^ 2023-08-09T11:43:31.1997107Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:33, 2023-08-09T11:43:31.1997619Z from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:31.1998005Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:31.1998310Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:31.1998742Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:43:31.1999399Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/channel_layout.h:515:13: note: declared here 2023-08-09T11:43:31.1999775Z 515 | const char *av_get_channel_name(uint64_t channel); 2023-08-09T11:43:31.2000023Z | ^~~~~~~~~~~~~~~~~~~ 2023-08-09T11:43:31.2000644Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp: In function ‘uint64_t torchaudio::io::{anonymous}::get_channel_layout(uint64_t, c10::optional, const AVCodec*)’: 2023-08-09T11:43:31.2001494Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:335:17: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:31.2001925Z 335 | if (!codec->channel_layouts) { 2023-08-09T11:43:31.2002223Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:43:31.2002799Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-08-09T11:43:31.2003227Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:31.2003534Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:31.2003865Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:43:31.2004348Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-08-09T11:43:31.2004824Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-08-09T11:43:31.2005162Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:43:31.2005834Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:335:17: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:31.2006418Z 335 | if (!codec->channel_layouts) { 2023-08-09T11:43:31.2006663Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:43:31.2007072Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-08-09T11:43:31.2007721Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:31.2008073Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:31.2008459Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:43:31.2008944Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-08-09T11:43:31.2009472Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-08-09T11:43:31.2009888Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:43:31.2010776Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:335:17: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:31.2011216Z 335 | if (!codec->channel_layouts) { 2023-08-09T11:43:31.2011451Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:43:31.2011848Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-08-09T11:43:31.2012249Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:31.2012578Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:31.2012899Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:43:31.2013493Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-08-09T11:43:31.2014063Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-08-09T11:43:31.2014425Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:43:31.2014937Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:336:69: warning: ‘int64_t av_get_default_channel_layout(int)’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:31.2015481Z 336 | return static_cast(av_get_default_channel_layout(val)); 2023-08-09T11:43:31.2232479Z | ^ 2023-08-09T11:43:31.2233109Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:33, 2023-08-09T11:43:31.2233961Z from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:31.2234345Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:31.2234679Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:31.2235133Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:43:31.2235790Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/channel_layout.h:482:9: note: declared here 2023-08-09T11:43:31.2236280Z 482 | int64_t av_get_default_channel_layout(int nb_channels); 2023-08-09T11:43:31.2236581Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:43:31.2237133Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:336:69: warning: ‘int64_t av_get_default_channel_layout(int)’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:31.2237630Z 336 | return static_cast(av_get_default_channel_layout(val)); 2023-08-09T11:43:31.2237996Z | ^ 2023-08-09T11:43:31.2238575Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:33, 2023-08-09T11:43:31.2239204Z from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:31.2239598Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:31.2239902Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:31.2240231Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:43:31.2240792Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/channel_layout.h:482:9: note: declared here 2023-08-09T11:43:31.2241270Z 482 | int64_t av_get_default_channel_layout(int nb_channels); 2023-08-09T11:43:31.2241629Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:43:31.2242415Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:338:38: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:31.2242902Z 338 | for (const uint64_t* it = codec->channel_layouts; *it; ++it) { 2023-08-09T11:43:31.2243371Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:43:31.2243895Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-08-09T11:43:31.2244357Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:31.2244768Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:31.2245188Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:43:31.2245741Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-08-09T11:43:31.2246176Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-08-09T11:43:31.2246549Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:43:31.2247146Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:338:38: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:31.2247913Z 338 | for (const uint64_t* it = codec->channel_layouts; *it; ++it) { 2023-08-09T11:43:31.2248264Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:43:31.2248842Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-08-09T11:43:31.2249277Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:31.2249592Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:31.2250128Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:43:31.2250735Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-08-09T11:43:31.2251309Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-08-09T11:43:31.2251685Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:43:31.2252275Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:338:38: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:31.2252785Z 338 | for (const uint64_t* it = codec->channel_layouts; *it; ++it) { 2023-08-09T11:43:31.2253077Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:43:31.2253529Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-08-09T11:43:31.2254002Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:31.2254413Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:31.2254813Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:43:31.2255349Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-08-09T11:43:31.2255913Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-08-09T11:43:31.2256226Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:43:31.2256808Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:339:48: warning: ‘int av_get_channel_layout_nb_channels(uint64_t)’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:31.2257336Z 339 | if (av_get_channel_layout_nb_channels(*it) == val) { 2023-08-09T11:43:31.2257702Z | ^ 2023-08-09T11:43:31.2258247Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:33, 2023-08-09T11:43:31.2258796Z from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:31.2259330Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:31.2259681Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:31.2260069Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:43:31.2260750Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/channel_layout.h:474:5: note: declared here 2023-08-09T11:43:31.2261236Z 474 | int av_get_channel_layout_nb_channels(uint64_t channel_layout); 2023-08-09T11:43:31.2261568Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:43:31.2262100Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:339:48: warning: ‘int av_get_channel_layout_nb_channels(uint64_t)’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:31.2262574Z 339 | if (av_get_channel_layout_nb_channels(*it) == val) { 2023-08-09T11:43:31.2262860Z | ^ 2023-08-09T11:43:31.2263381Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:33, 2023-08-09T11:43:31.2264047Z from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:31.2264463Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:31.2264765Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:31.2265083Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:43:31.2265622Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/channel_layout.h:474:5: note: declared here 2023-08-09T11:43:31.2266179Z 474 | int av_get_channel_layout_nb_channels(uint64_t channel_layout); 2023-08-09T11:43:31.2266525Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:43:31.2267099Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Generator.h:11, 2023-08-09T11:43:31.2267678Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/CPUGeneratorImpl.h:3, 2023-08-09T11:43:31.2268131Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Context.h:3, 2023-08-09T11:43:31.2268605Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/ATen.h:7, 2023-08-09T11:43:31.2269142Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/types.h:3, 2023-08-09T11:43:31.2269610Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:3, 2023-08-09T11:43:31.2270035Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:31.2270410Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:43:31.2271078Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:350:39: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:31.2271603Z 350 | get_supported_channels(codec->channel_layouts)); 2023-08-09T11:43:31.2271911Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:43:31.2272426Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-08-09T11:43:31.2272911Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:31.2273281Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:31.2273647Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:43:31.2274139Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-08-09T11:43:31.2274582Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-08-09T11:43:31.2487290Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:43:31.2488434Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Generator.h:11, 2023-08-09T11:43:31.2489224Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/CPUGeneratorImpl.h:3, 2023-08-09T11:43:31.2490280Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Context.h:3, 2023-08-09T11:43:31.2490880Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/ATen.h:7, 2023-08-09T11:43:31.2491484Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/types.h:3, 2023-08-09T11:43:31.2491989Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:3, 2023-08-09T11:43:31.2492825Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:31.2493459Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:43:31.2494422Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:350:39: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:31.2495028Z 350 | get_supported_channels(codec->channel_layouts)); 2023-08-09T11:43:31.2495373Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:43:31.2496155Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-08-09T11:43:31.2497256Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:31.2497999Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:31.2498469Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:43:31.2499160Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-08-09T11:43:31.2499772Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-08-09T11:43:31.2500886Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:43:31.2501516Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Generator.h:11, 2023-08-09T11:43:31.2502186Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/CPUGeneratorImpl.h:3, 2023-08-09T11:43:31.2502829Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Context.h:3, 2023-08-09T11:43:31.2503437Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/ATen.h:7, 2023-08-09T11:43:31.2504853Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/types.h:3, 2023-08-09T11:43:31.2505344Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:3, 2023-08-09T11:43:31.2505772Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:31.2506236Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:43:31.2507139Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:350:39: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:31.2508472Z 350 | get_supported_channels(codec->channel_layouts)); 2023-08-09T11:43:31.2508864Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:43:31.2509456Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-08-09T11:43:31.2509968Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:31.2510416Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:31.2510837Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:43:31.2512435Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-08-09T11:43:31.2513001Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-08-09T11:43:31.2513430Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:43:31.2514232Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:354:15: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:31.2514813Z 354 | if (!codec->channel_layouts) { 2023-08-09T11:43:31.2515135Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:43:31.2516426Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-08-09T11:43:31.2516943Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:31.2517360Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:31.2517816Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:43:31.2518478Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-08-09T11:43:31.2519453Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-08-09T11:43:31.2520110Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:43:31.2520903Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:354:15: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:31.2521623Z 354 | if (!codec->channel_layouts) { 2023-08-09T11:43:31.2521898Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:43:31.2522600Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-08-09T11:43:31.2523621Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:31.2524042Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:31.2524497Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:43:31.2525177Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-08-09T11:43:31.2525772Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-08-09T11:43:31.2526218Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:43:31.2527813Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:354:15: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:31.2528442Z 354 | if (!codec->channel_layouts) { 2023-08-09T11:43:31.2528754Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:43:31.2529329Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-08-09T11:43:31.2529831Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:31.2530745Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:31.2531406Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:43:31.2532103Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-08-09T11:43:31.2532707Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-08-09T11:43:31.2533144Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:43:31.2534523Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:359:36: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:31.2535757Z 359 | for (const uint64_t* it = codec->channel_layouts; *it; ++it) { 2023-08-09T11:43:31.2536143Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:43:31.2536744Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-08-09T11:43:31.2537235Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:31.2538111Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:31.2538766Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:43:31.2539427Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-08-09T11:43:31.2539982Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-08-09T11:43:31.2540388Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:43:31.2541081Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:359:36: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:31.2542280Z 359 | for (const uint64_t* it = codec->channel_layouts; *it; ++it) { 2023-08-09T11:43:31.2542678Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:43:31.2543260Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-08-09T11:43:31.2543765Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:31.2544451Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:31.2544887Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:43:31.2546213Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-08-09T11:43:31.2546779Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-08-09T11:43:31.2547173Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:43:31.2547890Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:359:36: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:31.2548509Z 359 | for (const uint64_t* it = codec->channel_layouts; *it; ++it) { 2023-08-09T11:43:31.2829896Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:43:31.2830730Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-08-09T11:43:31.2831391Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:31.2831807Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:31.2832444Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:43:31.2833120Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-08-09T11:43:31.2833721Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-08-09T11:43:31.2834166Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:43:31.2835429Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:365:17: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:31.2891103Z 365 | return codec->channel_layouts[0]; 2023-08-09T11:43:31.2891620Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:43:31.2892249Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-08-09T11:43:31.2892778Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:31.2893835Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:31.2894482Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:43:31.2895207Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-08-09T11:43:31.2896037Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-08-09T11:43:31.2896529Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:43:31.2897456Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:365:17: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:31.2898103Z 365 | return codec->channel_layouts[0]; 2023-08-09T11:43:31.2898434Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:43:31.2899022Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-08-09T11:43:31.2899550Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:31.2899970Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:31.2900443Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:43:31.2901172Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-08-09T11:43:31.2901774Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-08-09T11:43:31.2902621Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:43:31.2903388Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:365:17: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:31.2904002Z 365 | return codec->channel_layouts[0]; 2023-08-09T11:43:31.2904659Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:43:31.2905210Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-08-09T11:43:31.2905720Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:31.2906134Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:31.2906577Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:43:31.2907231Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-08-09T11:43:31.2907828Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-08-09T11:43:31.2908267Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:43:31.2909181Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp: In function ‘void torchaudio::io::{anonymous}::configure_audio_codec_ctx(AVCodecContext*, AVSampleFormat, int, uint64_t, const c10::optional&)’: 2023-08-09T11:43:31.2910241Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:377:14: warning: ‘AVCodecContext::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:31.2910950Z 377 | codec_ctx->channels = av_get_channel_layout_nb_channels(channel_layout); 2023-08-09T11:43:31.2911347Z | ^~~~~~~~ 2023-08-09T11:43:31.2911700Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:31.2912149Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:31.2912604Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:43:31.2913273Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:1042:9: note: declared here 2023-08-09T11:43:31.2913937Z 1042 | int channels; 2023-08-09T11:43:31.2914230Z | ^~~~~~~~ 2023-08-09T11:43:31.2914990Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:377:14: warning: ‘AVCodecContext::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:31.2915685Z 377 | codec_ctx->channels = av_get_channel_layout_nb_channels(channel_layout); 2023-08-09T11:43:31.2916046Z | ^~~~~~~~ 2023-08-09T11:43:31.2916404Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:31.2916841Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:31.2917295Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:43:31.2917970Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:1042:9: note: declared here 2023-08-09T11:43:31.2918391Z 1042 | int channels; 2023-08-09T11:43:31.2918658Z | ^~~~~~~~ 2023-08-09T11:43:31.2919398Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:377:14: warning: ‘AVCodecContext::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:31.2920125Z 377 | codec_ctx->channels = av_get_channel_layout_nb_channels(channel_layout); 2023-08-09T11:43:31.2920520Z | ^~~~~~~~ 2023-08-09T11:43:31.2920870Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:31.2921288Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:31.2921710Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:43:31.2922621Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:1042:9: note: declared here 2023-08-09T11:43:31.2923022Z 1042 | int channels; 2023-08-09T11:43:31.2923294Z | ^~~~~~~~ 2023-08-09T11:43:31.2924018Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:377:73: warning: ‘int av_get_channel_layout_nb_channels(uint64_t)’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:31.2924753Z 377 | codec_ctx->channels = av_get_channel_layout_nb_channels(channel_layout); 2023-08-09T11:43:31.2925177Z | ^ 2023-08-09T11:43:31.2925773Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:33, 2023-08-09T11:43:31.2926470Z from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:31.2926974Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:31.2927398Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:31.2928690Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:43:31.2929307Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/channel_layout.h:474:5: note: declared here 2023-08-09T11:43:31.2930351Z 474 | int av_get_channel_layout_nb_channels(uint64_t channel_layout); 2023-08-09T11:43:31.2930951Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:43:31.2932687Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:377:73: warning: ‘int av_get_channel_layout_nb_channels(uint64_t)’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:31.2933576Z 377 | codec_ctx->channels = av_get_channel_layout_nb_channels(channel_layout); 2023-08-09T11:43:31.2933953Z | ^ 2023-08-09T11:43:31.2934495Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:33, 2023-08-09T11:43:31.2935988Z from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:31.2937029Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:31.2937456Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:31.2938206Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:43:31.2939085Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/channel_layout.h:474:5: note: declared here 2023-08-09T11:43:31.2939595Z 474 | int av_get_channel_layout_nb_channels(uint64_t channel_layout); 2023-08-09T11:43:31.2939956Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:43:31.2940785Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:378:14: warning: ‘AVCodecContext::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:31.2942110Z 378 | codec_ctx->channel_layout = channel_layout; 2023-08-09T11:43:31.2942471Z | ^~~~~~~~~~~~~~ 2023-08-09T11:43:31.2942864Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:31.2943285Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:31.3093271Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:43:31.3096121Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:1100:14: note: declared here 2023-08-09T11:43:31.3096607Z 1100 | uint64_t channel_layout; 2023-08-09T11:43:31.3096971Z | ^~~~~~~~~~~~~~ 2023-08-09T11:43:31.3097945Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:378:14: warning: ‘AVCodecContext::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:31.3099130Z 378 | codec_ctx->channel_layout = channel_layout; 2023-08-09T11:43:31.3099481Z | ^~~~~~~~~~~~~~ 2023-08-09T11:43:31.3099877Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:31.3100440Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:31.3100986Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:43:31.3101691Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:1100:14: note: declared here 2023-08-09T11:43:31.3102132Z 1100 | uint64_t channel_layout; 2023-08-09T11:43:31.3102439Z | ^~~~~~~~~~~~~~ 2023-08-09T11:43:31.3103204Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:378:14: warning: ‘AVCodecContext::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:31.3103861Z 378 | codec_ctx->channel_layout = channel_layout; 2023-08-09T11:43:31.3104183Z | ^~~~~~~~~~~~~~ 2023-08-09T11:43:31.3104549Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:31.3104973Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:31.3105435Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:43:31.3106105Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:1100:14: note: declared here 2023-08-09T11:43:31.3106546Z 1100 | uint64_t channel_layout; 2023-08-09T11:43:31.3106852Z | ^~~~~~~~~~~~~~ 2023-08-09T11:43:31.3107651Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp: In function ‘torchaudio::io::AVFramePtr torchaudio::io::{anonymous}::get_audio_frame(AVSampleFormat, int, int, uint64_t, int)’: 2023-08-09T11:43:31.3108633Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:702:10: warning: ‘AVFrame::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:31.3109256Z 702 | frame->channel_layout = channel_layout; 2023-08-09T11:43:31.3109587Z | ^~~~~~~~~~~~~~ 2023-08-09T11:43:31.3110485Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:31.3110998Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:31.3111415Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:31.3111834Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:43:31.3112463Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:524:14: note: declared here 2023-08-09T11:43:31.3112909Z 524 | uint64_t channel_layout; 2023-08-09T11:43:31.3113213Z | ^~~~~~~~~~~~~~ 2023-08-09T11:43:31.3113963Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:702:10: warning: ‘AVFrame::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:31.3114575Z 702 | frame->channel_layout = channel_layout; 2023-08-09T11:43:31.3114900Z | ^~~~~~~~~~~~~~ 2023-08-09T11:43:31.3115488Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:31.3115999Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:31.3116412Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:31.3117596Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:43:31.3118290Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:524:14: note: declared here 2023-08-09T11:43:31.3118735Z 524 | uint64_t channel_layout; 2023-08-09T11:43:31.3120693Z | ^~~~~~~~~~~~~~ 2023-08-09T11:43:31.3121452Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:702:10: warning: ‘AVFrame::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:31.3122020Z 702 | frame->channel_layout = channel_layout; 2023-08-09T11:43:31.3122309Z | ^~~~~~~~~~~~~~ 2023-08-09T11:43:31.3122853Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:31.3123319Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:31.3123734Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:31.3124295Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:43:31.3125020Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:524:14: note: declared here 2023-08-09T11:43:31.3125672Z 524 | uint64_t channel_layout; 2023-08-09T11:43:31.3126017Z | ^~~~~~~~~~~~~~ 2023-08-09T11:43:31.3126817Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:711:10: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:31.3128740Z 711 | frame->channels = num_channels; 2023-08-09T11:43:31.3129319Z | ^~~~~~~~ 2023-08-09T11:43:31.3131035Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:31.3131618Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:31.3132103Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:31.3132563Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:43:31.3133309Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:31.3133861Z 662 | int channels; 2023-08-09T11:43:31.3134170Z | ^~~~~~~~ 2023-08-09T11:43:31.3134975Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:711:10: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:31.3135883Z 711 | frame->channels = num_channels; 2023-08-09T11:43:31.3136283Z | ^~~~~~~~ 2023-08-09T11:43:31.3137221Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:31.3137756Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:31.3138185Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:31.3138647Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:43:31.3139448Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:31.3139932Z 662 | int channels; 2023-08-09T11:43:31.3140228Z | ^~~~~~~~ 2023-08-09T11:43:31.3141011Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:711:10: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:31.3141691Z 711 | frame->channels = num_channels; 2023-08-09T11:43:31.3142085Z | ^~~~~~~~ 2023-08-09T11:43:31.3142667Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:31.3143233Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:31.3143718Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:31.3144186Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:43:31.3144938Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:31.3145691Z 662 | int channels; 2023-08-09T11:43:31.3146048Z | ^~~~~~~~ 2023-08-09T11:43:31.3147590Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp: In function ‘torchaudio::io::EncodeProcess torchaudio::io::get_audio_encode_process(AVFormatContext*, int, int, const string&, const c10::optional >&, const c10::optional, std::basic_string > >&, const c10::optional >&, const c10::optional&, const c10::optional&, const c10::optional&, const c10::optional >&, bool)’: 2023-08-09T11:43:31.3149040Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:769:75: warning: ‘int64_t av_get_default_channel_layout(int)’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:31.3149695Z 769 | static_cast(av_get_default_channel_layout(src_num_channels)); 2023-08-09T11:43:31.3150176Z | ^ 2023-08-09T11:43:31.3150837Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:33, 2023-08-09T11:43:31.3181331Z from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:31.3181881Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:31.3182305Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:31.3182751Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:43:31.3183430Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/channel_layout.h:482:9: note: declared here 2023-08-09T11:43:31.3183899Z 482 | int64_t av_get_default_channel_layout(int nb_channels); 2023-08-09T11:43:31.3184225Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:43:31.3185022Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:769:75: warning: ‘int64_t av_get_default_channel_layout(int)’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:31.3185631Z 769 | static_cast(av_get_default_channel_layout(src_num_channels)); 2023-08-09T11:43:32.7054541Z | ^ 2023-08-09T11:43:32.7055321Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:33, 2023-08-09T11:43:32.7056091Z from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:32.7056515Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:32.7056884Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:32.7057273Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:43:32.7057898Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/channel_layout.h:482:9: note: declared here 2023-08-09T11:43:32.7058345Z 482 | int64_t av_get_default_channel_layout(int nb_channels); 2023-08-09T11:43:32.7058658Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:43:32.7059022Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp: In lambda function: 2023-08-09T11:43:32.7059788Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:789:67: warning: ‘int64_t av_get_default_channel_layout(int)’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:32.7060322Z 789 | return static_cast(av_get_default_channel_layout(2)); 2023-08-09T11:43:32.7060662Z | ^ 2023-08-09T11:43:32.7061184Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:33, 2023-08-09T11:43:32.7061806Z from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:32.7062393Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:32.7062748Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:32.7063155Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:43:32.7063743Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/channel_layout.h:482:9: note: declared here 2023-08-09T11:43:32.7064179Z 482 | int64_t av_get_default_channel_layout(int nb_channels); 2023-08-09T11:43:32.7064480Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:43:32.7065121Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:789:67: warning: ‘int64_t av_get_default_channel_layout(int)’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:32.7065640Z 789 | return static_cast(av_get_default_channel_layout(2)); 2023-08-09T11:43:32.7065990Z | ^ 2023-08-09T11:43:32.7066498Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:33, 2023-08-09T11:43:32.7067096Z from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:32.7067509Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:32.7067871Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:43:32.7068264Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:43:32.7068857Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/channel_layout.h:482:9: note: declared here 2023-08-09T11:43:32.7072101Z 482 | int64_t av_get_default_channel_layout(int nb_channels); 2023-08-09T11:43:32.7072575Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:43:32.7075524Z [72/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg6_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/post_process.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/post_process.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/post_process.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_reader/post_process.cpp 2023-08-09T11:43:32.7077891Z /work/torchaudio/csrc/ffmpeg/stream_reader/post_process.cpp: In function ‘torchaudio::io::detail::{anonymous}::FilterGraphFactory torchaudio::io::detail::{anonymous}::get_audio_factory(AVRational, AVCodecContext*)’: 2023-08-09T11:43:32.7079051Z /work/torchaudio/csrc/ffmpeg/stream_reader/post_process.cpp:22:39: warning: ‘AVCodecContext::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:32.7079744Z 22 | channel_layout = codec_ctx->channel_layout]( 2023-08-09T11:43:32.7080106Z | ^~~~~~~~~~~~~~ 2023-08-09T11:43:32.7080484Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:32.7080954Z from /work/torchaudio/csrc/ffmpeg/stream_reader/buffer/chunked_buffer.h:2, 2023-08-09T11:43:32.7081454Z from /work/torchaudio/csrc/ffmpeg/stream_reader/post_process.cpp:1: 2023-08-09T11:43:32.7082142Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:1100:14: note: declared here 2023-08-09T11:43:32.7082790Z 1100 | uint64_t channel_layout; 2023-08-09T11:43:32.7083109Z | ^~~~~~~~~~~~~~ 2023-08-09T11:43:32.7083909Z /work/torchaudio/csrc/ffmpeg/stream_reader/post_process.cpp:22:39: warning: ‘AVCodecContext::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:32.7084567Z 22 | channel_layout = codec_ctx->channel_layout]( 2023-08-09T11:43:32.7084921Z | ^~~~~~~~~~~~~~ 2023-08-09T11:43:32.7085321Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:32.7085823Z from /work/torchaudio/csrc/ffmpeg/stream_reader/buffer/chunked_buffer.h:2, 2023-08-09T11:43:32.7086301Z from /work/torchaudio/csrc/ffmpeg/stream_reader/post_process.cpp:1: 2023-08-09T11:43:32.7087001Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:1100:14: note: declared here 2023-08-09T11:43:32.7087902Z 1100 | uint64_t channel_layout; 2023-08-09T11:43:32.7088230Z | ^~~~~~~~~~~~~~ 2023-08-09T11:43:32.7089050Z /work/torchaudio/csrc/ffmpeg/stream_reader/post_process.cpp:22:39: warning: ‘AVCodecContext::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:32.7089785Z 22 | channel_layout = codec_ctx->channel_layout]( 2023-08-09T11:43:32.7090161Z | ^~~~~~~~~~~~~~ 2023-08-09T11:43:32.7090559Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:32.7091088Z from /work/torchaudio/csrc/ffmpeg/stream_reader/buffer/chunked_buffer.h:2, 2023-08-09T11:43:32.7091592Z from /work/torchaudio/csrc/ffmpeg/stream_reader/post_process.cpp:1: 2023-08-09T11:43:32.7092299Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:1100:14: note: declared here 2023-08-09T11:43:32.7092781Z 1100 | uint64_t channel_layout; 2023-08-09T11:43:32.7093099Z | ^~~~~~~~~~~~~~ 2023-08-09T11:43:32.7095769Z [73/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg5_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f5-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/conversion.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/conversion.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/conversion.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp 2023-08-09T11:43:32.7103134Z [74/94] : && /opt/rh/devtoolset-9/root/usr/bin/c++ -fPIC -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -shared -Wl,-soname,libtorchaudio_ffmpeg5.so -o torchaudio/csrc/ffmpeg/libtorchaudio_ffmpeg5.so torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/ffmpeg.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/filter_graph.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/hw_context.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/buffer/chunked_buffer.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/buffer/unchunked_buffer.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/conversion.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/packet_buffer.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/post_process.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/stream_processor.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/stream_reader.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_writer/encode_process.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_writer/encoder.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_writer/packet_writer.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_writer/stream_writer.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_writer/tensor_converter.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/compat.cpp.o -Wl,-rpath,/work/ci_env/lib/python3.10/site-packages/torch/lib:/usr/local/cuda-11.8/lib64:/work/build/temp.linux-x86_64-cpython-310/_deps/f5-src/lib: /work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch.so -Wl,--no-as-needed,"/work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_cpu.so" -Wl,--as-needed -Wl,--no-as-needed,"/work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_cuda.so" -Wl,--as-needed /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10_cuda.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10.so /usr/local/cuda-11.8/lib64/libcudart.so /usr/local/cuda-11.8/lib64/libnvToolsExt.so /usr/local/cuda-11.8/lib64/libcufft.so /usr/local/cuda-11.8/lib64/libcurand.so /usr/local/cuda-11.8/lib64/libcublas.so /usr/local/cuda-11.8/lib64/libcublasLt.so _deps/f5-src/lib/libavutil.so.57 _deps/f5-src/lib/libavcodec.so.59 _deps/f5-src/lib/libavformat.so.59 _deps/f5-src/lib/libavdevice.so.59 _deps/f5-src/lib/libavfilter.so.8 /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10_cuda.so /usr/local/cuda-11.8/lib64/libcudart.so && : 2023-08-09T11:43:33.4510596Z [75/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg6_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_writer/stream_writer.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_writer/stream_writer.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_writer/stream_writer.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp 2023-08-09T11:43:33.4512666Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/util/Exception.h:4, 2023-08-09T11:43:33.4513379Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Generator.h:11, 2023-08-09T11:43:33.4514082Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/CPUGeneratorImpl.h:3, 2023-08-09T11:43:33.4514753Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Context.h:3, 2023-08-09T11:43:33.4515387Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/ATen.h:7, 2023-08-09T11:43:33.4516082Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/types.h:3, 2023-08-09T11:43:33.4516624Z from /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.h:3, 2023-08-09T11:43:33.4517124Z from /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp:1: 2023-08-09T11:43:33.4518725Z /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp: In member function ‘void torchaudio::io::StreamWriter::add_audio_stream(int, int, const string&, const c10::optional >&, const c10::optional, std::basic_string > >&, const c10::optional >&, const c10::optional&, const c10::optional&, const c10::optional&, const c10::optional >&)’: 2023-08-09T11:43:33.4520265Z /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp:69:30: warning: comparison of integer expressions of different signedness: ‘unsigned int’ and ‘int’ [-Wsign-compare] 2023-08-09T11:43:33.4521009Z 69 | format_ctx->nb_streams == num_output_streams(), 2023-08-09T11:43:33.4521462Z | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:43:33.4523163Z /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp: In member function ‘void torchaudio::io::StreamWriter::add_video_stream(double, int, int, const string&, const c10::optional >&, const c10::optional, std::basic_string > >&, const c10::optional >&, const c10::optional&, const c10::optional&, const c10::optional&, const c10::optional >&, const c10::optional&, const c10::optional >&)’: 2023-08-09T11:43:33.4524697Z /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp:105:30: warning: comparison of integer expressions of different signedness: ‘unsigned int’ and ‘int’ [-Wsign-compare] 2023-08-09T11:43:33.4525430Z 105 | format_ctx->nb_streams == num_output_streams(), 2023-08-09T11:43:33.4525813Z | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:43:33.4527310Z /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp: In member function ‘void torchaudio::io::StreamWriter::add_audio_frame_stream(int, int, const string&, const c10::optional >&, const c10::optional, std::basic_string > >&, const c10::optional >&, const c10::optional&, const c10::optional&, const c10::optional&, const c10::optional >&)’: 2023-08-09T11:43:33.4529286Z /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp:149:30: warning: comparison of integer expressions of different signedness: ‘unsigned int’ and ‘int’ [-Wsign-compare] 2023-08-09T11:43:33.4530005Z 149 | format_ctx->nb_streams == num_output_streams(), 2023-08-09T11:43:33.4530615Z | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:43:33.4532430Z /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp: In member function ‘void torchaudio::io::StreamWriter::add_video_frame_stream(double, int, int, const string&, const c10::optional >&, const c10::optional, std::basic_string > >&, const c10::optional >&, const c10::optional&, const c10::optional&, const c10::optional&, const c10::optional >&, const c10::optional&, const c10::optional >&)’: 2023-08-09T11:43:33.4533972Z /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp:186:30: warning: comparison of integer expressions of different signedness: ‘unsigned int’ and ‘int’ [-Wsign-compare] 2023-08-09T11:43:33.4534696Z 186 | format_ctx->nb_streams == num_output_streams(), 2023-08-09T11:43:33.4535102Z | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:43:33.4536260Z /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp: In member function ‘void torchaudio::io::StreamWriter::open(const c10::optional, std::basic_string > >&)’: 2023-08-09T11:43:33.4537361Z /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp:223:30: warning: comparison of integer expressions of different signedness: ‘unsigned int’ and ‘int’ [-Wsign-compare] 2023-08-09T11:43:33.4538059Z 223 | format_ctx->nb_streams == num_output_streams(), 2023-08-09T11:43:33.4538627Z | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:43:33.4541180Z [76/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg6_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_writer/tensor_converter.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_writer/tensor_converter.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_writer/tensor_converter.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp 2023-08-09T11:43:33.4543009Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/util/Exception.h:4, 2023-08-09T11:43:33.4543701Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Generator.h:11, 2023-08-09T11:43:33.4544356Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/CPUGeneratorImpl.h:3, 2023-08-09T11:43:33.4545019Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Context.h:3, 2023-08-09T11:43:33.4545655Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/ATen.h:7, 2023-08-09T11:43:33.4546300Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/types.h:3, 2023-08-09T11:43:33.4546833Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:3, 2023-08-09T11:43:33.4547340Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-08-09T11:43:33.4548307Z /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp: In function ‘void torchaudio::io::{anonymous}::validate_audio_input(const at::Tensor&, AVFrame*, c10::ScalarType)’: 2023-08-09T11:43:33.4549345Z /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:33:28: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:33.4550125Z 33 | t.size(1) == buffer->channels, 2023-08-09T11:43:33.4550450Z | ^~~~~~~~ 2023-08-09T11:43:33.4551102Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:33.4551616Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:33.4552053Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:4, 2023-08-09T11:43:33.4552530Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-08-09T11:43:33.4685804Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:33.4691923Z 662 | int channels; 2023-08-09T11:43:33.4692227Z | ^~~~~~~~ 2023-08-09T11:43:33.4692830Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/util/Exception.h:4, 2023-08-09T11:43:33.4693534Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Generator.h:11, 2023-08-09T11:43:33.4694210Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/CPUGeneratorImpl.h:3, 2023-08-09T11:43:33.4694832Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Context.h:3, 2023-08-09T11:43:33.4695557Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/ATen.h:7, 2023-08-09T11:43:33.4696166Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/types.h:3, 2023-08-09T11:43:33.4697073Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:3, 2023-08-09T11:43:33.4697557Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-08-09T11:43:33.4698477Z /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:33:28: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:33.4699206Z 33 | t.size(1) == buffer->channels, 2023-08-09T11:43:33.4699512Z | ^~~~~~~~ 2023-08-09T11:43:33.4700102Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:33.4700609Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:33.4701053Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:4, 2023-08-09T11:43:33.4701539Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-08-09T11:43:33.4702270Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:33.4702696Z 662 | int channels; 2023-08-09T11:43:33.4702957Z | ^~~~~~~~ 2023-08-09T11:43:33.4703556Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/util/Exception.h:4, 2023-08-09T11:43:33.4704260Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Generator.h:11, 2023-08-09T11:43:33.4704943Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/CPUGeneratorImpl.h:3, 2023-08-09T11:43:33.4705619Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Context.h:3, 2023-08-09T11:43:33.4706262Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/ATen.h:7, 2023-08-09T11:43:33.4706955Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/types.h:3, 2023-08-09T11:43:33.4707477Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:3, 2023-08-09T11:43:33.4707982Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-08-09T11:43:33.4709126Z /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:33:28: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:33.4709772Z 33 | t.size(1) == buffer->channels, 2023-08-09T11:43:33.4710099Z | ^~~~~~~~ 2023-08-09T11:43:33.4710690Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:33.4711203Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:33.4711665Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:4, 2023-08-09T11:43:33.4712188Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-08-09T11:43:33.4712889Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:33.4713315Z 662 | int channels; 2023-08-09T11:43:33.4713613Z | ^~~~~~~~ 2023-08-09T11:43:33.4714190Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Generator.h:11, 2023-08-09T11:43:33.4714888Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/CPUGeneratorImpl.h:3, 2023-08-09T11:43:33.4715536Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Context.h:3, 2023-08-09T11:43:33.4716156Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/ATen.h:7, 2023-08-09T11:43:33.4716845Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/types.h:3, 2023-08-09T11:43:33.4717528Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:3, 2023-08-09T11:43:33.4718016Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-08-09T11:43:33.4718912Z /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:35:15: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:33.4719497Z 35 | buffer->channels, 2023-08-09T11:43:33.4719798Z | ^~~~~~~~ 2023-08-09T11:43:33.4720379Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:33.4720904Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:33.4721342Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:4, 2023-08-09T11:43:33.4721788Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-08-09T11:43:33.4722439Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:33.4722829Z 662 | int channels; 2023-08-09T11:43:33.4723074Z | ^~~~~~~~ 2023-08-09T11:43:33.4723588Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Generator.h:11, 2023-08-09T11:43:33.4724235Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/CPUGeneratorImpl.h:3, 2023-08-09T11:43:33.4724857Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Context.h:3, 2023-08-09T11:43:33.4725424Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/ATen.h:7, 2023-08-09T11:43:33.4726591Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/types.h:3, 2023-08-09T11:43:33.4727339Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:3, 2023-08-09T11:43:33.4727969Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-08-09T11:43:33.4729099Z /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:35:15: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:33.4729640Z 35 | buffer->channels, 2023-08-09T11:43:33.4729924Z | ^~~~~~~~ 2023-08-09T11:43:33.4730487Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:33.4730990Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:33.4731446Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:4, 2023-08-09T11:43:33.4731918Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-08-09T11:43:33.4732583Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:33.4732995Z 662 | int channels; 2023-08-09T11:43:33.4733282Z | ^~~~~~~~ 2023-08-09T11:43:33.4733828Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Generator.h:11, 2023-08-09T11:43:33.4734537Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/CPUGeneratorImpl.h:3, 2023-08-09T11:43:33.4735206Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Context.h:3, 2023-08-09T11:43:33.4735976Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/ATen.h:7, 2023-08-09T11:43:33.4736646Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/types.h:3, 2023-08-09T11:43:33.4737189Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:3, 2023-08-09T11:43:33.4737862Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-08-09T11:43:33.4738713Z /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:35:15: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:33.4739257Z 35 | buffer->channels, 2023-08-09T11:43:33.4739562Z | ^~~~~~~~ 2023-08-09T11:43:33.4740150Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:33.4740631Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:33.4741079Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:4, 2023-08-09T11:43:33.4741556Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-08-09T11:43:33.4742199Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:33.4742616Z 662 | int channels; 2023-08-09T11:43:33.4742887Z | ^~~~~~~~ 2023-08-09T11:43:33.4743445Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Generator.h:11, 2023-08-09T11:43:33.4744155Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/CPUGeneratorImpl.h:3, 2023-08-09T11:43:33.4744811Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Context.h:3, 2023-08-09T11:43:33.4745390Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/ATen.h:7, 2023-08-09T11:43:36.2811806Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/types.h:3, 2023-08-09T11:43:36.2812691Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:3, 2023-08-09T11:43:36.2813414Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-08-09T11:43:36.2814636Z /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp: In function ‘void torchaudio::io::{anonymous}::convert_func_(const at::Tensor&, AVFrame*)’: 2023-08-09T11:43:36.2816648Z /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:43:61: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:36.2817440Z 43 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(chunk.size(1) == buffer->channels); 2023-08-09T11:43:36.2817882Z | ^~~~~~~~ 2023-08-09T11:43:36.2818514Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:36.2819046Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:36.2819534Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:4, 2023-08-09T11:43:36.2820083Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-08-09T11:43:36.2820788Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:36.2821206Z 662 | int channels; 2023-08-09T11:43:36.2821486Z | ^~~~~~~~ 2023-08-09T11:43:36.2822086Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Generator.h:11, 2023-08-09T11:43:36.2823576Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/CPUGeneratorImpl.h:3, 2023-08-09T11:43:36.2824288Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Context.h:3, 2023-08-09T11:43:36.2825427Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/ATen.h:7, 2023-08-09T11:43:36.2826162Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/types.h:3, 2023-08-09T11:43:36.2827080Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:3, 2023-08-09T11:43:36.2827623Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-08-09T11:43:36.2828580Z /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:43:61: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:36.2829302Z 43 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(chunk.size(1) == buffer->channels); 2023-08-09T11:43:36.2829705Z | ^~~~~~~~ 2023-08-09T11:43:36.2830312Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:36.2830854Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:36.2831319Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:4, 2023-08-09T11:43:36.2831861Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-08-09T11:43:36.2832563Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:36.2833013Z 662 | int channels; 2023-08-09T11:43:36.2833296Z | ^~~~~~~~ 2023-08-09T11:43:36.2833888Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Generator.h:11, 2023-08-09T11:43:36.2834622Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/CPUGeneratorImpl.h:3, 2023-08-09T11:43:36.2835294Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Context.h:3, 2023-08-09T11:43:36.2836008Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/ATen.h:7, 2023-08-09T11:43:36.2836707Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/types.h:3, 2023-08-09T11:43:36.2837255Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:3, 2023-08-09T11:43:36.2837758Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-08-09T11:43:36.2838814Z /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:43:61: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:36.2839562Z 43 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(chunk.size(1) == buffer->channels); 2023-08-09T11:43:36.2839999Z | ^~~~~~~~ 2023-08-09T11:43:36.2840618Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:36.2841114Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:36.2841604Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:4, 2023-08-09T11:43:36.2842137Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-08-09T11:43:36.2842821Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:36.2843255Z 662 | int channels; 2023-08-09T11:43:36.2843555Z | ^~~~~~~~ 2023-08-09T11:43:36.2845506Z [77/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_CUDA -Dpybind11_prefixctc_EXPORTS -I/work -I/work/ci_env/include/python3.10 -I/work/ci_env/lib/python3.10/site-packages/torch/include -I/work/torchaudio/csrc/cuctc -I/usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -fvisibility=default -MD -MT torchaudio/csrc/cuctc/CMakeFiles/pybind11_prefixctc.dir/src/python_binding.cpp.o -MF torchaudio/csrc/cuctc/CMakeFiles/pybind11_prefixctc.dir/src/python_binding.cpp.o.d -o torchaudio/csrc/cuctc/CMakeFiles/pybind11_prefixctc.dir/src/python_binding.cpp.o -c /work/torchaudio/csrc/cuctc/src/python_binding.cpp 2023-08-09T11:43:36.2850599Z [78/94] /usr/local/cuda-11.8/bin/nvcc -forward-unknown-to-host-compiler -DINCLUDE_ALIGN -DINCLUDE_RIR -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_EXPORTS -I/work -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -DCUDA_HAS_FP16=1 -D__CUDA_NO_HALF_OPERATORS__ -D__CUDA_NO_HALF_CONVERSIONS__ -D__CUDA_NO_HALF2_OPERATORS__ -DONNX_NAMESPACE=onnx_c2 -gencode arch=compute_86,code=sm_86 -Xcudafe --diag_suppress=cc_clobber_ignored,--diag_suppress=set_but_not_used,--diag_suppress=field_without_dll_interface,--diag_suppress=base_class_has_different_dll_interface,--diag_suppress=dll_interface_conflict_none_assumed,--diag_suppress=dll_interface_conflict_dllexport_assumed,--diag_suppress=bad_friend_decl --expt-relaxed-constexpr --expt-extended-lambda -O3 -DNDEBUG -std=c++17 -Xcompiler=-fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/iir_cuda.cu.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/iir_cuda.cu.o.d -x cu -c /work/torchaudio/csrc/iir_cuda.cu -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/iir_cuda.cu.o 2023-08-09T11:43:36.2853285Z /work/torchaudio/csrc/iir_cuda.cu: In lambda function: 2023-08-09T11:43:36.2854716Z /work/torchaudio/csrc/iir_cuda.cu:67:160: warning: ‘at::GenericPackedTensorAccessor at::Tensor::packed_accessor() const & [with T = double; long unsigned int N = 3; PtrTraits = at::RestrictPtrTraits; index_t = long unsigned int]’ is deprecated: packed_accessor is deprecated, use packed_accessor32 or packed_accessor64 instead [-Wdeprecated-declarations] 2023-08-09T11:43:36.2855741Z 67 | AT_DISPATCH_FLOATING_TYPES( 2023-08-09T11:43:36.2856145Z | ^ 2023-08-09T11:43:36.2856812Z /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:256:1: note: declared here 2023-08-09T11:43:36.2857423Z 256 | GenericPackedTensorAccessor packed_accessor() const & { 2023-08-09T11:43:36.2857846Z | ^ ~~~~~~~~~~~~~ 2023-08-09T11:43:36.2859432Z /work/torchaudio/csrc/iir_cuda.cu:67:244: warning: ‘at::GenericPackedTensorAccessor at::Tensor::packed_accessor() const & [with T = double; long unsigned int N = 2; PtrTraits = at::RestrictPtrTraits; index_t = long unsigned int]’ is deprecated: packed_accessor is deprecated, use packed_accessor32 or packed_accessor64 instead [-Wdeprecated-declarations] 2023-08-09T11:43:36.2860364Z 67 | AT_DISPATCH_FLOATING_TYPES( 2023-08-09T11:43:36.2860794Z | ^ 2023-08-09T11:43:36.2861474Z /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:256:1: note: declared here 2023-08-09T11:43:36.2862086Z 256 | GenericPackedTensorAccessor packed_accessor() const & { 2023-08-09T11:43:36.2862522Z | ^ ~~~~~~~~~~~~~ 2023-08-09T11:43:36.9894851Z /work/torchaudio/csrc/iir_cuda.cu:67:329: warning: ‘at::GenericPackedTensorAccessor at::Tensor::packed_accessor() const & [with T = double; long unsigned int N = 3; PtrTraits = at::RestrictPtrTraits; index_t = long unsigned int]’ is deprecated: packed_accessor is deprecated, use packed_accessor32 or packed_accessor64 instead [-Wdeprecated-declarations] 2023-08-09T11:43:36.9896202Z 67 | AT_DISPATCH_FLOATING_TYPES( 2023-08-09T11:43:36.9896664Z | ^ 2023-08-09T11:43:36.9899012Z /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:256:1: note: declared here 2023-08-09T11:43:36.9899648Z 256 | GenericPackedTensorAccessor packed_accessor() const & { 2023-08-09T11:43:36.9900091Z | ^ ~~~~~~~~~~~~~ 2023-08-09T11:43:36.9900470Z /work/torchaudio/csrc/iir_cuda.cu: In lambda function: 2023-08-09T11:43:36.9901933Z /work/torchaudio/csrc/iir_cuda.cu:67:158: warning: ‘at::GenericPackedTensorAccessor at::Tensor::packed_accessor() const & [with T = float; long unsigned int N = 3; PtrTraits = at::RestrictPtrTraits; index_t = long unsigned int]’ is deprecated: packed_accessor is deprecated, use packed_accessor32 or packed_accessor64 instead [-Wdeprecated-declarations] 2023-08-09T11:43:36.9902876Z 67 | AT_DISPATCH_FLOATING_TYPES( 2023-08-09T11:43:36.9903277Z | ^ 2023-08-09T11:43:36.9903932Z /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:256:1: note: declared here 2023-08-09T11:43:36.9904496Z 256 | GenericPackedTensorAccessor packed_accessor() const & { 2023-08-09T11:43:36.9904921Z | ^ ~~~~~~~~~~~~~ 2023-08-09T11:43:36.9906227Z /work/torchaudio/csrc/iir_cuda.cu:67:241: warning: ‘at::GenericPackedTensorAccessor at::Tensor::packed_accessor() const & [with T = float; long unsigned int N = 2; PtrTraits = at::RestrictPtrTraits; index_t = long unsigned int]’ is deprecated: packed_accessor is deprecated, use packed_accessor32 or packed_accessor64 instead [-Wdeprecated-declarations] 2023-08-09T11:43:36.9907132Z 67 | AT_DISPATCH_FLOATING_TYPES( 2023-08-09T11:43:36.9907796Z | ^ 2023-08-09T11:43:36.9908474Z /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:256:1: note: declared here 2023-08-09T11:43:36.9909056Z 256 | GenericPackedTensorAccessor packed_accessor() const & { 2023-08-09T11:43:36.9909481Z | ^ ~~~~~~~~~~~~~ 2023-08-09T11:43:36.9910754Z /work/torchaudio/csrc/iir_cuda.cu:67:325: warning: ‘at::GenericPackedTensorAccessor at::Tensor::packed_accessor() const & [with T = float; long unsigned int N = 3; PtrTraits = at::RestrictPtrTraits; index_t = long unsigned int]’ is deprecated: packed_accessor is deprecated, use packed_accessor32 or packed_accessor64 instead [-Wdeprecated-declarations] 2023-08-09T11:43:36.9911609Z 67 | AT_DISPATCH_FLOATING_TYPES( 2023-08-09T11:43:36.9912057Z | ^ 2023-08-09T11:43:36.9912751Z /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:256:1: note: declared here 2023-08-09T11:43:36.9913332Z 256 | GenericPackedTensorAccessor packed_accessor() const & { 2023-08-09T11:43:36.9913747Z | ^ ~~~~~~~~~~~~~ 2023-08-09T11:43:36.9916205Z [79/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg6_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/conversion.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/conversion.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/conversion.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp 2023-08-09T11:43:36.9918298Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:43:36.9919004Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:43:36.9919656Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:43:36.9920345Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:43:36.9921056Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:43:36.9921785Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:43:36.9922539Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:43:36.9923251Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:43:36.9923985Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:43:36.9924758Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:43:36.9925480Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:43:36.9926203Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:43:36.9927208Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp: In member function ‘void torchaudio::io::AudioConverter::convert(const AVFrame*, at::Tensor&)’: 2023-08-09T11:43:36.9928589Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:36.9929340Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:43:36.9929782Z | ^~~~~~~~ 2023-08-09T11:43:36.9930453Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:36.9931010Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:36.9931484Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:43:36.9932000Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:43:36.9932728Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:36.9933172Z 662 | int channels; 2023-08-09T11:43:36.9933467Z | ^~~~~~~~ 2023-08-09T11:43:36.9934021Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:43:36.9934734Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:43:36.9935601Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:43:36.9936480Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:43:36.9937167Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:43:36.9937885Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:43:36.9938586Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:43:36.9939330Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:43:36.9940087Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:43:36.9940833Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:43:36.9941620Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:43:37.0072856Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:43:37.0074844Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:37.0075833Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:43:37.0076269Z | ^~~~~~~~ 2023-08-09T11:43:37.0078379Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:37.0078913Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:37.0079357Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:43:37.0079908Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:43:37.0080626Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:37.0081086Z 662 | int channels; 2023-08-09T11:43:37.0081736Z | ^~~~~~~~ 2023-08-09T11:43:37.0082395Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:43:37.0083094Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:43:37.0083772Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:43:37.0084440Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:43:37.0085138Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:43:37.0085869Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:43:37.0086580Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:43:37.0087315Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:43:37.0088451Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:43:37.0089211Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:43:37.0089970Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:43:37.0090514Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:43:37.0091697Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:37.0092429Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:43:37.0092877Z | ^~~~~~~~ 2023-08-09T11:43:37.0093496Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:37.0094023Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:37.0094485Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:43:37.0094975Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:43:37.0095818Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:37.0096287Z 662 | int channels; 2023-08-09T11:43:37.0096582Z | ^~~~~~~~ 2023-08-09T11:43:37.0097139Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:43:37.0097859Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:43:37.0098545Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:43:37.0099205Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:43:37.0099919Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:43:37.0100645Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:43:37.0101365Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:43:37.0102098Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:43:37.0102856Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:43:37.0103856Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:43:37.0104631Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:43:37.0105185Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:43:37.0106373Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp: In instantiation of ‘void torchaudio::io::AudioConverter::convert(const AVFrame*, at::Tensor&) [with c10::ScalarType dtype = c10::ScalarType::Byte; bool is_planar = false; AVFrame = AVFrame]’: 2023-08-09T11:43:37.0107221Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:75:16: required from here 2023-08-09T11:43:37.0108125Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:37.0108901Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:43:37.0109315Z | ~~~~~^~~~~~~~ 2023-08-09T11:43:37.0109943Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:37.0110472Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:37.0110924Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:43:37.0111433Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:43:37.0112292Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:37.0112795Z 662 | int channels; 2023-08-09T11:43:37.0113083Z | ^~~~~~~~ 2023-08-09T11:43:37.0113671Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:43:37.0114357Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:43:37.0115019Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:43:37.0115670Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:43:37.0116370Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:43:37.0117091Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:43:37.0117812Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:43:37.0118545Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:43:37.0119304Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:43:37.0120041Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:43:37.0120753Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:43:37.0121297Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:43:37.0122222Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:37.0122944Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:43:37.0123341Z | ~~~~~^~~~~~~~ 2023-08-09T11:43:37.0124131Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:37.0124666Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:37.0125116Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:43:37.0125624Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:43:37.0126331Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:37.0126774Z 662 | int channels; 2023-08-09T11:43:37.0127054Z | ^~~~~~~~ 2023-08-09T11:43:37.0127881Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:43:37.0128609Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:43:37.0129307Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:43:37.0129973Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:43:37.0130662Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:43:37.0241884Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:43:37.0242688Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:43:37.0245347Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:43:37.0246134Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:43:37.0246912Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:43:37.0247912Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:43:37.0248473Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:43:37.0249443Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:37.0250171Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:43:37.0250592Z | ~~~~~^~~~~~~~ 2023-08-09T11:43:37.0251233Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:37.0251814Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:37.0252288Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:43:37.0252814Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:43:37.0253499Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:37.0253954Z 662 | int channels; 2023-08-09T11:43:37.0254257Z | ^~~~~~~~ 2023-08-09T11:43:37.0254811Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:43:37.0255638Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:43:37.0256329Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:43:37.0256971Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:43:37.0257915Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:43:37.0258656Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:43:37.0259396Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:43:37.0260127Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:43:37.0260861Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:43:37.0261614Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:43:37.0262358Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:43:37.0262935Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:43:37.0264131Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp: In instantiation of ‘void torchaudio::io::AudioConverter::convert(const AVFrame*, at::Tensor&) [with c10::ScalarType dtype = c10::ScalarType::Byte; bool is_planar = true; AVFrame = AVFrame]’: 2023-08-09T11:43:37.0264926Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:76:16: required from here 2023-08-09T11:43:37.0265828Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:37.0266778Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:43:37.0267181Z | ~~~~~^~~~~~~~ 2023-08-09T11:43:37.0267814Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:37.0268365Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:37.0268843Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:43:37.0269353Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:43:37.0270063Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:37.0270511Z 662 | int channels; 2023-08-09T11:43:37.0270808Z | ^~~~~~~~ 2023-08-09T11:43:37.0271375Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:43:37.0272107Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:43:37.0272801Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:43:37.0273468Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:43:37.0274165Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:43:37.0274910Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:43:37.0275618Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:43:37.0276329Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:43:37.0277076Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:43:37.0277814Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:43:37.0278712Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:43:37.0279281Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:43:37.0280192Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:37.0280930Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:43:37.0281364Z | ~~~~~^~~~~~~~ 2023-08-09T11:43:37.0282049Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:37.0282604Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:37.0283088Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:43:37.0283595Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:43:37.0284320Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:37.0284756Z 662 | int channels; 2023-08-09T11:43:37.0285041Z | ^~~~~~~~ 2023-08-09T11:43:37.0285593Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:43:37.0286286Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:43:37.0286975Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:43:37.0288005Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:43:37.0288701Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:43:37.0289429Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:43:37.0290131Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:43:37.0290831Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:43:37.0291579Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:43:37.0292303Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:43:37.0293058Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:43:37.0293601Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:43:37.0294371Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:37.0295075Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:43:37.0295641Z | ~~~~~^~~~~~~~ 2023-08-09T11:43:37.0296275Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:37.0296808Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:37.0297288Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:43:37.0415330Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:43:37.0416414Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:37.0419294Z 662 | int channels; 2023-08-09T11:43:37.0419650Z | ^~~~~~~~ 2023-08-09T11:43:37.0420690Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:43:37.0421409Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:43:37.0422086Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:43:37.0422741Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:43:37.0423444Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:43:37.0424196Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:43:37.0424906Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:43:37.0425611Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:43:37.0426352Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:43:37.0427096Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:43:37.0427831Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:43:37.0428381Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:43:37.0429801Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp: In instantiation of ‘void torchaudio::io::AudioConverter::convert(const AVFrame*, at::Tensor&) [with c10::ScalarType dtype = c10::ScalarType::Short; bool is_planar = false; AVFrame = AVFrame]’: 2023-08-09T11:43:37.0430619Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:77:16: required from here 2023-08-09T11:43:37.0431541Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:37.0432258Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:43:37.0432690Z | ~~~~~^~~~~~~~ 2023-08-09T11:43:37.0433306Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:37.0433859Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:37.0434350Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:43:37.0434855Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:43:37.0435578Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:37.0436048Z 662 | int channels; 2023-08-09T11:43:37.0436343Z | ^~~~~~~~ 2023-08-09T11:43:37.0436913Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:43:37.0437631Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:43:37.0438330Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:43:37.0439019Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:43:37.0439736Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:43:37.0440469Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:43:37.0441336Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:43:37.0442098Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:43:37.0442906Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:43:37.0443643Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:43:37.0444378Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:43:37.0444918Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:43:37.0445824Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:37.0446567Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:43:37.0446993Z | ~~~~~^~~~~~~~ 2023-08-09T11:43:37.0447948Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:37.0448501Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:37.0448972Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:43:37.0449484Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:43:37.0450400Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:37.0450859Z 662 | int channels; 2023-08-09T11:43:37.0451155Z | ^~~~~~~~ 2023-08-09T11:43:37.0451719Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:43:37.0452446Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:43:37.0453146Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:43:37.0453801Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:43:37.0454457Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:43:37.0455328Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:43:37.0456057Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:43:37.0456742Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:43:37.0457457Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:43:37.0458206Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:43:37.0458931Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:43:37.0459465Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:43:37.0460353Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:37.0461076Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:43:37.0461496Z | ~~~~~^~~~~~~~ 2023-08-09T11:43:37.0462115Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:37.0462911Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:37.0463416Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:43:37.0463919Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:43:37.0464623Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:37.0465071Z 662 | int channels; 2023-08-09T11:43:37.0465358Z | ^~~~~~~~ 2023-08-09T11:43:37.0465931Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:43:37.0466625Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:43:37.0467304Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:43:37.0467976Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:43:37.0468676Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:43:37.0469399Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:43:37.0470120Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:43:37.0470835Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:43:37.0471718Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:43:37.0472490Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:43:37.0545487Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:43:37.0546126Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:43:37.0547353Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp: In instantiation of ‘void torchaudio::io::AudioConverter::convert(const AVFrame*, at::Tensor&) [with c10::ScalarType dtype = c10::ScalarType::Short; bool is_planar = true; AVFrame = AVFrame]’: 2023-08-09T11:43:37.0548161Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:78:16: required from here 2023-08-09T11:43:37.0549092Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:37.0549831Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:43:37.0550265Z | ~~~~~^~~~~~~~ 2023-08-09T11:43:37.0550893Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:37.0551397Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:37.0551864Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:43:37.0552371Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:43:37.0553060Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:37.0553529Z 662 | int channels; 2023-08-09T11:43:37.0553823Z | ^~~~~~~~ 2023-08-09T11:43:37.0554370Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:43:37.0555079Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:43:37.0556142Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:43:37.0556825Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:43:37.0557520Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:43:37.0558250Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:43:37.0558973Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:43:37.0559716Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:43:37.0560442Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:43:37.0561196Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:43:37.0561952Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:43:37.0562483Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:43:37.0563380Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:37.0564117Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:43:37.0564791Z | ~~~~~^~~~~~~~ 2023-08-09T11:43:37.0565425Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:37.0565958Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:37.0566444Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:43:37.0566948Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:43:37.0567989Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:37.0568441Z 662 | int channels; 2023-08-09T11:43:37.0568734Z | ^~~~~~~~ 2023-08-09T11:43:37.0569287Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:43:37.0569996Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:43:37.0570674Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:43:37.0571340Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:43:37.0572043Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:43:37.0572776Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:43:37.0573487Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:43:37.0574187Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:43:37.0574901Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:43:37.0575783Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:43:37.0576521Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:43:37.0577260Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:43:37.0578164Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:37.0578871Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:43:37.0579292Z | ~~~~~^~~~~~~~ 2023-08-09T11:43:37.0579903Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:37.0580442Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:37.0580912Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:43:37.0581410Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:43:37.0582130Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:37.0582576Z 662 | int channels; 2023-08-09T11:43:37.0582875Z | ^~~~~~~~ 2023-08-09T11:43:37.0583420Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:43:37.0584128Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:43:37.0584814Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:43:37.0585659Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:43:37.0586347Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:43:37.0587085Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:43:37.0587815Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:43:37.0588535Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:43:37.0589276Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:43:37.0590024Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:43:37.0590761Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:43:37.0591342Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:43:37.0592546Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp: In instantiation of ‘void torchaudio::io::AudioConverter::convert(const AVFrame*, at::Tensor&) [with c10::ScalarType dtype = c10::ScalarType::Int; bool is_planar = false; AVFrame = AVFrame]’: 2023-08-09T11:43:37.0593387Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:79:16: required from here 2023-08-09T11:43:37.0594308Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:37.0595044Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:43:37.0595454Z | ~~~~~^~~~~~~~ 2023-08-09T11:43:37.0596107Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:37.0596593Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:37.0597017Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:43:37.0597607Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:43:37.0598309Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:37.0678524Z 662 | int channels; 2023-08-09T11:43:37.0678882Z | ^~~~~~~~ 2023-08-09T11:43:37.0679595Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:43:37.0680279Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:43:37.0681003Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:43:37.0681701Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:43:37.0682390Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:43:37.0683154Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:43:37.0683898Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:43:37.0684615Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:43:37.0685365Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:43:37.0686110Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:43:37.0687280Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:43:37.0688100Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:43:37.0689092Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:37.0689817Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:43:37.0690204Z | ~~~~~^~~~~~~~ 2023-08-09T11:43:37.0690838Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:37.0691359Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:37.0691846Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:43:37.0692365Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:43:37.0693051Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:37.0693490Z 662 | int channels; 2023-08-09T11:43:37.0693806Z | ^~~~~~~~ 2023-08-09T11:43:37.0694362Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:43:37.0695065Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:43:37.0695905Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:43:37.0696557Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:43:37.0697252Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:43:37.0698008Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:43:37.0698732Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:43:37.0699649Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:43:37.0700403Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:43:37.0701146Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:43:37.0701883Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:43:37.0702421Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:43:37.0703313Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:37.0704045Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:43:37.0704481Z | ~~~~~^~~~~~~~ 2023-08-09T11:43:37.0705113Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:37.0705648Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:37.0706148Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:43:37.0706641Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:43:37.0707280Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:37.0707923Z 662 | int channels; 2023-08-09T11:43:37.0708202Z | ^~~~~~~~ 2023-08-09T11:43:37.0708771Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:43:37.0709462Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:43:37.0710141Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:43:37.0710795Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:43:37.0711488Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:43:37.0712185Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:43:37.0712923Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:43:37.0713647Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:43:37.0714368Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:43:37.0715124Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:43:37.0715841Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:43:37.0716364Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:43:37.0717487Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp: In instantiation of ‘void torchaudio::io::AudioConverter::convert(const AVFrame*, at::Tensor&) [with c10::ScalarType dtype = c10::ScalarType::Int; bool is_planar = true; AVFrame = AVFrame]’: 2023-08-09T11:43:37.0718318Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:80:16: required from here 2023-08-09T11:43:37.0719379Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:37.0720108Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:43:37.0720532Z | ~~~~~^~~~~~~~ 2023-08-09T11:43:37.0721127Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:37.0721620Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:37.0722061Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:43:37.0722532Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:43:37.0723243Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:37.0723678Z 662 | int channels; 2023-08-09T11:43:37.0723975Z | ^~~~~~~~ 2023-08-09T11:43:37.0724551Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:43:37.0725231Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:43:37.0725921Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:43:37.0726563Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:43:37.0727265Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:43:37.0728354Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:43:37.0729083Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:43:37.0729797Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:43:37.0730537Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:43:37.0731286Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:43:37.0732048Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:43:37.0732593Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:43:37.0814254Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:37.0815440Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:43:37.0816110Z | ~~~~~^~~~~~~~ 2023-08-09T11:43:37.0817007Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:37.0817497Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:37.0817957Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:43:37.0818446Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:43:37.0819123Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:37.0819568Z 662 | int channels; 2023-08-09T11:43:37.0819885Z | ^~~~~~~~ 2023-08-09T11:43:37.0820464Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:43:37.0821148Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:43:37.0822189Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:43:37.0822893Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:43:37.0823582Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:43:37.0824287Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:43:37.0824999Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:43:37.0825718Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:43:37.0826433Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:43:37.0827181Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:43:37.0827917Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:43:37.0828487Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:43:37.0829348Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:37.0830077Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:43:37.0830707Z | ~~~~~^~~~~~~~ 2023-08-09T11:43:37.0831334Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:37.0831863Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:37.0832366Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:43:37.0832852Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:43:37.0833530Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:37.0833972Z 662 | int channels; 2023-08-09T11:43:37.0834266Z | ^~~~~~~~ 2023-08-09T11:43:37.0834838Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:43:37.0835470Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:43:37.0836095Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:43:37.0836731Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:43:37.0837426Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:43:37.0838148Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:43:37.0838866Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:43:37.0839581Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:43:37.0840301Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:43:37.0841059Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:43:37.0841793Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:43:37.0842522Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:43:37.0843708Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp: In instantiation of ‘void torchaudio::io::AudioConverter::convert(const AVFrame*, at::Tensor&) [with c10::ScalarType dtype = c10::ScalarType::Long; bool is_planar = false; AVFrame = AVFrame]’: 2023-08-09T11:43:37.0844539Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:81:16: required from here 2023-08-09T11:43:37.0845436Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:37.0846161Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:43:37.0846584Z | ~~~~~^~~~~~~~ 2023-08-09T11:43:37.0847200Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:37.0848110Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:37.0848588Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:43:37.0849080Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:43:37.0849783Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:37.0850196Z 662 | int channels; 2023-08-09T11:43:37.0850484Z | ^~~~~~~~ 2023-08-09T11:43:37.0851053Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:43:37.0851970Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:43:37.0852651Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:43:37.0853324Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:43:37.0854043Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:43:37.0854772Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:43:37.0855758Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:43:37.0856468Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:43:37.0857203Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:43:37.0857945Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:43:37.0858674Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:43:37.0859223Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:43:37.0860118Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:37.0860832Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:43:37.0861258Z | ~~~~~^~~~~~~~ 2023-08-09T11:43:37.0861891Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:37.0862507Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:37.0862951Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:43:37.0863612Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:43:37.0864330Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:37.0864765Z 662 | int channels; 2023-08-09T11:43:37.0865056Z | ^~~~~~~~ 2023-08-09T11:43:37.0865619Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:43:37.0866325Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:43:37.0867001Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:43:37.0867655Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:43:37.0868355Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:43:37.0944995Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:43:37.0946831Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:43:37.0947533Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:43:37.0948744Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:43:37.0949527Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:43:37.0950653Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:43:37.0951197Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:43:37.0952136Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:37.0952868Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:43:37.0953287Z | ~~~~~^~~~~~~~ 2023-08-09T11:43:37.0954205Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:37.0954716Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:37.0955179Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:43:37.0955706Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:43:37.0956418Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:37.0956853Z 662 | int channels; 2023-08-09T11:43:37.0957133Z | ^~~~~~~~ 2023-08-09T11:43:37.0957716Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:43:37.0958405Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:43:37.0959067Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:43:37.0959718Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:43:37.0960390Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:43:37.0961104Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:43:37.0961806Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:43:37.0962771Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:43:37.0963510Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:43:37.0964239Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:43:37.0964974Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:43:37.0965518Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:43:37.0966716Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp: In instantiation of ‘void torchaudio::io::AudioConverter::convert(const AVFrame*, at::Tensor&) [with c10::ScalarType dtype = c10::ScalarType::Long; bool is_planar = true; AVFrame = AVFrame]’: 2023-08-09T11:43:37.0967879Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:82:16: required from here 2023-08-09T11:43:37.0968809Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:37.0969511Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:43:37.0969911Z | ~~~~~^~~~~~~~ 2023-08-09T11:43:37.0970525Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:37.0971050Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:37.0971748Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:43:37.0972225Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:43:37.0972982Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:37.0973418Z 662 | int channels; 2023-08-09T11:43:37.0973710Z | ^~~~~~~~ 2023-08-09T11:43:37.0974265Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:43:37.0974955Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:43:37.0975768Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:43:37.0976392Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:43:37.0977075Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:43:37.0977777Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:43:37.0978480Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:43:37.0979178Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:43:37.0979867Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:43:37.0980577Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:43:37.0981290Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:43:37.0981844Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:43:37.0982724Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:37.0983716Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:43:37.0984174Z | ~~~~~^~~~~~~~ 2023-08-09T11:43:37.0984807Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:37.0985337Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:37.0985781Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:43:37.0986244Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:43:37.0986953Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:37.0987387Z 662 | int channels; 2023-08-09T11:43:37.0987669Z | ^~~~~~~~ 2023-08-09T11:43:37.0988203Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:43:37.0988896Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:43:37.0989572Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:43:37.0990233Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:43:37.0990916Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:43:37.0991626Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:43:37.0992608Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:43:37.0993288Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:43:37.0994006Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:43:37.0994699Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:43:37.0995410Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:43:37.0995945Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:43:37.0996820Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:37.0997536Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:43:37.0997957Z | ~~~~~^~~~~~~~ 2023-08-09T11:43:37.0998601Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:37.0999128Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:37.0999595Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:43:37.1080293Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:43:37.1081236Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:37.1081708Z 662 | int channels; 2023-08-09T11:43:37.1082008Z | ^~~~~~~~ 2023-08-09T11:43:37.1082636Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:43:37.1083345Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:43:37.1084067Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:43:37.1085118Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:43:37.1085873Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:43:37.1086599Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:43:37.1087325Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:43:37.1088370Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:43:37.1089146Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:43:37.1089914Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:43:37.1090671Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:43:37.1091249Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:43:37.1092493Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp: In instantiation of ‘void torchaudio::io::AudioConverter::convert(const AVFrame*, at::Tensor&) [with c10::ScalarType dtype = c10::ScalarType::Float; bool is_planar = false; AVFrame = AVFrame]’: 2023-08-09T11:43:37.1093342Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:83:16: required from here 2023-08-09T11:43:37.1094474Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:37.1095369Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:43:37.1095822Z | ~~~~~^~~~~~~~ 2023-08-09T11:43:37.1096474Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:37.1096987Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:37.1097472Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:43:37.1098042Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:43:37.1098768Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:37.1099250Z 662 | int channels; 2023-08-09T11:43:37.1099543Z | ^~~~~~~~ 2023-08-09T11:43:37.1100125Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:43:37.1100841Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:43:37.1101557Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:43:37.1102270Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:43:37.1102977Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:43:37.1103759Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:43:37.1104490Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:43:37.1105264Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:43:37.1106035Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:43:37.1107009Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:43:37.1107784Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:43:37.1108386Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:43:37.1109276Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:37.1110003Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:43:37.1110451Z | ~~~~~^~~~~~~~ 2023-08-09T11:43:37.1111056Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:37.1111549Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:37.1112034Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:43:37.1112535Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:43:37.1113224Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:37.1113677Z 662 | int channels; 2023-08-09T11:43:37.1113973Z | ^~~~~~~~ 2023-08-09T11:43:37.1114562Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:43:37.1115427Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:43:37.1116086Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:43:37.1116732Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:43:37.1117399Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:43:37.1118136Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:43:37.1118864Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:43:37.1119582Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:43:37.1120324Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:43:37.1121095Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:43:37.1121862Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:43:37.1122452Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:43:37.1123339Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:37.1124054Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:43:37.1124472Z | ~~~~~^~~~~~~~ 2023-08-09T11:43:37.1125103Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:37.1125604Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:37.1126084Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:43:37.1126587Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:43:37.1127391Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:37.1128198Z 662 | int channels; 2023-08-09T11:43:37.1128499Z | ^~~~~~~~ 2023-08-09T11:43:37.1129096Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:43:37.1129786Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:43:37.1130468Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:43:37.1131148Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:43:37.1131825Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:43:37.1132567Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:43:37.1133289Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:43:37.1134009Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:43:37.1134727Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:43:37.1135621Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:43:37.1213396Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:43:37.1214036Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:43:37.1215475Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp: In instantiation of ‘void torchaudio::io::AudioConverter::convert(const AVFrame*, at::Tensor&) [with c10::ScalarType dtype = c10::ScalarType::Float; bool is_planar = true; AVFrame = AVFrame]’: 2023-08-09T11:43:37.1216313Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:84:16: required from here 2023-08-09T11:43:37.1217209Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:37.1217952Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:43:37.1218371Z | ~~~~~^~~~~~~~ 2023-08-09T11:43:37.1219040Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:37.1219549Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:37.1219991Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:43:37.1220511Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:43:37.1221185Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:37.1221635Z 662 | int channels; 2023-08-09T11:43:37.1221933Z | ^~~~~~~~ 2023-08-09T11:43:37.1222514Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:43:37.1223211Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:43:37.1223896Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:43:37.1224559Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:43:37.1225560Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:43:37.1226307Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:43:37.1227037Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:43:37.1227757Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:43:37.1228453Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:43:37.1229194Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:43:37.1229923Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:43:37.1230482Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:43:37.1231392Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:37.1232180Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:43:37.1232608Z | ~~~~~^~~~~~~~ 2023-08-09T11:43:37.1233238Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:37.1233765Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:37.1234463Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:43:37.1234966Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:43:37.1235662Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:37.1236131Z 662 | int channels; 2023-08-09T11:43:37.1236422Z | ^~~~~~~~ 2023-08-09T11:43:37.1236998Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:43:37.1237698Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:43:37.1238356Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:43:37.1239011Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:43:37.1239729Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:43:37.1240431Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:43:37.1241144Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:43:37.1241844Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:43:37.1242567Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:43:37.1243305Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:43:37.1244039Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:43:37.1244596Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:43:37.1245480Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:37.1246187Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:43:37.1246780Z | ~~~~~^~~~~~~~ 2023-08-09T11:43:37.1247410Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:37.1248234Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:37.1248696Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:43:37.1249199Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:43:37.1249920Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:37.1250374Z 662 | int channels; 2023-08-09T11:43:37.1250673Z | ^~~~~~~~ 2023-08-09T11:43:37.1251248Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:43:37.1251987Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:43:37.1252721Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:43:37.1253347Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:43:37.1254016Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:43:37.1254721Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:43:37.1255803Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:43:37.1256507Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:43:37.1257228Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:43:37.1257972Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:43:37.1258698Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:43:37.1259240Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:43:37.1260425Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp: In instantiation of ‘void torchaudio::io::AudioConverter::convert(const AVFrame*, at::Tensor&) [with c10::ScalarType dtype = c10::ScalarType::Double; bool is_planar = false; AVFrame = AVFrame]’: 2023-08-09T11:43:37.1261252Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:85:16: required from here 2023-08-09T11:43:37.1262127Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:37.1262880Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:43:37.1263303Z | ~~~~~^~~~~~~~ 2023-08-09T11:43:37.1263911Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:37.1264433Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:37.1264896Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:43:37.1265397Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:43:37.1266096Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:37.1339788Z 662 | int channels; 2023-08-09T11:43:37.1340137Z | ^~~~~~~~ 2023-08-09T11:43:37.1341229Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:43:37.1341980Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:43:37.1391543Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:43:37.1392624Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:43:37.1393347Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:43:37.1394178Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:43:37.1394923Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:43:37.1395645Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:43:37.1396361Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:43:37.1397111Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:43:37.1397836Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:43:37.1398370Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:43:37.1399730Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:37.1400445Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:43:37.1400852Z | ~~~~~^~~~~~~~ 2023-08-09T11:43:37.1401487Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:37.1402038Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:37.1402494Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:43:37.1444501Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:43:37.1446507Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:37.1447025Z 662 | int channels; 2023-08-09T11:43:37.1447314Z | ^~~~~~~~ 2023-08-09T11:43:37.1448209Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:43:37.1448878Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:43:37.1449555Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:43:37.1450191Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:43:37.1450859Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:43:37.1451548Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:43:37.1452238Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:43:37.1452937Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:43:37.1453644Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:43:37.1454728Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:43:37.1455602Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:43:37.1456143Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:43:37.1457061Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:37.1457754Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:43:37.1458182Z | ~~~~~^~~~~~~~ 2023-08-09T11:43:37.1458778Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:37.1459280Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:37.1459738Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:43:37.1460225Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:43:37.1460892Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:37.1461308Z 662 | int channels; 2023-08-09T11:43:37.1461594Z | ^~~~~~~~ 2023-08-09T11:43:37.1462139Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:43:37.1462801Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:43:37.1463611Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:43:37.1464230Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:43:37.1464907Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:43:37.1465601Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:43:37.1466289Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:43:37.1466991Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:43:37.1467698Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:43:37.1468402Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:43:37.1469099Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:43:37.1469640Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:43:37.1470755Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp: In instantiation of ‘void torchaudio::io::AudioConverter::convert(const AVFrame*, at::Tensor&) [with c10::ScalarType dtype = c10::ScalarType::Double; bool is_planar = true; AVFrame = AVFrame]’: 2023-08-09T11:43:37.1471529Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:86:16: required from here 2023-08-09T11:43:37.1472386Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:37.1473072Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:43:37.1473475Z | ~~~~~^~~~~~~~ 2023-08-09T11:43:37.1474068Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:37.1474687Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:37.1475146Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:43:37.1475623Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:43:37.1476283Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:37.1476714Z 662 | int channels; 2023-08-09T11:43:37.1476992Z | ^~~~~~~~ 2023-08-09T11:43:37.1477525Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:43:37.1478208Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:43:37.1478854Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:43:37.1479492Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:43:37.1480171Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:43:37.1480860Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:43:37.1481537Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:43:37.1482268Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:43:37.1483079Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:43:37.1483783Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:43:37.1484488Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:43:37.1485013Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:43:39.4200658Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:39.4203505Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:43:39.4203932Z | ~~~~~^~~~~~~~ 2023-08-09T11:43:39.4204431Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:39.4204787Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:39.4205111Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:43:39.4205470Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:43:39.4205943Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:39.4206248Z 662 | int channels; 2023-08-09T11:43:39.4206450Z | ^~~~~~~~ 2023-08-09T11:43:39.4206827Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:43:39.4207294Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:43:39.4208169Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:43:39.4208615Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:43:39.4209088Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:43:39.4209871Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:43:39.4210359Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:43:39.4210844Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:43:39.4211328Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:43:39.4211813Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:43:39.4212307Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:43:39.4212734Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:43:39.4213337Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:43:39.4213808Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:43:39.4214097Z | ~~~~~^~~~~~~~ 2023-08-09T11:43:39.4214513Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:43:39.4214860Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:43:39.4215326Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:43:39.4215762Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:43:39.4216224Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:43:39.4216517Z 662 | int channels; 2023-08-09T11:43:39.4216721Z | ^~~~~~~~ 2023-08-09T11:43:39.4218214Z [80/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg6_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/compat.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/compat.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/compat.cpp.o -c /work/torchaudio/csrc/ffmpeg/compat.cpp 2023-08-09T11:43:39.4223729Z [81/94] : && /opt/rh/devtoolset-9/root/usr/bin/c++ -fPIC -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -shared -Wl,-soname,libtorchaudio_ffmpeg6.so -o torchaudio/csrc/ffmpeg/libtorchaudio_ffmpeg6.so torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/ffmpeg.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/filter_graph.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/hw_context.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/buffer/chunked_buffer.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/buffer/unchunked_buffer.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/conversion.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/packet_buffer.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/post_process.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/stream_processor.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/stream_reader.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_writer/encode_process.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_writer/encoder.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_writer/packet_writer.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_writer/stream_writer.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_writer/tensor_converter.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/compat.cpp.o -Wl,-rpath,/work/ci_env/lib/python3.10/site-packages/torch/lib:/usr/local/cuda-11.8/lib64:/work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/lib: /work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch.so -Wl,--no-as-needed,"/work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_cpu.so" -Wl,--as-needed -Wl,--no-as-needed,"/work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_cuda.so" -Wl,--as-needed /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10_cuda.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10.so /usr/local/cuda-11.8/lib64/libcudart.so /usr/local/cuda-11.8/lib64/libnvToolsExt.so /usr/local/cuda-11.8/lib64/libcufft.so /usr/local/cuda-11.8/lib64/libcurand.so /usr/local/cuda-11.8/lib64/libcublas.so /usr/local/cuda-11.8/lib64/libcublasLt.so _deps/f6-src/lib/libavutil.so.58 _deps/f6-src/lib/libavcodec.so.60 _deps/f6-src/lib/libavformat.so.60 _deps/f6-src/lib/libavdevice.so.60 _deps/f6-src/lib/libavfilter.so.9 /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10_cuda.so /usr/local/cuda-11.8/lib64/libcudart.so && : 2023-08-09T11:43:39.4228860Z [82/94] /usr/local/cuda-11.8/bin/nvcc -forward-unknown-to-host-compiler -DUSE_CUDA -Dlibctc_prefix_decoder_EXPORTS -I/work -I/work/torchaudio/csrc/cuctc -I/usr/local/cuda-11.8/include -DCUDA_HAS_FP16=1 -D__CUDA_NO_HALF_OPERATORS__ -D__CUDA_NO_HALF_CONVERSIONS__ -D__CUDA_NO_HALF2_OPERATORS__ -DONNX_NAMESPACE=onnx_c2 -gencode arch=compute_86,code=sm_86 -Xcudafe --diag_suppress=cc_clobber_ignored,--diag_suppress=set_but_not_used,--diag_suppress=field_without_dll_interface,--diag_suppress=base_class_has_different_dll_interface,--diag_suppress=dll_interface_conflict_none_assumed,--diag_suppress=dll_interface_conflict_dllexport_assumed,--diag_suppress=bad_friend_decl --expt-relaxed-constexpr --expt-extended-lambda -O3 -DNDEBUG -std=c++17 -Xcompiler=-fPIC -MD -MT torchaudio/csrc/cuctc/CMakeFiles/libctc_prefix_decoder.dir/src/ctc_prefix_decoder_kernel_v2.cu.o -MF torchaudio/csrc/cuctc/CMakeFiles/libctc_prefix_decoder.dir/src/ctc_prefix_decoder_kernel_v2.cu.o.d -x cu -c /work/torchaudio/csrc/cuctc/src/ctc_prefix_decoder_kernel_v2.cu -o torchaudio/csrc/cuctc/CMakeFiles/libctc_prefix_decoder.dir/src/ctc_prefix_decoder_kernel_v2.cu.o 2023-08-09T11:43:39.4230747Z /work/torchaudio/csrc/cuctc/src/ctc_prefix_decoder_kernel_v2.cu(396): warning #177-D: variable "MAX_SUPPORT_BEAM" was declared but never referenced 2023-08-09T11:43:39.4231012Z 2023-08-09T11:43:39.4232271Z [83/94] : && /opt/rh/devtoolset-9/root/usr/bin/c++ -fPIC -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -shared -Wl,-soname,libctc_prefix_decoder.so -o torchaudio/csrc/cuctc/libctc_prefix_decoder.so torchaudio/csrc/cuctc/CMakeFiles/libctc_prefix_decoder.dir/src/ctc_prefix_decoder.cpp.o torchaudio/csrc/cuctc/CMakeFiles/libctc_prefix_decoder.dir/src/ctc_prefix_decoder_kernel_v2.cu.o -L/usr/local/cuda-11.8/targets/x86_64-linux/lib/stubs -L/usr/local/cuda-11.8/targets/x86_64-linux/lib -Wl,-rpath,/work/ci_env/lib/python3.10/site-packages/torch/lib:/usr/local/cuda-11.8/lib64: /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10_cuda.so /usr/local/cuda-11.8/lib64/libcudart.so -lcudadevrt -lcudart_static -lrt -lpthread -ldl && : 2023-08-09T11:43:49.2876814Z [84/94] : && /opt/rh/devtoolset-9/root/usr/bin/c++ -fPIC -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -shared -Wl,-soname,pybind11_prefixctc.so -o torchaudio/csrc/cuctc/pybind11_prefixctc.so torchaudio/csrc/cuctc/CMakeFiles/pybind11_prefixctc.dir/src/python_binding.cpp.o -Wl,-rpath,/work/build/temp.linux-x86_64-cpython-310/torchaudio/csrc/cuctc:/work/ci_env/lib/python3.10/site-packages/torch/lib:/usr/local/cuda-11.8/lib64: torchaudio/csrc/cuctc/libctc_prefix_decoder.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_python.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10_cuda.so /usr/local/cuda-11.8/lib64/libcudart.so && : 2023-08-09T11:43:49.2880021Z [85/94] /usr/local/cuda-11.8/bin/nvcc -forward-unknown-to-host-compiler -DINCLUDE_ALIGN -DINCLUDE_RIR -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_EXPORTS -I/work -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -DCUDA_HAS_FP16=1 -D__CUDA_NO_HALF_OPERATORS__ -D__CUDA_NO_HALF_CONVERSIONS__ -D__CUDA_NO_HALF2_OPERATORS__ -DONNX_NAMESPACE=onnx_c2 -gencode arch=compute_86,code=sm_86 -Xcudafe --diag_suppress=cc_clobber_ignored,--diag_suppress=set_but_not_used,--diag_suppress=field_without_dll_interface,--diag_suppress=base_class_has_different_dll_interface,--diag_suppress=dll_interface_conflict_none_assumed,--diag_suppress=dll_interface_conflict_dllexport_assumed,--diag_suppress=bad_friend_decl --expt-relaxed-constexpr --expt-extended-lambda -O3 -DNDEBUG -std=c++17 -Xcompiler=-fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/forced_align/gpu/compute.cu.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/forced_align/gpu/compute.cu.o.d -x cu -c /work/torchaudio/csrc/forced_align/gpu/compute.cu -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/forced_align/gpu/compute.cu.o 2023-08-09T11:43:49.2885911Z [86/94] : && /opt/rh/devtoolset-9/root/usr/bin/c++ -fPIC -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -shared -Wl,-soname,libtorchaudio.so -o torchaudio/csrc/libtorchaudio.so torchaudio/csrc/CMakeFiles/libtorchaudio.dir/lfilter.cpp.o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/overdrive.cpp.o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/utils.cpp.o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/cpu/compute_alphas.cpp.o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/cpu/compute_betas.cpp.o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/cpu/compute.cpp.o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/compute_alphas.cpp.o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/compute_betas.cpp.o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/compute.cpp.o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/autograd.cpp.o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/gpu/compute_alphas.cu.o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/gpu/compute_betas.cu.o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/gpu/compute.cu.o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rir.cpp.o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/forced_align/compute.cpp.o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/forced_align/cpu/compute.cpp.o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/forced_align/gpu/compute.cu.o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/iir_cuda.cu.o -L/usr/local/cuda-11.8/targets/x86_64-linux/lib/stubs -L/usr/local/cuda-11.8/targets/x86_64-linux/lib -Wl,-rpath,/work/ci_env/lib/python3.10/site-packages/torch/lib:/usr/local/cuda-11.8/lib64: /work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch.so -Wl,--no-as-needed,"/work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_cpu.so" -Wl,--as-needed -Wl,--no-as-needed,"/work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_cuda.so" -Wl,--as-needed /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10_cuda.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10.so /usr/local/cuda-11.8/lib64/libcudart.so /usr/local/cuda-11.8/lib64/libnvToolsExt.so /usr/local/cuda-11.8/lib64/libcufft.so /usr/local/cuda-11.8/lib64/libcurand.so /usr/local/cuda-11.8/lib64/libcublas.so /usr/local/cuda-11.8/lib64/libcublasLt.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10_cuda.so /usr/local/cuda-11.8/lib64/libcudart.so -lgomp -lpthread -lcudadevrt -lcudart_static -lrt -lpthread -ldl && : 2023-08-09T11:43:49.2891163Z [87/94] : && /opt/rh/devtoolset-9/root/usr/bin/c++ -fPIC -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -shared -Wl,-soname,_torchaudio.so -o torchaudio/csrc/_torchaudio.so torchaudio/csrc/CMakeFiles/_torchaudio.dir/pybind/pybind.cpp.o -Wl,-rpath,/work/build/temp.linux-x86_64-cpython-310/torchaudio/csrc:/work/ci_env/lib/python3.10/site-packages/torch/lib:/usr/local/cuda-11.8/lib64: torchaudio/csrc/libtorchaudio.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_python.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch.so -Wl,--no-as-needed,"/work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_cpu.so" -Wl,--as-needed -Wl,--no-as-needed,"/work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_cuda.so" -Wl,--as-needed /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10_cuda.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10.so /usr/local/cuda-11.8/lib64/libcudart.so /usr/local/cuda-11.8/lib64/libnvToolsExt.so /usr/local/cuda-11.8/lib64/libcufft.so /usr/local/cuda-11.8/lib64/libcurand.so /usr/local/cuda-11.8/lib64/libcublas.so /usr/local/cuda-11.8/lib64/libcublasLt.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10_cuda.so /usr/local/cuda-11.8/lib64/libcudart.so -lgomp -lpthread && : 2023-08-09T11:43:49.2894211Z [88/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DTORCHAUDIO_FFMPEG_EXT_NAME=_torchaudio_ffmpeg5 -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -D_torchaudio_ffmpeg5_EXPORTS -I/work -I/work/ci_env/include/python3.10 -I/work/build/temp.linux-x86_64-cpython-310/_deps/f5-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/_torchaudio_ffmpeg5.dir/pybind/pybind.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/_torchaudio_ffmpeg5.dir/pybind/pybind.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/_torchaudio_ffmpeg5.dir/pybind/pybind.cpp.o -c /work/torchaudio/csrc/ffmpeg/pybind/pybind.cpp 2023-08-09T11:43:49.2895729Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/util/Exception.h:4, 2023-08-09T11:43:49.2896183Z from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:43:49.2896635Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:43:49.2897094Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:43:49.2897534Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:43:49.2898000Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:43:49.2898482Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:43:49.2898958Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:43:49.2899434Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:43:49.2899913Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:43:49.2900406Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:43:49.2900864Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/extension.h:4, 2023-08-09T11:43:49.2901284Z from /work/torchaudio/csrc/ffmpeg/pybind/pybind.cpp:1: 2023-08-09T11:43:49.2901912Z /work/torchaudio/csrc/ffmpeg/pybind/pybind.cpp: In function ‘int torchaudio::io::{anonymous}::{anonymous}::read_func(void*, uint8_t*, int)’: 2023-08-09T11:43:50.5438484Z /work/torchaudio/csrc/ffmpeg/pybind/pybind.cpp:125:19: warning: comparison of integer expressions of different signedness: ‘long unsigned int’ and ‘int’ [-Wsign-compare] 2023-08-09T11:43:50.5439083Z 125 | chunk_len <= request, 2023-08-09T11:43:50.5439380Z | ~~~~~~~~~~^~~~~~~~~~ 2023-08-09T11:43:50.5441493Z [89/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DTORCHAUDIO_FFMPEG_EXT_NAME=_torchaudio_ffmpeg4 -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -D_torchaudio_ffmpeg4_EXPORTS -I/work -I/work/ci_env/include/python3.10 -I/work/build/temp.linux-x86_64-cpython-310/_deps/f4-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/_torchaudio_ffmpeg4.dir/pybind/pybind.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/_torchaudio_ffmpeg4.dir/pybind/pybind.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/_torchaudio_ffmpeg4.dir/pybind/pybind.cpp.o -c /work/torchaudio/csrc/ffmpeg/pybind/pybind.cpp 2023-08-09T11:43:50.5442835Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/util/Exception.h:4, 2023-08-09T11:43:50.5443567Z from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:43:50.5444018Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:43:50.5444470Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:43:50.5444906Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:43:50.5445360Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:43:50.5445838Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:43:50.5446307Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:43:50.5446776Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:43:50.5447259Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:43:50.5448030Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:43:50.5448494Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/extension.h:4, 2023-08-09T11:43:50.5448837Z from /work/torchaudio/csrc/ffmpeg/pybind/pybind.cpp:1: 2023-08-09T11:43:50.5449415Z /work/torchaudio/csrc/ffmpeg/pybind/pybind.cpp: In function ‘int torchaudio::io::{anonymous}::{anonymous}::read_func(void*, uint8_t*, int)’: 2023-08-09T11:43:50.5450044Z /work/torchaudio/csrc/ffmpeg/pybind/pybind.cpp:125:19: warning: comparison of integer expressions of different signedness: ‘long unsigned int’ and ‘int’ [-Wsign-compare] 2023-08-09T11:43:50.5450433Z 125 | chunk_len <= request, 2023-08-09T11:43:50.5450640Z | ~~~~~~~~~~^~~~~~~~~~ 2023-08-09T11:43:50.5453400Z [90/94] : && /opt/rh/devtoolset-9/root/usr/bin/c++ -fPIC -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -shared -Wl,-soname,_torchaudio_ffmpeg5.so -o torchaudio/csrc/ffmpeg/_torchaudio_ffmpeg5.so torchaudio/csrc/ffmpeg/CMakeFiles/_torchaudio_ffmpeg5.dir/pybind/pybind.cpp.o -Wl,-rpath,/work/build/temp.linux-x86_64-cpython-310/torchaudio/csrc/ffmpeg:/work/ci_env/lib/python3.10/site-packages/torch/lib:/usr/local/cuda-11.8/lib64:/work/build/temp.linux-x86_64-cpython-310/_deps/f5-src/lib: torchaudio/csrc/ffmpeg/libtorchaudio_ffmpeg5.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_python.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch.so -Wl,--no-as-needed,"/work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_cpu.so" -Wl,--as-needed -Wl,--no-as-needed,"/work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_cuda.so" -Wl,--as-needed /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10_cuda.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10.so /usr/local/cuda-11.8/lib64/libcudart.so /usr/local/cuda-11.8/lib64/libnvToolsExt.so /usr/local/cuda-11.8/lib64/libcufft.so /usr/local/cuda-11.8/lib64/libcurand.so /usr/local/cuda-11.8/lib64/libcublas.so /usr/local/cuda-11.8/lib64/libcublasLt.so _deps/f5-src/lib/libavutil.so.57 _deps/f5-src/lib/libavcodec.so.59 _deps/f5-src/lib/libavformat.so.59 _deps/f5-src/lib/libavdevice.so.59 _deps/f5-src/lib/libavfilter.so.8 /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10_cuda.so /usr/local/cuda-11.8/lib64/libcudart.so && : 2023-08-09T11:43:50.5457770Z [91/94] : && /opt/rh/devtoolset-9/root/usr/bin/c++ -fPIC -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -shared -Wl,-soname,_torchaudio_ffmpeg4.so -o torchaudio/csrc/ffmpeg/_torchaudio_ffmpeg4.so torchaudio/csrc/ffmpeg/CMakeFiles/_torchaudio_ffmpeg4.dir/pybind/pybind.cpp.o -Wl,-rpath,/work/build/temp.linux-x86_64-cpython-310/torchaudio/csrc/ffmpeg:/work/ci_env/lib/python3.10/site-packages/torch/lib:/usr/local/cuda-11.8/lib64:/work/build/temp.linux-x86_64-cpython-310/_deps/f4-src/lib: torchaudio/csrc/ffmpeg/libtorchaudio_ffmpeg4.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_python.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch.so -Wl,--no-as-needed,"/work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_cpu.so" -Wl,--as-needed -Wl,--no-as-needed,"/work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_cuda.so" -Wl,--as-needed /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10_cuda.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10.so /usr/local/cuda-11.8/lib64/libcudart.so /usr/local/cuda-11.8/lib64/libnvToolsExt.so /usr/local/cuda-11.8/lib64/libcufft.so /usr/local/cuda-11.8/lib64/libcurand.so /usr/local/cuda-11.8/lib64/libcublas.so /usr/local/cuda-11.8/lib64/libcublasLt.so _deps/f4-src/lib/libavutil.so.56 _deps/f4-src/lib/libavcodec.so.58 _deps/f4-src/lib/libavformat.so.58 _deps/f4-src/lib/libavdevice.so.58 _deps/f4-src/lib/libavfilter.so.7 /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10_cuda.so /usr/local/cuda-11.8/lib64/libcudart.so && : 2023-08-09T11:43:50.5461123Z [92/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DTORCHAUDIO_FFMPEG_EXT_NAME=_torchaudio_ffmpeg6 -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -D_torchaudio_ffmpeg6_EXPORTS -I/work -I/work/ci_env/include/python3.10 -I/work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/_torchaudio_ffmpeg6.dir/pybind/pybind.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/_torchaudio_ffmpeg6.dir/pybind/pybind.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/_torchaudio_ffmpeg6.dir/pybind/pybind.cpp.o -c /work/torchaudio/csrc/ffmpeg/pybind/pybind.cpp 2023-08-09T11:43:50.5462432Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/util/Exception.h:4, 2023-08-09T11:43:50.5462938Z from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:43:50.5463394Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:43:50.5463841Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:43:50.5464272Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:43:50.5464731Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:43:50.5465212Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:43:50.5465700Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:43:50.5466172Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:43:50.5466655Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:43:50.5467144Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:44:25.3591724Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/extension.h:4, 2023-08-09T11:44:25.3592648Z from /work/torchaudio/csrc/ffmpeg/pybind/pybind.cpp:1: 2023-08-09T11:44:25.3593886Z /work/torchaudio/csrc/ffmpeg/pybind/pybind.cpp: In function ‘int torchaudio::io::{anonymous}::{anonymous}::read_func(void*, uint8_t*, int)’: 2023-08-09T11:44:25.3595542Z /work/torchaudio/csrc/ffmpeg/pybind/pybind.cpp:125:19: warning: comparison of integer expressions of different signedness: ‘long unsigned int’ and ‘int’ [-Wsign-compare] 2023-08-09T11:44:25.3596088Z 125 | chunk_len <= request, 2023-08-09T11:44:25.3596354Z | ~~~~~~~~~~^~~~~~~~~~ 2023-08-09T11:44:25.3598981Z [93/94] : && /opt/rh/devtoolset-9/root/usr/bin/c++ -fPIC -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -shared -Wl,-soname,_torchaudio_ffmpeg6.so -o torchaudio/csrc/ffmpeg/_torchaudio_ffmpeg6.so torchaudio/csrc/ffmpeg/CMakeFiles/_torchaudio_ffmpeg6.dir/pybind/pybind.cpp.o -Wl,-rpath,/work/build/temp.linux-x86_64-cpython-310/torchaudio/csrc/ffmpeg:/work/ci_env/lib/python3.10/site-packages/torch/lib:/usr/local/cuda-11.8/lib64:/work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/lib: torchaudio/csrc/ffmpeg/libtorchaudio_ffmpeg6.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_python.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch.so -Wl,--no-as-needed,"/work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_cpu.so" -Wl,--as-needed -Wl,--no-as-needed,"/work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_cuda.so" -Wl,--as-needed /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10_cuda.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10.so /usr/local/cuda-11.8/lib64/libcudart.so /usr/local/cuda-11.8/lib64/libnvToolsExt.so /usr/local/cuda-11.8/lib64/libcufft.so /usr/local/cuda-11.8/lib64/libcurand.so /usr/local/cuda-11.8/lib64/libcublas.so /usr/local/cuda-11.8/lib64/libcublasLt.so _deps/f6-src/lib/libavutil.so.58 _deps/f6-src/lib/libavcodec.so.60 _deps/f6-src/lib/libavformat.so.60 _deps/f6-src/lib/libavdevice.so.60 _deps/f6-src/lib/libavfilter.so.9 /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10_cuda.so /usr/local/cuda-11.8/lib64/libcudart.so && : 2023-08-09T11:44:25.3601190Z [93/94] cd /work/build/temp.linux-x86_64-cpython-310 && /work/ci_env/bin/cmake -P cmake_install.cmake 2023-08-09T11:44:25.3601552Z -- Install configuration: "Release" 2023-08-09T11:44:25.3601948Z -- Installing: /work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/libtorchaudio.so 2023-08-09T11:44:25.3602534Z -- Set runtime path of "/work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/libtorchaudio.so" to "" 2023-08-09T11:44:25.3603002Z -- Installing: /work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/_torchaudio.so 2023-08-09T11:44:25.3603467Z -- Set runtime path of "/work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/_torchaudio.so" to "" 2023-08-09T11:44:25.3604056Z -- Installing: /work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/libtorchaudio_sox.so 2023-08-09T11:44:25.3604749Z -- Set runtime path of "/work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/libtorchaudio_sox.so" to "" 2023-08-09T11:44:25.3605408Z -- Installing: /work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/_torchaudio_sox.so 2023-08-09T11:44:25.3606094Z -- Set runtime path of "/work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/_torchaudio_sox.so" to "" 2023-08-09T11:44:25.3606748Z -- Installing: /work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/libtorchaudio_ffmpeg4.so 2023-08-09T11:44:25.3607245Z -- Set runtime path of "/work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/libtorchaudio_ffmpeg4.so" to "" 2023-08-09T11:44:25.3608146Z -- Installing: /work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/libtorchaudio_ffmpeg5.so 2023-08-09T11:44:25.3608655Z -- Set runtime path of "/work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/libtorchaudio_ffmpeg5.so" to "" 2023-08-09T11:44:25.3609125Z -- Installing: /work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/libtorchaudio_ffmpeg6.so 2023-08-09T11:44:25.3609658Z -- Set runtime path of "/work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/libtorchaudio_ffmpeg6.so" to "" 2023-08-09T11:44:25.3610263Z -- Installing: /work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/_torchaudio_ffmpeg4.so 2023-08-09T11:44:25.3610745Z -- Set runtime path of "/work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/_torchaudio_ffmpeg4.so" to "" 2023-08-09T11:44:25.3611213Z -- Installing: /work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/_torchaudio_ffmpeg5.so 2023-08-09T11:44:25.3611695Z -- Set runtime path of "/work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/_torchaudio_ffmpeg5.so" to "" 2023-08-09T11:44:25.3612164Z -- Installing: /work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/_torchaudio_ffmpeg6.so 2023-08-09T11:44:25.3612644Z -- Set runtime path of "/work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/_torchaudio_ffmpeg6.so" to "" 2023-08-09T11:44:25.3613120Z -- Installing: /work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/libctc_prefix_decoder.so 2023-08-09T11:44:25.3613595Z -- Set runtime path of "/work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/libctc_prefix_decoder.so" to "" 2023-08-09T11:44:25.3614072Z -- Installing: /work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/pybind11_prefixctc.so 2023-08-09T11:44:25.3614556Z -- Set runtime path of "/work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/pybind11_prefixctc.so" to "" 2023-08-09T11:44:25.3615039Z copying build/lib.linux-x86_64-cpython-310/torchaudio/lib/libtorchaudio.so -> torchaudio/lib 2023-08-09T11:44:25.3615682Z copying build/lib.linux-x86_64-cpython-310/torchaudio/lib/_torchaudio.so -> torchaudio/lib 2023-08-09T11:44:25.3616195Z copying build/lib.linux-x86_64-cpython-310/torchaudio/lib/libtorchaudio_sox.so -> torchaudio/lib 2023-08-09T11:44:25.3616668Z copying build/lib.linux-x86_64-cpython-310/torchaudio/lib/_torchaudio_sox.so -> torchaudio/lib 2023-08-09T11:44:25.3617136Z copying build/lib.linux-x86_64-cpython-310/torchaudio/lib/libctc_prefix_decoder.so -> torchaudio/lib 2023-08-09T11:44:25.3617615Z copying build/lib.linux-x86_64-cpython-310/torchaudio/lib/pybind11_prefixctc.so -> torchaudio/lib 2023-08-09T11:44:25.3618099Z copying build/lib.linux-x86_64-cpython-310/torchaudio/lib/libtorchaudio_ffmpeg4.so -> torchaudio/lib 2023-08-09T11:44:25.3618576Z copying build/lib.linux-x86_64-cpython-310/torchaudio/lib/_torchaudio_ffmpeg4.so -> torchaudio/lib 2023-08-09T11:44:25.3619133Z copying build/lib.linux-x86_64-cpython-310/torchaudio/lib/libtorchaudio_ffmpeg5.so -> torchaudio/lib 2023-08-09T11:44:25.3619613Z copying build/lib.linux-x86_64-cpython-310/torchaudio/lib/_torchaudio_ffmpeg5.so -> torchaudio/lib 2023-08-09T11:44:25.3620083Z copying build/lib.linux-x86_64-cpython-310/torchaudio/lib/libtorchaudio_ffmpeg6.so -> torchaudio/lib 2023-08-09T11:44:25.3620555Z copying build/lib.linux-x86_64-cpython-310/torchaudio/lib/_torchaudio_ffmpeg6.so -> torchaudio/lib 2023-08-09T11:44:25.3620998Z Creating /work/ci_env/lib/python3.10/site-packages/torchaudio.egg-link (link to .) 2023-08-09T11:44:25.3621394Z Adding torchaudio 2.1.0a0+fe9b9ff to easy-install.pth file 2023-08-09T11:44:25.3621578Z 2023-08-09T11:44:25.3621658Z Installed /work 2023-08-09T11:44:25.3621970Z Successfully installed fsspec-2023.6.0 torchaudio-2.1.0a0+fe9b9ff 2023-08-09T11:44:25.3622641Z WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv 2023-08-09T11:44:25.3623178Z + echo ::endgroup:: 2023-08-09T11:44:25.3623658Z ##[endgroup] 2023-08-09T11:44:25.3623913Z + echo '::group::Build FFmpeg' 2023-08-09T11:44:25.3624328Z ##[group]Build FFmpeg 2023-08-09T11:44:25.3624548Z + .github/scripts/ffmpeg/build_gpu.sh 2023-08-09T11:44:25.3624770Z + revision=6.0 2023-08-09T11:44:25.3624982Z + codec_header_version=n12.0.16.0 2023-08-09T11:44:25.3625203Z + prefix=/work/ci_env 2023-08-09T11:44:25.3625395Z + ccap=86 2023-08-09T11:44:25.3625736Z + git clone --quiet https://git.videolan.org/git/ffmpeg/nv-codec-headers.git 2023-08-09T11:44:25.3626115Z + cd nv-codec-headers 2023-08-09T11:44:25.3626325Z + git checkout n12.0.16.0 2023-08-09T11:44:25.3626581Z Note: switching to 'n12.0.16.0'. 2023-08-09T11:44:25.3626721Z 2023-08-09T11:44:25.3626924Z You are in 'detached HEAD' state. You can look around, make experimental 2023-08-09T11:44:25.3627270Z changes and commit them, and you can discard any commits you make in this 2023-08-09T11:44:25.3627606Z state without impacting any branches by switching back to a branch. 2023-08-09T11:44:25.3627783Z 2023-08-09T11:44:25.3627935Z If you want to create a new branch to retain commits you create, you may 2023-08-09T11:44:25.3628304Z do so (now or later) by using -c with the switch command. Example: 2023-08-09T11:44:25.3628479Z 2023-08-09T11:44:25.3628616Z git switch -c 2023-08-09T11:44:25.3628760Z 2023-08-09T11:44:25.3628847Z Or undo this operation with: 2023-08-09T11:44:25.3628987Z 2023-08-09T11:44:25.3629065Z git switch - 2023-08-09T11:44:25.3629188Z 2023-08-09T11:44:25.3629354Z Turn off this advice by setting config variable advice.detachedHead to false 2023-08-09T11:44:25.3629552Z 2023-08-09T11:44:25.3629659Z HEAD is now at c5e4af7 Add cuArrayCreate 2023-08-09T11:44:25.3629894Z + make PREFIX=/work/ci_env install 2023-08-09T11:44:25.3630221Z sed 's#@@PREFIX@@#/work/ci_env#' ffnvcodec.pc.in > ffnvcodec.pc 2023-08-09T11:44:25.3630570Z install -m 0755 -d '/work/ci_env/include/ffnvcodec' 2023-08-09T11:44:25.3630924Z install -m 0644 include/ffnvcodec/*.h '/work/ci_env/include/ffnvcodec' 2023-08-09T11:44:25.3631259Z install -m 0755 -d '/work/ci_env/lib/pkgconfig' 2023-08-09T11:44:25.3631589Z install -m 0644 ffnvcodec.pc '/work/ci_env/lib/pkgconfig' 2023-08-09T11:44:25.3632053Z + conda install --quiet --yes -c conda-forge yasm x264 gnutls pkg-config lame libopus libvpx openh264 openssl x264 2023-08-09T11:44:25.3632443Z Collecting package metadata (current_repodata.json): ...working... done 2023-08-09T11:44:25.3632733Z Solving environment: ...working... done 2023-08-09T11:44:25.3632889Z 2023-08-09T11:44:25.3632972Z ## Package Plan ## 2023-08-09T11:44:25.3633098Z 2023-08-09T11:44:25.3633194Z environment location: /work/ci_env 2023-08-09T11:44:25.3633341Z 2023-08-09T11:44:25.3633428Z added / updated specs: 2023-08-09T11:44:25.3633646Z - gnutls 2023-08-09T11:44:25.3633837Z - lame 2023-08-09T11:44:25.3634103Z - libopus 2023-08-09T11:44:25.3634312Z - libvpx 2023-08-09T11:44:25.3634513Z - openh264 2023-08-09T11:44:25.3634716Z - openssl 2023-08-09T11:44:25.3634927Z - pkg-config 2023-08-09T11:44:25.3635124Z - x264 2023-08-09T11:44:25.3635317Z - yasm 2023-08-09T11:44:40.9832231Z 2023-08-09T11:44:40.9832470Z 2023-08-09T11:44:40.9833062Z The following packages will be downloaded: 2023-08-09T11:44:40.9833342Z 2023-08-09T11:44:40.9833481Z package | build 2023-08-09T11:44:40.9833980Z ---------------------------|----------------- 2023-08-09T11:44:40.9834583Z ca-certificates-2023.7.22 | hbcca054_0 146 KB conda-forge 2023-08-09T11:44:40.9835118Z gnutls-3.6.13 | h85f3911_1 2.0 MB conda-forge 2023-08-09T11:44:40.9835494Z lame-3.100 | h7f98852_1001 496 KB conda-forge 2023-08-09T11:44:40.9835950Z libopus-1.3.1 | h7f98852_1 255 KB conda-forge 2023-08-09T11:44:40.9836437Z libvpx-1.11.0 | h9c3ff4c_3 1.1 MB conda-forge 2023-08-09T11:44:40.9836787Z nettle-3.6 | he412f7d_0 6.5 MB conda-forge 2023-08-09T11:44:40.9843998Z openh264-2.1.1 | h4ff587b_0 711 KB 2023-08-09T11:44:40.9844377Z pkg-config-0.29.2 | h36c2ea0_1008 120 KB conda-forge 2023-08-09T11:44:40.9844717Z x264-1!157.20191217 | h7b6447c_0 922 KB 2023-08-09T11:44:40.9845040Z yasm-1.3.0 | h7f98852_1003 1.4 MB conda-forge 2023-08-09T11:44:40.9845652Z ------------------------------------------------------------ 2023-08-09T11:44:40.9845941Z Total: 13.6 MB 2023-08-09T11:44:40.9846080Z 2023-08-09T11:44:40.9846201Z The following NEW packages will be INSTALLED: 2023-08-09T11:44:40.9846361Z 2023-08-09T11:44:40.9846649Z gnutls conda-forge/linux-64::gnutls-3.6.13-h85f3911_1 2023-08-09T11:44:40.9847040Z lame conda-forge/linux-64::lame-3.100-h7f98852_1001 2023-08-09T11:44:40.9847674Z libopus conda-forge/linux-64::libopus-1.3.1-h7f98852_1 2023-08-09T11:44:40.9848127Z libvpx conda-forge/linux-64::libvpx-1.11.0-h9c3ff4c_3 2023-08-09T11:44:40.9848505Z nettle conda-forge/linux-64::nettle-3.6-he412f7d_0 2023-08-09T11:44:40.9848881Z openh264 pkgs/main/linux-64::openh264-2.1.1-h4ff587b_0 2023-08-09T11:44:40.9849292Z pkg-config conda-forge/linux-64::pkg-config-0.29.2-h36c2ea0_1008 2023-08-09T11:44:40.9849704Z x264 pkgs/main/linux-64::x264-1!157.20191217-h7b6447c_0 2023-08-09T11:44:40.9850073Z yasm conda-forge/linux-64::yasm-1.3.0-h7f98852_1003 2023-08-09T11:44:40.9850227Z 2023-08-09T11:44:40.9850339Z The following packages will be UPDATED: 2023-08-09T11:44:40.9850491Z 2023-08-09T11:44:40.9850825Z ca-certificates pkgs/main::ca-certificates-2023.05.30~ --> conda-forge::ca-certificates-2023.7.22-hbcca054_0 2023-08-09T11:44:40.9851075Z 2023-08-09T11:44:40.9851080Z 2023-08-09T11:44:40.9851193Z Preparing transaction: ...working... done 2023-08-09T11:44:40.9851452Z Verifying transaction: ...working... done 2023-08-09T11:44:40.9851696Z Executing transaction: ...working... done 2023-08-09T11:44:40.9852066Z + wget -q https://github.com/FFmpeg/FFmpeg/archive/refs/tags/n6.0.tar.gz 2023-08-09T11:44:40.9852369Z + tar -xf n6.0.tar.gz 2023-08-09T11:44:40.9852587Z + cd ./FFmpeg-n6.0 2023-08-09T11:44:40.9852783Z + export revision=6.0 2023-08-09T11:44:40.9852977Z + revision=6.0 2023-08-09T11:44:40.9853992Z + ./configure --prefix=/work/ci_env --extra-cflags=-I/work/ci_env/include --extra-ldflags=-L/work/ci_env/lib '--nvccflags=-gencode arch=compute_86,code=sm_86 -O2' --disable-doc --enable-rpath --disable-static --enable-protocol=https --enable-gnutls --enable-shared --enable-gpl --enable-nonfree --enable-libmp3lame --enable-libx264 --enable-cuda-nvcc --enable-nvenc --enable-cuvid --enable-nvdec 2023-08-09T11:44:40.9854727Z install prefix /work/ci_env 2023-08-09T11:44:40.9854953Z source path . 2023-08-09T11:44:40.9855162Z C compiler gcc 2023-08-09T11:44:40.9855453Z C library glibc 2023-08-09T11:44:40.9855663Z ARCH x86 (generic) 2023-08-09T11:44:40.9855954Z big-endian no 2023-08-09T11:44:40.9856173Z runtime cpu detection yes 2023-08-09T11:44:40.9856398Z standalone assembly yes 2023-08-09T11:44:40.9856608Z x86 assembler yasm 2023-08-09T11:44:40.9856813Z MMX enabled yes 2023-08-09T11:44:40.9857032Z MMXEXT enabled yes 2023-08-09T11:44:40.9857234Z 3DNow! enabled yes 2023-08-09T11:44:40.9857445Z 3DNow! extended enabled yes 2023-08-09T11:44:40.9857656Z SSE enabled yes 2023-08-09T11:44:40.9857854Z SSSE3 enabled yes 2023-08-09T11:44:40.9858058Z AESNI enabled yes 2023-08-09T11:44:40.9858272Z AVX enabled yes 2023-08-09T11:44:40.9858474Z AVX2 enabled yes 2023-08-09T11:44:40.9858705Z AVX-512 enabled yes 2023-08-09T11:44:40.9858947Z AVX-512ICL enabled yes 2023-08-09T11:44:40.9859160Z XOP enabled yes 2023-08-09T11:44:40.9859356Z FMA3 enabled yes 2023-08-09T11:44:40.9859557Z FMA4 enabled yes 2023-08-09T11:44:40.9859769Z i686 features enabled yes 2023-08-09T11:44:40.9859970Z CMOV is fast yes 2023-08-09T11:44:40.9860173Z EBX available yes 2023-08-09T11:44:40.9860379Z EBP available yes 2023-08-09T11:44:40.9860661Z debug symbols yes 2023-08-09T11:44:40.9860868Z strip symbols yes 2023-08-09T11:44:40.9861081Z optimize for size no 2023-08-09T11:44:40.9861289Z optimizations yes 2023-08-09T11:44:40.9861494Z static no 2023-08-09T11:44:40.9861695Z shared yes 2023-08-09T11:44:40.9861900Z postprocessing support yes 2023-08-09T11:44:40.9862131Z network support yes 2023-08-09T11:44:40.9862354Z threading support pthreads 2023-08-09T11:44:40.9862581Z safe bitstream reader yes 2023-08-09T11:44:40.9862795Z texi2html enabled no 2023-08-09T11:44:40.9863008Z perl enabled yes 2023-08-09T11:44:40.9863209Z pod2man enabled yes 2023-08-09T11:44:40.9863421Z makeinfo enabled no 2023-08-09T11:44:40.9863639Z makeinfo supports HTML no 2023-08-09T11:44:40.9863845Z xmllint enabled yes 2023-08-09T11:44:40.9863974Z 2023-08-09T11:44:40.9864056Z External libraries: 2023-08-09T11:44:40.9864292Z bzlib libmp3lame zlib 2023-08-09T11:44:40.9864516Z gnutls libx264 2023-08-09T11:44:40.9864708Z iconv lzma 2023-08-09T11:44:40.9864831Z 2023-08-09T11:44:40.9864963Z External libraries providing hardware acceleration: 2023-08-09T11:44:40.9865226Z cuda cuvid nvenc 2023-08-09T11:44:40.9865449Z cuda_llvm ffnvcodec 2023-08-09T11:44:40.9865661Z cuda_nvcc nvdec 2023-08-09T11:44:40.9865786Z 2023-08-09T11:44:40.9865861Z Libraries: 2023-08-09T11:44:40.9866076Z avcodec avformat swresample 2023-08-09T11:44:40.9866334Z avdevice avutil swscale 2023-08-09T11:44:40.9866561Z avfilter postproc 2023-08-09T11:44:40.9866696Z 2023-08-09T11:44:40.9866762Z Programs: 2023-08-09T11:44:40.9866951Z ffmpeg ffprobe 2023-08-09T11:44:40.9867078Z 2023-08-09T11:44:40.9867158Z Enabled decoders: 2023-08-09T11:44:40.9867380Z aac fits pgmyuv 2023-08-09T11:44:40.9867615Z aac_fixed flac pgssub 2023-08-09T11:44:40.9867860Z aac_latm flashsv pgx 2023-08-09T11:44:40.9868101Z aasc flashsv2 phm 2023-08-09T11:44:40.9868334Z ac3 flic photocd 2023-08-09T11:44:40.9868629Z ac3_fixed flv pictor 2023-08-09T11:44:40.9868879Z acelp_kelvin fmvc pixlet 2023-08-09T11:44:40.9869114Z adpcm_4xm fourxm pjs 2023-08-09T11:44:40.9869357Z adpcm_adx fraps png 2023-08-09T11:44:40.9869600Z adpcm_afc frwu ppm 2023-08-09T11:44:40.9869831Z adpcm_agm ftr prores 2023-08-09T11:44:40.9870073Z adpcm_aica g2m prosumer 2023-08-09T11:44:40.9870319Z adpcm_argo g723_1 psd 2023-08-09T11:44:40.9870557Z adpcm_ct g729 ptx 2023-08-09T11:44:40.9870785Z adpcm_dtk gdv qcelp 2023-08-09T11:44:40.9871019Z adpcm_ea gem qdm2 2023-08-09T11:44:40.9871262Z adpcm_ea_maxis_xa gif qdmc 2023-08-09T11:44:40.9871515Z adpcm_ea_r1 gremlin_dpcm qdraw 2023-08-09T11:44:40.9871761Z adpcm_ea_r2 gsm qoi 2023-08-09T11:44:40.9871997Z adpcm_ea_r3 gsm_ms qpeg 2023-08-09T11:44:40.9872232Z adpcm_ea_xas h261 qtrle 2023-08-09T11:44:40.9872465Z adpcm_g722 h263 r10k 2023-08-09T11:44:40.9872697Z adpcm_g726 h263i r210 2023-08-09T11:44:40.9872926Z adpcm_g726le h263p ra_144 2023-08-09T11:44:40.9873169Z adpcm_ima_acorn h264 ra_288 2023-08-09T11:44:40.9873475Z adpcm_ima_alp h264_cuvid ralf 2023-08-09T11:44:40.9873724Z adpcm_ima_amv hap rasc 2023-08-09T11:44:40.9873966Z adpcm_ima_apc hca rawvideo 2023-08-09T11:44:40.9874220Z adpcm_ima_apm hcom realtext 2023-08-09T11:44:40.9874482Z adpcm_ima_cunning hdr rka 2023-08-09T11:44:40.9874721Z adpcm_ima_dat4 hevc rl2 2023-08-09T11:44:40.9874973Z adpcm_ima_dk3 hevc_cuvid roq 2023-08-09T11:44:40.9875229Z adpcm_ima_dk4 hnm4_video roq_dpcm 2023-08-09T11:44:40.9875476Z adpcm_ima_ea_eacs hq_hqa rpza 2023-08-09T11:44:40.9875726Z adpcm_ima_ea_sead hqx rscc 2023-08-09T11:44:40.9875973Z adpcm_ima_iss huffyuv rv10 2023-08-09T11:44:40.9876212Z adpcm_ima_moflex hymt rv20 2023-08-09T11:44:40.9876451Z adpcm_ima_mtf iac rv30 2023-08-09T11:44:40.9876700Z adpcm_ima_oki idcin rv40 2023-08-09T11:44:40.9876947Z adpcm_ima_qt idf s302m 2023-08-09T11:44:40.9877183Z adpcm_ima_rad iff_ilbm sami 2023-08-09T11:44:40.9877428Z adpcm_ima_smjpeg ilbc sanm 2023-08-09T11:44:40.9877672Z adpcm_ima_ssi imc sbc 2023-08-09T11:44:40.9877903Z adpcm_ima_wav imm4 scpr 2023-08-09T11:44:40.9878154Z adpcm_ima_ws imm5 screenpresso 2023-08-09T11:44:40.9878414Z adpcm_ms indeo2 sdx2_dpcm 2023-08-09T11:44:40.9878651Z adpcm_mtaf indeo3 sga 2023-08-09T11:44:40.9878887Z adpcm_psx indeo4 sgi 2023-08-09T11:44:40.9879130Z adpcm_sbpro_2 indeo5 sgirle 2023-08-09T11:44:40.9879390Z adpcm_sbpro_3 interplay_acm sheervideo 2023-08-09T11:44:40.9879663Z adpcm_sbpro_4 interplay_dpcm shorten 2023-08-09T11:44:40.9879937Z adpcm_swf interplay_video simbiosis_imx 2023-08-09T11:44:40.9880204Z adpcm_thp ipu sipr 2023-08-09T11:44:40.9880440Z adpcm_thp_le jacosub siren 2023-08-09T11:44:40.9880770Z adpcm_vima jpeg2000 smackaud 2023-08-09T11:44:40.9881021Z adpcm_xa jpegls smacker 2023-08-09T11:44:40.9881255Z adpcm_xmd jv smc 2023-08-09T11:44:40.9881503Z adpcm_yamaha kgv1 smvjpeg 2023-08-09T11:44:40.9881747Z adpcm_zork kmvc snow 2023-08-09T11:44:40.9881983Z agm lagarith sol_dpcm 2023-08-09T11:44:40.9882220Z aic loco sonic 2023-08-09T11:44:40.9882448Z alac lscr sp5x 2023-08-09T11:44:40.9882685Z alias_pix m101 speedhq 2023-08-09T11:44:40.9882916Z als mace3 speex 2023-08-09T11:44:40.9883150Z amrnb mace6 srgc 2023-08-09T11:44:40.9883389Z amrwb magicyuv srt 2023-08-09T11:44:40.9883624Z amv mdec ssa 2023-08-09T11:44:40.9883859Z anm media100 stl 2023-08-09T11:44:40.9884104Z ansi metasound subrip 2023-08-09T11:44:40.9884347Z anull microdvd subviewer 2023-08-09T11:44:40.9884605Z apac mimic subviewer1 2023-08-09T11:44:41.0153248Z ape misc4 sunrast 2023-08-09T11:44:41.0153512Z apng mjpeg svq1 2023-08-09T11:44:41.0153752Z aptx mjpeg_cuvid svq3 2023-08-09T11:44:41.0154127Z aptx_hd mjpegb tak 2023-08-09T11:44:41.0154379Z arbc mlp targa 2023-08-09T11:44:41.0154616Z argo mmvideo targa_y216 2023-08-09T11:44:41.0154934Z ass mobiclip tdsc 2023-08-09T11:44:41.0155257Z asv1 motionpixels text 2023-08-09T11:44:41.0155569Z asv2 movtext theora 2023-08-09T11:44:41.0155844Z atrac1 mp1 thp 2023-08-09T11:44:41.0156152Z atrac3 mp1float tiertexseqvideo 2023-08-09T11:44:41.0156486Z atrac3al mp2 tiff 2023-08-09T11:44:41.0156775Z atrac3p mp2float tmv 2023-08-09T11:44:41.0157030Z atrac3pal mp3 truehd 2023-08-09T11:44:41.0157276Z atrac9 mp3adu truemotion1 2023-08-09T11:44:41.0157539Z aura mp3adufloat truemotion2 2023-08-09T11:44:41.0157786Z aura2 mp3float truemotion2rt 2023-08-09T11:44:41.0158035Z av1 mp3on4 truespeech 2023-08-09T11:44:41.0158280Z av1_cuvid mp3on4float tscc 2023-08-09T11:44:41.0158516Z avrn mpc7 tscc2 2023-08-09T11:44:41.0158747Z avrp mpc8 tta 2023-08-09T11:44:41.0158983Z avs mpeg1_cuvid twinvq 2023-08-09T11:44:41.0159211Z avui mpeg1video txd 2023-08-09T11:44:41.0159445Z ayuv mpeg2_cuvid ulti 2023-08-09T11:44:41.0159690Z bethsoftvid mpeg2video utvideo 2023-08-09T11:44:41.0159924Z bfi mpeg4 v210 2023-08-09T11:44:41.0160159Z bink mpeg4_cuvid v210x 2023-08-09T11:44:41.0160410Z binkaudio_dct mpegvideo v308 2023-08-09T11:44:41.0160663Z binkaudio_rdft mpl2 v408 2023-08-09T11:44:41.0160891Z bintext msa1 v410 2023-08-09T11:44:41.0161123Z bitpacked mscc vb 2023-08-09T11:44:41.0161364Z bmp msmpeg4v1 vble 2023-08-09T11:44:41.0161732Z bmv_audio msmpeg4v2 vbn 2023-08-09T11:44:41.0162048Z bmv_video msmpeg4v3 vc1 2023-08-09T11:44:41.0162339Z bonk msnsiren vc1_cuvid 2023-08-09T11:44:41.0162589Z brender_pix msp2 vc1image 2023-08-09T11:44:41.0162831Z c93 msrle vcr1 2023-08-09T11:44:41.0163065Z cavs mss1 vmdaudio 2023-08-09T11:44:41.0163307Z cbd2_dpcm mss2 vmdvideo 2023-08-09T11:44:41.0163540Z ccaption msvideo1 vmnc 2023-08-09T11:44:41.0163808Z cdgraphics mszh vnull 2023-08-09T11:44:41.0164055Z cdtoons mts2 vorbis 2023-08-09T11:44:41.0164283Z cdxl mv30 vp3 2023-08-09T11:44:41.0164517Z cfhd mvc1 vp4 2023-08-09T11:44:41.0164759Z cinepak mvc2 vp5 2023-08-09T11:44:41.0165010Z clearvideo mvdv vp6 2023-08-09T11:44:41.0165332Z cljr mvha vp6a 2023-08-09T11:44:41.0165689Z cllc mwsc vp6f 2023-08-09T11:44:41.0166013Z comfortnoise mxpeg vp7 2023-08-09T11:44:41.0166260Z cook nellymoser vp8 2023-08-09T11:44:41.0166511Z cpia notchlc vp8_cuvid 2023-08-09T11:44:41.0166767Z cri nuv vp9 2023-08-09T11:44:41.0167098Z cscd on2avc vp9_cuvid 2023-08-09T11:44:41.0167338Z cyuv opus vplayer 2023-08-09T11:44:41.0167758Z dca paf_audio vqa 2023-08-09T11:44:41.0168006Z dds paf_video vqc 2023-08-09T11:44:41.0168248Z derf_dpcm pam wady_dpcm 2023-08-09T11:44:41.0168502Z dfa pbm wavarc 2023-08-09T11:44:41.0168746Z dfpwm pcm_alaw wavpack 2023-08-09T11:44:41.0168982Z dirac pcm_bluray wbmp 2023-08-09T11:44:41.0169226Z dnxhd pcm_dvd wcmv 2023-08-09T11:44:41.0169464Z dolby_e pcm_f16le webp 2023-08-09T11:44:41.0169695Z dpx pcm_f24le webvtt 2023-08-09T11:44:41.0169946Z dsd_lsbf pcm_f32be wmalossless 2023-08-09T11:44:41.0170204Z dsd_lsbf_planar pcm_f32le wmapro 2023-08-09T11:44:41.0170461Z dsd_msbf pcm_f64be wmav1 2023-08-09T11:44:41.0170731Z dsd_msbf_planar pcm_f64le wmav2 2023-08-09T11:44:41.0171016Z dsicinaudio pcm_lxf wmavoice 2023-08-09T11:44:41.0171276Z dsicinvideo pcm_mulaw wmv1 2023-08-09T11:44:41.0171522Z dss_sp pcm_s16be wmv2 2023-08-09T11:44:41.0171765Z dst pcm_s16be_planar wmv3 2023-08-09T11:44:41.0172010Z dvaudio pcm_s16le wmv3image 2023-08-09T11:44:41.0172252Z dvbsub pcm_s16le_planar wnv1 2023-08-09T11:44:41.0172510Z dvdsub pcm_s24be wrapped_avframe 2023-08-09T11:44:41.0172774Z dvvideo pcm_s24daud ws_snd1 2023-08-09T11:44:41.0173023Z dxa pcm_s24le xan_dpcm 2023-08-09T11:44:41.0173262Z dxtory pcm_s24le_planar xan_wc3 2023-08-09T11:44:41.0173509Z dxv pcm_s32be xan_wc4 2023-08-09T11:44:41.0173740Z eac3 pcm_s32le xbin 2023-08-09T11:44:41.0173968Z eacmv pcm_s32le_planar xbm 2023-08-09T11:44:41.0174213Z eamad pcm_s64be xface 2023-08-09T11:44:41.0174547Z eatgq pcm_s64le xl 2023-08-09T11:44:41.0174782Z eatgv pcm_s8 xma1 2023-08-09T11:44:41.0175019Z eatqi pcm_s8_planar xma2 2023-08-09T11:44:41.0175344Z eightbps pcm_sga xpm 2023-08-09T11:44:41.0175591Z eightsvx_exp pcm_u16be xsub 2023-08-09T11:44:41.0175837Z eightsvx_fib pcm_u16le xwd 2023-08-09T11:44:41.0176086Z escape124 pcm_u24be y41p 2023-08-09T11:44:41.0176328Z escape130 pcm_u24le ylc 2023-08-09T11:44:41.0176564Z evrc pcm_u32be yop 2023-08-09T11:44:41.0176795Z exr pcm_u32le yuv4 2023-08-09T11:44:41.0177032Z fastaudio pcm_u8 zero12v 2023-08-09T11:44:41.0177273Z ffv1 pcm_vidc zerocodec 2023-08-09T11:44:41.0177524Z ffvhuff pcx zlib 2023-08-09T11:44:41.0177777Z ffwavesynth pfm zmbv 2023-08-09T11:44:41.0177990Z fic pgm 2023-08-09T11:44:41.0178117Z 2023-08-09T11:44:41.0178202Z Enabled encoders: 2023-08-09T11:44:41.0178428Z a64multi h264_nvenc phm 2023-08-09T11:44:41.0178661Z a64multi5 hdr png 2023-08-09T11:44:41.0178900Z aac hevc_nvenc ppm 2023-08-09T11:44:41.0179144Z ac3 huffyuv prores 2023-08-09T11:44:41.0179398Z ac3_fixed jpeg2000 prores_aw 2023-08-09T11:44:41.0179720Z adpcm_adx jpegls prores_ks 2023-08-09T11:44:41.0179975Z adpcm_argo libmp3lame qoi 2023-08-09T11:44:41.0180235Z adpcm_g722 libx264 qtrle 2023-08-09T11:44:41.0180476Z adpcm_g726 libx264rgb r10k 2023-08-09T11:44:41.0180738Z adpcm_g726le ljpeg r210 2023-08-09T11:44:41.0180995Z adpcm_ima_alp magicyuv ra_144 2023-08-09T11:44:41.0181247Z adpcm_ima_amv mjpeg rawvideo 2023-08-09T11:44:41.0181499Z adpcm_ima_apm mlp roq 2023-08-09T11:44:41.0181814Z adpcm_ima_qt movtext roq_dpcm 2023-08-09T11:44:41.0182120Z adpcm_ima_ssi mp2 rpza 2023-08-09T11:44:41.0182446Z adpcm_ima_wav mp2fixed rv10 2023-08-09T11:44:41.0182779Z adpcm_ima_ws mpeg1video rv20 2023-08-09T11:44:41.0183094Z adpcm_ms mpeg2video s302m 2023-08-09T11:44:41.0183380Z adpcm_swf mpeg4 sbc 2023-08-09T11:44:41.0183674Z adpcm_yamaha msmpeg4v2 sgi 2023-08-09T11:44:41.0183980Z alac msmpeg4v3 smc 2023-08-09T11:44:41.0184276Z alias_pix msvideo1 snow 2023-08-09T11:44:41.0184594Z amv nellymoser sonic 2023-08-09T11:44:41.0184906Z anull opus sonic_ls 2023-08-09T11:44:41.0185204Z apng pam speedhq 2023-08-09T11:44:41.0185516Z aptx pbm srt 2023-08-09T11:44:41.0185817Z aptx_hd pcm_alaw ssa 2023-08-09T11:44:41.0186156Z ass pcm_bluray subrip 2023-08-09T11:44:41.0186466Z asv1 pcm_dvd sunrast 2023-08-09T11:44:41.0186785Z asv2 pcm_f32be svq1 2023-08-09T11:44:41.0187121Z av1_nvenc pcm_f32le targa 2023-08-09T11:44:41.0187427Z avrp pcm_f64be text 2023-08-09T11:44:41.0187738Z avui pcm_f64le tiff 2023-08-09T11:44:41.0188023Z ayuv pcm_mulaw truehd 2023-08-09T11:44:41.0188347Z bitpacked pcm_s16be tta 2023-08-09T11:44:41.0188595Z bmp pcm_s16be_planar ttml 2023-08-09T11:44:41.0188836Z cfhd pcm_s16le utvideo 2023-08-09T11:44:41.0189080Z cinepak pcm_s16le_planar v210 2023-08-09T11:44:41.0189319Z cljr pcm_s24be v308 2023-08-09T11:44:41.0189560Z comfortnoise pcm_s24daud v408 2023-08-09T11:44:41.0189797Z dca pcm_s24le v410 2023-08-09T11:44:41.0190024Z dfpwm pcm_s24le_planar vbn 2023-08-09T11:44:41.0190273Z dnxhd pcm_s32be vc2 2023-08-09T11:44:41.0190507Z dpx pcm_s32le vnull 2023-08-09T11:44:41.0190744Z dvbsub pcm_s32le_planar vorbis 2023-08-09T11:44:41.0190989Z dvdsub pcm_s64be wavpack 2023-08-09T11:44:41.0191237Z dvvideo pcm_s64le wbmp 2023-08-09T11:44:41.0191462Z eac3 pcm_s8 webvtt 2023-08-09T11:44:41.0191697Z exr pcm_s8_planar wmav1 2023-08-09T11:44:41.0191935Z ffv1 pcm_u16be wmav2 2023-08-09T11:44:41.0192158Z ffvhuff pcm_u16le wmv1 2023-08-09T11:44:41.0192388Z fits pcm_u24be wmv2 2023-08-09T11:44:41.0192640Z flac pcm_u24le wrapped_avframe 2023-08-09T11:44:41.0192890Z flashsv pcm_u32be xbm 2023-08-09T11:44:41.0193190Z flashsv2 pcm_u32le xface 2023-08-09T11:44:41.0193426Z flv pcm_u8 xsub 2023-08-09T11:44:41.0991560Z g723_1 pcm_vidc xwd 2023-08-09T11:44:41.0991836Z gif pcx y41p 2023-08-09T11:44:41.0992076Z h261 pfm yuv4 2023-08-09T11:44:41.0992319Z h263 pgm zlib 2023-08-09T11:44:41.0992539Z h263p pgmyuv zmbv 2023-08-09T11:44:41.0992679Z 2023-08-09T11:44:41.0992765Z Enabled hwaccels: 2023-08-09T11:44:41.0993001Z av1_nvdec mpeg1_nvdec vp8_nvdec 2023-08-09T11:44:41.0993298Z h264_nvdec mpeg2_nvdec vp9_nvdec 2023-08-09T11:44:41.0993587Z hevc_nvdec mpeg4_nvdec wmv3_nvdec 2023-08-09T11:44:41.0993862Z mjpeg_nvdec vc1_nvdec 2023-08-09T11:44:41.0994006Z 2023-08-09T11:44:41.0994114Z Enabled parsers: 2023-08-09T11:44:41.0994326Z aac dvdsub opus 2023-08-09T11:44:41.0994561Z aac_latm flac png 2023-08-09T11:44:41.0994799Z ac3 ftr pnm 2023-08-09T11:44:41.0995064Z adx g723_1 qoi 2023-08-09T11:44:41.0995319Z amr g729 rv30 2023-08-09T11:44:41.0995563Z av1 gif rv40 2023-08-09T11:44:41.0995811Z avs2 gsm sbc 2023-08-09T11:44:41.0996041Z avs3 h261 sipr 2023-08-09T11:44:41.0996270Z bmp h263 tak 2023-08-09T11:44:41.0996523Z cavsvideo h264 vc1 2023-08-09T11:44:41.0996787Z cook hdr vorbis 2023-08-09T11:44:41.0997030Z cri hevc vp3 2023-08-09T11:44:41.0997333Z dca ipu vp8 2023-08-09T11:44:41.0997615Z dirac jpeg2000 vp9 2023-08-09T11:44:41.0997915Z dnxhd misc4 webp 2023-08-09T11:44:41.0998200Z dolby_e mjpeg xbm 2023-08-09T11:44:41.0998485Z dpx mlp xma 2023-08-09T11:44:41.0999004Z dvaudio mpeg4video xwd 2023-08-09T11:44:41.0999250Z dvbsub mpegaudio 2023-08-09T11:44:41.0999455Z dvd_nav mpegvideo 2023-08-09T11:44:41.0999586Z 2023-08-09T11:44:41.0999666Z Enabled demuxers: 2023-08-09T11:44:41.0999885Z aa idf pcm_s16be 2023-08-09T11:44:41.1000128Z aac iff pcm_s16le 2023-08-09T11:44:41.1000418Z aax ifv pcm_s24be 2023-08-09T11:44:41.1000718Z ac3 ilbc pcm_s24le 2023-08-09T11:44:41.1001065Z ace image2 pcm_s32be 2023-08-09T11:44:41.1001409Z acm image2_alias_pix pcm_s32le 2023-08-09T11:44:41.1001744Z act image2_brender_pix pcm_s8 2023-08-09T11:44:41.1002075Z adf image2pipe pcm_u16be 2023-08-09T11:44:41.1002403Z adp image_bmp_pipe pcm_u16le 2023-08-09T11:44:41.1002731Z ads image_cri_pipe pcm_u24be 2023-08-09T11:44:41.1003094Z adx image_dds_pipe pcm_u24le 2023-08-09T11:44:41.1003399Z aea image_dpx_pipe pcm_u32be 2023-08-09T11:44:41.1003691Z afc image_exr_pipe pcm_u32le 2023-08-09T11:44:41.1003994Z aiff image_gem_pipe pcm_u8 2023-08-09T11:44:41.1004325Z aix image_gif_pipe pcm_vidc 2023-08-09T11:44:41.1004643Z alp image_hdr_pipe pjs 2023-08-09T11:44:41.1005087Z amr image_j2k_pipe pmp 2023-08-09T11:44:41.1005414Z amrnb image_jpeg_pipe pp_bnk 2023-08-09T11:44:41.1005722Z amrwb image_jpegls_pipe pva 2023-08-09T11:44:41.1005969Z anm image_jpegxl_pipe pvf 2023-08-09T11:44:41.1006214Z apac image_pam_pipe qcp 2023-08-09T11:44:41.1006467Z apc image_pbm_pipe r3d 2023-08-09T11:44:41.1006712Z ape image_pcx_pipe rawvideo 2023-08-09T11:44:41.1006966Z apm image_pfm_pipe realtext 2023-08-09T11:44:41.1007219Z apng image_pgm_pipe redspark 2023-08-09T11:44:41.1007718Z aptx image_pgmyuv_pipe rka 2023-08-09T11:44:41.1007967Z aptx_hd image_pgx_pipe rl2 2023-08-09T11:44:41.1008217Z aqtitle image_phm_pipe rm 2023-08-09T11:44:41.1008475Z argo_asf image_photocd_pipe roq 2023-08-09T11:44:41.1008731Z argo_brp image_pictor_pipe rpl 2023-08-09T11:44:41.1008981Z argo_cvg image_png_pipe rsd 2023-08-09T11:44:41.1009223Z asf image_ppm_pipe rso 2023-08-09T11:44:41.1009455Z asf_o image_psd_pipe rtp 2023-08-09T11:44:41.1009711Z ass image_qdraw_pipe rtsp 2023-08-09T11:44:41.1009959Z ast image_qoi_pipe s337m 2023-08-09T11:44:41.1010194Z au image_sgi_pipe sami 2023-08-09T11:44:41.1010437Z av1 image_sunrast_pipe sap 2023-08-09T11:44:41.1010676Z avi image_svg_pipe sbc 2023-08-09T11:44:41.1010915Z avr image_tiff_pipe sbg 2023-08-09T11:44:41.1011144Z avs image_vbn_pipe scc 2023-08-09T11:44:41.1011382Z avs2 image_webp_pipe scd 2023-08-09T11:44:41.1011627Z avs3 image_xbm_pipe sdns 2023-08-09T11:44:41.1011867Z bethsoftvid image_xpm_pipe sdp 2023-08-09T11:44:41.1012114Z bfi image_xwd_pipe sdr2 2023-08-09T11:44:41.1012405Z bfstm ingenient sds 2023-08-09T11:44:41.1012690Z bink ipmovie sdx 2023-08-09T11:44:41.1013161Z binka ipu segafilm 2023-08-09T11:44:41.1013469Z bintext ircam ser 2023-08-09T11:44:41.1013751Z bit iss sga 2023-08-09T11:44:41.1014056Z bitpacked iv8 shorten 2023-08-09T11:44:41.1014362Z bmv ivf siff 2023-08-09T11:44:41.1014677Z boa ivr simbiosis_imx 2023-08-09T11:44:41.1014978Z bonk jacosub sln 2023-08-09T11:44:41.1015403Z brstm jv smacker 2023-08-09T11:44:41.1015719Z c93 kux smjpeg 2023-08-09T11:44:41.1016004Z caf kvag smush 2023-08-09T11:44:41.1016309Z cavsvideo laf sol 2023-08-09T11:44:41.1016609Z cdg live_flv sox 2023-08-09T11:44:41.1016923Z cdxl lmlm4 spdif 2023-08-09T11:44:41.1017241Z cine loas srt 2023-08-09T11:44:41.1017552Z codec2 lrc stl 2023-08-09T11:44:41.1017865Z codec2raw luodat str 2023-08-09T11:44:41.1018196Z concat lvf subviewer 2023-08-09T11:44:41.1018520Z data lxf subviewer1 2023-08-09T11:44:41.1018834Z daud m4v sup 2023-08-09T11:44:41.1019143Z dcstr matroska svag 2023-08-09T11:44:41.1019611Z derf mca svs 2023-08-09T11:44:41.1019910Z dfa mcc swf 2023-08-09T11:44:41.1020208Z dfpwm mgsts tak 2023-08-09T11:44:41.1020554Z dhav microdvd tedcaptions 2023-08-09T11:44:41.1020895Z dirac mjpeg thp 2023-08-09T11:44:41.1021220Z dnxhd mjpeg_2000 threedostr 2023-08-09T11:44:41.1021556Z dsf mlp tiertexseq 2023-08-09T11:44:41.1021874Z dsicin mlv tmv 2023-08-09T11:44:41.1022196Z dss mm truehd 2023-08-09T11:44:41.1022490Z dts mmf tta 2023-08-09T11:44:41.1022791Z dtshd mods tty 2023-08-09T11:44:41.1023102Z dv moflex txd 2023-08-09T11:44:41.1023416Z dvbsub mov ty 2023-08-09T11:44:41.1023737Z dvbtxt mp3 v210 2023-08-09T11:44:41.1024054Z dxa mpc v210x 2023-08-09T11:44:41.1024364Z ea mpc8 vag 2023-08-09T11:44:41.1024677Z ea_cdata mpegps vc1 2023-08-09T11:44:41.1025002Z eac3 mpegts vc1t 2023-08-09T11:44:41.1025329Z epaf mpegtsraw vividas 2023-08-09T11:44:41.1025669Z ffmetadata mpegvideo vivo 2023-08-09T11:44:41.1026003Z filmstrip mpjpeg vmd 2023-08-09T11:44:41.1026334Z fits mpl2 vobsub 2023-08-09T11:44:41.1026642Z flac mpsub voc 2023-08-09T11:44:41.1026949Z flic msf vpk 2023-08-09T11:44:41.1027269Z flv msnwc_tcp vplayer 2023-08-09T11:44:41.1027592Z fourxm msp vqf 2023-08-09T11:44:41.1027895Z frm mtaf w64 2023-08-09T11:44:41.1028208Z fsb mtv wady 2023-08-09T11:44:41.1028505Z fwse musx wav 2023-08-09T11:44:41.1028926Z g722 mv wavarc 2023-08-09T11:44:41.1029245Z g723_1 mvi wc3 2023-08-09T11:44:41.1029562Z g726 mxf webm_dash_manifest 2023-08-09T11:44:41.1029886Z g726le mxg webvtt 2023-08-09T11:44:41.1030198Z g729 nc wsaud 2023-08-09T11:44:41.1030516Z gdv nistsphere wsd 2023-08-09T11:44:41.1030822Z genh nsp wsvqa 2023-08-09T11:44:41.1031167Z gif nsv wtv 2023-08-09T11:44:41.1031501Z gsm nut wv 2023-08-09T11:44:41.1031798Z gxf nuv wve 2023-08-09T11:44:41.1032093Z h261 obu xa 2023-08-09T11:44:41.1032401Z h263 ogg xbin 2023-08-09T11:44:41.1032706Z h264 oma xmd 2023-08-09T11:44:41.1033006Z hca paf xmv 2023-08-09T11:44:41.1033326Z hcom pcm_alaw xvag 2023-08-09T11:44:41.1033650Z hevc pcm_f32be xwma 2023-08-09T11:44:41.1033968Z hls pcm_f32le yop 2023-08-09T11:44:41.1034304Z hnm pcm_f64be yuv4mpegpipe 2023-08-09T11:44:41.1034620Z ico pcm_f64le 2023-08-09T11:44:41.1034899Z idcin pcm_mulaw 2023-08-09T11:44:41.1035072Z 2023-08-09T11:44:41.1035178Z Enabled muxers: 2023-08-09T11:44:41.1035581Z a64 h263 pcm_s16le 2023-08-09T11:44:41.1035896Z ac3 h264 pcm_s24be 2023-08-09T11:44:41.1036212Z adts hash pcm_s24le 2023-08-09T11:44:41.1036543Z adx hds pcm_s32be 2023-08-09T11:44:41.1036867Z aiff hevc pcm_s32le 2023-08-09T11:44:41.1037187Z alp hls pcm_s8 2023-08-09T11:44:41.1037513Z amr ico pcm_u16be 2023-08-09T11:44:41.1037833Z amv ilbc pcm_u16le 2023-08-09T11:44:41.1038146Z apm image2 pcm_u24be 2023-08-09T11:44:41.2044421Z apng image2pipe pcm_u24le 2023-08-09T11:44:41.2044758Z aptx ipod pcm_u32be 2023-08-09T11:44:41.2045058Z aptx_hd ircam pcm_u32le 2023-08-09T11:44:41.2045391Z argo_asf ismv pcm_u8 2023-08-09T11:44:41.2045717Z argo_cvg ivf pcm_vidc 2023-08-09T11:44:41.2046020Z asf jacosub psp 2023-08-09T11:44:41.2046319Z asf_stream kvag rawvideo 2023-08-09T11:44:41.2046637Z ass latm rm 2023-08-09T11:44:41.2046924Z ast lrc roq 2023-08-09T11:44:41.2047194Z au m4v rso 2023-08-09T11:44:41.2047740Z avi matroska rtp 2023-08-09T11:44:41.2048065Z avif matroska_audio rtp_mpegts 2023-08-09T11:44:41.2048410Z avm2 md5 rtsp 2023-08-09T11:44:41.2048639Z avs2 microdvd sap 2023-08-09T11:44:41.2048935Z avs3 mjpeg sbc 2023-08-09T11:44:41.2049283Z bit mkvtimestamp_v2 scc 2023-08-09T11:44:41.2049630Z caf mlp segafilm 2023-08-09T11:44:41.2049927Z cavsvideo mmf segment 2023-08-09T11:44:41.2050260Z codec2 mov smjpeg 2023-08-09T11:44:41.2050849Z codec2raw mp2 smoothstreaming 2023-08-09T11:44:41.2051150Z crc mp3 sox 2023-08-09T11:44:41.2051377Z dash mp4 spdif 2023-08-09T11:44:41.2051614Z data mpeg1system spx 2023-08-09T11:44:41.2051851Z daud mpeg1vcd srt 2023-08-09T11:44:41.2052098Z dfpwm mpeg1video stream_segment 2023-08-09T11:44:41.2052369Z dirac mpeg2dvd streamhash 2023-08-09T11:44:41.2052626Z dnxhd mpeg2svcd sup 2023-08-09T11:44:41.2052922Z dts mpeg2video swf 2023-08-09T11:44:41.2053159Z dv mpeg2vob tee 2023-08-09T11:44:41.2053397Z eac3 mpegts tg2 2023-08-09T11:44:41.2053617Z f4v mpjpeg tgp 2023-08-09T11:44:41.2053939Z ffmetadata mxf truehd 2023-08-09T11:44:41.2054221Z fifo mxf_d10 tta 2023-08-09T11:44:41.2054455Z fifo_test mxf_opatom ttml 2023-08-09T11:44:41.2054707Z filmstrip null uncodedframecrc 2023-08-09T11:44:41.2054946Z fits nut vc1 2023-08-09T11:44:41.2055165Z flac obu vc1t 2023-08-09T11:44:41.2055472Z flv oga voc 2023-08-09T11:44:41.2055696Z framecrc ogg w64 2023-08-09T11:44:41.2055925Z framehash ogv wav 2023-08-09T11:44:41.2056263Z framemd5 oma webm 2023-08-09T11:44:41.2056503Z g722 opus webm_chunk 2023-08-09T11:44:41.2056756Z g723_1 pcm_alaw webm_dash_manifest 2023-08-09T11:44:41.2057005Z g726 pcm_f32be webp 2023-08-09T11:44:41.2057236Z g726le pcm_f32le webvtt 2023-08-09T11:44:41.2057472Z gif pcm_f64be wsaud 2023-08-09T11:44:41.2057703Z gsm pcm_f64le wtv 2023-08-09T11:44:41.2057929Z gxf pcm_mulaw wv 2023-08-09T11:44:41.2058174Z h261 pcm_s16be yuv4mpegpipe 2023-08-09T11:44:41.2058321Z 2023-08-09T11:44:41.2058403Z Enabled protocols: 2023-08-09T11:44:41.2058632Z async http rtmpt 2023-08-09T11:44:41.2058944Z cache httpproxy rtmpts 2023-08-09T11:44:41.2059265Z concat https rtp 2023-08-09T11:44:41.2059557Z concatf icecast srtp 2023-08-09T11:44:41.2059882Z crypto ipfs_gateway subfile 2023-08-09T11:44:41.2060205Z data ipns_gateway tcp 2023-08-09T11:44:41.2060529Z fd md5 tee 2023-08-09T11:44:41.2060817Z ffrtmphttp mmsh tls 2023-08-09T11:44:41.2061134Z file mmst udp 2023-08-09T11:44:41.2061471Z ftp pipe udplite 2023-08-09T11:44:41.2061763Z gopher prompeg unix 2023-08-09T11:44:41.2062034Z gophers rtmp 2023-08-09T11:44:41.2062281Z hls rtmps 2023-08-09T11:44:41.2062428Z 2023-08-09T11:44:41.2062516Z Enabled filters: 2023-08-09T11:44:41.2062809Z a3dscope cropdetect oscilloscope 2023-08-09T11:44:41.2063149Z abench crossfeed overlay 2023-08-09T11:44:41.2063486Z abitscope crystalizer overlay_cuda 2023-08-09T11:44:41.2063828Z acompressor cue owdenoise 2023-08-09T11:44:41.2064144Z acontrast curves pad 2023-08-09T11:44:41.2064590Z acopy datascope pal100bars 2023-08-09T11:44:41.2064938Z acrossfade dblur pal75bars 2023-08-09T11:44:41.2065292Z acrossover dcshift palettegen 2023-08-09T11:44:41.2065640Z acrusher dctdnoiz paletteuse 2023-08-09T11:44:41.2065950Z acue deband pan 2023-08-09T11:44:41.2066275Z addroi deblock perms 2023-08-09T11:44:41.2066630Z adeclick decimate perspective 2023-08-09T11:44:41.2066969Z adeclip deconvolve phase 2023-08-09T11:44:41.2067281Z adecorrelate dedot photosensitivity 2023-08-09T11:44:41.2067557Z adelay deesser pixdesctest 2023-08-09T11:44:41.2067811Z adenorm deflate pixelize 2023-08-09T11:44:41.2068063Z aderivative deflicker pixscope 2023-08-09T11:44:41.2068325Z adrawgraph dejudder pp 2023-08-09T11:44:41.2068574Z adrc delogo pp7 2023-08-09T11:44:41.2068827Z adynamicequalizer derain premultiply 2023-08-09T11:44:41.2069092Z adynamicsmooth deshake prewitt 2023-08-09T11:44:41.2069352Z aecho despill pseudocolor 2023-08-09T11:44:41.2069602Z aemphasis detelecine psnr 2023-08-09T11:44:41.2069857Z aeval dialoguenhance pullup 2023-08-09T11:44:41.2070111Z aevalsrc dilation qp 2023-08-09T11:44:41.2070456Z aexciter displace random 2023-08-09T11:44:41.2070711Z afade dnn_classify readeia608 2023-08-09T11:44:41.2070965Z afdelaysrc dnn_detect readvitc 2023-08-09T11:44:41.2071223Z afftdn dnn_processing realtime 2023-08-09T11:44:41.2071477Z afftfilt doubleweave remap 2023-08-09T11:44:41.2071731Z afifo drawbox removegrain 2023-08-09T11:44:41.2071979Z afir drawgraph removelogo 2023-08-09T11:44:41.2072232Z afirsrc drawgrid repeatfields 2023-08-09T11:44:41.2072498Z aformat drmeter replaygain 2023-08-09T11:44:41.2072751Z afreqshift dynaudnorm reverse 2023-08-09T11:44:41.2072998Z afwtdn earwax rgbashift 2023-08-09T11:44:41.2073241Z agate ebur128 rgbtestsrc 2023-08-09T11:44:41.2073500Z agraphmonitor edgedetect roberts 2023-08-09T11:44:41.2073753Z ahistogram elbg rotate 2023-08-09T11:44:41.2073986Z aiir entropy sab 2023-08-09T11:44:41.2074229Z aintegral epx scale 2023-08-09T11:44:41.2074478Z ainterleave eq scale2ref 2023-08-09T11:44:41.2074728Z alatency equalizer scale_cuda 2023-08-09T11:44:41.2074975Z alimiter erosion scdet 2023-08-09T11:44:41.2075217Z allpass estdif scharr 2023-08-09T11:44:41.2075451Z allrgb exposure scroll 2023-08-09T11:44:41.2075700Z allyuv extractplanes segment 2023-08-09T11:44:41.2075951Z aloop extrastereo select 2023-08-09T11:44:41.2076206Z alphaextract fade selectivecolor 2023-08-09T11:44:41.2076473Z alphamerge feedback sendcmd 2023-08-09T11:44:41.2076734Z amerge fftdnoiz separatefields 2023-08-09T11:44:41.2076992Z ametadata fftfilt setdar 2023-08-09T11:44:41.2077230Z amix field setfield 2023-08-09T11:44:41.2077549Z amovie fieldhint setparams 2023-08-09T11:44:41.2077800Z amplify fieldmatch setpts 2023-08-09T11:44:41.2078050Z amultiply fieldorder setrange 2023-08-09T11:44:41.2078300Z anequalizer fifo setsar 2023-08-09T11:44:41.2078545Z anlmdn fillborders settb 2023-08-09T11:44:41.2078782Z anlmf find_rect shear 2023-08-09T11:44:41.2079021Z anlms firequalizer showcqt 2023-08-09T11:44:41.2079270Z anoisesrc flanger showcwt 2023-08-09T11:44:41.2079523Z anull floodfill showfreqs 2023-08-09T11:44:41.2079768Z anullsink format showinfo 2023-08-09T11:44:41.2080020Z anullsrc fps showpalette 2023-08-09T11:44:41.2080276Z apad framepack showspatial 2023-08-09T11:44:41.2080539Z aperms framerate showspectrum 2023-08-09T11:44:41.2080822Z aphasemeter framestep showspectrumpic 2023-08-09T11:44:41.2081145Z aphaser freezedetect showvolume 2023-08-09T11:44:41.2081406Z aphaseshift freezeframes showwaves 2023-08-09T11:44:41.2081675Z apsyclip fspp showwavespic 2023-08-09T11:44:41.2081936Z apulsator gblur shuffleframes 2023-08-09T11:44:41.2082202Z arealtime geq shufflepixels 2023-08-09T11:44:41.2082531Z aresample gradfun shuffleplanes 2023-08-09T11:44:41.2082806Z areverse gradients sidechaincompress 2023-08-09T11:44:41.2083083Z arnndn graphmonitor sidechaingate 2023-08-09T11:44:41.2083332Z asdr grayworld sidedata 2023-08-09T11:44:41.2083596Z asegment greyedge sierpinski 2023-08-09T11:44:41.2083852Z aselect guided signalstats 2023-08-09T11:44:41.2084090Z asendcmd haas signature 2023-08-09T11:44:41.2084348Z asetnsamples haldclut silencedetect 2023-08-09T11:44:41.2084613Z asetpts haldclutsrc silenceremove 2023-08-09T11:44:41.2084862Z asetrate hdcd sinc 2023-08-09T11:44:41.2085095Z asettb headphone sine 2023-08-09T11:44:41.2085337Z ashowinfo hflip siti 2023-08-09T11:45:44.3577850Z asidedata highpass smartblur 2023-08-09T11:45:44.3578174Z asoftclip highshelf smptebars 2023-08-09T11:45:44.3578462Z aspectralstats hilbert smptehdbars 2023-08-09T11:45:44.3580240Z asplit histeq sobel 2023-08-09T11:45:44.3580650Z astats histogram spectrumsynth 2023-08-09T11:45:44.3581075Z astreamselect hqdn3d speechnorm 2023-08-09T11:45:44.3581366Z asubboost hqx split 2023-08-09T11:45:44.3581613Z asubcut hstack spp 2023-08-09T11:45:44.3581852Z asupercut hsvhold sr 2023-08-09T11:45:44.3582106Z asuperpass hsvkey ssim 2023-08-09T11:45:44.3582359Z asuperstop hue ssim360 2023-08-09T11:45:44.3582613Z atadenoise huesaturation stereo3d 2023-08-09T11:45:44.3582896Z atempo hwdownload stereotools 2023-08-09T11:45:44.3583161Z atilt hwmap stereowiden 2023-08-09T11:45:44.3583412Z atrim hwupload streamselect 2023-08-09T11:45:44.3583683Z avectorscope hwupload_cuda super2xsai 2023-08-09T11:45:44.3584176Z avgblur hysteresis superequalizer 2023-08-09T11:45:44.3584462Z avsynctest identity surround 2023-08-09T11:45:44.3584709Z axcorrelate idet swaprect 2023-08-09T11:45:44.3584968Z backgroundkey il swapuv 2023-08-09T11:45:44.3590014Z bandpass inflate tblend 2023-08-09T11:45:44.3590380Z bandreject interlace telecine 2023-08-09T11:45:44.3590683Z bass interleave testsrc 2023-08-09T11:45:44.3591026Z bbox join testsrc2 2023-08-09T11:45:44.3591364Z bench kerndeint thistogram 2023-08-09T11:45:44.3591650Z bilateral kirsch threshold 2023-08-09T11:45:44.3591907Z bilateral_cuda lagfun thumbnail 2023-08-09T11:45:44.3592177Z biquad latency thumbnail_cuda 2023-08-09T11:45:44.3592450Z bitplanenoise lenscorrection tile 2023-08-09T11:45:44.3592717Z blackdetect life tiltshelf 2023-08-09T11:45:44.3592978Z blackframe limitdiff tinterlace 2023-08-09T11:45:44.3593230Z blend limiter tlut2 2023-08-09T11:45:44.3593564Z blockdetect loop tmedian 2023-08-09T11:45:44.3593871Z blurdetect loudnorm tmidequalizer 2023-08-09T11:45:44.3594184Z bm3d lowpass tmix 2023-08-09T11:45:44.3594717Z boxblur lowshelf tonemap 2023-08-09T11:45:44.3595026Z bwdif lumakey tpad 2023-08-09T11:45:44.3595272Z cas lut transpose 2023-08-09T11:45:44.3595508Z cellauto lut1d treble 2023-08-09T11:45:44.3595754Z channelmap lut2 tremolo 2023-08-09T11:45:44.3596009Z channelsplit lut3d trim 2023-08-09T11:45:44.3596262Z chorus lutrgb unpremultiply 2023-08-09T11:45:44.3598392Z chromahold lutyuv unsharp 2023-08-09T11:45:44.3598751Z chromakey mandelbrot untile 2023-08-09T11:45:44.3599125Z chromakey_cuda maskedclamp v360 2023-08-09T11:45:44.3599488Z chromanr maskedmax vaguedenoiser 2023-08-09T11:45:44.3599823Z chromashift maskedmerge varblur 2023-08-09T11:45:44.3600172Z ciescope maskedmin vectorscope 2023-08-09T11:45:44.3600498Z codecview maskedthreshold vflip 2023-08-09T11:45:44.3600748Z color maskfun vfrdet 2023-08-09T11:45:44.3601004Z colorbalance mcompand vibrance 2023-08-09T11:45:44.3601270Z colorchannelmixer median vibrato 2023-08-09T11:45:44.3601533Z colorchart mergeplanes vif 2023-08-09T11:45:44.3601789Z colorcontrast mestimate vignette 2023-08-09T11:45:44.3602059Z colorcorrect metadata virtualbass 2023-08-09T11:45:44.3602331Z colorhold midequalizer vmafmotion 2023-08-09T11:45:44.3602620Z colorize minterpolate volume 2023-08-09T11:45:44.3602994Z colorkey mix volumedetect 2023-08-09T11:45:44.3603281Z colorlevels monochrome vstack 2023-08-09T11:45:44.3603547Z colormap morpho w3fdif 2023-08-09T11:45:44.3603822Z colormatrix movie waveform 2023-08-09T11:45:44.3604134Z colorspace mpdecimate weave 2023-08-09T11:45:44.3604408Z colorspace_cuda mptestsrc xbr 2023-08-09T11:45:44.3604701Z colorspectrum msad xcorrelate 2023-08-09T11:45:44.3605079Z colortemperature multiply xfade 2023-08-09T11:45:44.3619365Z compand negate xmedian 2023-08-09T11:45:44.3619763Z compensationdelay nlmeans xstack 2023-08-09T11:45:44.3620094Z concat nnedi yadif 2023-08-09T11:45:44.3620436Z convolution noformat yadif_cuda 2023-08-09T11:45:44.3620783Z convolve noise yaepblur 2023-08-09T11:45:44.3621120Z copy normalize yuvtestsrc 2023-08-09T11:45:44.3621445Z corr null zoompan 2023-08-09T11:45:44.3621740Z cover_rect nullsink 2023-08-09T11:45:44.3621996Z crop nullsrc 2023-08-09T11:45:44.3622153Z 2023-08-09T11:45:44.3622270Z Enabled bsfs: 2023-08-09T11:45:44.3622589Z aac_adtstoasc h264_redundant_pps opus_metadata 2023-08-09T11:45:44.3622980Z av1_frame_merge hapqa_extract pcm_rechunk 2023-08-09T11:45:44.3623350Z av1_frame_split hevc_metadata pgs_frame_merge 2023-08-09T11:45:44.3623720Z av1_metadata hevc_mp4toannexb prores_metadata 2023-08-09T11:45:44.3624051Z chomp imx_dump_header remove_extradata 2023-08-09T11:45:44.3624329Z dca_core media100_to_mjpegb setts 2023-08-09T11:45:44.3624600Z dts2pts mjpeg2jpeg text2movsub 2023-08-09T11:45:44.3624882Z dump_extradata mjpega_dump_header trace_headers 2023-08-09T11:45:44.3625191Z dv_error_marker mov2textsub truehd_core 2023-08-09T11:45:44.3625727Z eac3_core mp3_header_decompress vp9_metadata 2023-08-09T11:45:44.3626111Z extract_extradata mpeg2_metadata vp9_raw_reorder 2023-08-09T11:45:44.3626491Z filter_units mpeg4_unpack_bframes vp9_superframe 2023-08-09T11:45:44.3626893Z h264_metadata noise vp9_superframe_split 2023-08-09T11:45:44.3627223Z h264_mp4toannexb null 2023-08-09T11:45:44.3627397Z 2023-08-09T11:45:44.3627496Z Enabled indevs: 2023-08-09T11:45:44.3627756Z fbdev oss 2023-08-09T11:45:44.3628025Z lavfi v4l2 2023-08-09T11:45:44.3628189Z 2023-08-09T11:45:44.3628289Z Enabled outdevs: 2023-08-09T11:45:44.3628555Z fbdev oss v4l2 2023-08-09T11:45:44.3628701Z 2023-08-09T11:45:44.3628813Z License: nonfree and unredistributable 2023-08-09T11:45:44.3629037Z + make clean 2023-08-09T11:45:44.3629341Z + make -j 2023-08-09T11:45:44.3629565Z + make install 2023-08-09T11:45:44.3629804Z INSTALL libavdevice/libavdevice.so 2023-08-09T11:45:44.3630093Z STRIP install-libavdevice-shared 2023-08-09T11:45:44.3630347Z INSTALL libavfilter/libavfilter.so 2023-08-09T11:45:44.3630631Z STRIP install-libavfilter-shared 2023-08-09T11:45:44.3630876Z INSTALL libavformat/libavformat.so 2023-08-09T11:45:44.3631158Z STRIP install-libavformat-shared 2023-08-09T11:45:44.3631412Z INSTALL libavcodec/libavcodec.so 2023-08-09T11:45:44.3631683Z STRIP install-libavcodec-shared 2023-08-09T11:45:44.3631938Z INSTALL libpostproc/libpostproc.so 2023-08-09T11:45:44.3632222Z STRIP install-libpostproc-shared 2023-08-09T11:45:44.3632475Z INSTALL libswresample/libswresample.so 2023-08-09T11:45:44.3632775Z STRIP install-libswresample-shared 2023-08-09T11:45:44.3633027Z INSTALL libswscale/libswscale.so 2023-08-09T11:45:44.3633294Z STRIP install-libswscale-shared 2023-08-09T11:45:44.3633534Z INSTALL libavutil/libavutil.so 2023-08-09T11:45:44.3633807Z STRIP install-libavutil-shared 2023-08-09T11:45:44.3634076Z INSTALL install-progs-yes 2023-08-09T11:45:44.3634292Z INSTALL ffmpeg 2023-08-09T11:45:44.3634489Z INSTALL ffprobe 2023-08-09T11:45:44.3634768Z INSTALL presets/libvpx-1080p50_60.ffpreset 2023-08-09T11:45:44.3635071Z INSTALL presets/libvpx-360p.ffpreset 2023-08-09T11:45:44.3635367Z INSTALL presets/libvpx-1080p.ffpreset 2023-08-09T11:45:44.3635785Z INSTALL presets/libvpx-720p50_60.ffpreset 2023-08-09T11:45:44.3636090Z INSTALL presets/libvpx-720p.ffpreset 2023-08-09T11:45:44.3636328Z INSTALL doc/ffprobe.xsd 2023-08-09T11:45:44.3636555Z INSTALL doc/examples/transcode.c 2023-08-09T11:45:44.3636798Z INSTALL doc/examples/vaapi_transcode.c 2023-08-09T11:45:44.3637051Z INSTALL doc/examples/demux_decode.c 2023-08-09T11:45:44.3637292Z INSTALL doc/examples/hw_decode.c 2023-08-09T11:45:44.3637514Z INSTALL doc/examples/mux.c 2023-08-09T11:45:44.3637759Z INSTALL doc/examples/avio_read_callback.c 2023-08-09T11:45:44.3638010Z INSTALL doc/examples/encode_audio.c 2023-08-09T11:45:44.3638270Z INSTALL doc/examples/avio_http_serve_files.c 2023-08-09T11:45:44.3638533Z INSTALL doc/examples/filter_audio.c 2023-08-09T11:45:44.3638793Z INSTALL doc/examples/decode_filter_video.c 2023-08-09T11:45:44.3639040Z INSTALL doc/examples/decode_video.c 2023-08-09T11:45:44.3639292Z INSTALL doc/examples/avio_list_dir.c 2023-08-09T11:45:44.3639562Z INSTALL doc/examples/qsv_transcode.c 2023-08-09T11:45:44.3639869Z INSTALL doc/examples/remux.c 2023-08-09T11:45:44.3640206Z INSTALL doc/examples/extract_mvs.c 2023-08-09T11:45:44.3640484Z INSTALL doc/examples/decode_filter_audio.c 2023-08-09T11:45:44.3640736Z INSTALL doc/examples/qsv_decode.c 2023-08-09T11:45:44.3640971Z INSTALL doc/examples/vaapi_encode.c 2023-08-09T11:45:44.3641220Z INSTALL doc/examples/resample_audio.c 2023-08-09T11:45:44.3641467Z INSTALL doc/examples/decode_audio.c 2023-08-09T11:45:44.3641708Z INSTALL doc/examples/show_metadata.c 2023-08-09T11:45:44.3641957Z INSTALL doc/examples/transcode_aac.c 2023-08-09T11:45:44.3642203Z INSTALL doc/examples/encode_video.c 2023-08-09T11:45:44.3642508Z INSTALL doc/examples/scale_video.c 2023-08-09T11:45:44.3642740Z INSTALL doc/examples/README 2023-08-09T11:45:44.3642972Z INSTALL doc/examples/Makefile 2023-08-09T11:45:44.3643201Z INSTALL doc/examples/transcode.c 2023-08-09T11:45:44.3643448Z INSTALL doc/examples/vaapi_transcode.c 2023-08-09T11:45:44.3643702Z INSTALL doc/examples/demux_decode.c 2023-08-09T11:45:44.3643938Z INSTALL doc/examples/hw_decode.c 2023-08-09T11:45:44.3644166Z INSTALL doc/examples/mux.c 2023-08-09T11:45:44.3644412Z INSTALL doc/examples/avio_read_callback.c 2023-08-09T11:45:44.3644661Z INSTALL doc/examples/encode_audio.c 2023-08-09T11:45:44.3644921Z INSTALL doc/examples/avio_http_serve_files.c 2023-08-09T11:45:44.3645178Z INSTALL doc/examples/filter_audio.c 2023-08-09T11:45:44.3645430Z INSTALL doc/examples/decode_filter_video.c 2023-08-09T11:45:44.3645675Z INSTALL doc/examples/decode_video.c 2023-08-09T11:45:44.3645921Z INSTALL doc/examples/avio_list_dir.c 2023-08-09T11:45:44.3646166Z INSTALL doc/examples/qsv_transcode.c 2023-08-09T11:45:44.3646404Z INSTALL doc/examples/remux.c 2023-08-09T11:45:44.3646640Z INSTALL doc/examples/extract_mvs.c 2023-08-09T11:45:44.3646897Z INSTALL doc/examples/decode_filter_audio.c 2023-08-09T11:45:44.3647140Z INSTALL doc/examples/qsv_decode.c 2023-08-09T11:45:44.3647381Z INSTALL doc/examples/vaapi_encode.c 2023-08-09T11:45:44.3647890Z INSTALL doc/examples/resample_audio.c 2023-08-09T11:45:44.3648140Z INSTALL doc/examples/decode_audio.c 2023-08-09T11:45:44.3648386Z INSTALL doc/examples/show_metadata.c 2023-08-09T11:45:44.3648632Z INSTALL doc/examples/transcode_aac.c 2023-08-09T11:45:44.3648873Z INSTALL doc/examples/encode_video.c 2023-08-09T11:45:44.3649154Z INSTALL doc/examples/scale_video.c 2023-08-09T11:45:44.3649394Z INSTALL doc/examples/README 2023-08-09T11:45:44.3649616Z INSTALL doc/examples/Makefile 2023-08-09T11:45:44.3649848Z INSTALL libavdevice/avdevice.h 2023-08-09T11:45:44.3650081Z INSTALL libavdevice/version.h 2023-08-09T11:45:44.3650314Z INSTALL libavdevice/version_major.h 2023-08-09T11:45:44.3650568Z INSTALL libavdevice/libavdevice.pc 2023-08-09T11:45:44.3650805Z INSTALL libavfilter/avfilter.h 2023-08-09T11:45:44.3651034Z INSTALL libavfilter/buffersink.h 2023-08-09T11:45:44.3651270Z INSTALL libavfilter/buffersrc.h 2023-08-09T11:45:44.3651502Z INSTALL libavfilter/version.h 2023-08-09T11:45:44.3651736Z INSTALL libavfilter/version_major.h 2023-08-09T11:47:01.2070479Z INSTALL libavfilter/libavfilter.pc 2023-08-09T11:47:01.2070867Z INSTALL libavformat/avformat.h 2023-08-09T11:47:01.2071146Z INSTALL libavformat/avio.h 2023-08-09T11:47:01.2071430Z INSTALL libavformat/version.h 2023-08-09T11:47:01.2071674Z INSTALL libavformat/version_major.h 2023-08-09T11:47:01.2071925Z INSTALL libavformat/libavformat.pc 2023-08-09T11:47:01.2072158Z INSTALL libavcodec/ac3_parser.h 2023-08-09T11:47:01.2073698Z INSTALL libavcodec/adts_parser.h 2023-08-09T11:47:01.2074024Z INSTALL libavcodec/avcodec.h 2023-08-09T11:47:01.2074321Z INSTALL libavcodec/avdct.h 2023-08-09T11:47:01.2076564Z INSTALL libavcodec/avfft.h 2023-08-09T11:47:01.2077066Z INSTALL libavcodec/bsf.h 2023-08-09T11:47:01.2077313Z INSTALL libavcodec/codec.h 2023-08-09T11:47:01.2077625Z INSTALL libavcodec/codec_desc.h 2023-08-09T11:47:01.2077863Z INSTALL libavcodec/codec_id.h 2023-08-09T11:47:01.2078091Z INSTALL libavcodec/codec_par.h 2023-08-09T11:47:01.2078326Z INSTALL libavcodec/d3d11va.h 2023-08-09T11:47:01.2078550Z INSTALL libavcodec/defs.h 2023-08-09T11:47:01.2080056Z INSTALL libavcodec/dirac.h 2023-08-09T11:47:01.2080376Z INSTALL libavcodec/dv_profile.h 2023-08-09T11:47:01.2080674Z INSTALL libavcodec/dxva2.h 2023-08-09T11:47:01.2080959Z INSTALL libavcodec/jni.h 2023-08-09T11:47:01.2081245Z INSTALL libavcodec/mediacodec.h 2023-08-09T11:47:01.2081501Z INSTALL libavcodec/packet.h 2023-08-09T11:47:01.2081721Z INSTALL libavcodec/qsv.h 2023-08-09T11:47:01.2081928Z INSTALL libavcodec/vdpau.h 2023-08-09T11:47:01.2082146Z INSTALL libavcodec/version.h 2023-08-09T11:47:01.2082382Z INSTALL libavcodec/version_major.h 2023-08-09T11:47:01.2082664Z INSTALL libavcodec/videotoolbox.h 2023-08-09T11:47:01.2083208Z INSTALL libavcodec/vorbis_parser.h 2023-08-09T11:47:01.2083459Z INSTALL libavcodec/xvmc.h 2023-08-09T11:47:01.2083736Z INSTALL libavcodec/libavcodec.pc 2023-08-09T11:47:01.2084060Z INSTALL libpostproc/postprocess.h 2023-08-09T11:47:01.2084397Z INSTALL libpostproc/version.h 2023-08-09T11:47:01.2084726Z INSTALL libpostproc/version_major.h 2023-08-09T11:47:01.2084997Z INSTALL libpostproc/libpostproc.pc 2023-08-09T11:47:01.2085247Z INSTALL libswresample/swresample.h 2023-08-09T11:47:01.2085486Z INSTALL libswresample/version.h 2023-08-09T11:47:01.2085723Z INSTALL libswresample/version_major.h 2023-08-09T11:47:01.2086049Z INSTALL libswresample/libswresample.pc 2023-08-09T11:47:01.2086383Z INSTALL libswscale/swscale.h 2023-08-09T11:47:01.2086668Z INSTALL libswscale/version.h 2023-08-09T11:47:01.2086975Z INSTALL libswscale/version_major.h 2023-08-09T11:47:01.2087287Z INSTALL libswscale/libswscale.pc 2023-08-09T11:47:01.2087860Z INSTALL libavutil/adler32.h 2023-08-09T11:47:01.2088170Z INSTALL libavutil/aes.h 2023-08-09T11:47:01.2088457Z INSTALL libavutil/aes_ctr.h 2023-08-09T11:47:01.2088781Z INSTALL libavutil/ambient_viewing_environment.h 2023-08-09T11:47:01.2089062Z INSTALL libavutil/attributes.h 2023-08-09T11:47:01.2089294Z INSTALL libavutil/audio_fifo.h 2023-08-09T11:47:01.2089515Z INSTALL libavutil/avassert.h 2023-08-09T11:47:01.2089781Z INSTALL libavutil/avstring.h 2023-08-09T11:47:01.2090008Z INSTALL libavutil/avutil.h 2023-08-09T11:47:01.2090228Z INSTALL libavutil/base64.h 2023-08-09T11:47:01.2090443Z INSTALL libavutil/blowfish.h 2023-08-09T11:47:01.2090668Z INSTALL libavutil/bprint.h 2023-08-09T11:47:01.2090882Z INSTALL libavutil/bswap.h 2023-08-09T11:47:01.2091157Z INSTALL libavutil/buffer.h 2023-08-09T11:47:01.2091497Z INSTALL libavutil/cast5.h 2023-08-09T11:47:01.2091784Z INSTALL libavutil/camellia.h 2023-08-09T11:47:01.2092081Z INSTALL libavutil/channel_layout.h 2023-08-09T11:47:01.2092379Z INSTALL libavutil/common.h 2023-08-09T11:47:01.2092653Z INSTALL libavutil/cpu.h 2023-08-09T11:47:01.2092941Z INSTALL libavutil/crc.h 2023-08-09T11:47:01.2093228Z INSTALL libavutil/csp.h 2023-08-09T11:47:01.2093515Z INSTALL libavutil/des.h 2023-08-09T11:47:01.2093803Z INSTALL libavutil/detection_bbox.h 2023-08-09T11:47:01.2094105Z INSTALL libavutil/dict.h 2023-08-09T11:47:01.2094403Z INSTALL libavutil/display.h 2023-08-09T11:47:01.2094763Z INSTALL libavutil/dovi_meta.h 2023-08-09T11:47:01.2095152Z INSTALL libavutil/downmix_info.h 2023-08-09T11:47:01.2095401Z INSTALL libavutil/encryption_info.h 2023-08-09T11:47:01.2095624Z INSTALL libavutil/error.h 2023-08-09T11:47:01.2095839Z INSTALL libavutil/eval.h 2023-08-09T11:47:01.2096054Z INSTALL libavutil/fifo.h 2023-08-09T11:47:01.2096266Z INSTALL libavutil/file.h 2023-08-09T11:47:01.2096469Z INSTALL libavutil/frame.h 2023-08-09T11:47:01.2096687Z INSTALL libavutil/hash.h 2023-08-09T11:47:01.2096967Z INSTALL libavutil/hdr_dynamic_metadata.h 2023-08-09T11:47:01.2097226Z INSTALL libavutil/hdr_dynamic_vivid_metadata.h 2023-08-09T11:47:01.2097472Z INSTALL libavutil/hmac.h 2023-08-09T11:47:01.2097690Z INSTALL libavutil/hwcontext.h 2023-08-09T11:47:01.2097917Z INSTALL libavutil/hwcontext_cuda.h 2023-08-09T11:47:01.2098162Z INSTALL libavutil/hwcontext_d3d11va.h 2023-08-09T11:47:01.2098469Z INSTALL libavutil/hwcontext_drm.h 2023-08-09T11:47:01.2098712Z INSTALL libavutil/hwcontext_dxva2.h 2023-08-09T11:47:01.2098959Z INSTALL libavutil/hwcontext_qsv.h 2023-08-09T11:47:01.2099199Z INSTALL libavutil/hwcontext_mediacodec.h 2023-08-09T11:47:01.2099453Z INSTALL libavutil/hwcontext_opencl.h 2023-08-09T11:47:01.2099703Z INSTALL libavutil/hwcontext_vaapi.h 2023-08-09T11:47:01.2099949Z INSTALL libavutil/hwcontext_videotoolbox.h 2023-08-09T11:47:01.2100202Z INSTALL libavutil/hwcontext_vdpau.h 2023-08-09T11:47:01.2100450Z INSTALL libavutil/hwcontext_vulkan.h 2023-08-09T11:47:01.2100679Z INSTALL libavutil/imgutils.h 2023-08-09T11:47:01.2100901Z INSTALL libavutil/intfloat.h 2023-08-09T11:47:01.2101137Z INSTALL libavutil/intreadwrite.h 2023-08-09T11:47:01.2101486Z INSTALL libavutil/lfg.h 2023-08-09T11:47:01.2101713Z INSTALL libavutil/log.h 2023-08-09T11:47:01.2101961Z INSTALL libavutil/lzo.h 2023-08-09T11:47:01.2102166Z INSTALL libavutil/macros.h 2023-08-09T11:47:01.2102391Z INSTALL libavutil/mathematics.h 2023-08-09T11:47:01.2102652Z INSTALL libavutil/mastering_display_metadata.h 2023-08-09T11:47:01.2102886Z INSTALL libavutil/md5.h 2023-08-09T11:47:01.2103098Z INSTALL libavutil/mem.h 2023-08-09T11:47:01.2103320Z INSTALL libavutil/motion_vector.h 2023-08-09T11:47:01.2103563Z INSTALL libavutil/murmur3.h 2023-08-09T11:47:01.2103849Z INSTALL libavutil/opt.h 2023-08-09T11:47:01.2104171Z INSTALL libavutil/parseutils.h 2023-08-09T11:47:01.2104482Z INSTALL libavutil/pixdesc.h 2023-08-09T11:47:01.2104792Z INSTALL libavutil/pixelutils.h 2023-08-09T11:47:01.2105099Z INSTALL libavutil/pixfmt.h 2023-08-09T11:47:01.2105320Z INSTALL libavutil/random_seed.h 2023-08-09T11:47:01.2105538Z INSTALL libavutil/rc4.h 2023-08-09T11:47:01.2105752Z INSTALL libavutil/rational.h 2023-08-09T11:47:01.2105981Z INSTALL libavutil/replaygain.h 2023-08-09T11:47:01.2106206Z INSTALL libavutil/ripemd.h 2023-08-09T11:47:01.2106429Z INSTALL libavutil/samplefmt.h 2023-08-09T11:47:01.2106639Z INSTALL libavutil/sha.h 2023-08-09T11:47:01.2106852Z INSTALL libavutil/sha512.h 2023-08-09T11:47:01.2107071Z INSTALL libavutil/spherical.h 2023-08-09T11:47:01.2107286Z INSTALL libavutil/stereo3d.h 2023-08-09T11:47:01.2107522Z INSTALL libavutil/threadmessage.h 2023-08-09T11:47:01.2107747Z INSTALL libavutil/time.h 2023-08-09T11:47:01.2107955Z INSTALL libavutil/timecode.h 2023-08-09T11:47:01.2108183Z INSTALL libavutil/timestamp.h 2023-08-09T11:47:01.2108401Z INSTALL libavutil/tree.h 2023-08-09T11:47:01.2108605Z INSTALL libavutil/twofish.h 2023-08-09T11:47:01.2108821Z INSTALL libavutil/uuid.h 2023-08-09T11:47:01.2109037Z INSTALL libavutil/version.h 2023-08-09T11:47:01.2109267Z INSTALL libavutil/video_enc_params.h 2023-08-09T11:47:01.2109489Z INSTALL libavutil/xtea.h 2023-08-09T11:47:01.2109697Z INSTALL libavutil/tea.h 2023-08-09T11:47:01.2109905Z INSTALL libavutil/tx.h 2023-08-09T11:47:01.2110124Z INSTALL libavutil/film_grain_params.h 2023-08-09T11:47:01.2110357Z INSTALL libavutil/avconfig.h 2023-08-09T11:47:01.2110581Z INSTALL libavutil/ffversion.h 2023-08-09T11:47:01.2110804Z INSTALL libavutil/libavutil.pc 2023-08-09T11:47:01.2111037Z + echo ::endgroup:: 2023-08-09T11:47:01.2111517Z ##[endgroup] 2023-08-09T11:47:01.2112027Z + echo '::group::Install other Dependencies' 2023-08-09T11:47:01.2112440Z ##[group]Install other Dependencies 2023-08-09T11:47:01.2112903Z + conda install --quiet --yes -c conda-forge -c numba/label/dev sox libvorbis librosa==0.10.0 parameterized 'requests>=2.20' 2023-08-09T11:47:01.2113232Z + local cmd=install 2023-08-09T11:47:01.2113424Z + case "$cmd" in 2023-08-09T11:47:01.2113845Z + __conda_exe install --quiet --yes -c conda-forge -c numba/label/dev sox libvorbis librosa==0.10.0 parameterized 'requests>=2.20' 2023-08-09T11:47:01.2114411Z + /opt/conda/bin/conda install --quiet --yes -c conda-forge -c numba/label/dev sox libvorbis librosa==0.10.0 parameterized 'requests>=2.20' 2023-08-09T11:47:01.2114832Z Collecting package metadata (current_repodata.json): ...working... done 2023-08-09T11:47:01.2115122Z Solving environment: ...working... 2023-08-09T11:47:01.2115417Z Warning: 2 possible package resolutions (only showing differing packages): 2023-08-09T11:47:01.2115987Z - conda-forge/linux-64::matplotlib-base-3.7.1-py310he60537e_0, conda-forge/noarch::pyparsing-3.1.1-pyhd8ed1ab_0 2023-08-09T11:47:01.2116568Z - conda-forge/linux-64::matplotlib-base-3.7.2-py310hf38f957_0, conda-forge/noarch::pyparsing-3.0.9-pyhd8ed1ab_0done 2023-08-09T11:47:01.2116828Z 2023-08-09T11:47:01.2116913Z ## Package Plan ## 2023-08-09T11:47:01.2117037Z 2023-08-09T11:47:01.2117135Z environment location: /work/ci_env 2023-08-09T11:47:01.2117282Z 2023-08-09T11:47:01.2117369Z added / updated specs: 2023-08-09T11:47:01.2117601Z - librosa==0.10.0 2023-08-09T11:47:01.2117805Z - libvorbis 2023-08-09T11:47:01.2118017Z - parameterized 2023-08-09T11:47:01.2118324Z - requests[version='>=2.20'] 2023-08-09T11:47:01.2118537Z - sox 2023-08-09T11:47:01.2118645Z 2023-08-09T11:47:01.2118650Z 2023-08-09T11:47:01.2118768Z The following packages will be downloaded: 2023-08-09T11:47:01.2118925Z 2023-08-09T11:47:01.2119027Z package | build 2023-08-09T11:47:01.2119322Z ---------------------------|----------------- 2023-08-09T11:47:01.2119654Z _libgcc_mutex-0.1 | conda_forge 3 KB conda-forge 2023-08-09T11:47:01.2120010Z _openmp_mutex-4.5 | 2_kmp_llvm 6 KB conda-forge 2023-08-09T11:47:01.2120366Z appdirs-1.4.4 | pyh9f0ad1d_0 13 KB conda-forge 2023-08-09T11:47:01.2120711Z audioread-3.0.0 | py310hff52083_1 34 KB conda-forge 2023-08-09T11:47:01.2121056Z brotli-1.0.9 | h166bdaf_9 20 KB conda-forge 2023-08-09T11:47:01.2121399Z brotli-bin-1.0.9 | h166bdaf_9 20 KB conda-forge 2023-08-09T11:47:01.2121777Z brotli-python-1.0.9 | py310hd8f1fbe_9 319 KB conda-forge 2023-08-09T11:47:01.2122133Z certifi-2023.7.22 | pyhd8ed1ab_0 150 KB conda-forge 2023-08-09T11:47:01.2122478Z cffi-1.15.1 | py310h255011f_3 231 KB conda-forge 2023-08-09T11:47:01.2122844Z charset-normalizer-3.2.0 | pyhd8ed1ab_0 45 KB conda-forge 2023-08-09T11:47:01.2123201Z contourpy-1.1.0 | py310hd41b1e2_0 216 KB conda-forge 2023-08-09T11:47:01.2123546Z cycler-0.11.0 | pyhd8ed1ab_0 10 KB conda-forge 2023-08-09T11:47:01.2123889Z decorator-5.1.1 | pyhd8ed1ab_0 12 KB conda-forge 2023-08-09T11:47:01.2124219Z ffmpeg-4.2.2 | h20bf706_0 59.6 MB 2023-08-09T11:47:01.2124547Z fonttools-4.42.0 | py310h2372a71_0 2.1 MB conda-forge 2023-08-09T11:47:01.2124894Z freetype-2.12.1 | hca18f0e_1 611 KB conda-forge 2023-08-09T11:47:01.2125228Z gettext-0.21.1 | h27087fc_0 4.1 MB conda-forge 2023-08-09T11:47:01.2125552Z idna-3.4 | pyhd8ed1ab_0 55 KB conda-forge 2023-08-09T11:47:01.2125899Z joblib-1.3.2 | pyhd8ed1ab_0 216 KB conda-forge 2023-08-09T11:47:01.2126344Z kiwisolver-1.4.4 | py310hbf28c38_1 76 KB conda-forge 2023-08-09T11:47:01.2126702Z lazy_loader-0.2 | pyhd8ed1ab_0 13 KB conda-forge 2023-08-09T11:47:01.2127032Z lcms2-2.15 | haa2dc70_1 236 KB conda-forge 2023-08-09T11:47:01.2127359Z lerc-4.0.0 | h27087fc_0 275 KB conda-forge 2023-08-09T11:47:01.2127952Z libbrotlicommon-1.0.9 | h166bdaf_9 69 KB conda-forge 2023-08-09T11:47:01.2128301Z libbrotlidec-1.0.9 | h166bdaf_9 32 KB conda-forge 2023-08-09T11:47:01.2128703Z libbrotlienc-1.0.9 | h166bdaf_9 259 KB conda-forge 2023-08-09T11:47:01.2129053Z libdeflate-1.18 | h0b41bf4_0 64 KB conda-forge 2023-08-09T11:47:01.2129440Z libflac-1.4.3 | h59595ed_0 385 KB conda-forge 2023-08-09T11:47:01.2129920Z libgcc-ng-13.1.0 | he5830b7_0 758 KB conda-forge 2023-08-09T11:47:01.2130459Z libgfortran-ng-13.1.0 | h69a702a_0 23 KB conda-forge 2023-08-09T11:47:01.2130995Z libgfortran5-13.1.0 | h15d22d2_0 1.4 MB conda-forge 2023-08-09T11:47:01.2131523Z libjpeg-turbo-2.1.5.1 | h0b41bf4_0 479 KB conda-forge 2023-08-09T11:47:01.2132065Z libllvm14-14.0.6 | hcd5def8_4 30.0 MB conda-forge 2023-08-09T11:47:01.2132577Z libogg-1.3.4 | h7f98852_1 206 KB conda-forge 2023-08-09T11:47:01.2133051Z libpng-1.6.39 | h753d276_0 276 KB conda-forge 2023-08-09T11:47:01.2133700Z librosa-0.10.0 | pyhd8ed1ab_2 188 KB conda-forge 2023-08-09T11:47:01.2134225Z libsndfile-1.2.0 | hb75c966_0 342 KB conda-forge 2023-08-09T11:47:01.2134859Z libstdcxx-ng-13.1.0 | hfd8a6a1_0 3.7 MB conda-forge 2023-08-09T11:47:01.2135389Z libtiff-4.5.1 | h8b53f26_0 408 KB conda-forge 2023-08-09T11:47:01.2135907Z libvorbis-1.3.7 | h9c3ff4c_0 280 KB conda-forge 2023-08-09T11:47:01.2136405Z libvpx-1.7.0 | h439df22_0 1.2 MB 2023-08-09T11:47:01.2136923Z libwebp-base-1.3.1 | hd590300_0 391 KB conda-forge 2023-08-09T11:47:01.2137441Z libxcb-1.15 | h0b41bf4_0 375 KB conda-forge 2023-08-09T11:47:01.2137952Z libzlib-1.2.13 | hd590300_5 60 KB conda-forge 2023-08-09T11:47:01.2138493Z llvm-openmp-16.0.6 | h4dfa4b3_0 39.9 MB conda-forge 2023-08-09T11:47:01.2139021Z llvmlite-0.40.1 | py310h1b8f574_0 2.4 MB conda-forge 2023-08-09T11:47:01.2139547Z mad-0.15.1b | h9c3ff4c_1 113 KB conda-forge 2023-08-09T11:47:01.2140092Z matplotlib-base-3.7.1 | py310he60537e_0 6.5 MB conda-forge 2023-08-09T11:47:01.2140614Z mkl-service-2.4.0 | py310h5eee18b_1 54 KB 2023-08-09T11:47:01.2141110Z mkl_fft-1.3.6 | py310h1128e8f_1 207 KB 2023-08-09T11:47:01.2141591Z mkl_random-1.2.2 | py310h1128e8f_1 284 KB 2023-08-09T11:47:01.2142108Z mpg123-1.31.3 | hcb278e6_0 474 KB conda-forge 2023-08-09T11:47:01.2142639Z msgpack-python-1.0.5 | py310hdf3cbec_0 83 KB conda-forge 2023-08-09T11:47:01.2143181Z munkres-1.1.4 | pyh9f0ad1d_0 12 KB conda-forge 2023-08-09T11:47:01.2143717Z numba-0.57.1 | py310h0f6aa51_0 4.0 MB conda-forge 2023-08-09T11:47:01.2144207Z numpy-1.24.3 | py310h5f9d8c6_1 11 KB 2023-08-09T11:47:01.2144705Z numpy-base-1.24.3 | py310hb5e798b_1 6.2 MB 2023-08-09T11:47:01.2145226Z openjpeg-2.5.0 | hfec8fc6_2 344 KB conda-forge 2023-08-09T11:47:01.2145894Z openssl-3.1.2 | hd590300_0 2.5 MB conda-forge 2023-08-09T11:47:01.2146433Z packaging-23.1 | pyhd8ed1ab_0 45 KB conda-forge 2023-08-09T11:47:01.2146989Z parameterized-0.9.0 | pyhd8ed1ab_0 24 KB conda-forge 2023-08-09T11:47:01.2147531Z pillow-10.0.0 | py310h582fbeb_0 44.5 MB conda-forge 2023-08-09T11:47:01.2148048Z pooch-1.6.0 | pyhd8ed1ab_0 44 KB conda-forge 2023-08-09T11:47:01.2148587Z pthread-stubs-0.4 | h36c2ea0_1001 5 KB conda-forge 2023-08-09T11:47:01.2149144Z pycparser-2.21 | pyhd8ed1ab_0 100 KB conda-forge 2023-08-09T11:47:01.2149691Z pyparsing-3.1.1 | pyhd8ed1ab_0 87 KB conda-forge 2023-08-09T11:47:01.2150206Z pysocks-1.7.1 | pyha2e5f31_6 19 KB conda-forge 2023-08-09T11:47:01.2150714Z pysoundfile-0.12.1 | pyhd8ed1ab_0 27 KB conda-forge 2023-08-09T11:47:01.2151257Z python-dateutil-2.8.2 | pyhd8ed1ab_0 240 KB conda-forge 2023-08-09T11:47:01.2151711Z python_abi-3.10 | 2_cp310 4 KB conda-forge 2023-08-09T11:47:01.2152053Z requests-2.31.0 | pyhd8ed1ab_0 55 KB conda-forge 2023-08-09T11:47:01.2152403Z scikit-learn-1.3.0 | py310hf7d194e_0 8.0 MB conda-forge 2023-08-09T11:47:01.2152736Z scipy-1.10.1 | py310h5f9d8c6_1 23.7 MB 2023-08-09T11:47:01.2153054Z six-1.16.0 | pyh6c4a22f_0 14 KB conda-forge 2023-08-09T11:47:01.2153482Z sox-14.4.2 | ha5cc309_1018 499 KB conda-forge 2023-08-09T11:47:01.2153800Z soxr-0.1.3 | h0b41bf4_3 128 KB conda-forge 2023-08-09T11:47:01.2154129Z soxr-python-0.3.5 | py310h278f3c1_0 259 KB conda-forge 2023-08-09T11:47:01.2154487Z threadpoolctl-3.2.0 | pyha21a80b_0 20 KB conda-forge 2023-08-09T11:47:01.2154845Z unicodedata2-15.0.0 | py310h5764c6d_0 500 KB conda-forge 2023-08-09T11:47:01.2155185Z urllib3-2.0.4 | pyhd8ed1ab_0 96 KB conda-forge 2023-08-09T11:47:01.2155514Z xorg-libxau-1.0.11 | hd590300_0 14 KB conda-forge 2023-08-09T11:47:01.2155856Z xorg-libxdmcp-1.1.3 | h7f98852_0 19 KB conda-forge 2023-08-09T11:47:01.2156187Z zlib-1.2.13 | hd590300_5 91 KB conda-forge 2023-08-09T11:47:01.2156514Z ------------------------------------------------------------ 2023-08-09T11:47:01.2156785Z Total: 250.7 MB 2023-08-09T11:47:01.2156929Z 2023-08-09T11:47:01.2157051Z The following NEW packages will be INSTALLED: 2023-08-09T11:47:01.2157208Z 2023-08-09T11:47:01.2157468Z appdirs conda-forge/noarch::appdirs-1.4.4-pyh9f0ad1d_0 2023-08-09T11:47:01.2157888Z audioread conda-forge/linux-64::audioread-3.0.0-py310hff52083_1 2023-08-09T11:47:01.2158287Z brotli conda-forge/linux-64::brotli-1.0.9-h166bdaf_9 2023-08-09T11:47:01.2158681Z brotli-bin conda-forge/linux-64::brotli-bin-1.0.9-h166bdaf_9 2023-08-09T11:47:01.2159115Z brotli-python conda-forge/linux-64::brotli-python-1.0.9-py310hd8f1fbe_9 2023-08-09T11:47:01.2159545Z certifi conda-forge/noarch::certifi-2023.7.22-pyhd8ed1ab_0 2023-08-09T11:47:01.2159942Z cffi conda-forge/linux-64::cffi-1.15.1-py310h255011f_3 2023-08-09T11:47:01.2160384Z charset-normalizer conda-forge/noarch::charset-normalizer-3.2.0-pyhd8ed1ab_0 2023-08-09T11:47:01.2160830Z contourpy conda-forge/linux-64::contourpy-1.1.0-py310hd41b1e2_0 2023-08-09T11:47:01.2161240Z cycler conda-forge/noarch::cycler-0.11.0-pyhd8ed1ab_0 2023-08-09T11:47:01.2161697Z decorator conda-forge/noarch::decorator-5.1.1-pyhd8ed1ab_0 2023-08-09T11:47:01.2162090Z ffmpeg pkgs/main/linux-64::ffmpeg-4.2.2-h20bf706_0 2023-08-09T11:47:01.2162485Z fonttools conda-forge/linux-64::fonttools-4.42.0-py310h2372a71_0 2023-08-09T11:47:01.2162897Z freetype conda-forge/linux-64::freetype-2.12.1-hca18f0e_1 2023-08-09T11:47:01.2163288Z gettext conda-forge/linux-64::gettext-0.21.1-h27087fc_0 2023-08-09T11:47:01.2163659Z idna conda-forge/noarch::idna-3.4-pyhd8ed1ab_0 2023-08-09T11:47:01.2164041Z joblib conda-forge/noarch::joblib-1.3.2-pyhd8ed1ab_0 2023-08-09T11:47:01.2164460Z kiwisolver conda-forge/linux-64::kiwisolver-1.4.4-py310hbf28c38_1 2023-08-09T11:47:01.2164875Z lazy_loader conda-forge/noarch::lazy_loader-0.2-pyhd8ed1ab_0 2023-08-09T11:47:01.2165256Z lcms2 conda-forge/linux-64::lcms2-2.15-haa2dc70_1 2023-08-09T11:47:01.2165624Z lerc conda-forge/linux-64::lerc-4.0.0-h27087fc_0 2023-08-09T11:47:01.2166033Z libbrotlicommon conda-forge/linux-64::libbrotlicommon-1.0.9-h166bdaf_9 2023-08-09T11:47:01.2166459Z libbrotlidec conda-forge/linux-64::libbrotlidec-1.0.9-h166bdaf_9 2023-08-09T11:47:01.2166906Z libbrotlienc conda-forge/linux-64::libbrotlienc-1.0.9-h166bdaf_9 2023-08-09T11:47:01.2167321Z libdeflate conda-forge/linux-64::libdeflate-1.18-h0b41bf4_0 2023-08-09T11:47:01.2168039Z libflac conda-forge/linux-64::libflac-1.4.3-h59595ed_0 2023-08-09T11:47:01.2168451Z libgfortran-ng conda-forge/linux-64::libgfortran-ng-13.1.0-h69a702a_0 2023-08-09T11:47:01.2168994Z libgfortran5 conda-forge/linux-64::libgfortran5-13.1.0-h15d22d2_0 2023-08-09T11:47:01.2169422Z libjpeg-turbo conda-forge/linux-64::libjpeg-turbo-2.1.5.1-h0b41bf4_0 2023-08-09T11:47:01.2169840Z libllvm14 conda-forge/linux-64::libllvm14-14.0.6-hcd5def8_4 2023-08-09T11:47:01.2170220Z libogg conda-forge/linux-64::libogg-1.3.4-h7f98852_1 2023-08-09T11:47:01.2170610Z libpng conda-forge/linux-64::libpng-1.6.39-h753d276_0 2023-08-09T11:47:01.2171004Z librosa conda-forge/noarch::librosa-0.10.0-pyhd8ed1ab_2 2023-08-09T11:47:01.2171414Z libsndfile conda-forge/linux-64::libsndfile-1.2.0-hb75c966_0 2023-08-09T11:47:01.2171803Z libtiff conda-forge/linux-64::libtiff-4.5.1-h8b53f26_0 2023-08-09T11:47:01.2172193Z libvorbis conda-forge/linux-64::libvorbis-1.3.7-h9c3ff4c_0 2023-08-09T11:47:01.2172606Z libwebp-base conda-forge/linux-64::libwebp-base-1.3.1-hd590300_0 2023-08-09T11:47:01.2173000Z libxcb conda-forge/linux-64::libxcb-1.15-h0b41bf4_0 2023-08-09T11:47:01.2173393Z libzlib conda-forge/linux-64::libzlib-1.2.13-hd590300_5 2023-08-09T11:47:01.2173798Z llvm-openmp conda-forge/linux-64::llvm-openmp-16.0.6-h4dfa4b3_0 2023-08-09T11:47:01.2174225Z llvmlite conda-forge/linux-64::llvmlite-0.40.1-py310h1b8f574_0 2023-08-09T11:47:01.2174616Z mad conda-forge/linux-64::mad-0.15.1b-h9c3ff4c_1 2023-08-09T11:47:01.2175173Z matplotlib-base conda-forge/linux-64::matplotlib-base-3.7.1-py310he60537e_0 2023-08-09T11:47:01.2175621Z mkl-service pkgs/main/linux-64::mkl-service-2.4.0-py310h5eee18b_1 2023-08-09T11:47:01.2176029Z mkl_fft pkgs/main/linux-64::mkl_fft-1.3.6-py310h1128e8f_1 2023-08-09T11:47:01.2176421Z mkl_random pkgs/main/linux-64::mkl_random-1.2.2-py310h1128e8f_1 2023-08-09T11:47:01.2176817Z mpg123 conda-forge/linux-64::mpg123-1.31.3-hcb278e6_0 2023-08-09T11:47:01.2177248Z msgpack-python conda-forge/linux-64::msgpack-python-1.0.5-py310hdf3cbec_0 2023-08-09T11:47:01.2177682Z munkres conda-forge/noarch::munkres-1.1.4-pyh9f0ad1d_0 2023-08-09T11:47:01.2178085Z numba conda-forge/linux-64::numba-0.57.1-py310h0f6aa51_0 2023-08-09T11:47:01.2178478Z numpy pkgs/main/linux-64::numpy-1.24.3-py310h5f9d8c6_1 2023-08-09T11:47:01.2178960Z numpy-base pkgs/main/linux-64::numpy-base-1.24.3-py310hb5e798b_1 2023-08-09T11:47:01.2179373Z openjpeg conda-forge/linux-64::openjpeg-2.5.0-hfec8fc6_2 2023-08-09T11:47:01.2179785Z packaging conda-forge/noarch::packaging-23.1-pyhd8ed1ab_0 2023-08-09T11:47:01.2180215Z parameterized conda-forge/noarch::parameterized-0.9.0-pyhd8ed1ab_0 2023-08-09T11:47:01.2180643Z pillow conda-forge/linux-64::pillow-10.0.0-py310h582fbeb_0 2023-08-09T11:47:01.2181027Z pooch conda-forge/noarch::pooch-1.6.0-pyhd8ed1ab_0 2023-08-09T11:47:01.2181441Z pthread-stubs conda-forge/linux-64::pthread-stubs-0.4-h36c2ea0_1001 2023-08-09T11:47:01.2181875Z pycparser conda-forge/noarch::pycparser-2.21-pyhd8ed1ab_0 2023-08-09T11:47:01.2182389Z pyparsing conda-forge/noarch::pyparsing-3.1.1-pyhd8ed1ab_0 2023-08-09T11:47:01.2182967Z pysocks conda-forge/noarch::pysocks-1.7.1-pyha2e5f31_6 2023-08-09T11:47:01.2183403Z pysoundfile conda-forge/noarch::pysoundfile-0.12.1-pyhd8ed1ab_0 2023-08-09T11:47:31.2939819Z python-dateutil conda-forge/noarch::python-dateutil-2.8.2-pyhd8ed1ab_0 2023-08-09T11:47:31.2940478Z python_abi conda-forge/linux-64::python_abi-3.10-2_cp310 2023-08-09T11:47:31.2941497Z requests conda-forge/noarch::requests-2.31.0-pyhd8ed1ab_0 2023-08-09T11:47:31.2942074Z scikit-learn conda-forge/linux-64::scikit-learn-1.3.0-py310hf7d194e_0 2023-08-09T11:47:31.2942699Z scipy pkgs/main/linux-64::scipy-1.10.1-py310h5f9d8c6_1 2023-08-09T11:47:31.2943516Z six conda-forge/noarch::six-1.16.0-pyh6c4a22f_0 2023-08-09T11:47:31.2944279Z sox conda-forge/linux-64::sox-14.4.2-ha5cc309_1018 2023-08-09T11:47:31.2944795Z soxr conda-forge/linux-64::soxr-0.1.3-h0b41bf4_3 2023-08-09T11:47:31.2945439Z soxr-python conda-forge/linux-64::soxr-python-0.3.5-py310h278f3c1_0 2023-08-09T11:47:31.2945983Z threadpoolctl conda-forge/noarch::threadpoolctl-3.2.0-pyha21a80b_0 2023-08-09T11:47:31.2946441Z unicodedata2 conda-forge/linux-64::unicodedata2-15.0.0-py310h5764c6d_0 2023-08-09T11:47:31.2946871Z urllib3 conda-forge/noarch::urllib3-2.0.4-pyhd8ed1ab_0 2023-08-09T11:47:31.2947288Z xorg-libxau conda-forge/linux-64::xorg-libxau-1.0.11-hd590300_0 2023-08-09T11:47:31.2947715Z xorg-libxdmcp conda-forge/linux-64::xorg-libxdmcp-1.1.3-h7f98852_0 2023-08-09T11:47:31.2947918Z 2023-08-09T11:47:31.2948031Z The following packages will be REMOVED: 2023-08-09T11:47:31.2948983Z 2023-08-09T11:47:31.2949307Z libgomp-11.2.0-h1234567_1 2023-08-09T11:47:31.2949585Z 2023-08-09T11:47:31.2949747Z The following packages will be UPDATED: 2023-08-09T11:47:31.2949939Z 2023-08-09T11:47:31.2950309Z libgcc-ng pkgs/main::libgcc-ng-11.2.0-h1234567_1 --> conda-forge::libgcc-ng-13.1.0-he5830b7_0 2023-08-09T11:47:31.2950840Z libstdcxx-ng pkgs/main::libstdcxx-ng-11.2.0-h12345~ --> conda-forge::libstdcxx-ng-13.1.0-hfd8a6a1_0 2023-08-09T11:47:31.2951341Z openssl pkgs/main::openssl-3.0.10-h7f8727e_0 --> conda-forge::openssl-3.1.2-hd590300_0 2023-08-09T11:47:31.2951789Z zlib pkgs/main::zlib-1.2.13-h5eee18b_0 --> conda-forge::zlib-1.2.13-hd590300_5 2023-08-09T11:47:31.2951983Z 2023-08-09T11:47:31.2952222Z The following packages will be SUPERSEDED by a higher-priority channel: 2023-08-09T11:47:31.2953209Z 2023-08-09T11:47:31.2953702Z _libgcc_mutex pkgs/main::_libgcc_mutex-0.1-main --> conda-forge::_libgcc_mutex-0.1-conda_forge 2023-08-09T11:47:31.2954367Z _openmp_mutex pkgs/main::_openmp_mutex-5.1-1_gnu --> conda-forge::_openmp_mutex-4.5-2_kmp_llvm 2023-08-09T11:47:31.2955025Z libvpx conda-forge::libvpx-1.11.0-h9c3ff4c_3 --> pkgs/main::libvpx-1.7.0-h439df22_0 2023-08-09T11:47:31.2955294Z 2023-08-09T11:47:31.2955301Z 2023-08-09T11:47:31.2955452Z Preparing transaction: ...working... done 2023-08-09T11:47:31.2955987Z Verifying transaction: ...working... done 2023-08-09T11:47:31.2956300Z Executing transaction: ...working... done 2023-08-09T11:47:31.2956526Z + __conda_reactivate 2023-08-09T11:47:31.2956718Z + local ask_conda 2023-08-09T11:47:31.2956941Z ++ PS1='(/work/ci_env) ' 2023-08-09T11:47:31.2957163Z ++ __conda_exe shell.posix reactivate 2023-08-09T11:47:31.2957417Z ++ /opt/conda/bin/conda shell.posix reactivate 2023-08-09T11:47:31.2957731Z + ask_conda='PS1='\''(/work/ci_env) '\'' 2023-08-09T11:47:31.2958406Z export PATH='\''/work/ci_env/bin:/opt/conda/condabin:/opt/conda/bin:/usr/local/cuda-11.8/bin:/opt/rh/devtoolset-9/root/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'\'' 2023-08-09T11:47:31.2958993Z export CONDA_SHLVL='\''2'\'' 2023-08-09T11:47:31.2959393Z export CONDA_PROMPT_MODIFIER='\''(/work/ci_env) '\''' 2023-08-09T11:47:31.2959773Z + eval 'PS1='\''(/work/ci_env) '\'' 2023-08-09T11:47:31.2960452Z export PATH='\''/work/ci_env/bin:/opt/conda/condabin:/opt/conda/bin:/usr/local/cuda-11.8/bin:/opt/rh/devtoolset-9/root/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'\'' 2023-08-09T11:47:31.2961009Z export CONDA_SHLVL='\''2'\'' 2023-08-09T11:47:31.2961406Z export CONDA_PROMPT_MODIFIER='\''(/work/ci_env) '\''' 2023-08-09T11:47:31.2961672Z ++ PS1='(/work/ci_env) ' 2023-08-09T11:47:31.2962332Z ++ export PATH=/work/ci_env/bin:/opt/conda/condabin:/opt/conda/bin:/usr/local/cuda-11.8/bin:/opt/rh/devtoolset-9/root/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin 2023-08-09T11:47:31.2963119Z ++ PATH=/work/ci_env/bin:/opt/conda/condabin:/opt/conda/bin:/usr/local/cuda-11.8/bin:/opt/rh/devtoolset-9/root/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin 2023-08-09T11:47:31.2963739Z ++ export CONDA_SHLVL=2 2023-08-09T11:47:31.2964006Z ++ CONDA_SHLVL=2 2023-08-09T11:47:31.2964358Z ++ export 'CONDA_PROMPT_MODIFIER=(/work/ci_env) ' 2023-08-09T11:47:31.2964796Z ++ CONDA_PROMPT_MODIFIER='(/work/ci_env) ' 2023-08-09T11:47:31.2965091Z + __conda_hashr 2023-08-09T11:47:31.2965389Z + '[' -n '' ']' 2023-08-09T11:47:31.2965678Z + '[' -n '' ']' 2023-08-09T11:47:31.2965927Z + hash -r 2023-08-09T11:47:31.2966916Z + pip3 install --progress-bar off kaldi-io SoundFile coverage pytest pytest-cov scipy==1.7.3 transformers expecttest unidecode inflect Pillow sentencepiece pytorch-lightning 'protobuf<4.21.0' demucs tinytag flashlight-text git+https://github.com/kpu/kenlm/ git+https://github.com/pytorch/fairseq.git@e47a4c8 2023-08-09T11:47:31.2967971Z Collecting git+https://github.com/kpu/kenlm/ 2023-08-09T11:47:31.2968494Z Cloning https://github.com/kpu/kenlm/ to /tmp/pip-req-build-x4_p4iwa 2023-08-09T11:47:31.2969115Z Running command git clone --filter=blob:none --quiet https://github.com/kpu/kenlm/ /tmp/pip-req-build-x4_p4iwa 2023-08-09T11:47:31.2969648Z Resolved https://github.com/kpu/kenlm/ to commit 5bf7b46558e1c5595bf3b8c9b0b1f9d8d257040a 2023-08-09T11:47:31.2970064Z Installing build dependencies ... [?25l- \ | / - done 2023-08-09T11:47:31.2970512Z [?25h Getting requirements to build wheel ... [?25l- done 2023-08-09T11:47:31.2970984Z [?25h Preparing metadata (pyproject.toml) ... [?25l- done 2023-08-09T11:47:31.2971488Z [?25hCollecting git+https://github.com/pytorch/fairseq.git@e47a4c8 2023-08-09T11:47:31.2972096Z Cloning https://github.com/pytorch/fairseq.git (to revision e47a4c8) to /tmp/pip-req-build-cniqcig1 2023-08-09T11:47:31.2972656Z Running command git clone --filter=blob:none --quiet https://github.com/pytorch/fairseq.git /tmp/pip-req-build-cniqcig1 2023-08-09T11:47:31.2973127Z  WARNING: Did not find branch or tag 'e47a4c8', assuming revision or ref. 2023-08-09T11:47:31.2973477Z  Running command git checkout -q e47a4c8 2023-08-09T11:47:31.2973781Z Resolved https://github.com/pytorch/fairseq.git to commit e47a4c8 2023-08-09T11:47:31.2974149Z Running command git submodule update --init --recursive -q 2023-08-09T11:47:31.2974500Z Installing build dependencies ... [?25l- \ | / done 2023-08-09T11:47:31.2975059Z [?25h Getting requirements to build wheel ... [?25ldone 2023-08-09T11:47:31.2975409Z [?25h Installing backend dependencies ... [?25l- \ | / done 2023-08-09T11:47:31.2975767Z [?25h Preparing metadata (pyproject.toml) ... [?25l- done 2023-08-09T11:47:31.2976050Z [?25hCollecting kaldi-io 2023-08-09T11:47:31.2976631Z Obtaining dependency information for kaldi-io from https://files.pythonhosted.org/packages/d8/b5/3aca5c81d094a850ac1331a23d58ce868553720a892db9b0c3a9f9b4c121/kaldi_io-0.9.8-py3-none-any.whl.metadata 2023-08-09T11:47:31.2977167Z Downloading kaldi_io-0.9.8-py3-none-any.whl.metadata (2.2 kB) 2023-08-09T11:47:31.2977603Z Requirement already satisfied: SoundFile in ./ci_env/lib/python3.10/site-packages (0.12.1) 2023-08-09T11:47:31.2977890Z Collecting coverage 2023-08-09T11:47:31.2978591Z Obtaining dependency information for coverage from https://files.pythonhosted.org/packages/b4/bd/1b2331e3a04f4cc9b7b332b1dd0f3a1261dfc4114f8479bebfcc2afee9e8/coverage-7.2.7-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata 2023-08-09T11:47:31.2979352Z Downloading coverage-7.2.7-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (9.7 kB) 2023-08-09T11:47:31.2979682Z Collecting pytest 2023-08-09T11:47:31.2980299Z Obtaining dependency information for pytest from https://files.pythonhosted.org/packages/33/b2/741130cbcf2bbfa852ed95a60dc311c9e232c7ed25bac3d9b8880a8df4ae/pytest-7.4.0-py3-none-any.whl.metadata 2023-08-09T11:47:31.2980873Z Downloading pytest-7.4.0-py3-none-any.whl.metadata (8.0 kB) 2023-08-09T11:47:31.2981242Z Collecting pytest-cov 2023-08-09T11:47:31.2981842Z Obtaining dependency information for pytest-cov from https://files.pythonhosted.org/packages/a7/4b/8b78d126e275efa2379b1c2e09dc52cf70df16fc3b90613ef82531499d73/pytest_cov-4.1.0-py3-none-any.whl.metadata 2023-08-09T11:47:31.2982394Z Downloading pytest_cov-4.1.0-py3-none-any.whl.metadata (26 kB) 2023-08-09T11:47:31.2982661Z Collecting scipy==1.7.3 2023-08-09T11:47:31.2983049Z Downloading scipy-1.7.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (39.9 MB) 2023-08-09T11:47:31.2983340Z Collecting transformers 2023-08-09T11:47:31.2983946Z Obtaining dependency information for transformers from https://files.pythonhosted.org/packages/21/02/ae8e595f45b6c8edee07913892b3b41f5f5f273962ad98851dc6a564bbb9/transformers-4.31.0-py3-none-any.whl.metadata 2023-08-09T11:47:31.2984524Z Downloading transformers-4.31.0-py3-none-any.whl.metadata (116 kB) 2023-08-09T11:47:31.2984814Z Collecting expecttest 2023-08-09T11:47:31.2985397Z Obtaining dependency information for expecttest from https://files.pythonhosted.org/packages/c7/39/689391845f5dc48df81b0c22248d5f66919b82da12f2bab1424bc3610529/expecttest-0.1.6-py3-none-any.whl.metadata 2023-08-09T11:47:31.2985961Z Downloading expecttest-0.1.6-py3-none-any.whl.metadata (2.5 kB) 2023-08-09T11:47:31.2986230Z Collecting unidecode 2023-08-09T11:47:31.2986542Z Downloading Unidecode-1.3.6-py3-none-any.whl (235 kB) 2023-08-09T11:47:31.2986797Z Collecting inflect 2023-08-09T11:47:31.2987361Z Obtaining dependency information for inflect from https://files.pythonhosted.org/packages/fb/c6/d9feb758be584f729424390af24687d3a4363d968164f94079f83cd536b4/inflect-7.0.0-py3-none-any.whl.metadata 2023-08-09T11:47:31.2987893Z Downloading inflect-7.0.0-py3-none-any.whl.metadata (21 kB) 2023-08-09T11:47:31.2988319Z Requirement already satisfied: Pillow in ./ci_env/lib/python3.10/site-packages (10.0.0) 2023-08-09T11:47:31.2988614Z Collecting sentencepiece 2023-08-09T11:47:31.2989013Z Downloading sentencepiece-0.1.99-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB) 2023-08-09T11:47:31.2989377Z Collecting pytorch-lightning 2023-08-09T11:47:31.2990032Z Obtaining dependency information for pytorch-lightning from https://files.pythonhosted.org/packages/26/b1/f0cbbabeceab4470bde31c025e4ce22084ff446a3f022100f032db9ea88b/pytorch_lightning-2.0.6-py3-none-any.whl.metadata 2023-08-09T11:47:31.2990702Z Downloading pytorch_lightning-2.0.6-py3-none-any.whl.metadata (23 kB) 2023-08-09T11:47:31.2991008Z Collecting protobuf<4.21.0 2023-08-09T11:47:31.2991398Z Downloading protobuf-3.20.3-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (1.1 MB) 2023-08-09T11:47:31.2991687Z Collecting demucs 2023-08-09T11:47:36.8653233Z Downloading demucs-4.0.0.tar.gz (1.2 MB) 2023-08-09T11:47:36.8653809Z Preparing metadata (setup.py) ... [?25l- done 2023-08-09T11:47:36.8654196Z [?25hCollecting tinytag 2023-08-09T11:47:36.8654580Z Downloading tinytag-1.9.0.tar.gz (39 kB) 2023-08-09T11:47:36.8655151Z Preparing metadata (setup.py) ... [?25l- done 2023-08-09T11:47:36.8655501Z [?25hCollecting flashlight-text 2023-08-09T11:47:36.8656435Z Obtaining dependency information for flashlight-text from https://files.pythonhosted.org/packages/09/ad/c130b2f4420f1fd6711c4717b3040102cfec1b598af20e5e9df899310c37/flashlight_text-0.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata 2023-08-09T11:47:36.8657236Z Downloading flashlight_text-0.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (10 kB) 2023-08-09T11:47:36.8657622Z Collecting numpy<1.23.0,>=1.16.5 (from scipy==1.7.3) 2023-08-09T11:47:36.8658024Z Downloading numpy-1.22.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.8 MB) 2023-08-09T11:47:36.8658499Z Requirement already satisfied: cffi>=1.0 in ./ci_env/lib/python3.10/site-packages (from SoundFile) (1.15.1) 2023-08-09T11:47:36.8658815Z Collecting iniconfig (from pytest) 2023-08-09T11:47:36.8659144Z Downloading iniconfig-2.0.0-py3-none-any.whl (5.9 kB) 2023-08-09T11:47:36.8659788Z Requirement already satisfied: packaging in ./ci_env/lib/python3.10/site-packages (from pytest) (23.1) 2023-08-09T11:47:36.8660107Z Collecting pluggy<2.0,>=0.12 (from pytest) 2023-08-09T11:47:36.8660716Z Obtaining dependency information for pluggy<2.0,>=0.12 from https://files.pythonhosted.org/packages/51/32/4a79112b8b87b21450b066e102d6608907f4c885ed7b04c3fdb085d4d6ae/pluggy-1.2.0-py3-none-any.whl.metadata 2023-08-09T11:47:36.8661291Z Downloading pluggy-1.2.0-py3-none-any.whl.metadata (4.4 kB) 2023-08-09T11:47:36.8661609Z Collecting exceptiongroup>=1.0.0rc8 (from pytest) 2023-08-09T11:47:36.8662332Z Obtaining dependency information for exceptiongroup>=1.0.0rc8 from https://files.pythonhosted.org/packages/fe/17/f43b7c9ccf399d72038042ee72785c305f6c6fdc6231942f8ab99d995742/exceptiongroup-1.1.2-py3-none-any.whl.metadata 2023-08-09T11:47:36.8662976Z Downloading exceptiongroup-1.1.2-py3-none-any.whl.metadata (6.1 kB) 2023-08-09T11:47:36.8663291Z Collecting tomli>=1.0.0 (from pytest) 2023-08-09T11:47:36.8663625Z Downloading tomli-2.0.1-py3-none-any.whl (12 kB) 2023-08-09T11:47:36.8664089Z Requirement already satisfied: filelock in ./ci_env/lib/python3.10/site-packages (from transformers) (3.9.0) 2023-08-09T11:47:36.8664518Z Collecting huggingface-hub<1.0,>=0.14.1 (from transformers) 2023-08-09T11:47:36.8665263Z Obtaining dependency information for huggingface-hub<1.0,>=0.14.1 from https://files.pythonhosted.org/packages/7f/c4/adcbe9a696c135578cabcbdd7331332daad4d49b7c43688bc2d36b3a47d2/huggingface_hub-0.16.4-py3-none-any.whl.metadata 2023-08-09T11:47:36.8665891Z Downloading huggingface_hub-0.16.4-py3-none-any.whl.metadata (12 kB) 2023-08-09T11:47:36.8666385Z Requirement already satisfied: pyyaml>=5.1 in ./ci_env/lib/python3.10/site-packages (from transformers) (6.0) 2023-08-09T11:47:36.8666728Z Collecting regex!=2019.12.17 (from transformers) 2023-08-09T11:47:36.8667476Z Obtaining dependency information for regex!=2019.12.17 from https://files.pythonhosted.org/packages/d1/df/460ca6171a8494fcf37af43f52f6fac23e38784bb4a26563f6fa01ef6faf/regex-2023.8.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata 2023-08-09T11:47:36.8668155Z Downloading regex-2023.8.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) 2023-08-09T11:47:36.8668670Z Requirement already satisfied: requests in ./ci_env/lib/python3.10/site-packages (from transformers) (2.31.0) 2023-08-09T11:47:36.8669129Z Collecting tokenizers!=0.11.3,<0.14,>=0.11.1 (from transformers) 2023-08-09T11:47:36.8669559Z Downloading tokenizers-0.13.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.8 MB) 2023-08-09T11:47:36.8669885Z Collecting safetensors>=0.3.1 (from transformers) 2023-08-09T11:47:36.8670576Z Obtaining dependency information for safetensors>=0.3.1 from https://files.pythonhosted.org/packages/37/9b/5d880ca9f94a2e4f16111507674910ca1932cffbd2bbeb688b8c8102a6d0/safetensors-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata 2023-08-09T11:47:36.8671222Z Downloading safetensors-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.5 kB) 2023-08-09T11:47:36.8671562Z Collecting tqdm>=4.27 (from transformers) 2023-08-09T11:47:36.8672148Z Obtaining dependency information for tqdm>=4.27 from https://files.pythonhosted.org/packages/a5/d6/502a859bac4ad5e274255576cd3e15ca273cdb91731bc39fb840dd422ee9/tqdm-4.66.0-py3-none-any.whl.metadata 2023-08-09T11:47:36.8672685Z Downloading tqdm-4.66.0-py3-none-any.whl.metadata (57 kB) 2023-08-09T11:47:36.8672971Z Collecting pydantic>=1.9.1 (from inflect) 2023-08-09T11:47:36.8673583Z Obtaining dependency information for pydantic>=1.9.1 from https://files.pythonhosted.org/packages/87/80/52770e747e4bee5012e60b2684db36c8fdf010f8dadb4ded0efec808b07d/pydantic-2.1.1-py3-none-any.whl.metadata 2023-08-09T11:47:36.8674131Z Downloading pydantic-2.1.1-py3-none-any.whl.metadata (136 kB) 2023-08-09T11:47:36.8674604Z Requirement already satisfied: typing-extensions in ./ci_env/lib/python3.10/site-packages (from inflect) (4.7.1) 2023-08-09T11:47:36.8675221Z Requirement already satisfied: torch>=1.11.0 in ./ci_env/lib/python3.10/site-packages (from pytorch-lightning) (2.1.0.dev20230809) 2023-08-09T11:47:36.8675770Z Requirement already satisfied: fsspec[http]>2021.06.0 in ./ci_env/lib/python3.10/site-packages (from pytorch-lightning) (2023.6.0) 2023-08-09T11:47:36.8676193Z Collecting torchmetrics>=0.7.0 (from pytorch-lightning) 2023-08-09T11:47:36.8676838Z Obtaining dependency information for torchmetrics>=0.7.0 from https://files.pythonhosted.org/packages/67/90/9ac94af10cd1777859a92be1e8186325490654930e871f8bb219cc342868/torchmetrics-1.0.3-py3-none-any.whl.metadata 2023-08-09T11:47:36.8677404Z Downloading torchmetrics-1.0.3-py3-none-any.whl.metadata (21 kB) 2023-08-09T11:47:36.8677797Z Collecting lightning-utilities>=0.7.0 (from pytorch-lightning) 2023-08-09T11:47:36.8678485Z Obtaining dependency information for lightning-utilities>=0.7.0 from https://files.pythonhosted.org/packages/46/ee/8641eeb6a062f383b7d6875604e1f3f83bd2c93a0b4dbcabd3150b32de6e/lightning_utilities-0.9.0-py3-none-any.whl.metadata 2023-08-09T11:47:36.8679102Z Downloading lightning_utilities-0.9.0-py3-none-any.whl.metadata (4.6 kB) 2023-08-09T11:47:36.8679445Z Collecting dora-search (from demucs) 2023-08-09T11:47:36.8679744Z Downloading dora_search-0.1.12.tar.gz (87 kB) 2023-08-09T11:47:36.8680078Z Installing build dependencies ... [?25l- \ | done 2023-08-09T11:47:36.8680419Z [?25h Getting requirements to build wheel ... [?25l- done 2023-08-09T11:47:36.8680759Z [?25h Preparing metadata (pyproject.toml) ... [?25l- done 2023-08-09T11:47:36.8681063Z [?25hCollecting diffq>=0.2.1 (from demucs) 2023-08-09T11:47:36.8681511Z Downloading diffq-0.2.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (418 kB) 2023-08-09T11:47:36.8681843Z Collecting einops (from demucs) 2023-08-09T11:47:36.8682149Z Downloading einops-0.6.1-py3-none-any.whl (42 kB) 2023-08-09T11:47:36.8682420Z Collecting julius>=0.2.3 (from demucs) 2023-08-09T11:47:36.8682720Z Downloading julius-0.2.7.tar.gz (59 kB) 2023-08-09T11:47:36.8683022Z Preparing metadata (setup.py) ... [?25l- done 2023-08-09T11:47:36.8683323Z [?25hCollecting lameenc>=1.2 (from demucs) 2023-08-09T11:47:36.8684086Z Obtaining dependency information for lameenc>=1.2 from https://files.pythonhosted.org/packages/a3/26/80611c1f80c2c68bcf23499bda508a817571c3d6a9496208a6330e8b9951/lameenc-1.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl.metadata 2023-08-09T11:47:36.8684766Z Downloading lameenc-1.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl.metadata (803 bytes) 2023-08-09T11:47:36.8685092Z Collecting openunmix (from demucs) 2023-08-09T11:47:36.8685419Z Downloading openunmix-1.2.1-py3-none-any.whl (46 kB) 2023-08-09T11:47:36.8685760Z Requirement already satisfied: torchaudio>=0.8 in /work (from demucs) (2.1.0a0+fe9b9ff) 2023-08-09T11:47:36.8686067Z Collecting cython (from fairseq==1.0.0a0+e47a4c8) 2023-08-09T11:47:36.8686735Z Obtaining dependency information for cython from https://files.pythonhosted.org/packages/6f/8c/68139f464aeee699b04ec401b9de0d7e05fdd3a123c4c13429b887e16c8f/Cython-3.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata 2023-08-09T11:47:36.8687366Z Using cached Cython-3.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.1 kB) 2023-08-09T11:47:36.8688042Z Collecting hydra-core<1.1 (from fairseq==1.0.0a0+e47a4c8) 2023-08-09T11:47:36.8688382Z Downloading hydra_core-1.0.7-py3-none-any.whl (123 kB) 2023-08-09T11:47:36.8688677Z Collecting omegaconf<2.1 (from fairseq==1.0.0a0+e47a4c8) 2023-08-09T11:47:36.8689025Z Downloading omegaconf-2.0.6-py3-none-any.whl (36 kB) 2023-08-09T11:47:36.8689322Z Collecting sacrebleu>=1.4.12 (from fairseq==1.0.0a0+e47a4c8) 2023-08-09T11:47:36.8689669Z Downloading sacrebleu-2.3.1-py3-none-any.whl (118 kB) 2023-08-09T11:47:36.8690136Z Requirement already satisfied: pycparser in ./ci_env/lib/python3.10/site-packages (from cffi>=1.0->SoundFile) (2.21) 2023-08-09T11:47:36.8690710Z Collecting aiohttp!=4.0.0a0,!=4.0.0a1 (from fsspec[http]>2021.06.0->pytorch-lightning) 2023-08-09T11:47:36.8691449Z Obtaining dependency information for aiohttp!=4.0.0a0,!=4.0.0a1 from https://files.pythonhosted.org/packages/3e/f6/fcda07dd1e72260989f0b22dde999ecfe80daa744f23ca167083683399bc/aiohttp-3.8.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata 2023-08-09T11:47:36.8692148Z Downloading aiohttp-3.8.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (7.7 kB) 2023-08-09T11:47:36.8692601Z Collecting antlr4-python3-runtime==4.8 (from hydra-core<1.1->fairseq==1.0.0a0+e47a4c8) 2023-08-09T11:47:36.8692998Z Downloading antlr4-python3-runtime-4.8.tar.gz (112 kB) 2023-08-09T11:47:36.8693334Z Preparing metadata (setup.py) ... [?25l- done 2023-08-09T11:47:36.8693693Z [?25hCollecting annotated-types>=0.4.0 (from pydantic>=1.9.1->inflect) 2023-08-09T11:47:36.8694365Z Obtaining dependency information for annotated-types>=0.4.0 from https://files.pythonhosted.org/packages/d8/f0/a2ee543a96cc624c35a9086f39b1ed2aa403c6d355dfe47a11ee5c64a164/annotated_types-0.5.0-py3-none-any.whl.metadata 2023-08-09T11:48:14.2608510Z Downloading annotated_types-0.5.0-py3-none-any.whl.metadata (11 kB) 2023-08-09T11:48:14.2608961Z Collecting pydantic-core==2.4.0 (from pydantic>=1.9.1->inflect) 2023-08-09T11:48:14.2609710Z Obtaining dependency information for pydantic-core==2.4.0 from https://files.pythonhosted.org/packages/97/0a/5673dc7f7e232c3421a4c33fd1d261ebe9b963d0f9e9c2c03d5dd7382769/pydantic_core-2.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata 2023-08-09T11:48:14.2610445Z Downloading pydantic_core-2.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.5 kB) 2023-08-09T11:48:14.2610981Z Collecting portalocker (from sacrebleu>=1.4.12->fairseq==1.0.0a0+e47a4c8) 2023-08-09T11:48:14.2611461Z Downloading portalocker-2.7.0-py2.py3-none-any.whl (15 kB) 2023-08-09T11:48:14.2611872Z Collecting tabulate>=0.8.9 (from sacrebleu>=1.4.12->fairseq==1.0.0a0+e47a4c8) 2023-08-09T11:48:14.2612234Z Downloading tabulate-0.9.0-py3-none-any.whl (35 kB) 2023-08-09T11:48:14.2612594Z Collecting colorama (from sacrebleu>=1.4.12->fairseq==1.0.0a0+e47a4c8) 2023-08-09T11:48:14.2612958Z Downloading colorama-0.4.6-py2.py3-none-any.whl (25 kB) 2023-08-09T11:48:14.2613648Z Collecting lxml (from sacrebleu>=1.4.12->fairseq==1.0.0a0+e47a4c8) 2023-08-09T11:48:14.2614582Z Obtaining dependency information for lxml from https://files.pythonhosted.org/packages/01/ae/ce23856fb6065f254101c1df381050b13adf26088dd554a15776615d470f/lxml-4.9.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl.metadata 2023-08-09T11:48:14.2615612Z Downloading lxml-4.9.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl.metadata (3.8 kB) 2023-08-09T11:48:14.2616400Z Requirement already satisfied: sympy in ./ci_env/lib/python3.10/site-packages (from torch>=1.11.0->pytorch-lightning) (1.11.1) 2023-08-09T11:48:14.2617093Z Requirement already satisfied: networkx in ./ci_env/lib/python3.10/site-packages (from torch>=1.11.0->pytorch-lightning) (3.1) 2023-08-09T11:48:14.2617847Z Requirement already satisfied: jinja2 in ./ci_env/lib/python3.10/site-packages (from torch>=1.11.0->pytorch-lightning) (3.1.2) 2023-08-09T11:48:14.2618386Z Collecting retrying (from dora-search->demucs) 2023-08-09T11:48:14.2618850Z Downloading retrying-1.3.4-py3-none-any.whl (11 kB) 2023-08-09T11:48:14.2619187Z Collecting submitit (from dora-search->demucs) 2023-08-09T11:48:14.2619526Z Downloading submitit-1.4.5-py3-none-any.whl (73 kB) 2023-08-09T11:48:14.2619849Z Collecting treetable (from dora-search->demucs) 2023-08-09T11:48:14.2620168Z Downloading treetable-0.2.5.tar.gz (10 kB) 2023-08-09T11:48:14.2620490Z Preparing metadata (setup.py) ... [?25l- done 2023-08-09T11:48:14.2620968Z [?25hRequirement already satisfied: charset-normalizer<4,>=2 in ./ci_env/lib/python3.10/site-packages (from requests->transformers) (3.2.0) 2023-08-09T11:48:14.2621668Z Requirement already satisfied: idna<4,>=2.5 in ./ci_env/lib/python3.10/site-packages (from requests->transformers) (3.4) 2023-08-09T11:48:14.2622200Z Requirement already satisfied: urllib3<3,>=1.21.1 in ./ci_env/lib/python3.10/site-packages (from requests->transformers) (2.0.4) 2023-08-09T11:48:14.2622736Z Requirement already satisfied: certifi>=2017.4.17 in ./ci_env/lib/python3.10/site-packages (from requests->transformers) (2023.7.22) 2023-08-09T11:48:14.2623266Z Collecting attrs>=17.3.0 (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]>2021.06.0->pytorch-lightning) 2023-08-09T11:48:14.2623641Z Downloading attrs-23.1.0-py3-none-any.whl (61 kB) 2023-08-09T11:48:14.2624062Z Collecting multidict<7.0,>=4.5 (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]>2021.06.0->pytorch-lightning) 2023-08-09T11:48:14.2624527Z Downloading multidict-6.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (114 kB) 2023-08-09T11:48:14.2625009Z Collecting async-timeout<5.0,>=4.0.0a3 (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]>2021.06.0->pytorch-lightning) 2023-08-09T11:48:14.2625416Z Downloading async_timeout-4.0.2-py3-none-any.whl (5.8 kB) 2023-08-09T11:48:14.2625843Z Collecting yarl<2.0,>=1.0 (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]>2021.06.0->pytorch-lightning) 2023-08-09T11:48:14.2626284Z Downloading yarl-1.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (268 kB) 2023-08-09T11:48:14.2626738Z Collecting frozenlist>=1.1.1 (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]>2021.06.0->pytorch-lightning) 2023-08-09T11:48:14.2627521Z Obtaining dependency information for frozenlist>=1.1.1 from https://files.pythonhosted.org/packages/1e/28/74b8b6451c89c070d34e753d8b65a1e4ce508a6808b18529f36e8c0e2184/frozenlist-1.4.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata 2023-08-09T11:48:14.2628254Z Downloading frozenlist-1.4.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.2 kB) 2023-08-09T11:48:14.2628766Z Collecting aiosignal>=1.1.2 (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]>2021.06.0->pytorch-lightning) 2023-08-09T11:48:14.2629151Z Downloading aiosignal-1.3.1-py3-none-any.whl (7.6 kB) 2023-08-09T11:48:14.2629717Z Requirement already satisfied: MarkupSafe>=2.0 in ./ci_env/lib/python3.10/site-packages (from jinja2->torch>=1.11.0->pytorch-lightning) (2.1.1) 2023-08-09T11:48:14.2630280Z Requirement already satisfied: six>=1.7.0 in ./ci_env/lib/python3.10/site-packages (from retrying->dora-search->demucs) (1.16.0) 2023-08-09T11:48:14.2630717Z Collecting cloudpickle>=1.2.1 (from submitit->dora-search->demucs) 2023-08-09T11:48:14.2631084Z Downloading cloudpickle-2.2.1-py3-none-any.whl (25 kB) 2023-08-09T11:48:14.2631584Z Requirement already satisfied: mpmath>=0.19 in ./ci_env/lib/python3.10/site-packages (from sympy->torch>=1.11.0->pytorch-lightning) (1.3.0) 2023-08-09T11:48:14.2632009Z Downloading kaldi_io-0.9.8-py3-none-any.whl (16 kB) 2023-08-09T11:48:14.2632479Z Downloading coverage-7.2.7-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (228 kB) 2023-08-09T11:48:14.2632891Z Downloading pytest-7.4.0-py3-none-any.whl (323 kB) 2023-08-09T11:48:14.2633240Z Downloading pytest_cov-4.1.0-py3-none-any.whl (21 kB) 2023-08-09T11:48:14.2633607Z Downloading transformers-4.31.0-py3-none-any.whl (7.4 MB) 2023-08-09T11:48:14.2633976Z Downloading expecttest-0.1.6-py3-none-any.whl (6.5 kB) 2023-08-09T11:48:14.2634342Z Downloading inflect-7.0.0-py3-none-any.whl (34 kB) 2023-08-09T11:48:14.2634710Z Downloading pytorch_lightning-2.0.6-py3-none-any.whl (722 kB) 2023-08-09T11:48:14.2635146Z Downloading flashlight_text-0.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB) 2023-08-09T11:48:14.2635556Z Downloading exceptiongroup-1.1.2-py3-none-any.whl (14 kB) 2023-08-09T11:48:14.2635934Z Downloading huggingface_hub-0.16.4-py3-none-any.whl (268 kB) 2023-08-09T11:48:14.2636454Z Downloading lameenc-1.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (180 kB) 2023-08-09T11:48:14.2636874Z Downloading lightning_utilities-0.9.0-py3-none-any.whl (23 kB) 2023-08-09T11:48:14.2637235Z Downloading pluggy-1.2.0-py3-none-any.whl (17 kB) 2023-08-09T11:48:14.2637583Z Downloading pydantic-2.1.1-py3-none-any.whl (370 kB) 2023-08-09T11:48:14.2638013Z Downloading pydantic_core-2.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB) 2023-08-09T11:48:14.2638473Z Downloading regex-2023.8.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (771 kB) 2023-08-09T11:48:14.2638934Z Downloading safetensors-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB) 2023-08-09T11:48:14.2639343Z Downloading torchmetrics-1.0.3-py3-none-any.whl (731 kB) 2023-08-09T11:48:14.2639685Z Downloading tqdm-4.66.0-py3-none-any.whl (78 kB) 2023-08-09T11:48:14.2640089Z Using cached Cython-3.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.6 MB) 2023-08-09T11:48:14.2640538Z Downloading aiohttp-3.8.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB) 2023-08-09T11:48:14.2640928Z Downloading annotated_types-0.5.0-py3-none-any.whl (11 kB) 2023-08-09T11:48:14.2641373Z Downloading lxml-4.9.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (7.0 MB) 2023-08-09T11:48:14.2641902Z Downloading frozenlist-1.4.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (225 kB) 2023-08-09T11:48:14.2642451Z Building wheels for collected packages: demucs, tinytag, kenlm, fairseq, antlr4-python3-runtime, julius, dora-search, treetable 2023-08-09T11:48:14.2642905Z Building wheel for demucs (setup.py) ... [?25l- done 2023-08-09T11:48:14.2643455Z [?25h Created wheel for demucs: filename=demucs-4.0.0-py3-none-any.whl size=76505 sha256=f476098b7d5a4b303138e3f8ce2d40e83bb888bb02bed05ab42d9cc16c7b9162 2023-08-09T11:48:14.2643910Z Stored in directory: /root/.cache/pip/wheels/64/fc/2e/a8e874bba1518a336f21a94085013fba17cb86658ce18ec1c7 2023-08-09T11:48:14.2644296Z Building wheel for tinytag (setup.py) ... [?25l- done 2023-08-09T11:48:14.2644818Z [?25h Created wheel for tinytag: filename=tinytag-1.9.0-py3-none-any.whl size=36820 sha256=ea4511b48dc42278b80fae92c5f031eab72985b703b8f59932a70cf2262bd92f 2023-08-09T11:48:14.2645333Z Stored in directory: /root/.cache/pip/wheels/c5/30/dd/4838f2a4769fbe88d28f55035ed2f3f52be5e30ea76e4d656f 2023-08-09T11:48:14.2645947Z Building wheel for kenlm (pyproject.toml) ... [?25l- \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - done 2023-08-09T11:48:14.2646594Z [?25h Created wheel for kenlm: filename=kenlm-0.0.0-cp310-cp310-linux_x86_64.whl size=576111 sha256=b39a491d0ee5c6e0ca2aacd452e2c07e17396b2f574d0db4a16c33d3b164e032 2023-08-09T11:48:14.2647174Z Stored in directory: /tmp/pip-ephem-wheel-cache-wcx_69db/wheels/95/80/fa/d67a874025a3e75c60884f0c370695d471181f2730b63e033e 2023-08-09T11:48:14.2647831Z Building wheel for fairseq (pyproject.toml) ... [?25l- \ | / - \ | / - \ | done 2023-08-09T11:48:14.2648433Z [?25h Created wheel for fairseq: filename=fairseq-1.0.0a0+e47a4c8-cp310-cp310-linux_x86_64.whl size=1616295 sha256=a7f01bcf961941ea2c99519bcf0dfc2c58b70202f7df825ea85c71bd3f8260e2 2023-08-09T11:48:14.2649046Z Stored in directory: /tmp/pip-ephem-wheel-cache-wcx_69db/wheels/a1/fc/3a/2634bff87fc18dbc37524a6419ad4db2e3450a2ccf683c4b8a 2023-08-09T11:48:32.8559438Z Building wheel for antlr4-python3-runtime (setup.py) ... [?25l- done 2023-08-09T11:48:32.8560282Z [?25h Created wheel for antlr4-python3-runtime: filename=antlr4_python3_runtime-4.8-py3-none-any.whl size=141211 sha256=d5e9644ed0352f1fbda0f7bc6f8673a34986805fa4fa5205aa6dc3ada995ddd2 2023-08-09T11:48:32.8560846Z Stored in directory: /root/.cache/pip/wheels/a7/20/bd/e1477d664f22d99989fd28ee1a43d6633dddb5cb9e801350d5 2023-08-09T11:48:32.8561616Z Building wheel for julius (setup.py) ... [?25l- done 2023-08-09T11:48:32.8562147Z [?25h Created wheel for julius: filename=julius-0.2.7-py3-none-any.whl size=21879 sha256=dae985a5adc1dfb4a4b15fb9be5ff99e59532364ec06634c839d00d29df7c974 2023-08-09T11:48:32.8562680Z Stored in directory: /root/.cache/pip/wheels/b9/b2/05/f883527ffcb7f2ead5438a2c23439aa0c881eaa9a4c80256f4 2023-08-09T11:48:32.8563245Z Building wheel for dora-search (pyproject.toml) ... [?25l- done 2023-08-09T11:48:32.8563967Z [?25h Created wheel for dora-search: filename=dora_search-0.1.12-py3-none-any.whl size=75091 sha256=c06eb7e02319ce91e9997408249ab8fcfdfebe5de0f0ca158117d5f308851c20 2023-08-09T11:48:32.8564595Z Stored in directory: /root/.cache/pip/wheels/b1/c2/c0/bea5cc405497284d584b958f293ef32c23bad42ae5e44d973c 2023-08-09T11:48:32.8565031Z Building wheel for treetable (setup.py) ... [?25l- done 2023-08-09T11:48:32.8565676Z [?25h Created wheel for treetable: filename=treetable-0.2.5-py3-none-any.whl size=7333 sha256=27134c21a3222dfa2d2cdc446ec5ac82a875884c4c7b117b5ca81ef67212d5ff 2023-08-09T11:48:32.8566276Z Stored in directory: /root/.cache/pip/wheels/72/55/0e/91c3655bdb162446f8a7cd477579397544454a63ae7c599c0c 2023-08-09T11:48:32.8566786Z Successfully built demucs tinytag kenlm fairseq antlr4-python3-runtime julius dora-search treetable 2023-08-09T11:48:32.8567949Z DEPRECATION: omegaconf 2.0.6 has a non-standard dependency specifier PyYAML>=5.1.*. pip 23.3 will enforce this behaviour change. A possible replacement is to upgrade to a newer version of omegaconf or contact the author to suggest that they release a version with a conforming dependency specifiers. Discussion can be found at https://github.com/pypa/pip/issues/12063 2023-08-09T11:48:32.8569823Z Installing collected packages: tokenizers, sentencepiece, safetensors, lameenc, kenlm, antlr4-python3-runtime, unidecode, treetable, tqdm, tomli, tinytag, tabulate, retrying, regex, pydantic-core, protobuf, portalocker, pluggy, omegaconf, numpy, multidict, lxml, lightning-utilities, iniconfig, frozenlist, flashlight-text, expecttest, exceptiongroup, einops, cython, coverage, colorama, cloudpickle, attrs, async-timeout, annotated-types, yarl, submitit, scipy, sacrebleu, pytest, pydantic, kaldi-io, hydra-core, huggingface-hub, aiosignal, transformers, torchmetrics, pytest-cov, julius, inflect, fairseq, dora-search, diffq, aiohttp, openunmix, pytorch-lightning, demucs 2023-08-09T11:48:32.8570793Z Attempting uninstall: numpy 2023-08-09T11:48:32.8571053Z Found existing installation: numpy 1.24.3 2023-08-09T11:48:32.8571349Z Uninstalling numpy-1.24.3: 2023-08-09T11:48:32.8571635Z Successfully uninstalled numpy-1.24.3 2023-08-09T11:48:32.8571882Z Attempting uninstall: scipy 2023-08-09T11:48:32.8572178Z Found existing installation: scipy 1.10.1 2023-08-09T11:48:32.8572459Z Uninstalling scipy-1.10.1: 2023-08-09T11:48:32.8572749Z Successfully uninstalled scipy-1.10.1 2023-08-09T11:48:32.8574584Z Successfully installed aiohttp-3.8.5 aiosignal-1.3.1 annotated-types-0.5.0 antlr4-python3-runtime-4.8 async-timeout-4.0.2 attrs-23.1.0 cloudpickle-2.2.1 colorama-0.4.6 coverage-7.2.7 cython-3.0.0 demucs-4.0.0 diffq-0.2.4 dora-search-0.1.12 einops-0.6.1 exceptiongroup-1.1.2 expecttest-0.1.6 fairseq-1.0.0a0+e47a4c8 flashlight-text-0.0.4 frozenlist-1.4.0 huggingface-hub-0.16.4 hydra-core-1.0.7 inflect-7.0.0 iniconfig-2.0.0 julius-0.2.7 kaldi-io-0.9.8 kenlm-0.0.0 lameenc-1.5.1 lightning-utilities-0.9.0 lxml-4.9.3 multidict-6.0.4 numpy-1.22.4 omegaconf-2.0.6 openunmix-1.2.1 pluggy-1.2.0 portalocker-2.7.0 protobuf-3.20.3 pydantic-2.1.1 pydantic-core-2.4.0 pytest-7.4.0 pytest-cov-4.1.0 pytorch-lightning-2.0.6 regex-2023.8.8 retrying-1.3.4 sacrebleu-2.3.1 safetensors-0.3.2 scipy-1.7.3 sentencepiece-0.1.99 submitit-1.4.5 tabulate-0.9.0 tinytag-1.9.0 tokenizers-0.13.3 tomli-2.0.1 torchmetrics-1.0.3 tqdm-4.66.0 transformers-4.31.0 treetable-0.2.5 unidecode-1.3.6 yarl-1.9.2 2023-08-09T11:48:32.8576346Z WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv 2023-08-09T11:48:32.8576927Z + echo ::endgroup:: 2023-08-09T11:48:32.8577371Z ##[endgroup] 2023-08-09T11:48:32.8577619Z + echo '::group::Run tests' 2023-08-09T11:48:32.8577991Z ##[group]Run tests 2023-08-09T11:48:32.8578586Z + export PATH=/work/third_party/install/bin/:/work/ci_env/bin:/opt/conda/condabin:/opt/conda/bin:/usr/local/cuda-11.8/bin:/opt/rh/devtoolset-9/root/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin 2023-08-09T11:48:32.8579300Z + PATH=/work/third_party/install/bin/:/work/ci_env/bin:/opt/conda/condabin:/opt/conda/bin:/usr/local/cuda-11.8/bin:/opt/rh/devtoolset-9/root/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin 2023-08-09T11:48:32.8579887Z + args=('-v' '--cov=torchaudio' "--junitxml=${RUNNER_TEST_RESULTS_DIR}/junit.xml" '--durations' '100' '-k' 'cuda or gpu') 2023-08-09T11:48:32.8580236Z + declare -a args 2023-08-09T11:48:32.8580423Z + cd test 2023-08-09T11:48:32.8580661Z + python3 -m torch.utils.collect_env 2023-08-09T11:48:32.8580919Z Collecting environment information... 2023-08-09T11:48:32.8581163Z PyTorch version: 2.1.0.dev20230809 2023-08-09T11:48:32.8581380Z Is debug build: False 2023-08-09T11:48:32.8581609Z CUDA used to build PyTorch: 11.8 2023-08-09T11:48:32.8581843Z ROCM used to build PyTorch: N/A 2023-08-09T11:48:32.8581985Z 2023-08-09T11:48:32.8582075Z OS: CentOS Linux 7 (Core) (x86_64) 2023-08-09T11:48:32.8582370Z GCC version: (GCC) 9.3.1 20200408 (Red Hat 9.3.1-2) 2023-08-09T11:48:32.8582610Z Clang version: Could not collect 2023-08-09T11:48:32.8582828Z CMake version: version 3.26.4 2023-08-09T11:48:32.8583079Z Libc version: glibc-2.17 2023-08-09T11:48:32.8583210Z 2023-08-09T11:48:32.8583420Z Python version: 3.10.12 (main, Jul 5 2023, 18:54:27) [GCC 11.2.0] (64-bit runtime) 2023-08-09T11:48:32.8583805Z Python platform: Linux-4.14.252-195.483.amzn2.x86_64-x86_64-with-glibc2.17 2023-08-09T11:48:32.8584066Z Is CUDA available: True 2023-08-09T11:48:32.8584333Z CUDA runtime version: 11.8.89 2023-08-09T11:48:32.8584644Z CUDA_MODULE_LOADING set to: LAZY 2023-08-09T11:48:32.8584950Z GPU models and configuration: GPU 0: NVIDIA A10G 2023-08-09T11:48:32.8585273Z Nvidia driver version: 535.54.03 2023-08-09T11:48:32.8585555Z cuDNN version: Probably one of the following: 2023-08-09T11:48:32.8585934Z /usr/local/cuda-11.8/targets/x86_64-linux/lib/libcudnn.so.8.7.0 2023-08-09T11:48:32.8586333Z /usr/local/cuda-11.8/targets/x86_64-linux/lib/libcudnn_adv_infer.so.8.7.0 2023-08-09T11:48:32.8586744Z /usr/local/cuda-11.8/targets/x86_64-linux/lib/libcudnn_adv_train.so.8.7.0 2023-08-09T11:48:32.8587149Z /usr/local/cuda-11.8/targets/x86_64-linux/lib/libcudnn_cnn_infer.so.8.7.0 2023-08-09T11:48:32.8587530Z /usr/local/cuda-11.8/targets/x86_64-linux/lib/libcudnn_cnn_train.so.8.7.0 2023-08-09T11:48:32.8587949Z /usr/local/cuda-11.8/targets/x86_64-linux/lib/libcudnn_ops_infer.so.8.7.0 2023-08-09T11:48:32.8588387Z /usr/local/cuda-11.8/targets/x86_64-linux/lib/libcudnn_ops_train.so.8.7.0 2023-08-09T11:48:32.8588705Z HIP runtime version: N/A 2023-08-09T11:48:32.8588932Z MIOpen runtime version: N/A 2023-08-09T11:48:32.8589185Z Is XNNPACK available: True 2023-08-09T11:48:32.8589344Z 2023-08-09T11:48:32.8589441Z CPU: 2023-08-09T11:48:32.8614792Z Architecture: x86_64 2023-08-09T11:48:32.8615199Z CPU op-mode(s): 32-bit, 64-bit 2023-08-09T11:48:32.8615440Z Byte Order: Little Endian 2023-08-09T11:48:32.8615646Z CPU(s): 16 2023-08-09T11:48:32.8615891Z On-line CPU(s) list: 0-15 2023-08-09T11:48:32.8616110Z Thread(s) per core: 2 2023-08-09T11:48:32.8616324Z Core(s) per socket: 8 2023-08-09T11:48:32.8616534Z Socket(s): 1 2023-08-09T11:48:32.8616731Z NUMA node(s): 1 2023-08-09T11:48:32.8616947Z Vendor ID: AuthenticAMD 2023-08-09T11:48:32.8617292Z CPU family: 23 2023-08-09T11:48:32.8617503Z Model: 49 2023-08-09T11:48:32.8617716Z Model name: AMD EPYC 7R32 2023-08-09T11:48:32.8617925Z Stepping: 0 2023-08-09T11:48:32.8618130Z CPU MHz: 3100.104 2023-08-09T11:48:32.8618369Z BogoMIPS: 5599.25 2023-08-09T11:48:32.8618601Z Hypervisor vendor: KVM 2023-08-09T11:48:32.8618823Z Virtualization type: full 2023-08-09T11:48:32.8619035Z L1d cache: 32K 2023-08-09T11:48:32.8619226Z L1i cache: 32K 2023-08-09T11:48:32.8619425Z L2 cache: 512K 2023-08-09T11:48:32.8619628Z L3 cache: 16384K 2023-08-09T11:48:32.8619865Z NUMA node0 CPU(s): 0-15 2023-08-09T11:48:32.8620672Z Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf tsc_known_freq pni pclmulqdq ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm cmp_legacy cr8_legacy abm sse4a misalignsse 3dnowprefetch topoext ssbd ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 clzero xsaveerptr arat npt nrip_save rdpid 2023-08-09T11:48:32.8621365Z 2023-08-09T11:48:32.8621470Z Versions of relevant libraries: 2023-08-09T11:48:32.8621689Z [pip3] numpy==1.22.4 2023-08-09T11:48:32.8621946Z [pip3] pytorch-lightning==2.0.6 2023-08-09T11:48:32.8622169Z [pip3] torch==2.1.0.dev20230809 2023-08-09T11:48:32.8622386Z [pip3] torchaudio==2.1.0a0+fe9b9ff 2023-08-09T11:48:32.8622611Z [pip3] torchmetrics==1.0.3 2023-08-09T11:48:32.8622813Z [pip3] triton==2.1.0 2023-08-09T11:48:32.8623052Z [conda] blas 1.0 mkl 2023-08-09T11:48:32.8623304Z [conda] mkl 2023.1.0 h213fc3f_46343 2023-08-09T11:48:32.8623621Z [conda] mkl-service 2.4.0 py310h5eee18b_1 2023-08-09T11:48:32.8623894Z [conda] mkl_fft 1.3.6 py310h1128e8f_1 2023-08-09T11:48:32.8624156Z [conda] mkl_random 1.2.2 py310h1128e8f_1 2023-08-09T11:48:32.8624426Z [conda] numpy 1.22.4 pypi_0 pypi 2023-08-09T11:48:32.8624900Z [conda] pytorch 2.1.0.dev20230809 py3.10_cuda11.8_cudnn8.7.0_0 pytorch-nightly 2023-08-09T11:48:32.8625303Z [conda] pytorch-cuda 11.8 h7e8668a_5 pytorch-nightly 2023-08-09T11:48:32.8625670Z [conda] pytorch-lightning 2.0.6 pypi_0 pypi 2023-08-09T11:48:32.8626037Z [conda] pytorch-mutex 1.0 cuda pytorch-nightly 2023-08-09T11:48:44.5244230Z [conda] torchaudio 2.1.0a0+fe9b9ff dev_0 2023-08-09T11:48:44.5244600Z [conda] torchmetrics 1.0.3 pypi_0 pypi 2023-08-09T11:48:44.5245264Z [conda] torchtriton 2.1.0+e6216047b8 py310 pytorch-nightly 2023-08-09T11:48:44.5245584Z + env 2023-08-09T11:48:44.5245821Z + grep TORCHAUDIO 2023-08-09T11:48:44.5246195Z TORCHAUDIO_TEST_ALLOW_SKIP_IF_CUDA_SMALL_MEMORY=true 2023-08-09T11:48:44.5246582Z TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_FBANK_FEATS=true 2023-08-09T11:48:44.5246926Z TORCHAUDIO_TEST_ALLOW_SKIP_IF_TEMPORARY_DISABLED=true 2023-08-09T11:48:44.5247216Z TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_DECODER=true 2023-08-09T11:48:44.5247730Z TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_ENCODER=true 2023-08-09T11:48:44.5248023Z TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_APPLY_CMVN_SLIDING=true 2023-08-09T11:48:44.5248349Z TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_SPECTROGRAM_FEATS=true 2023-08-09T11:48:44.5248657Z TORCHAUDIO_TEST_ALLOW_SKIP_IF_ON_PYTHON_310=true 2023-08-09T11:48:44.5248957Z TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_KALDI_PITCH_FEATS=true 2023-08-09T11:48:44.5249277Z TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_MFCC_FEATS=true 2023-08-09T11:48:44.5250017Z + pytest -v --cov=torchaudio --junitxml=/test-results/junit.xml --durations 100 -k 'cuda or gpu' torchaudio_unittest 2023-08-09T11:48:44.5250445Z ============================= test session starts ============================== 2023-08-09T11:48:44.5250849Z platform linux -- Python 3.10.12, pytest-7.4.0, pluggy-1.2.0 -- /work/ci_env/bin/python 2023-08-09T11:48:44.5251144Z cachedir: .pytest_cache 2023-08-09T11:48:44.5251355Z rootdir: /work 2023-08-09T11:48:44.5251612Z plugins: hydra-core-1.0.7, cov-4.1.0 2023-08-09T11:48:44.5251880Z collecting ...  2023-08-09T11:48:44.5252199Z collecting 3 items  2023-08-09T11:48:44.5252540Z collecting 829 items  2023-08-09T11:48:44.5252881Z collecting 2631 items  2023-08-09T11:48:44.5253223Z collecting 5374 items  2023-08-09T11:48:44.5253558Z collecting 5805 items  2023-08-09T11:48:44.5253903Z collecting 5818 items  2023-08-09T11:48:44.5254243Z collecting 7943 items  2023-08-09T11:48:44.5254576Z collecting 8932 items  2023-08-09T11:48:44.5255022Z collecting 10767 items  2023-08-09T11:48:44.5255382Z collected 11561 items / 8860 deselected / 2701 selected  2023-08-09T11:48:44.5255564Z 2023-08-09T11:48:44.5255908Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_00 SKIPPED [ 0%] 2023-08-09T11:48:44.5256481Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_01 SKIPPED [ 0%] 2023-08-09T11:48:44.5257043Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_02 SKIPPED [ 0%] 2023-08-09T11:48:44.5257707Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_03 SKIPPED [ 0%] 2023-08-09T11:48:44.5258259Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_04 SKIPPED [ 0%] 2023-08-09T11:48:44.5258808Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_05 SKIPPED [ 0%] 2023-08-09T11:48:44.5259350Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_06 SKIPPED [ 0%] 2023-08-09T11:48:44.5259894Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_07 SKIPPED [ 0%] 2023-08-09T11:48:44.5260443Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_08 SKIPPED [ 0%] 2023-08-09T11:48:44.5260996Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_09 SKIPPED [ 0%] 2023-08-09T11:48:44.5261531Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_10 SKIPPED [ 0%] 2023-08-09T11:48:44.5262073Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_11 SKIPPED [ 0%] 2023-08-09T11:48:44.5262613Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_12 SKIPPED [ 0%] 2023-08-09T11:48:44.5263156Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_13 SKIPPED [ 0%] 2023-08-09T11:48:44.5263751Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_14 SKIPPED [ 0%] 2023-08-09T11:48:44.5264299Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_15 SKIPPED [ 0%] 2023-08-09T11:48:44.5264853Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_16 SKIPPED [ 0%] 2023-08-09T11:48:44.5265401Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_17 SKIPPED [ 0%] 2023-08-09T11:48:44.5265934Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_18 SKIPPED [ 0%] 2023-08-09T11:48:44.5266480Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_19 SKIPPED [ 0%] 2023-08-09T11:48:44.5267028Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_20 SKIPPED [ 0%] 2023-08-09T11:48:44.5267569Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_21 SKIPPED [ 0%] 2023-08-09T11:48:44.5268135Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_22 SKIPPED [ 0%] 2023-08-09T11:48:44.5268751Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_23 SKIPPED [ 0%] 2023-08-09T11:48:44.5269296Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_24 SKIPPED [ 0%] 2023-08-09T11:48:44.5269841Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_25 SKIPPED [ 0%] 2023-08-09T11:48:44.5270380Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_26 SKIPPED [ 0%] 2023-08-09T11:48:44.5270928Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_27 SKIPPED [ 1%] 2023-08-09T11:48:44.5271536Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_28 SKIPPED [ 1%] 2023-08-09T11:48:44.5272080Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_29 SKIPPED [ 1%] 2023-08-09T11:48:44.5272614Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_30 SKIPPED [ 1%] 2023-08-09T11:48:44.5273156Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_31 SKIPPED [ 1%] 2023-08-09T11:48:44.5273723Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_32 SKIPPED [ 1%] 2023-08-09T11:48:44.5274370Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_33 SKIPPED [ 1%] 2023-08-09T11:48:44.5274916Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_34 SKIPPED [ 1%] 2023-08-09T11:48:44.5275456Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_35 SKIPPED [ 1%] 2023-08-09T11:48:44.5275994Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_36 SKIPPED [ 1%] 2023-08-09T11:48:44.5276534Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_37 SKIPPED [ 1%] 2023-08-09T11:48:44.5277080Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_38 SKIPPED [ 1%] 2023-08-09T11:48:44.5277709Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_39 SKIPPED [ 1%] 2023-08-09T11:48:44.5278250Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_40 SKIPPED [ 1%] 2023-08-09T11:48:44.5278799Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_41 SKIPPED [ 1%] 2023-08-09T11:48:44.5279348Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_42 SKIPPED [ 1%] 2023-08-09T11:48:44.5279884Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_43 SKIPPED [ 1%] 2023-08-09T11:48:44.5280432Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_44 SKIPPED [ 1%] 2023-08-09T11:48:44.6222902Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_45 SKIPPED [ 1%] 2023-08-09T11:48:44.6223497Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_46 SKIPPED [ 1%] 2023-08-09T11:48:44.6224061Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_47 SKIPPED [ 1%] 2023-08-09T11:48:44.6224618Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_48 SKIPPED [ 1%] 2023-08-09T11:48:44.6225161Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_49 SKIPPED [ 1%] 2023-08-09T11:48:44.6225698Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_50 SKIPPED [ 1%] 2023-08-09T11:48:44.6226244Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_51 SKIPPED [ 1%] 2023-08-09T11:48:44.6226785Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_52 SKIPPED [ 1%] 2023-08-09T11:48:44.6227492Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_53 SKIPPED [ 1%] 2023-08-09T11:48:44.6228059Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_54 SKIPPED [ 2%] 2023-08-09T11:48:44.6228597Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_55 SKIPPED [ 2%] 2023-08-09T11:48:44.6229124Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_56 SKIPPED [ 2%] 2023-08-09T11:48:44.6229662Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_57 SKIPPED [ 2%] 2023-08-09T11:48:44.6230324Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_58 SKIPPED [ 2%] 2023-08-09T11:48:44.6231032Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_59 SKIPPED [ 2%] 2023-08-09T11:48:44.6231608Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_60 SKIPPED [ 2%] 2023-08-09T11:48:44.6232146Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_61 SKIPPED [ 2%] 2023-08-09T11:48:44.6232679Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_62 SKIPPED [ 2%] 2023-08-09T11:48:44.6233210Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_63 SKIPPED [ 2%] 2023-08-09T11:48:44.6233865Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_64 SKIPPED [ 2%] 2023-08-09T11:48:44.6234401Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_65 SKIPPED [ 2%] 2023-08-09T11:48:44.6234930Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_66 SKIPPED [ 2%] 2023-08-09T11:48:44.6235458Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_67 SKIPPED [ 2%] 2023-08-09T11:48:44.6236028Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_68 SKIPPED [ 2%] 2023-08-09T11:48:44.6236612Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_69 SKIPPED [ 2%] 2023-08-09T11:48:44.6237212Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_70 SKIPPED [ 2%] 2023-08-09T11:48:44.6237742Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_71 SKIPPED [ 2%] 2023-08-09T11:48:44.6238270Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_72 SKIPPED [ 2%] 2023-08-09T11:48:44.6238800Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_73 SKIPPED [ 2%] 2023-08-09T11:48:44.6239329Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_74 SKIPPED [ 2%] 2023-08-09T11:48:44.6239857Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_75 SKIPPED [ 2%] 2023-08-09T11:48:44.6240384Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_76 SKIPPED [ 2%] 2023-08-09T11:48:44.6240912Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_77 SKIPPED [ 2%] 2023-08-09T11:48:44.6241521Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_78 SKIPPED [ 2%] 2023-08-09T11:48:44.6242055Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_79 SKIPPED [ 2%] 2023-08-09T11:48:44.6242580Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_80 SKIPPED [ 2%] 2023-08-09T11:48:44.6243109Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_81 SKIPPED [ 3%] 2023-08-09T11:48:44.6243644Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_82 SKIPPED [ 3%] 2023-08-09T11:48:44.6244173Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_83 SKIPPED [ 3%] 2023-08-09T11:48:44.6244711Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_84 SKIPPED [ 3%] 2023-08-09T11:48:44.6245240Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_85 SKIPPED [ 3%] 2023-08-09T11:48:44.6245882Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_86 SKIPPED [ 3%] 2023-08-09T11:48:44.6246510Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_87 SKIPPED [ 3%] 2023-08-09T11:48:44.6247191Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_000 SKIPPED [ 3%] 2023-08-09T11:48:44.6247961Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_001 SKIPPED [ 3%] 2023-08-09T11:48:44.6248501Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_002 SKIPPED [ 3%] 2023-08-09T11:48:44.6249028Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_003 SKIPPED [ 3%] 2023-08-09T11:48:44.6249559Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_004 SKIPPED [ 3%] 2023-08-09T11:48:44.6250085Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_005 SKIPPED [ 3%] 2023-08-09T11:48:44.6250617Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_006 SKIPPED [ 3%] 2023-08-09T11:48:44.6251149Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_007 SKIPPED [ 3%] 2023-08-09T11:48:44.6251728Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_008 SKIPPED [ 3%] 2023-08-09T11:48:44.6252323Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_009 SKIPPED [ 3%] 2023-08-09T11:48:44.6252913Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_010 SKIPPED [ 3%] 2023-08-09T11:48:44.6253517Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_011 SKIPPED [ 3%] 2023-08-09T11:48:44.6254053Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_012 SKIPPED [ 3%] 2023-08-09T11:48:44.6254584Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_013 SKIPPED [ 3%] 2023-08-09T11:48:44.6255200Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_014 SKIPPED [ 3%] 2023-08-09T11:48:44.6255849Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_015 SKIPPED [ 3%] 2023-08-09T11:48:44.6256389Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_016 SKIPPED [ 3%] 2023-08-09T11:48:44.6256922Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_017 SKIPPED [ 3%] 2023-08-09T11:48:44.7200097Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_018 SKIPPED [ 3%] 2023-08-09T11:48:44.7200709Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_019 SKIPPED [ 3%] 2023-08-09T11:48:44.7201259Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_020 SKIPPED [ 4%] 2023-08-09T11:48:44.7201803Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_021 SKIPPED [ 4%] 2023-08-09T11:48:44.7202350Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_022 SKIPPED [ 4%] 2023-08-09T11:48:44.7202894Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_023 SKIPPED [ 4%] 2023-08-09T11:48:44.7203439Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_024 SKIPPED [ 4%] 2023-08-09T11:48:44.7204129Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_025 SKIPPED [ 4%] 2023-08-09T11:48:44.7204658Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_026 SKIPPED [ 4%] 2023-08-09T11:48:44.7205201Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_027 SKIPPED [ 4%] 2023-08-09T11:48:44.7205737Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_028 SKIPPED [ 4%] 2023-08-09T11:48:44.7206274Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_029 SKIPPED [ 4%] 2023-08-09T11:48:44.7206836Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_030 SKIPPED [ 4%] 2023-08-09T11:48:44.7207412Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_031 SKIPPED [ 4%] 2023-08-09T11:48:44.7208257Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_032 SKIPPED [ 4%] 2023-08-09T11:48:44.7208990Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_033 SKIPPED [ 4%] 2023-08-09T11:48:44.7209527Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_034 SKIPPED [ 4%] 2023-08-09T11:48:44.7210066Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_035 SKIPPED [ 4%] 2023-08-09T11:48:44.7210601Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_036 SKIPPED [ 4%] 2023-08-09T11:48:44.7211140Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_037 SKIPPED [ 4%] 2023-08-09T11:48:44.7211686Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_038 SKIPPED [ 4%] 2023-08-09T11:48:44.7212367Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_039 SKIPPED [ 4%] 2023-08-09T11:48:44.7212916Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_040 SKIPPED [ 4%] 2023-08-09T11:48:44.7213457Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_041 SKIPPED [ 4%] 2023-08-09T11:48:44.7214091Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_042 SKIPPED [ 4%] 2023-08-09T11:48:44.7214700Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_043 SKIPPED [ 4%] 2023-08-09T11:48:44.7215427Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_044 SKIPPED [ 4%] 2023-08-09T11:48:44.7215969Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_045 SKIPPED [ 4%] 2023-08-09T11:48:44.7216524Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_046 SKIPPED [ 4%] 2023-08-09T11:48:44.7217062Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_047 SKIPPED [ 5%] 2023-08-09T11:48:44.7217605Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_048 SKIPPED [ 5%] 2023-08-09T11:48:44.7218150Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_049 SKIPPED [ 5%] 2023-08-09T11:48:44.7218793Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_050 SKIPPED [ 5%] 2023-08-09T11:48:44.7219327Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_051 SKIPPED [ 5%] 2023-08-09T11:48:44.7219868Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_052 SKIPPED [ 5%] 2023-08-09T11:48:44.7220406Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_053 SKIPPED [ 5%] 2023-08-09T11:48:44.7220945Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_054 SKIPPED [ 5%] 2023-08-09T11:48:44.7221473Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_055 SKIPPED [ 5%] 2023-08-09T11:48:44.7222012Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_056 SKIPPED [ 5%] 2023-08-09T11:48:44.7222599Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_057 SKIPPED [ 5%] 2023-08-09T11:48:44.7223146Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_058 SKIPPED [ 5%] 2023-08-09T11:48:44.7223681Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_059 SKIPPED [ 5%] 2023-08-09T11:48:44.7224329Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_060 SKIPPED [ 5%] 2023-08-09T11:48:44.7225036Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_061 SKIPPED [ 5%] 2023-08-09T11:48:44.7225601Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_062 SKIPPED [ 5%] 2023-08-09T11:48:44.7226144Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_063 SKIPPED [ 5%] 2023-08-09T11:48:44.7226760Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_064 SKIPPED [ 5%] 2023-08-09T11:48:44.7227306Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_065 SKIPPED [ 5%] 2023-08-09T11:48:44.7227842Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_066 SKIPPED [ 5%] 2023-08-09T11:48:44.7228370Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_067 SKIPPED [ 5%] 2023-08-09T11:48:44.7228906Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_068 SKIPPED [ 5%] 2023-08-09T11:48:44.7229447Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_069 SKIPPED [ 5%] 2023-08-09T11:48:44.7230046Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_070 SKIPPED [ 5%] 2023-08-09T11:48:44.7230613Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_071 SKIPPED [ 5%] 2023-08-09T11:48:44.7231230Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_072 SKIPPED [ 5%] 2023-08-09T11:48:44.7231770Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_073 SKIPPED [ 5%] 2023-08-09T11:48:44.7232302Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_074 SKIPPED [ 6%] 2023-08-09T11:48:44.7232916Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_075 SKIPPED [ 6%] 2023-08-09T11:48:44.7233449Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_076 SKIPPED [ 6%] 2023-08-09T11:48:44.7233986Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_077 SKIPPED [ 6%] 2023-08-09T11:48:44.7234520Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_078 SKIPPED [ 6%] 2023-08-09T11:48:44.8175513Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_079 SKIPPED [ 6%] 2023-08-09T11:48:44.8176255Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_080 SKIPPED [ 6%] 2023-08-09T11:48:44.8177002Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_081 SKIPPED [ 6%] 2023-08-09T11:48:44.8177720Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_082 SKIPPED [ 6%] 2023-08-09T11:48:44.8178365Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_083 SKIPPED [ 6%] 2023-08-09T11:48:44.8178917Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_084 SKIPPED [ 6%] 2023-08-09T11:48:44.8179461Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_085 SKIPPED [ 6%] 2023-08-09T11:48:44.8179992Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_086 SKIPPED [ 6%] 2023-08-09T11:48:44.8180524Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_087 SKIPPED [ 6%] 2023-08-09T11:48:44.8181068Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_088 SKIPPED [ 6%] 2023-08-09T11:48:44.8181804Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_089 SKIPPED [ 6%] 2023-08-09T11:48:44.8182347Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_090 SKIPPED [ 6%] 2023-08-09T11:48:44.8182884Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_091 SKIPPED [ 6%] 2023-08-09T11:48:44.8183410Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_092 SKIPPED [ 6%] 2023-08-09T11:48:44.8183942Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_093 SKIPPED [ 6%] 2023-08-09T11:48:44.8184486Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_094 SKIPPED [ 6%] 2023-08-09T11:48:44.8185021Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_095 SKIPPED [ 6%] 2023-08-09T11:48:44.8185562Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_096 SKIPPED [ 6%] 2023-08-09T11:48:44.8186092Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_097 SKIPPED [ 6%] 2023-08-09T11:48:44.8186619Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_098 SKIPPED [ 6%] 2023-08-09T11:48:44.8187159Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_099 SKIPPED [ 6%] 2023-08-09T11:48:44.8187786Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_100 SKIPPED [ 6%] 2023-08-09T11:48:44.8188330Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_101 SKIPPED [ 7%] 2023-08-09T11:48:44.8188863Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_102 SKIPPED [ 7%] 2023-08-09T11:48:44.8189396Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_103 SKIPPED [ 7%] 2023-08-09T11:48:44.8189921Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_104 SKIPPED [ 7%] 2023-08-09T11:48:44.8190454Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_105 SKIPPED [ 7%] 2023-08-09T11:48:44.8190991Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_106 SKIPPED [ 7%] 2023-08-09T11:48:44.8191566Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_107 SKIPPED [ 7%] 2023-08-09T11:48:44.8192202Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_108 SKIPPED [ 7%] 2023-08-09T11:48:44.8192733Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_109 SKIPPED [ 7%] 2023-08-09T11:48:44.8193265Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_110 SKIPPED [ 7%] 2023-08-09T11:48:44.8193794Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_111 SKIPPED [ 7%] 2023-08-09T11:48:44.8194336Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_112 SKIPPED [ 7%] 2023-08-09T11:48:44.8194858Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_113 SKIPPED [ 7%] 2023-08-09T11:48:44.8195493Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_000 SKIPPED [ 7%] 2023-08-09T11:48:44.8196060Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_001 SKIPPED [ 7%] 2023-08-09T11:48:44.8196618Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_002 SKIPPED [ 7%] 2023-08-09T11:48:44.8197169Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_003 SKIPPED [ 7%] 2023-08-09T11:48:44.8197723Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_004 SKIPPED [ 7%] 2023-08-09T11:48:44.8198281Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_005 SKIPPED [ 7%] 2023-08-09T11:48:44.8198840Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_006 SKIPPED [ 7%] 2023-08-09T11:48:44.8199388Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_007 SKIPPED [ 7%] 2023-08-09T11:48:44.8199936Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_008 SKIPPED [ 7%] 2023-08-09T11:48:44.8200484Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_009 SKIPPED [ 7%] 2023-08-09T11:48:44.8201085Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_010 SKIPPED [ 7%] 2023-08-09T11:48:44.8201629Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_011 SKIPPED [ 7%] 2023-08-09T11:48:44.8202184Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_012 SKIPPED [ 7%] 2023-08-09T11:48:44.8202729Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_013 SKIPPED [ 7%] 2023-08-09T11:48:44.8203276Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_014 SKIPPED [ 8%] 2023-08-09T11:48:44.8203820Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_015 SKIPPED [ 8%] 2023-08-09T11:48:44.8204376Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_016 SKIPPED [ 8%] 2023-08-09T11:48:44.8204920Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_017 SKIPPED [ 8%] 2023-08-09T11:48:44.8205471Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_018 SKIPPED [ 8%] 2023-08-09T11:48:44.8206011Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_019 SKIPPED [ 8%] 2023-08-09T11:48:44.8206560Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_020 SKIPPED [ 8%] 2023-08-09T11:48:44.8207108Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_021 SKIPPED [ 8%] 2023-08-09T11:48:44.8207817Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_022 SKIPPED [ 8%] 2023-08-09T11:48:44.8208359Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_023 SKIPPED [ 8%] 2023-08-09T11:48:44.8208985Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_024 SKIPPED [ 8%] 2023-08-09T11:48:44.9106322Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_025 SKIPPED [ 8%] 2023-08-09T11:48:44.9107086Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_026 SKIPPED [ 8%] 2023-08-09T11:48:44.9107872Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_027 SKIPPED [ 8%] 2023-08-09T11:48:44.9108542Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_028 SKIPPED [ 8%] 2023-08-09T11:48:44.9109100Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_029 SKIPPED [ 8%] 2023-08-09T11:48:44.9109676Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_030 SKIPPED [ 8%] 2023-08-09T11:48:44.9110237Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_031 SKIPPED [ 8%] 2023-08-09T11:48:44.9110798Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_032 SKIPPED [ 8%] 2023-08-09T11:48:44.9111351Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_033 SKIPPED [ 8%] 2023-08-09T11:48:44.9112054Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_034 SKIPPED [ 8%] 2023-08-09T11:48:44.9112618Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_035 SKIPPED [ 8%] 2023-08-09T11:48:44.9113179Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_036 SKIPPED [ 8%] 2023-08-09T11:48:44.9113737Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_037 SKIPPED [ 8%] 2023-08-09T11:48:44.9114288Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_038 SKIPPED [ 8%] 2023-08-09T11:48:44.9114845Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_039 SKIPPED [ 8%] 2023-08-09T11:48:44.9115411Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_040 SKIPPED [ 8%] 2023-08-09T11:48:44.9115968Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_041 SKIPPED [ 9%] 2023-08-09T11:48:44.9116535Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_042 SKIPPED [ 9%] 2023-08-09T11:48:44.9117086Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_043 SKIPPED [ 9%] 2023-08-09T11:48:44.9117643Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_044 SKIPPED [ 9%] 2023-08-09T11:48:44.9118205Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_045 SKIPPED [ 9%] 2023-08-09T11:48:44.9118768Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_046 SKIPPED [ 9%] 2023-08-09T11:48:44.9119403Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_047 SKIPPED [ 9%] 2023-08-09T11:48:44.9119962Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_048 SKIPPED [ 9%] 2023-08-09T11:48:44.9120524Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_049 SKIPPED [ 9%] 2023-08-09T11:48:44.9121087Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_050 SKIPPED [ 9%] 2023-08-09T11:48:44.9121645Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_051 SKIPPED [ 9%] 2023-08-09T11:48:44.9122202Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_052 SKIPPED [ 9%] 2023-08-09T11:48:44.9122766Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_053 SKIPPED [ 9%] 2023-08-09T11:48:44.9123324Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_054 SKIPPED [ 9%] 2023-08-09T11:48:44.9123883Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_055 SKIPPED [ 9%] 2023-08-09T11:48:44.9124431Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_056 SKIPPED [ 9%] 2023-08-09T11:48:44.9124986Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_057 SKIPPED [ 9%] 2023-08-09T11:48:44.9125602Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_058 SKIPPED [ 9%] 2023-08-09T11:48:44.9126162Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_059 SKIPPED [ 9%] 2023-08-09T11:48:44.9126712Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_060 SKIPPED [ 9%] 2023-08-09T11:48:44.9127272Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_061 SKIPPED [ 9%] 2023-08-09T11:48:44.9127996Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_062 SKIPPED [ 9%] 2023-08-09T11:48:44.9128556Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_063 SKIPPED [ 9%] 2023-08-09T11:48:44.9129114Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_064 SKIPPED [ 9%] 2023-08-09T11:48:44.9129680Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_065 SKIPPED [ 9%] 2023-08-09T11:48:44.9130237Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_066 SKIPPED [ 9%] 2023-08-09T11:48:44.9130799Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_067 SKIPPED [ 9%] 2023-08-09T11:48:44.9131354Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_068 SKIPPED [ 10%] 2023-08-09T11:48:44.9131957Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_069 SKIPPED [ 10%] 2023-08-09T11:48:44.9132533Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_070 SKIPPED [ 10%] 2023-08-09T11:48:44.9133189Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_071 SKIPPED [ 10%] 2023-08-09T11:48:44.9133751Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_072 SKIPPED [ 10%] 2023-08-09T11:48:44.9134304Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_073 SKIPPED [ 10%] 2023-08-09T11:48:44.9134922Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_074 SKIPPED [ 10%] 2023-08-09T11:48:44.9135481Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_075 SKIPPED [ 10%] 2023-08-09T11:48:44.9136042Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_076 SKIPPED [ 10%] 2023-08-09T11:48:44.9136598Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_077 SKIPPED [ 10%] 2023-08-09T11:48:44.9137153Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_078 SKIPPED [ 10%] 2023-08-09T11:48:44.9137708Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_079 SKIPPED [ 10%] 2023-08-09T11:48:44.9138269Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_080 SKIPPED [ 10%] 2023-08-09T11:48:44.9138819Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_081 SKIPPED [ 10%] 2023-08-09T11:48:44.9139451Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_082 SKIPPED [ 10%] 2023-08-09T11:48:45.0104997Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_083 SKIPPED [ 10%] 2023-08-09T11:48:45.0105753Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_084 SKIPPED [ 10%] 2023-08-09T11:48:45.0106497Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_085 SKIPPED [ 10%] 2023-08-09T11:48:45.0107188Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_086 SKIPPED [ 10%] 2023-08-09T11:48:45.0107845Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_087 SKIPPED [ 10%] 2023-08-09T11:48:45.0108483Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_088 SKIPPED [ 10%] 2023-08-09T11:48:45.0109041Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_089 SKIPPED [ 10%] 2023-08-09T11:48:45.0109586Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_090 SKIPPED [ 10%] 2023-08-09T11:48:45.0110134Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_091 SKIPPED [ 10%] 2023-08-09T11:48:45.0110678Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_092 SKIPPED [ 10%] 2023-08-09T11:48:45.0111237Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_093 SKIPPED [ 10%] 2023-08-09T11:48:45.0111789Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_094 SKIPPED [ 10%] 2023-08-09T11:48:45.0112578Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_095 SKIPPED [ 11%] 2023-08-09T11:48:45.0113136Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_096 SKIPPED [ 11%] 2023-08-09T11:48:45.0113679Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_097 SKIPPED [ 11%] 2023-08-09T11:48:45.0114224Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_098 SKIPPED [ 11%] 2023-08-09T11:48:45.0114769Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_099 SKIPPED [ 11%] 2023-08-09T11:48:45.0115310Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_100 SKIPPED [ 11%] 2023-08-09T11:48:45.0115858Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_101 SKIPPED [ 11%] 2023-08-09T11:48:45.0116401Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_102 SKIPPED [ 11%] 2023-08-09T11:48:45.0116937Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_103 SKIPPED [ 11%] 2023-08-09T11:48:45.0117477Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_104 SKIPPED [ 11%] 2023-08-09T11:48:45.0118092Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_105 SKIPPED [ 11%] 2023-08-09T11:48:45.0118632Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_106 SKIPPED [ 11%] 2023-08-09T11:48:45.0119175Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_107 SKIPPED [ 11%] 2023-08-09T11:48:45.0119718Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_108 SKIPPED [ 11%] 2023-08-09T11:48:45.0120264Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_00 SKIPPED [ 11%] 2023-08-09T11:48:45.0120814Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_01 SKIPPED [ 11%] 2023-08-09T11:48:45.0121355Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_02 SKIPPED [ 11%] 2023-08-09T11:48:45.0121935Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_03 SKIPPED [ 11%] 2023-08-09T11:48:45.0122500Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_04 SKIPPED [ 11%] 2023-08-09T11:48:45.0123034Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_05 SKIPPED [ 11%] 2023-08-09T11:48:45.0123563Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_06 SKIPPED [ 11%] 2023-08-09T11:48:45.0124103Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_07 SKIPPED [ 11%] 2023-08-09T11:48:45.0124635Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_08 SKIPPED [ 11%] 2023-08-09T11:48:45.0125179Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_09 SKIPPED [ 11%] 2023-08-09T11:48:45.0125756Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_10 SKIPPED [ 11%] 2023-08-09T11:48:45.0126299Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_11 SKIPPED [ 11%] 2023-08-09T11:48:45.0126829Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_12 SKIPPED [ 11%] 2023-08-09T11:48:45.0127361Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_13 SKIPPED [ 12%] 2023-08-09T11:48:45.0128059Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_14 SKIPPED [ 12%] 2023-08-09T11:48:45.0128590Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_15 SKIPPED [ 12%] 2023-08-09T11:48:45.0129120Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_16 SKIPPED [ 12%] 2023-08-09T11:48:45.0129656Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_17 SKIPPED [ 12%] 2023-08-09T11:48:45.0130183Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_18 SKIPPED [ 12%] 2023-08-09T11:48:45.0130713Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_19 SKIPPED [ 12%] 2023-08-09T11:48:45.0131249Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_20 SKIPPED [ 12%] 2023-08-09T11:48:45.0131903Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_21 SKIPPED [ 12%] 2023-08-09T11:48:45.0132457Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_22 SKIPPED [ 12%] 2023-08-09T11:48:45.0132992Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_23 SKIPPED [ 12%] 2023-08-09T11:48:45.0133530Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_24 SKIPPED [ 12%] 2023-08-09T11:48:45.0134063Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_25 SKIPPED [ 12%] 2023-08-09T11:48:45.0134595Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_26 SKIPPED [ 12%] 2023-08-09T11:48:45.0135218Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_27 SKIPPED [ 12%] 2023-08-09T11:48:45.0135746Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_28 SKIPPED [ 12%] 2023-08-09T11:48:45.0136283Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_29 SKIPPED [ 12%] 2023-08-09T11:48:45.0136814Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_30 SKIPPED [ 12%] 2023-08-09T11:48:45.0137337Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_31 SKIPPED [ 12%] 2023-08-09T11:48:45.0137863Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_32 SKIPPED [ 12%] 2023-08-09T11:48:45.1091719Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_33 SKIPPED [ 12%] 2023-08-09T11:48:45.1092389Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_34 SKIPPED [ 12%] 2023-08-09T11:48:45.1093262Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_35 SKIPPED [ 12%] 2023-08-09T11:48:45.1093969Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_36 SKIPPED [ 12%] 2023-08-09T11:48:45.1094510Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_37 SKIPPED [ 12%] 2023-08-09T11:48:45.1095151Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_38 SKIPPED [ 12%] 2023-08-09T11:48:45.1095701Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_39 SKIPPED [ 12%] 2023-08-09T11:48:45.1096239Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_40 SKIPPED [ 13%] 2023-08-09T11:48:45.1096780Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_41 SKIPPED [ 13%] 2023-08-09T11:48:45.1097313Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_42 SKIPPED [ 13%] 2023-08-09T11:48:45.1097845Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_43 SKIPPED [ 13%] 2023-08-09T11:48:45.1098370Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_44 SKIPPED [ 13%] 2023-08-09T11:48:45.1098897Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_45 SKIPPED [ 13%] 2023-08-09T11:48:45.1099540Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_46 SKIPPED [ 13%] 2023-08-09T11:48:45.1100071Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_47 SKIPPED [ 13%] 2023-08-09T11:48:45.1100599Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_48 SKIPPED [ 13%] 2023-08-09T11:48:45.1101130Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_49 SKIPPED [ 13%] 2023-08-09T11:48:45.1101663Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_50 SKIPPED [ 13%] 2023-08-09T11:48:45.1102240Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_51 SKIPPED [ 13%] 2023-08-09T11:48:45.1102771Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_52 SKIPPED [ 13%] 2023-08-09T11:48:45.1103305Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_53 SKIPPED [ 13%] 2023-08-09T11:48:45.1103839Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_54 SKIPPED [ 13%] 2023-08-09T11:48:45.1104371Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_55 SKIPPED [ 13%] 2023-08-09T11:48:45.1104894Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_56 SKIPPED [ 13%] 2023-08-09T11:48:45.1105429Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_57 SKIPPED [ 13%] 2023-08-09T11:48:45.1105966Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_58 SKIPPED [ 13%] 2023-08-09T11:48:45.1106497Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_59 SKIPPED [ 13%] 2023-08-09T11:48:45.1107072Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_60 SKIPPED [ 13%] 2023-08-09T11:48:45.1107606Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_61 SKIPPED [ 13%] 2023-08-09T11:48:45.1108136Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_62 SKIPPED [ 13%] 2023-08-09T11:48:45.1108668Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_63 SKIPPED [ 13%] 2023-08-09T11:48:45.1109193Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_64 SKIPPED [ 13%] 2023-08-09T11:48:45.1109729Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_65 SKIPPED [ 13%] 2023-08-09T11:48:45.1110263Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_66 SKIPPED [ 13%] 2023-08-09T11:48:45.1110793Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_67 SKIPPED [ 14%] 2023-08-09T11:48:45.1111314Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_68 SKIPPED [ 14%] 2023-08-09T11:48:45.1111843Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_69 SKIPPED [ 14%] 2023-08-09T11:48:45.1112373Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_70 SKIPPED [ 14%] 2023-08-09T11:48:45.1112972Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_71 SKIPPED [ 14%] 2023-08-09T11:48:45.1113512Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_72 SKIPPED [ 14%] 2023-08-09T11:48:45.1114040Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_73 SKIPPED [ 14%] 2023-08-09T11:48:45.1114568Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_74 SKIPPED [ 14%] 2023-08-09T11:48:45.1115097Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_75 SKIPPED [ 14%] 2023-08-09T11:48:45.1115627Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_76 SKIPPED [ 14%] 2023-08-09T11:48:45.1116158Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_77 SKIPPED [ 14%] 2023-08-09T11:48:45.1116688Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_78 SKIPPED [ 14%] 2023-08-09T11:48:45.1117226Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_79 SKIPPED [ 14%] 2023-08-09T11:48:45.1117756Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_80 SKIPPED [ 14%] 2023-08-09T11:48:45.1118278Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_81 SKIPPED [ 14%] 2023-08-09T11:48:45.1118806Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_82 SKIPPED [ 14%] 2023-08-09T11:48:45.1119346Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_83 SKIPPED [ 14%] 2023-08-09T11:48:45.1119875Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_84 SKIPPED [ 14%] 2023-08-09T11:48:45.1120453Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_85 SKIPPED [ 14%] 2023-08-09T11:48:45.1120985Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_86 SKIPPED [ 14%] 2023-08-09T11:48:45.1121515Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_87 SKIPPED [ 14%] 2023-08-09T11:48:45.1122045Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_000 SKIPPED [ 14%] 2023-08-09T11:48:45.1122579Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_001 SKIPPED [ 14%] 2023-08-09T11:48:45.1123108Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_002 SKIPPED [ 14%] 2023-08-09T11:48:45.1123645Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_003 SKIPPED [ 14%] 2023-08-09T11:48:45.1124175Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_004 SKIPPED [ 14%] 2023-08-09T11:48:45.1124699Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_005 SKIPPED [ 14%] 2023-08-09T11:48:45.2081409Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_006 SKIPPED [ 15%] 2023-08-09T11:48:45.2082160Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_007 SKIPPED [ 15%] 2023-08-09T11:48:45.2082902Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_008 SKIPPED [ 15%] 2023-08-09T11:48:45.2083675Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_009 SKIPPED [ 15%] 2023-08-09T11:48:45.2084425Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_010 SKIPPED [ 15%] 2023-08-09T11:48:45.2084994Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_011 SKIPPED [ 15%] 2023-08-09T11:48:45.2085529Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_012 SKIPPED [ 15%] 2023-08-09T11:48:45.2086060Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_013 SKIPPED [ 15%] 2023-08-09T11:48:45.2086598Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_014 SKIPPED [ 15%] 2023-08-09T11:48:45.2087135Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_015 SKIPPED [ 15%] 2023-08-09T11:48:45.2087903Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_016 SKIPPED [ 15%] 2023-08-09T11:48:45.2088454Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_017 SKIPPED [ 15%] 2023-08-09T11:48:45.2088978Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_018 SKIPPED [ 15%] 2023-08-09T11:48:45.2089506Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_019 SKIPPED [ 15%] 2023-08-09T11:48:45.2090038Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_020 SKIPPED [ 15%] 2023-08-09T11:48:45.2090567Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_021 SKIPPED [ 15%] 2023-08-09T11:48:45.2091188Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_022 SKIPPED [ 15%] 2023-08-09T11:48:45.2091719Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_023 SKIPPED [ 15%] 2023-08-09T11:48:45.2092248Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_024 SKIPPED [ 15%] 2023-08-09T11:48:45.2092772Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_025 SKIPPED [ 15%] 2023-08-09T11:48:45.2093303Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_026 SKIPPED [ 15%] 2023-08-09T11:48:45.2093828Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_027 SKIPPED [ 15%] 2023-08-09T11:48:45.2094358Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_028 SKIPPED [ 15%] 2023-08-09T11:48:45.2095001Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_029 SKIPPED [ 15%] 2023-08-09T11:48:45.2095524Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_030 SKIPPED [ 15%] 2023-08-09T11:48:45.2096056Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_031 SKIPPED [ 15%] 2023-08-09T11:48:45.2096666Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_032 SKIPPED [ 15%] 2023-08-09T11:48:45.2097192Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_033 SKIPPED [ 16%] 2023-08-09T11:48:45.2097726Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_034 SKIPPED [ 16%] 2023-08-09T11:48:45.2098247Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_035 SKIPPED [ 16%] 2023-08-09T11:48:45.2098773Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_036 SKIPPED [ 16%] 2023-08-09T11:48:45.2099300Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_037 SKIPPED [ 16%] 2023-08-09T11:48:45.2099823Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_038 SKIPPED [ 16%] 2023-08-09T11:48:45.2100353Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_039 SKIPPED [ 16%] 2023-08-09T11:48:45.2100886Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_040 SKIPPED [ 16%] 2023-08-09T11:48:45.2101411Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_041 SKIPPED [ 16%] 2023-08-09T11:48:45.2101969Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_042 SKIPPED [ 16%] 2023-08-09T11:48:45.2102514Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_043 SKIPPED [ 16%] 2023-08-09T11:48:45.2103043Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_044 SKIPPED [ 16%] 2023-08-09T11:48:45.2103579Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_045 SKIPPED [ 16%] 2023-08-09T11:48:45.2104173Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_046 SKIPPED [ 16%] 2023-08-09T11:48:45.2104696Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_047 SKIPPED [ 16%] 2023-08-09T11:48:45.2105220Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_048 SKIPPED [ 16%] 2023-08-09T11:48:45.2105745Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_049 SKIPPED [ 16%] 2023-08-09T11:48:45.2106270Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_050 SKIPPED [ 16%] 2023-08-09T11:48:45.2106795Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_051 SKIPPED [ 16%] 2023-08-09T11:48:45.2107321Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_052 SKIPPED [ 16%] 2023-08-09T11:48:45.2107855Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_053 SKIPPED [ 16%] 2023-08-09T11:48:45.2108378Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_054 SKIPPED [ 16%] 2023-08-09T11:48:45.2108895Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_055 SKIPPED [ 16%] 2023-08-09T11:48:45.2109422Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_056 SKIPPED [ 16%] 2023-08-09T11:48:45.2110001Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_057 SKIPPED [ 16%] 2023-08-09T11:48:45.2110527Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_058 SKIPPED [ 16%] 2023-08-09T11:48:45.2111051Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_059 SKIPPED [ 16%] 2023-08-09T11:48:45.2111577Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_060 SKIPPED [ 17%] 2023-08-09T11:48:45.2112104Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_061 SKIPPED [ 17%] 2023-08-09T11:48:45.2112632Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_062 SKIPPED [ 17%] 2023-08-09T11:48:45.2113163Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_063 SKIPPED [ 17%] 2023-08-09T11:48:45.2113688Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_064 SKIPPED [ 17%] 2023-08-09T11:48:45.2114218Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_065 SKIPPED [ 17%] 2023-08-09T11:48:45.2114743Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_066 SKIPPED [ 17%] 2023-08-09T11:48:45.3050759Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_067 SKIPPED [ 17%] 2023-08-09T11:48:45.3051538Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_068 SKIPPED [ 17%] 2023-08-09T11:48:45.3052345Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_069 SKIPPED [ 17%] 2023-08-09T11:48:45.3053039Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_070 SKIPPED [ 17%] 2023-08-09T11:48:45.3053710Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_071 SKIPPED [ 17%] 2023-08-09T11:48:45.3054251Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_072 SKIPPED [ 17%] 2023-08-09T11:48:45.3054888Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_073 SKIPPED [ 17%] 2023-08-09T11:48:45.3055424Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_074 SKIPPED [ 17%] 2023-08-09T11:48:45.3055964Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_075 SKIPPED [ 17%] 2023-08-09T11:48:45.3056497Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_076 SKIPPED [ 17%] 2023-08-09T11:48:45.3057043Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_077 SKIPPED [ 17%] 2023-08-09T11:48:45.3057580Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_078 SKIPPED [ 17%] 2023-08-09T11:48:45.3058111Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_079 SKIPPED [ 17%] 2023-08-09T11:48:45.3058639Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_080 SKIPPED [ 17%] 2023-08-09T11:48:45.3059169Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_081 SKIPPED [ 17%] 2023-08-09T11:48:45.3059783Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_082 SKIPPED [ 17%] 2023-08-09T11:48:45.3060311Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_083 SKIPPED [ 17%] 2023-08-09T11:48:45.3060839Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_084 SKIPPED [ 17%] 2023-08-09T11:48:45.3061368Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_085 SKIPPED [ 17%] 2023-08-09T11:48:45.3062081Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_086 SKIPPED [ 17%] 2023-08-09T11:48:45.3062627Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_087 SKIPPED [ 18%] 2023-08-09T11:48:45.3063168Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_088 SKIPPED [ 18%] 2023-08-09T11:48:45.3063688Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_089 SKIPPED [ 18%] 2023-08-09T11:48:45.3064223Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_090 SKIPPED [ 18%] 2023-08-09T11:48:45.3064749Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_091 SKIPPED [ 18%] 2023-08-09T11:48:45.3065282Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_092 SKIPPED [ 18%] 2023-08-09T11:48:45.3065803Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_093 SKIPPED [ 18%] 2023-08-09T11:48:45.3066340Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_094 SKIPPED [ 18%] 2023-08-09T11:48:45.3066867Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_095 SKIPPED [ 18%] 2023-08-09T11:48:45.3067508Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_096 SKIPPED [ 18%] 2023-08-09T11:48:45.3068151Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_097 SKIPPED [ 18%] 2023-08-09T11:48:45.3068689Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_098 SKIPPED [ 18%] 2023-08-09T11:48:45.3069229Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_099 SKIPPED [ 18%] 2023-08-09T11:48:45.3069764Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_100 SKIPPED [ 18%] 2023-08-09T11:48:45.3070301Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_101 SKIPPED [ 18%] 2023-08-09T11:48:45.3070839Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_102 SKIPPED [ 18%] 2023-08-09T11:48:45.3071372Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_103 SKIPPED [ 18%] 2023-08-09T11:48:45.3071902Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_104 SKIPPED [ 18%] 2023-08-09T11:48:45.3072427Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_105 SKIPPED [ 18%] 2023-08-09T11:48:45.3072955Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_106 SKIPPED [ 18%] 2023-08-09T11:48:45.3073555Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_107 SKIPPED [ 18%] 2023-08-09T11:48:45.3074083Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_108 SKIPPED [ 18%] 2023-08-09T11:48:45.3074611Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_109 SKIPPED [ 18%] 2023-08-09T11:48:45.3075140Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_110 SKIPPED [ 18%] 2023-08-09T11:48:45.3075667Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_111 SKIPPED [ 18%] 2023-08-09T11:48:45.3076195Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_112 SKIPPED [ 18%] 2023-08-09T11:48:45.3076723Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_113 SKIPPED [ 18%] 2023-08-09T11:48:45.3077273Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_000 SKIPPED [ 19%] 2023-08-09T11:48:45.3077941Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_001 SKIPPED [ 19%] 2023-08-09T11:48:45.3078509Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_002 SKIPPED [ 19%] 2023-08-09T11:48:45.3079064Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_003 SKIPPED [ 19%] 2023-08-09T11:48:45.3079628Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_004 SKIPPED [ 19%] 2023-08-09T11:48:45.3080188Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_005 SKIPPED [ 19%] 2023-08-09T11:48:45.3080744Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_006 SKIPPED [ 19%] 2023-08-09T11:48:45.3081352Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_007 SKIPPED [ 19%] 2023-08-09T11:48:45.3081911Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_008 SKIPPED [ 19%] 2023-08-09T11:48:45.3082461Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_009 SKIPPED [ 19%] 2023-08-09T11:48:45.3083010Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_010 SKIPPED [ 19%] 2023-08-09T11:48:45.3083604Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_011 SKIPPED [ 19%] 2023-08-09T11:48:45.3084253Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_012 SKIPPED [ 19%] 2023-08-09T11:48:45.3977961Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_013 SKIPPED [ 19%] 2023-08-09T11:48:45.3978574Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_014 SKIPPED [ 19%] 2023-08-09T11:48:45.3979336Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_015 SKIPPED [ 19%] 2023-08-09T11:48:45.3980039Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_016 SKIPPED [ 19%] 2023-08-09T11:48:45.3980841Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_017 SKIPPED [ 19%] 2023-08-09T11:48:45.3981402Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_018 SKIPPED [ 19%] 2023-08-09T11:48:45.3981958Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_019 SKIPPED [ 19%] 2023-08-09T11:48:45.3982514Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_020 SKIPPED [ 19%] 2023-08-09T11:48:45.3983061Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_021 SKIPPED [ 19%] 2023-08-09T11:48:45.3983617Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_022 SKIPPED [ 19%] 2023-08-09T11:48:45.3984179Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_023 SKIPPED [ 19%] 2023-08-09T11:48:45.3984728Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_024 SKIPPED [ 19%] 2023-08-09T11:48:45.3985278Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_025 SKIPPED [ 19%] 2023-08-09T11:48:45.3985825Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_026 SKIPPED [ 19%] 2023-08-09T11:48:45.3986370Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_027 SKIPPED [ 20%] 2023-08-09T11:48:45.3987037Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_028 SKIPPED [ 20%] 2023-08-09T11:48:45.3987588Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_029 SKIPPED [ 20%] 2023-08-09T11:48:45.3988227Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_030 SKIPPED [ 20%] 2023-08-09T11:48:45.3988778Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_031 SKIPPED [ 20%] 2023-08-09T11:48:45.3989323Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_032 SKIPPED [ 20%] 2023-08-09T11:48:45.3989864Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_033 SKIPPED [ 20%] 2023-08-09T11:48:45.3990410Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_034 SKIPPED [ 20%] 2023-08-09T11:48:45.3990960Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_035 SKIPPED [ 20%] 2023-08-09T11:48:45.3991517Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_036 SKIPPED [ 20%] 2023-08-09T11:48:45.3992093Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_037 SKIPPED [ 20%] 2023-08-09T11:48:45.3992789Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_038 SKIPPED [ 20%] 2023-08-09T11:48:45.3993345Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_039 SKIPPED [ 20%] 2023-08-09T11:48:45.3993892Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_040 SKIPPED [ 20%] 2023-08-09T11:48:45.3994522Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_041 SKIPPED [ 20%] 2023-08-09T11:48:45.3995068Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_042 SKIPPED [ 20%] 2023-08-09T11:48:45.3995612Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_043 SKIPPED [ 20%] 2023-08-09T11:48:45.3996158Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_044 SKIPPED [ 20%] 2023-08-09T11:48:45.3996704Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_045 SKIPPED [ 20%] 2023-08-09T11:48:45.3997247Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_046 SKIPPED [ 20%] 2023-08-09T11:48:45.3997804Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_047 SKIPPED [ 20%] 2023-08-09T11:48:45.3998359Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_048 SKIPPED [ 20%] 2023-08-09T11:48:45.3998909Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_049 SKIPPED [ 20%] 2023-08-09T11:48:45.3999453Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_050 SKIPPED [ 20%] 2023-08-09T11:48:45.4000002Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_051 SKIPPED [ 20%] 2023-08-09T11:48:45.4000554Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_052 SKIPPED [ 20%] 2023-08-09T11:48:45.4001107Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_053 SKIPPED [ 20%] 2023-08-09T11:48:45.4001701Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_054 SKIPPED [ 21%] 2023-08-09T11:48:45.4002401Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_055 SKIPPED [ 21%] 2023-08-09T11:48:45.4002964Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_056 SKIPPED [ 21%] 2023-08-09T11:48:45.4003514Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_057 SKIPPED [ 21%] 2023-08-09T11:48:45.4004050Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_058 SKIPPED [ 21%] 2023-08-09T11:48:45.4004605Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_059 SKIPPED [ 21%] 2023-08-09T11:48:45.4005155Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_060 SKIPPED [ 21%] 2023-08-09T11:48:45.4005701Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_061 SKIPPED [ 21%] 2023-08-09T11:48:45.4006241Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_062 SKIPPED [ 21%] 2023-08-09T11:48:45.4006783Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_063 SKIPPED [ 21%] 2023-08-09T11:48:45.4007326Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_064 SKIPPED [ 21%] 2023-08-09T11:48:45.4008334Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_065 SKIPPED [ 21%] 2023-08-09T11:48:45.4008893Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_066 SKIPPED [ 21%] 2023-08-09T11:48:45.4009435Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_067 SKIPPED [ 21%] 2023-08-09T11:48:45.4009977Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_068 SKIPPED [ 21%] 2023-08-09T11:48:45.4010519Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_069 SKIPPED [ 21%] 2023-08-09T11:48:45.4011066Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_070 SKIPPED [ 21%] 2023-08-09T11:51:29.0055830Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_071 SKIPPED [ 21%] 2023-08-09T11:51:29.0056487Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_072 SKIPPED [ 21%] 2023-08-09T11:51:29.0057213Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_073 SKIPPED [ 21%] 2023-08-09T11:51:29.0057776Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_074 SKIPPED [ 21%] 2023-08-09T11:51:29.0058350Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_075 SKIPPED [ 21%] 2023-08-09T11:51:29.0060345Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_076 SKIPPED [ 21%] 2023-08-09T11:51:29.0061189Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_077 SKIPPED [ 21%] 2023-08-09T11:51:29.0063820Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_078 SKIPPED [ 21%] 2023-08-09T11:51:29.0064686Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_079 SKIPPED [ 21%] 2023-08-09T11:51:29.0065321Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_080 SKIPPED [ 21%] 2023-08-09T11:51:29.0065953Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_081 SKIPPED [ 22%] 2023-08-09T11:51:29.0066587Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_082 SKIPPED [ 22%] 2023-08-09T11:51:29.0067193Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_083 SKIPPED [ 22%] 2023-08-09T11:51:29.0067811Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_084 SKIPPED [ 22%] 2023-08-09T11:51:29.0068419Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_085 SKIPPED [ 22%] 2023-08-09T11:51:29.0070587Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_086 SKIPPED [ 22%] 2023-08-09T11:51:29.0071334Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_087 SKIPPED [ 22%] 2023-08-09T11:51:29.0072130Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_088 SKIPPED [ 22%] 2023-08-09T11:51:29.0072697Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_089 SKIPPED [ 22%] 2023-08-09T11:51:29.0073309Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_090 SKIPPED [ 22%] 2023-08-09T11:51:29.0073953Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_091 SKIPPED [ 22%] 2023-08-09T11:51:29.0074633Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_092 SKIPPED [ 22%] 2023-08-09T11:51:29.0075267Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_093 SKIPPED [ 22%] 2023-08-09T11:51:29.0075885Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_094 SKIPPED [ 22%] 2023-08-09T11:51:29.0076456Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_095 SKIPPED [ 22%] 2023-08-09T11:51:29.0077161Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_096 SKIPPED [ 22%] 2023-08-09T11:51:29.0077954Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_097 SKIPPED [ 22%] 2023-08-09T11:51:29.0078626Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_098 SKIPPED [ 22%] 2023-08-09T11:51:29.0079210Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_099 SKIPPED [ 22%] 2023-08-09T11:51:29.0079819Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_100 SKIPPED [ 22%] 2023-08-09T11:51:29.0080443Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_101 SKIPPED [ 22%] 2023-08-09T11:51:29.0081153Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_102 SKIPPED [ 22%] 2023-08-09T11:51:29.0081750Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_103 SKIPPED [ 22%] 2023-08-09T11:51:29.0082335Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_104 SKIPPED [ 22%] 2023-08-09T11:51:29.0082951Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_105 SKIPPED [ 22%] 2023-08-09T11:51:29.0083564Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_106 SKIPPED [ 22%] 2023-08-09T11:51:29.0084133Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_107 SKIPPED [ 22%] 2023-08-09T11:51:29.0084736Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_108 SKIPPED [ 23%] 2023-08-09T11:51:29.0085411Z torchaudio_unittest/example/tacotron2/tacotron2_loss_gpu_test.py::TestTacotron2LossShapeFloat32CUDA::test_tacotron2_loss_shape PASSED [ 23%] 2023-08-09T11:51:29.0086136Z torchaudio_unittest/example/tacotron2/tacotron2_loss_gpu_test.py::TestTacotron2TorchsciptFloat32CUDA::test_tacotron2_loss_torchscript_consistency PASSED [ 23%] 2023-08-09T11:51:29.0086865Z torchaudio_unittest/example/tacotron2/tacotron2_loss_gpu_test.py::TestTacotron2GradcheckFloat64CUDA::test_tacotron2_loss_gradcheck PASSED [ 23%] 2023-08-09T11:51:29.0087886Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_add_noise PASSED [ 23%] 2023-08-09T11:51:29.0088463Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_allpass_biquad_0 PASSED [ 23%] 2023-08-09T11:51:29.0089108Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_apply_beamforming PASSED [ 23%] 2023-08-09T11:51:29.0089668Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_band_biquad_0 PASSED [ 23%] 2023-08-09T11:51:29.0090248Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_band_biquad_1 PASSED [ 23%] 2023-08-09T11:51:29.0090815Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_bandpass_biquad_0 PASSED [ 23%] 2023-08-09T11:51:29.0091387Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_bandpass_biquad_1 PASSED [ 23%] 2023-08-09T11:51:29.0091947Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_bandreject_biquad_0 PASSED [ 23%] 2023-08-09T11:51:29.0092551Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_bass_biquad_0 PASSED [ 23%] 2023-08-09T11:51:29.0093094Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_bass_biquad_1 PASSED [ 23%] 2023-08-09T11:51:29.0093636Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_biquad PASSED [ 23%] 2023-08-09T11:51:29.0094203Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_convolve_convolve_full PASSED [ 23%] 2023-08-09T11:51:29.0094872Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_convolve_convolve_same PASSED [ 23%] 2023-08-09T11:51:29.0095451Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_convolve_convolve_valid PASSED [ 23%] 2023-08-09T11:51:29.0096150Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_convolve_fftconvolve_full PASSED [ 23%] 2023-08-09T11:51:29.0096812Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_convolve_fftconvolve_same PASSED [ 23%] 2023-08-09T11:51:29.0097395Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_convolve_fftconvolve_valid PASSED [ 23%] 2023-08-09T11:55:28.3727377Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_deemph_biquad PASSED [ 23%] 2023-08-09T11:55:28.3728174Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_deemphasis PASSED [ 23%] 2023-08-09T11:55:28.3728902Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_equalizer_biquad_0 PASSED [ 23%] 2023-08-09T11:55:28.3731253Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_equalizer_biquad_1 PASSED [ 23%] 2023-08-09T11:55:28.3731922Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_filtfilt_a PASSED [ 23%] 2023-08-09T11:55:28.3732493Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_filtfilt_all_inputs PASSED [ 23%] 2023-08-09T11:55:28.3733125Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_filtfilt_b PASSED [ 24%] 2023-08-09T11:55:28.3733755Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_filtfilt_batching PASSED [ 24%] 2023-08-09T11:55:28.3734721Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_flanger PASSED [ 24%] 2023-08-09T11:55:28.3735408Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_gain PASSED [ 24%] 2023-08-09T11:55:28.3736106Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_highpass_biquad_0 PASSED [ 24%] 2023-08-09T11:55:28.3736832Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_lfilter_a PASSED [ 24%] 2023-08-09T11:55:28.3737567Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_lfilter_all_inputs PASSED [ 24%] 2023-08-09T11:55:28.3738255Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_lfilter_b PASSED [ 24%] 2023-08-09T11:55:28.3739008Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_lfilter_batching PASSED [ 24%] 2023-08-09T11:55:28.3739822Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_lfilter_filterbanks PASSED [ 24%] 2023-08-09T11:55:28.3740549Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_lfilter_x PASSED [ 24%] 2023-08-09T11:55:28.3741140Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_lowpass_biquad_0 PASSED [ 24%] 2023-08-09T11:55:28.3741713Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_mvdr_weights_rtf PASSED [ 24%] 2023-08-09T11:55:28.3742290Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_mvdr_weights_rtf_with_tensor PASSED [ 24%] 2023-08-09T11:55:28.3742865Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_mvdr_weights_souden PASSED [ 24%] 2023-08-09T11:55:28.3743582Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_mvdr_weights_souden_with_tensor PASSED [ 24%] 2023-08-09T11:55:28.3744418Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_overdrive PASSED [ 24%] 2023-08-09T11:55:28.3745079Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_phaser_0 PASSED [ 24%] 2023-08-09T11:55:28.3745618Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_phaser_1 PASSED [ 24%] 2023-08-09T11:55:28.3746147Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_preemphasis PASSED [ 24%] 2023-08-09T11:55:28.3746682Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_psd_0 PASSED [ 24%] 2023-08-09T11:55:28.3747215Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_psd_1 PASSED [ 24%] 2023-08-09T11:55:28.3747745Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_rtf_power_0 PASSED [ 24%] 2023-08-09T11:55:28.3748273Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_rtf_power_1 PASSED [ 24%] 2023-08-09T11:55:28.3748826Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_rtf_power_with_tensor_0 PASSED [ 24%] 2023-08-09T11:55:28.3749395Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_rtf_power_with_tensor_1 PASSED [ 24%] 2023-08-09T11:55:28.3749962Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_speed PASSED [ 24%] 2023-08-09T11:55:28.3750529Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_treble_biquad_0 PASSED [ 25%] 2023-08-09T11:55:28.3751182Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_treble_biquad_1 PASSED [ 25%] 2023-08-09T11:55:28.3751721Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradRNNTCUDA::test_rnnt_loss_0 PASSED [ 25%] 2023-08-09T11:55:28.3752245Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradRNNTCUDA::test_rnnt_loss_1 PASSED [ 25%] 2023-08-09T11:55:28.3752756Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradRNNTCUDA::test_rnnt_loss_2 PASSED [ 25%] 2023-08-09T11:55:28.3753301Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_add_noise_broadcast PASSED [ 25%] 2023-08-09T11:55:28.3753873Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_add_noise_leading_dim_check_0 PASSED [ 25%] 2023-08-09T11:55:28.3754469Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_add_noise_leading_dim_check_1 PASSED [ 25%] 2023-08-09T11:55:28.3755175Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_add_noise_leading_dim_check_2 PASSED [ 25%] 2023-08-09T11:55:28.3755825Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_add_noise_length_check PASSED [ 25%] 2023-08-09T11:55:28.3756519Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_amplitude_to_DB_reversible_0 PASSED [ 25%] 2023-08-09T11:55:28.3757094Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_amplitude_to_DB_reversible_1 PASSED [ 25%] 2023-08-09T11:55:28.3757655Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_amplitude_to_DB_reversible_2 PASSED [ 25%] 2023-08-09T11:55:28.3758244Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_amplitude_to_DB_top_db_clamp_0 PASSED [ 25%] 2023-08-09T11:55:28.3758822Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_amplitude_to_DB_top_db_clamp_1 PASSED [ 25%] 2023-08-09T11:55:28.3759485Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_amplitude_to_DB_top_db_clamp_2 PASSED [ 25%] 2023-08-09T11:55:28.3760045Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_apply_beamforming PASSED [ 25%] 2023-08-09T11:55:28.3760611Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_compute_deltas_one_channel PASSED [ 25%] 2023-08-09T11:55:28.3761308Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_compute_deltas_two_channels PASSED [ 25%] 2023-08-09T11:55:28.3762024Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_broadcast_convolve_5_2_3_1_1_3 PASSED [ 25%] 2023-08-09T11:55:28.3762800Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_broadcast_convolve_5_2_3_1_2_3 PASSED [ 25%] 2023-08-09T11:55:28.3763391Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_broadcast_convolve_5_2_3_5_1_3 PASSED [ 25%] 2023-08-09T11:55:28.3763992Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_broadcast_fftconvolve_5_2_3_1_1_3 PASSED [ 25%] 2023-08-09T11:55:28.3764586Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_broadcast_fftconvolve_5_2_3_1_2_3 PASSED [ 25%] 2023-08-09T11:55:28.3765287Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_broadcast_fftconvolve_5_2_3_5_1_3 PASSED [ 25%] 2023-08-09T11:55:28.3765859Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_input_dim_check_00 PASSED [ 25%] 2023-08-09T11:55:28.3766431Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_input_dim_check_01 PASSED [ 25%] 2023-08-09T11:55:28.6848181Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_input_dim_check_02 PASSED [ 26%] 2023-08-09T11:55:28.6849064Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_input_dim_check_03 PASSED [ 26%] 2023-08-09T11:55:28.6849831Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_input_dim_check_04 PASSED [ 26%] 2023-08-09T11:55:28.6850587Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_input_dim_check_05 PASSED [ 26%] 2023-08-09T11:55:28.6851293Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_input_dim_check_06 PASSED [ 26%] 2023-08-09T11:55:28.6852001Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_input_dim_check_07 PASSED [ 26%] 2023-08-09T11:55:28.6852697Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_input_dim_check_08 PASSED [ 26%] 2023-08-09T11:55:28.6853399Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_input_dim_check_09 PASSED [ 26%] 2023-08-09T11:55:28.6854093Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_input_dim_check_10 PASSED [ 26%] 2023-08-09T11:55:28.6854780Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_input_dim_check_11 PASSED [ 26%] 2023-08-09T11:55:28.6855611Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_input_dim_check_12 PASSED [ 26%] 2023-08-09T11:55:28.6856532Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_input_dim_check_13 PASSED [ 26%] 2023-08-09T11:55:28.6857259Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics_10_4_100_43_full PASSED [ 26%] 2023-08-09T11:55:28.6857973Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics_10_4_100_43_same PASSED [ 26%] 2023-08-09T11:55:28.6858698Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics_10_4_100_43_valid PASSED [ 26%] 2023-08-09T11:55:28.6859429Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics_10_4_21_45_full PASSED [ 26%] 2023-08-09T11:55:28.6860155Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics_10_4_21_45_same PASSED [ 26%] 2023-08-09T11:55:28.6860885Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics_10_4_21_45_valid PASSED [ 26%] 2023-08-09T11:55:28.6861586Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics_2_100_43_full PASSED [ 26%] 2023-08-09T11:55:28.6862293Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics_2_100_43_same PASSED [ 26%] 2023-08-09T11:55:28.6863007Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics_2_100_43_valid PASSED [ 26%] 2023-08-09T11:55:28.6863836Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics_2_21_45_full PASSED [ 26%] 2023-08-09T11:55:28.6864544Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics_2_21_45_same PASSED [ 26%] 2023-08-09T11:55:28.6865253Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics_2_21_45_valid PASSED [ 26%] 2023-08-09T11:55:28.6865971Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics_4_3_1_2_100_43_full PASSED [ 26%] 2023-08-09T11:55:28.6866689Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics_4_3_1_2_100_43_same PASSED [ 26%] 2023-08-09T11:55:28.6867419Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics_4_3_1_2_100_43_valid PASSED [ 26%] 2023-08-09T11:55:28.6868130Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics_4_3_1_2_21_45_full PASSED [ 27%] 2023-08-09T11:55:28.6868859Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics_4_3_1_2_21_45_same PASSED [ 27%] 2023-08-09T11:55:28.6869581Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics_4_3_1_2_21_45_valid PASSED [ 27%] 2023-08-09T11:55:28.6870292Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics__100_43_full PASSED [ 27%] 2023-08-09T11:55:28.6870996Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics__100_43_same PASSED [ 27%] 2023-08-09T11:55:28.6871711Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics__100_43_valid PASSED [ 27%] 2023-08-09T11:55:28.6872416Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics__21_45_full PASSED [ 27%] 2023-08-09T11:55:28.6873186Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics__21_45_same PASSED [ 27%] 2023-08-09T11:55:28.6873889Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics__21_45_valid PASSED [ 27%] 2023-08-09T11:55:28.6874603Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_detect_pitch_frequency_pitch_0 PASSED [ 27%] 2023-08-09T11:55:28.6875321Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_detect_pitch_frequency_pitch_1 PASSED [ 27%] 2023-08-09T11:55:28.6876059Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics_10_4_100_43_full PASSED [ 27%] 2023-08-09T11:55:28.6876781Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics_10_4_100_43_same PASSED [ 27%] 2023-08-09T11:55:28.6877509Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics_10_4_100_43_valid PASSED [ 27%] 2023-08-09T11:55:28.6878236Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics_10_4_21_45_full PASSED [ 27%] 2023-08-09T11:55:28.6878959Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics_10_4_21_45_same PASSED [ 27%] 2023-08-09T11:55:28.6879685Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics_10_4_21_45_valid PASSED [ 27%] 2023-08-09T11:55:28.6880475Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics_2_100_43_full PASSED [ 27%] 2023-08-09T11:55:28.6881208Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics_2_100_43_same PASSED [ 27%] 2023-08-09T11:55:28.6881934Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics_2_100_43_valid PASSED [ 27%] 2023-08-09T11:55:28.6882650Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics_2_21_45_full PASSED [ 27%] 2023-08-09T11:55:28.6883353Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics_2_21_45_same PASSED [ 27%] 2023-08-09T11:55:28.6884082Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics_2_21_45_valid PASSED [ 27%] 2023-08-09T11:55:28.6884811Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics_4_3_1_2_100_43_full PASSED [ 27%] 2023-08-09T11:55:28.6885547Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics_4_3_1_2_100_43_same PASSED [ 27%] 2023-08-09T11:55:28.6886265Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics_4_3_1_2_100_43_valid PASSED [ 27%] 2023-08-09T11:55:28.6886996Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics_4_3_1_2_21_45_full PASSED [ 27%] 2023-08-09T11:55:28.6887868Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics_4_3_1_2_21_45_same PASSED [ 28%] 2023-08-09T11:55:29.0186754Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics_4_3_1_2_21_45_valid PASSED [ 28%] 2023-08-09T11:55:29.0187753Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics__100_43_full PASSED [ 28%] 2023-08-09T11:55:29.0188639Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics__100_43_same PASSED [ 28%] 2023-08-09T11:55:29.0189365Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics__100_43_valid PASSED [ 28%] 2023-08-09T11:55:29.0189959Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics__21_45_full PASSED [ 28%] 2023-08-09T11:55:29.0190565Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics__21_45_same PASSED [ 28%] 2023-08-09T11:55:29.0191187Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics__21_45_valid PASSED [ 28%] 2023-08-09T11:55:29.0191775Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_filtfilt_filter_sinusoid PASSED [ 28%] 2023-08-09T11:55:29.0192335Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_filtfilt_simple PASSED [ 28%] 2023-08-09T11:55:29.0192882Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_forced_align_0 PASSED [ 28%] 2023-08-09T11:55:29.0193418Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_forced_align_1 PASSED [ 28%] 2023-08-09T11:55:29.0193960Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_forced_align_2 PASSED [ 28%] 2023-08-09T11:55:29.0194617Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_forced_align_3 PASSED [ 28%] 2023-08-09T11:55:29.0195169Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_forced_align_fail_0 PASSED [ 28%] 2023-08-09T11:55:29.0195712Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_forced_align_fail_1 PASSED [ 28%] 2023-08-09T11:55:29.0196290Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_lfilter_9th_order_filter_stability XFAIL [ 28%] 2023-08-09T11:55:29.0196850Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_lfilter_clamp PASSED [ 28%] 2023-08-09T11:55:29.0197395Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_lfilter_shape_0 PASSED [ 28%] 2023-08-09T11:55:29.0197940Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_lfilter_shape_1 PASSED [ 28%] 2023-08-09T11:55:29.0198478Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_lfilter_shape_2 PASSED [ 28%] 2023-08-09T11:55:29.0199023Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_lfilter_shape_3 PASSED [ 28%] 2023-08-09T11:55:29.0199556Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_lfilter_shape_4 PASSED [ 28%] 2023-08-09T11:55:29.0200079Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_lfilter_shape_5 PASSED [ 28%] 2023-08-09T11:55:29.0200610Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_lfilter_shape_6 PASSED [ 28%] 2023-08-09T11:55:29.0201155Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_lfilter_simple PASSED [ 28%] 2023-08-09T11:55:29.0201701Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_00 PASSED [ 28%] 2023-08-09T11:55:29.0202294Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_01 PASSED [ 29%] 2023-08-09T11:55:29.0202843Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_02 PASSED [ 29%] 2023-08-09T11:55:29.0203388Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_03 PASSED [ 29%] 2023-08-09T11:55:29.0203931Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_04 PASSED [ 29%] 2023-08-09T11:55:29.0204468Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_05 PASSED [ 29%] 2023-08-09T11:55:29.0205008Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_06 PASSED [ 29%] 2023-08-09T11:55:29.0205552Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_07 PASSED [ 29%] 2023-08-09T11:55:29.0206088Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_08 PASSED [ 29%] 2023-08-09T11:55:29.0206612Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_09 PASSED [ 29%] 2023-08-09T11:55:29.0207149Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_10 PASSED [ 29%] 2023-08-09T11:55:29.0207969Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_11 PASSED [ 29%] 2023-08-09T11:55:29.0208601Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_12 PASSED [ 29%] 2023-08-09T11:55:29.0209131Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_13 PASSED [ 29%] 2023-08-09T11:55:29.0209665Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_14 PASSED [ 29%] 2023-08-09T11:55:29.0210234Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_15 PASSED [ 29%] 2023-08-09T11:55:29.0210772Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_16 PASSED [ 29%] 2023-08-09T11:55:29.0211296Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_17 PASSED [ 29%] 2023-08-09T11:55:29.0211832Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_18 PASSED [ 29%] 2023-08-09T11:55:29.0212357Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_19 PASSED [ 29%] 2023-08-09T11:55:29.0212891Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_20 PASSED [ 29%] 2023-08-09T11:55:29.0213415Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_21 PASSED [ 29%] 2023-08-09T11:55:29.0213948Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_22 PASSED [ 29%] 2023-08-09T11:55:29.0214479Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_23 PASSED [ 29%] 2023-08-09T11:55:29.0215170Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_iid_0 PASSED [ 29%] 2023-08-09T11:55:29.0215731Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_iid_1 PASSED [ 29%] 2023-08-09T11:55:29.0216352Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_iid_2 PASSED [ 29%] 2023-08-09T11:55:29.0216901Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_iid_3 PASSED [ 29%] 2023-08-09T11:55:29.0217452Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_iid_4 PASSED [ 30%] 2023-08-09T11:55:29.0218001Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_iid_5 PASSED [ 30%] 2023-08-09T11:55:29.0218541Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_iid_6 PASSED [ 30%] 2023-08-09T11:55:29.0219083Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_iid_7 PASSED [ 30%] 2023-08-09T11:55:29.0219655Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_iid_preserve_0 PASSED [ 30%] 2023-08-09T11:55:29.0220245Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_iid_preserve_1 PASSED [ 30%] 2023-08-09T11:55:29.0220874Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_iid_preserve_2 PASSED [ 30%] 2023-08-09T11:55:30.3002726Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_iid_preserve_3 PASSED [ 30%] 2023-08-09T11:55:30.3003912Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_input_axis_check_0 PASSED [ 30%] 2023-08-09T11:55:30.3004723Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_input_axis_check_1 PASSED [ 30%] 2023-08-09T11:55:30.3005322Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_preserve_0 PASSED [ 30%] 2023-08-09T11:55:30.3005894Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_preserve_1 PASSED [ 30%] 2023-08-09T11:55:30.3006449Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_preserve_2 PASSED [ 30%] 2023-08-09T11:55:30.3007024Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_preserve_3 PASSED [ 30%] 2023-08-09T11:55:30.3007774Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_preserve_4 PASSED [ 30%] 2023-08-09T11:55:30.3008344Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_preserve_5 PASSED [ 30%] 2023-08-09T11:55:30.3008908Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_preserve_6 PASSED [ 30%] 2023-08-09T11:55:30.3009464Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_preserve_7 PASSED [ 30%] 2023-08-09T11:55:30.3010037Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_merge_repeated_tokens_00 PASSED [ 30%] 2023-08-09T11:55:30.3010602Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_merge_repeated_tokens_01 PASSED [ 30%] 2023-08-09T11:55:30.3011177Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_merge_repeated_tokens_02 PASSED [ 30%] 2023-08-09T11:55:30.3011741Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_merge_repeated_tokens_03 PASSED [ 30%] 2023-08-09T11:55:30.3012412Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_merge_repeated_tokens_04 PASSED [ 30%] 2023-08-09T11:55:30.3012968Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_merge_repeated_tokens_05 PASSED [ 30%] 2023-08-09T11:55:30.3013534Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_merge_repeated_tokens_06 PASSED [ 30%] 2023-08-09T11:55:30.3014093Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_merge_repeated_tokens_07 PASSED [ 30%] 2023-08-09T11:55:30.3014655Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_merge_repeated_tokens_08 PASSED [ 30%] 2023-08-09T11:55:30.3015297Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_merge_repeated_tokens_09 PASSED [ 31%] 2023-08-09T11:55:30.3015877Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_merge_repeated_tokens_10 PASSED [ 31%] 2023-08-09T11:55:30.3016436Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_merge_repeated_tokens_11 PASSED [ 31%] 2023-08-09T11:55:30.3016994Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_merge_repeated_tokens_12 PASSED [ 31%] 2023-08-09T11:55:30.3017544Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_merge_repeated_tokens_13 PASSED [ 31%] 2023-08-09T11:55:30.3018238Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_merge_repeated_tokens_14 PASSED [ 31%] 2023-08-09T11:55:30.3018837Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_merge_repeated_tokens_15 PASSED [ 31%] 2023-08-09T11:55:30.3019440Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_merge_repeated_tokens_16 PASSED [ 31%] 2023-08-09T11:55:30.3020027Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_merge_repeated_tokens_17 PASSED [ 31%] 2023-08-09T11:55:30.3020679Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_merge_repeated_tokens_18 PASSED [ 31%] 2023-08-09T11:55:30.3021281Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_merge_repeated_tokens_19 PASSED [ 31%] 2023-08-09T11:55:30.3021884Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_merge_repeated_tokens_20 PASSED [ 31%] 2023-08-09T11:55:30.3022475Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_merge_repeated_tokens_21 PASSED [ 31%] 2023-08-09T11:55:30.3023076Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_merge_repeated_tokens_22 PASSED [ 31%] 2023-08-09T11:55:30.3023673Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mvdr_weights_rtf PASSED [ 31%] 2023-08-09T11:55:30.3024290Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mvdr_weights_rtf_with_tensor PASSED [ 31%] 2023-08-09T11:55:30.3024899Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mvdr_weights_souden PASSED [ 31%] 2023-08-09T11:55:30.3025535Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mvdr_weights_souden_with_tensor PASSED [ 31%] 2023-08-09T11:55:30.3026157Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_phase_vocoder_shape_0_5 PASSED [ 31%] 2023-08-09T11:55:30.3026828Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_phase_vocoder_shape_1_01 PASSED [ 31%] 2023-08-09T11:55:30.3027438Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_phase_vocoder_shape_1_3 PASSED [ 31%] 2023-08-09T11:55:30.3028022Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_pitch_shift_shape_0 PASSED [ 31%] 2023-08-09T11:55:30.3028618Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_pitch_shift_shape_2 PASSED [ 31%] 2023-08-09T11:55:30.3029213Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_pitch_shift_shape_4 PASSED [ 31%] 2023-08-09T11:55:30.3029807Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_pitch_shift_shape__2 PASSED [ 31%] 2023-08-09T11:55:30.3030434Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_pitch_shift_shape__4 PASSED [ 31%] 2023-08-09T11:55:30.3031056Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_preemphasis_3_2_100_0_68 PASSED [ 31%] 2023-08-09T11:55:30.3031652Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_preemphasis_3_2_100_0_9 PASSED [ 32%] 2023-08-09T11:55:30.3032254Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_preemphasis_3_2_100_0_97 PASSED [ 32%] 2023-08-09T11:55:30.3032885Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_preemphasis_95_0_68 PASSED [ 32%] 2023-08-09T11:55:30.3033478Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_preemphasis_95_0_9 PASSED [ 32%] 2023-08-09T11:55:30.3034081Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_preemphasis_95_0_97 PASSED [ 32%] 2023-08-09T11:55:30.3034717Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_preemphasis_deemphasis_roundtrip_3_2_100_0_68 PASSED [ 32%] 2023-08-09T11:55:30.3035378Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_preemphasis_deemphasis_roundtrip_3_2_100_0_9 PASSED [ 32%] 2023-08-09T11:55:30.3036039Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_preemphasis_deemphasis_roundtrip_3_2_100_0_97 PASSED [ 32%] 2023-08-09T11:55:30.3036706Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_preemphasis_deemphasis_roundtrip_95_0_68 PASSED [ 32%] 2023-08-09T11:55:30.3037370Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_preemphasis_deemphasis_roundtrip_95_0_9 PASSED [ 32%] 2023-08-09T11:55:30.3038017Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_preemphasis_deemphasis_roundtrip_95_0_97 PASSED [ 32%] 2023-08-09T11:55:30.4384911Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_psd PASSED [ 32%] 2023-08-09T11:55:30.4385755Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_psd_with_mask_0 PASSED [ 32%] 2023-08-09T11:55:30.4386466Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_psd_with_mask_1 PASSED [ 32%] 2023-08-09T11:55:30.4387238Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_identity_0_sinc_interp_hann PASSED [ 32%] 2023-08-09T11:55:30.4388007Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_identity_1_sinc_interp_hann PASSED [ 32%] 2023-08-09T11:55:30.4388986Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_identity_2_sinc_interp_kaiser PASSED [ 32%] 2023-08-09T11:55:30.4389762Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_identity_3_sinc_interp_kaiser PASSED [ 32%] 2023-08-09T11:55:30.4390570Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_00_sinc_interp_hann PASSED [ 32%] 2023-08-09T11:55:30.4391400Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_01_sinc_interp_hann PASSED [ 32%] 2023-08-09T11:55:30.4392232Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_02_sinc_interp_hann PASSED [ 32%] 2023-08-09T11:55:30.4393080Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_03_sinc_interp_hann PASSED [ 32%] 2023-08-09T11:55:30.4393898Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_04_sinc_interp_hann PASSED [ 32%] 2023-08-09T11:55:30.4394687Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_05_sinc_interp_hann PASSED [ 32%] 2023-08-09T11:55:30.4395476Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_06_sinc_interp_hann PASSED [ 32%] 2023-08-09T11:55:30.4396392Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_07_sinc_interp_hann PASSED [ 32%] 2023-08-09T11:55:30.4397210Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_08_sinc_interp_hann PASSED [ 32%] 2023-08-09T11:55:30.4398006Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_09_sinc_interp_hann PASSED [ 33%] 2023-08-09T11:55:30.4398835Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_10_sinc_interp_hann PASSED [ 33%] 2023-08-09T11:55:30.4399618Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_11_sinc_interp_hann PASSED [ 33%] 2023-08-09T11:55:30.4400426Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_12_sinc_interp_hann PASSED [ 33%] 2023-08-09T11:55:30.4401227Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_13_sinc_interp_hann PASSED [ 33%] 2023-08-09T11:55:30.4402020Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_14_sinc_interp_hann PASSED [ 33%] 2023-08-09T11:55:30.4402803Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_15_sinc_interp_hann PASSED [ 33%] 2023-08-09T11:55:30.4403595Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_16_sinc_interp_hann PASSED [ 33%] 2023-08-09T11:55:30.4404394Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_17_sinc_interp_hann PASSED [ 33%] 2023-08-09T11:55:30.4405251Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_18_sinc_interp_hann PASSED [ 33%] 2023-08-09T11:55:30.4406066Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_19_sinc_interp_kaiser PASSED [ 33%] 2023-08-09T11:55:30.4406864Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_20_sinc_interp_kaiser PASSED [ 33%] 2023-08-09T11:55:30.4407859Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_21_sinc_interp_kaiser PASSED [ 33%] 2023-08-09T11:55:30.4408680Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_22_sinc_interp_kaiser PASSED [ 33%] 2023-08-09T11:55:30.4409493Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_23_sinc_interp_kaiser PASSED [ 33%] 2023-08-09T11:55:30.4410297Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_24_sinc_interp_kaiser PASSED [ 33%] 2023-08-09T11:55:30.4411085Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_25_sinc_interp_kaiser PASSED [ 33%] 2023-08-09T11:55:30.4411891Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_26_sinc_interp_kaiser PASSED [ 33%] 2023-08-09T11:55:30.4412803Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_27_sinc_interp_kaiser PASSED [ 33%] 2023-08-09T11:55:30.4413598Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_28_sinc_interp_kaiser PASSED [ 33%] 2023-08-09T11:55:30.4414391Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_29_sinc_interp_kaiser PASSED [ 33%] 2023-08-09T11:55:30.4415334Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_30_sinc_interp_kaiser PASSED [ 33%] 2023-08-09T11:55:30.4416139Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_31_sinc_interp_kaiser PASSED [ 33%] 2023-08-09T11:55:30.4416935Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_32_sinc_interp_kaiser PASSED [ 33%] 2023-08-09T11:55:30.4417732Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_33_sinc_interp_kaiser PASSED [ 33%] 2023-08-09T11:55:30.4418531Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_34_sinc_interp_kaiser PASSED [ 33%] 2023-08-09T11:55:30.4419335Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_35_sinc_interp_kaiser PASSED [ 33%] 2023-08-09T11:55:30.4420136Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_36_sinc_interp_kaiser PASSED [ 34%] 2023-08-09T11:55:30.4420934Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_37_sinc_interp_kaiser PASSED [ 34%] 2023-08-09T11:55:30.4421831Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_size_0_sinc_interp_hann PASSED [ 34%] 2023-08-09T11:55:30.4422635Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_size_1_sinc_interp_kaiser PASSED [ 34%] 2023-08-09T11:55:30.4423422Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_identity_size_0_sinc_interp_hann PASSED [ 34%] 2023-08-09T11:55:30.4424204Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_identity_size_1_sinc_interp_kaiser PASSED [ 34%] 2023-08-09T11:55:30.9243784Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_00_sinc_interp_hann PASSED [ 34%] 2023-08-09T11:55:30.9244637Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_01_sinc_interp_hann PASSED [ 34%] 2023-08-09T11:55:30.9245483Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_02_sinc_interp_hann PASSED [ 34%] 2023-08-09T11:55:30.9246282Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_03_sinc_interp_hann PASSED [ 34%] 2023-08-09T11:55:30.9247074Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_04_sinc_interp_hann PASSED [ 34%] 2023-08-09T11:55:30.9248329Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_05_sinc_interp_hann PASSED [ 34%] 2023-08-09T11:55:30.9249127Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_06_sinc_interp_hann PASSED [ 34%] 2023-08-09T11:55:30.9249925Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_07_sinc_interp_hann PASSED [ 34%] 2023-08-09T11:55:30.9250716Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_08_sinc_interp_hann PASSED [ 34%] 2023-08-09T11:55:30.9251498Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_09_sinc_interp_hann PASSED [ 34%] 2023-08-09T11:55:30.9252283Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_10_sinc_interp_hann PASSED [ 34%] 2023-08-09T11:55:30.9253079Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_11_sinc_interp_hann PASSED [ 34%] 2023-08-09T11:55:30.9253863Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_12_sinc_interp_hann PASSED [ 34%] 2023-08-09T11:55:30.9254651Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_13_sinc_interp_hann PASSED [ 34%] 2023-08-09T11:55:30.9255500Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_14_sinc_interp_hann PASSED [ 34%] 2023-08-09T11:55:30.9256281Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_15_sinc_interp_hann PASSED [ 34%] 2023-08-09T11:55:30.9257187Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_16_sinc_interp_hann PASSED [ 34%] 2023-08-09T11:55:30.9257990Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_17_sinc_interp_hann PASSED [ 34%] 2023-08-09T11:55:30.9258772Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_18_sinc_interp_hann PASSED [ 34%] 2023-08-09T11:55:30.9259557Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_19_sinc_interp_kaiser PASSED [ 34%] 2023-08-09T11:55:30.9260363Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_20_sinc_interp_kaiser PASSED [ 34%] 2023-08-09T11:55:30.9261225Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_21_sinc_interp_kaiser PASSED [ 35%] 2023-08-09T11:55:30.9262019Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_22_sinc_interp_kaiser PASSED [ 35%] 2023-08-09T11:55:30.9262800Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_23_sinc_interp_kaiser PASSED [ 35%] 2023-08-09T11:55:30.9263589Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_24_sinc_interp_kaiser PASSED [ 35%] 2023-08-09T11:55:30.9264479Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_25_sinc_interp_kaiser PASSED [ 35%] 2023-08-09T11:55:30.9265286Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_26_sinc_interp_kaiser PASSED [ 35%] 2023-08-09T11:55:30.9266080Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_27_sinc_interp_kaiser PASSED [ 35%] 2023-08-09T11:55:30.9266867Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_28_sinc_interp_kaiser PASSED [ 35%] 2023-08-09T11:55:30.9267658Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_29_sinc_interp_kaiser PASSED [ 35%] 2023-08-09T11:55:30.9268461Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_30_sinc_interp_kaiser PASSED [ 35%] 2023-08-09T11:55:30.9269246Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_31_sinc_interp_kaiser PASSED [ 35%] 2023-08-09T11:55:30.9270027Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_32_sinc_interp_kaiser PASSED [ 35%] 2023-08-09T11:55:30.9270811Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_33_sinc_interp_kaiser PASSED [ 35%] 2023-08-09T11:55:30.9271599Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_34_sinc_interp_kaiser PASSED [ 35%] 2023-08-09T11:55:30.9272394Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_35_sinc_interp_kaiser PASSED [ 35%] 2023-08-09T11:55:30.9273185Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_36_sinc_interp_kaiser PASSED [ 35%] 2023-08-09T11:55:30.9274030Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_37_sinc_interp_kaiser PASSED [ 35%] 2023-08-09T11:55:30.9274819Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_size_0_sinc_interp_hann PASSED [ 35%] 2023-08-09T11:55:30.9275606Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_size_1_sinc_interp_kaiser PASSED [ 35%] 2023-08-09T11:55:30.9276350Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_rnnt_loss_basic_backward PASSED [ 35%] 2023-08-09T11:55:30.9277059Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_rnnt_loss_basic_forward_no_grad PASSED [ 35%] 2023-08-09T11:55:30.9277772Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_rnnt_loss_costs_and_gradients_0 PASSED [ 35%] 2023-08-09T11:55:30.9278489Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_rnnt_loss_costs_and_gradients_1 PASSED [ 35%] 2023-08-09T11:55:30.9279206Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_rnnt_loss_costs_and_gradients_2 PASSED [ 35%] 2023-08-09T11:55:30.9279913Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_rnnt_loss_costs_and_gradients_3 PASSED [ 35%] 2023-08-09T11:55:30.9280742Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_rnnt_loss_costs_and_gradients_random_data_with_numpy_fp32_0 PASSED [ 35%] 2023-08-09T11:55:30.9281548Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_rnnt_loss_costs_and_gradients_random_data_with_numpy_fp32_1 PASSED [ 35%] 2023-08-09T11:55:30.9282288Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_rnnt_loss_nonfused_softmax PASSED [ 36%] 2023-08-09T11:55:31.7236528Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_rtf_evd PASSED [ 36%] 2023-08-09T11:55:31.7238437Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_rtf_power_0 PASSED [ 36%] 2023-08-09T11:55:31.7239105Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_rtf_power_1 PASSED [ 36%] 2023-08-09T11:55:31.7239802Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_rtf_power_2 PASSED [ 36%] 2023-08-09T11:55:31.7240494Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_rtf_power_with_tensor_0 PASSED [ 36%] 2023-08-09T11:55:31.7241210Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_rtf_power_with_tensor_1 PASSED [ 36%] 2023-08-09T11:55:31.7241912Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_rtf_power_with_tensor_2 PASSED [ 36%] 2023-08-09T11:55:31.7242632Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_simple_case_edit_distance_00_ PASSED [ 36%] 2023-08-09T11:55:31.7243357Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_simple_case_edit_distance_01_abc PASSED [ 36%] 2023-08-09T11:55:31.7244087Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_simple_case_edit_distance_02__I_O PASSED [ 36%] 2023-08-09T11:55:31.7244817Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_simple_case_edit_distance_03_abc PASSED [ 36%] 2023-08-09T11:55:31.7245878Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_simple_case_edit_distance_04_aa PASSED [ 36%] 2023-08-09T11:55:31.7246609Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_simple_case_edit_distance_05_aaa PASSED [ 36%] 2023-08-09T11:55:31.7247329Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_simple_case_edit_distance_06__I PASSED [ 36%] 2023-08-09T11:55:31.7248237Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_simple_case_edit_distance_07_aaa PASSED [ 36%] 2023-08-09T11:55:31.7248969Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_simple_case_edit_distance_08_aba PASSED [ 36%] 2023-08-09T11:55:31.7249704Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_simple_case_edit_distance_09_aba PASSED [ 36%] 2023-08-09T11:55:31.7250419Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_simple_case_edit_distance_10_abc PASSED [ 36%] 2023-08-09T11:55:31.7251123Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_simple_case_edit_distance_11_0_I PASSED [ 36%] 2023-08-09T11:55:31.7251842Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_simple_case_edit_distance_12 PASSED [ 36%] 2023-08-09T11:55:31.7252548Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_simple_case_edit_distance_13 PASSED [ 36%] 2023-08-09T11:55:31.7253442Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_simple_case_edit_distance_14 PASSED [ 36%] 2023-08-09T11:55:31.7254139Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_simple_case_edit_distance_15 PASSED [ 36%] 2023-08-09T11:55:31.7254843Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_simple_case_edit_distance_16 PASSED [ 36%] 2023-08-09T11:55:31.7255667Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_simple_case_edit_distance_17 PASSED [ 36%] 2023-08-09T11:55:31.7256371Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_simple_case_edit_distance_18 PASSED [ 36%] 2023-08-09T11:55:31.7257061Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_simple_case_edit_distance_19 PASSED [ 37%] 2023-08-09T11:55:31.7257784Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_simple_case_edit_distance_20_aba PASSED [ 37%] 2023-08-09T11:55:31.7258504Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_simple_case_edit_distance_21 PASSED [ 37%] 2023-08-09T11:55:31.7259206Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_simple_case_edit_distance_22 PASSED [ 37%] 2023-08-09T11:55:31.7259902Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_spectrogram_grad_at_zero_0 PASSED [ 37%] 2023-08-09T11:55:31.7260609Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_spectrogram_grad_at_zero_1 PASSED [ 37%] 2023-08-09T11:55:31.7261304Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_spectrogram_grad_at_zero_2 PASSED [ 37%] 2023-08-09T11:55:31.7262012Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_spectrogram_grad_at_zero_3 PASSED [ 37%] 2023-08-09T11:55:31.7262847Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_spectrogram_normalization_hann_window_0 PASSED [ 37%] 2023-08-09T11:55:31.7263606Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_spectrogram_normalization_hann_window_1 PASSED [ 37%] 2023-08-09T11:55:31.7264365Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_spectrogram_normalization_hann_window_2 PASSED [ 37%] 2023-08-09T11:55:31.7265081Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_speed_accuracy_0_8_False PASSED [ 37%] 2023-08-09T11:55:31.7265783Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_speed_accuracy_0_8_True PASSED [ 37%] 2023-08-09T11:55:31.7266469Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_speed_accuracy_1_1_False PASSED [ 37%] 2023-08-09T11:55:31.7267178Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_speed_accuracy_1_1_True PASSED [ 37%] 2023-08-09T11:55:31.7267874Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_speed_accuracy_1_2_False PASSED [ 37%] 2023-08-09T11:55:31.7268561Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_speed_accuracy_1_2_True PASSED [ 37%] 2023-08-09T11:55:31.7269232Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_speed_identity PASSED [ 37%] 2023-08-09T11:55:31.7269990Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_add_noise_broadcast PASSED [ 37%] 2023-08-09T11:55:31.7270687Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_add_noise_leading_dim_check_0 PASSED [ 37%] 2023-08-09T11:55:31.7271443Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_add_noise_leading_dim_check_1 PASSED [ 37%] 2023-08-09T11:55:31.7272128Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_add_noise_leading_dim_check_2 PASSED [ 37%] 2023-08-09T11:55:31.7272808Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_add_noise_length_check PASSED [ 37%] 2023-08-09T11:55:31.7273507Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_amplitude_to_DB_reversible_0 PASSED [ 37%] 2023-08-09T11:55:31.7274217Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_amplitude_to_DB_reversible_1 PASSED [ 37%] 2023-08-09T11:55:31.7274906Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_amplitude_to_DB_reversible_2 PASSED [ 37%] 2023-08-09T11:55:31.7275625Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_amplitude_to_DB_top_db_clamp_0 PASSED [ 37%] 2023-08-09T11:55:31.7276323Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_amplitude_to_DB_top_db_clamp_1 PASSED [ 38%] 2023-08-09T11:55:31.7277022Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_amplitude_to_DB_top_db_clamp_2 PASSED [ 38%] 2023-08-09T11:55:31.7277705Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_apply_beamforming PASSED [ 38%] 2023-08-09T11:55:31.7278394Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_compute_deltas_one_channel PASSED [ 38%] 2023-08-09T11:55:31.7279097Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_compute_deltas_two_channels PASSED [ 38%] 2023-08-09T11:55:32.0175611Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_broadcast_convolve_5_2_3_1_1_3 PASSED [ 38%] 2023-08-09T11:55:32.0176404Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_broadcast_convolve_5_2_3_1_2_3 PASSED [ 38%] 2023-08-09T11:55:32.0177156Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_broadcast_convolve_5_2_3_5_1_3 PASSED [ 38%] 2023-08-09T11:55:32.0177891Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_broadcast_fftconvolve_5_2_3_1_1_3 PASSED [ 38%] 2023-08-09T11:55:32.0178650Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_broadcast_fftconvolve_5_2_3_1_2_3 PASSED [ 38%] 2023-08-09T11:55:32.0179378Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_broadcast_fftconvolve_5_2_3_5_1_3 PASSED [ 38%] 2023-08-09T11:55:32.0180107Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_input_dim_check_00 PASSED [ 38%] 2023-08-09T11:55:32.0180806Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_input_dim_check_01 PASSED [ 38%] 2023-08-09T11:55:32.0181494Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_input_dim_check_02 PASSED [ 38%] 2023-08-09T11:55:32.0182179Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_input_dim_check_03 PASSED [ 38%] 2023-08-09T11:55:32.0182976Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_input_dim_check_04 PASSED [ 38%] 2023-08-09T11:55:32.0183667Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_input_dim_check_05 PASSED [ 38%] 2023-08-09T11:55:32.0184353Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_input_dim_check_06 PASSED [ 38%] 2023-08-09T11:55:32.0185034Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_input_dim_check_07 PASSED [ 38%] 2023-08-09T11:55:32.0185701Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_input_dim_check_08 PASSED [ 38%] 2023-08-09T11:55:32.0186390Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_input_dim_check_09 PASSED [ 38%] 2023-08-09T11:55:32.0187080Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_input_dim_check_10 PASSED [ 38%] 2023-08-09T11:55:32.0187758Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_input_dim_check_11 PASSED [ 38%] 2023-08-09T11:55:32.0188429Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_input_dim_check_12 PASSED [ 38%] 2023-08-09T11:55:32.0189113Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_input_dim_check_13 PASSED [ 38%] 2023-08-09T11:55:32.0189810Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics_10_4_100_43_full PASSED [ 38%] 2023-08-09T11:55:32.0190698Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics_10_4_100_43_same PASSED [ 38%] 2023-08-09T11:55:32.0191426Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics_10_4_100_43_valid PASSED [ 39%] 2023-08-09T11:55:32.0192250Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics_10_4_21_45_full PASSED [ 39%] 2023-08-09T11:55:32.0192996Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics_10_4_21_45_same PASSED [ 39%] 2023-08-09T11:55:32.0193697Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics_10_4_21_45_valid PASSED [ 39%] 2023-08-09T11:55:32.0194390Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics_2_100_43_full PASSED [ 39%] 2023-08-09T11:55:32.0195068Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics_2_100_43_same PASSED [ 39%] 2023-08-09T11:55:32.0195765Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics_2_100_43_valid PASSED [ 39%] 2023-08-09T11:55:32.0196467Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics_2_21_45_full PASSED [ 39%] 2023-08-09T11:55:32.0197152Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics_2_21_45_same PASSED [ 39%] 2023-08-09T11:55:32.0197831Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics_2_21_45_valid PASSED [ 39%] 2023-08-09T11:55:32.0198534Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics_4_3_1_2_100_43_full PASSED [ 39%] 2023-08-09T11:55:32.0199242Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics_4_3_1_2_100_43_same PASSED [ 39%] 2023-08-09T11:55:32.0200036Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics_4_3_1_2_100_43_valid PASSED [ 39%] 2023-08-09T11:55:32.0200739Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics_4_3_1_2_21_45_full PASSED [ 39%] 2023-08-09T11:55:32.0201441Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics_4_3_1_2_21_45_same PASSED [ 39%] 2023-08-09T11:55:32.0202135Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics_4_3_1_2_21_45_valid PASSED [ 39%] 2023-08-09T11:55:32.0202832Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics__100_43_full PASSED [ 39%] 2023-08-09T11:55:32.0203513Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics__100_43_same PASSED [ 39%] 2023-08-09T11:55:32.0204204Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics__100_43_valid PASSED [ 39%] 2023-08-09T11:55:32.0204903Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics__21_45_full PASSED [ 39%] 2023-08-09T11:55:32.0205587Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics__21_45_same PASSED [ 39%] 2023-08-09T11:55:32.0206268Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics__21_45_valid PASSED [ 39%] 2023-08-09T11:55:32.0206954Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_detect_pitch_frequency_pitch_0 PASSED [ 39%] 2023-08-09T11:55:32.0207888Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_detect_pitch_frequency_pitch_1 PASSED [ 39%] 2023-08-09T11:55:32.0208611Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics_10_4_100_43_full PASSED [ 39%] 2023-08-09T11:55:32.0209425Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics_10_4_100_43_same PASSED [ 39%] 2023-08-09T11:55:32.0210138Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics_10_4_100_43_valid PASSED [ 39%] 2023-08-09T11:55:32.0210852Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics_10_4_21_45_full PASSED [ 40%] 2023-08-09T11:55:32.0211609Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics_10_4_21_45_same PASSED [ 40%] 2023-08-09T11:55:32.0212314Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics_10_4_21_45_valid PASSED [ 40%] 2023-08-09T11:55:32.0213009Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics_2_100_43_full PASSED [ 40%] 2023-08-09T11:55:32.0213717Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics_2_100_43_same PASSED [ 40%] 2023-08-09T11:55:32.0214423Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics_2_100_43_valid PASSED [ 40%] 2023-08-09T11:55:32.0215226Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics_2_21_45_full PASSED [ 40%] 2023-08-09T11:55:32.3195919Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics_2_21_45_same PASSED [ 40%] 2023-08-09T11:55:32.3196877Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics_2_21_45_valid PASSED [ 40%] 2023-08-09T11:55:32.3197477Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics_4_3_1_2_100_43_full PASSED [ 40%] 2023-08-09T11:55:32.3198063Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics_4_3_1_2_100_43_same PASSED [ 40%] 2023-08-09T11:55:32.3198633Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics_4_3_1_2_100_43_valid PASSED [ 40%] 2023-08-09T11:55:32.3199216Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics_4_3_1_2_21_45_full PASSED [ 40%] 2023-08-09T11:55:32.3199801Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics_4_3_1_2_21_45_same PASSED [ 40%] 2023-08-09T11:55:32.3200381Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics_4_3_1_2_21_45_valid PASSED [ 40%] 2023-08-09T11:55:32.3200948Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics__100_43_full PASSED [ 40%] 2023-08-09T11:55:32.3201523Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics__100_43_same PASSED [ 40%] 2023-08-09T11:55:32.3202090Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics__100_43_valid PASSED [ 40%] 2023-08-09T11:55:32.3202656Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics__21_45_full PASSED [ 40%] 2023-08-09T11:55:32.3203214Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics__21_45_same PASSED [ 40%] 2023-08-09T11:55:32.3203779Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics__21_45_valid PASSED [ 40%] 2023-08-09T11:55:32.3204443Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_filtfilt_filter_sinusoid PASSED [ 40%] 2023-08-09T11:55:32.3204991Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_filtfilt_simple PASSED [ 40%] 2023-08-09T11:55:32.3205523Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_forced_align_0 PASSED [ 40%] 2023-08-09T11:55:32.3206039Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_forced_align_1 PASSED [ 40%] 2023-08-09T11:55:32.3206556Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_forced_align_2 PASSED [ 40%] 2023-08-09T11:55:32.3207092Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_forced_align_3 PASSED [ 40%] 2023-08-09T11:55:32.3207902Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_forced_align_fail_0 PASSED [ 41%] 2023-08-09T11:55:32.3208437Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_forced_align_fail_1 PASSED [ 41%] 2023-08-09T11:55:32.3208997Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_lfilter_9th_order_filter_stability PASSED [ 41%] 2023-08-09T11:55:32.3209543Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_lfilter_clamp PASSED [ 41%] 2023-08-09T11:55:32.3210070Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_lfilter_shape_0 PASSED [ 41%] 2023-08-09T11:55:32.3210684Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_lfilter_shape_1 PASSED [ 41%] 2023-08-09T11:55:32.3211204Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_lfilter_shape_2 PASSED [ 41%] 2023-08-09T11:55:32.3211728Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_lfilter_shape_3 PASSED [ 41%] 2023-08-09T11:55:32.3212248Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_lfilter_shape_4 PASSED [ 41%] 2023-08-09T11:55:32.3212771Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_lfilter_shape_5 PASSED [ 41%] 2023-08-09T11:55:32.3213291Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_lfilter_shape_6 PASSED [ 41%] 2023-08-09T11:55:32.3213817Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_lfilter_simple PASSED [ 41%] 2023-08-09T11:55:32.3214351Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_00 PASSED [ 41%] 2023-08-09T11:55:32.3214880Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_01 PASSED [ 41%] 2023-08-09T11:55:32.3215561Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_02 PASSED [ 41%] 2023-08-09T11:55:32.3216217Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_03 PASSED [ 41%] 2023-08-09T11:55:32.3216823Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_04 PASSED [ 41%] 2023-08-09T11:55:32.3217356Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_05 PASSED [ 41%] 2023-08-09T11:55:32.3217892Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_06 PASSED [ 41%] 2023-08-09T11:55:32.3218523Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_07 PASSED [ 41%] 2023-08-09T11:55:32.3219054Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_08 PASSED [ 41%] 2023-08-09T11:55:32.3219565Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_09 PASSED [ 41%] 2023-08-09T11:55:32.3220088Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_10 PASSED [ 41%] 2023-08-09T11:55:32.3220610Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_11 PASSED [ 41%] 2023-08-09T11:55:32.3221137Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_12 PASSED [ 41%] 2023-08-09T11:55:32.3221653Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_13 PASSED [ 41%] 2023-08-09T11:55:32.3222299Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_14 PASSED [ 41%] 2023-08-09T11:55:32.3222826Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_15 PASSED [ 42%] 2023-08-09T11:55:32.3223342Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_16 PASSED [ 42%] 2023-08-09T11:55:32.3223853Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_17 PASSED [ 42%] 2023-08-09T11:55:32.3224451Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_18 PASSED [ 42%] 2023-08-09T11:55:32.3224969Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_19 PASSED [ 42%] 2023-08-09T11:55:32.3225495Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_20 PASSED [ 42%] 2023-08-09T11:55:32.3226007Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_21 PASSED [ 42%] 2023-08-09T11:55:32.3226526Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_22 PASSED [ 42%] 2023-08-09T11:55:32.3227042Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_23 PASSED [ 42%] 2023-08-09T11:55:32.3227574Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_iid_0 PASSED [ 42%] 2023-08-09T11:55:32.3228117Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_iid_1 PASSED [ 42%] 2023-08-09T11:55:32.3228660Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_iid_2 PASSED [ 42%] 2023-08-09T11:55:32.3229198Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_iid_3 PASSED [ 42%] 2023-08-09T11:55:32.3229730Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_iid_4 PASSED [ 42%] 2023-08-09T11:55:34.0161274Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_iid_5 PASSED [ 42%] 2023-08-09T11:55:34.0161909Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_iid_6 PASSED [ 42%] 2023-08-09T11:55:34.0162725Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_iid_7 PASSED [ 42%] 2023-08-09T11:55:34.0163459Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_iid_preserve_0 PASSED [ 42%] 2023-08-09T11:55:34.0164406Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_iid_preserve_1 PASSED [ 42%] 2023-08-09T11:55:34.0165155Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_iid_preserve_2 PASSED [ 42%] 2023-08-09T11:55:34.0165891Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_iid_preserve_3 PASSED [ 42%] 2023-08-09T11:55:34.0166665Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_input_axis_check_0 PASSED [ 42%] 2023-08-09T11:55:34.0167588Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_input_axis_check_1 PASSED [ 42%] 2023-08-09T11:55:34.0168361Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_preserve_0 PASSED [ 42%] 2023-08-09T11:55:34.0168931Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_preserve_1 PASSED [ 42%] 2023-08-09T11:55:34.0169492Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_preserve_2 PASSED [ 42%] 2023-08-09T11:55:34.0170044Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_preserve_3 PASSED [ 42%] 2023-08-09T11:55:34.0170603Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_preserve_4 PASSED [ 43%] 2023-08-09T11:55:34.0171278Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_preserve_5 PASSED [ 43%] 2023-08-09T11:55:34.0171838Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_preserve_6 PASSED [ 43%] 2023-08-09T11:55:34.0172381Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_preserve_7 PASSED [ 43%] 2023-08-09T11:55:34.0172946Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_merge_repeated_tokens_00 PASSED [ 43%] 2023-08-09T11:55:34.0173503Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_merge_repeated_tokens_01 PASSED [ 43%] 2023-08-09T11:55:34.0174053Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_merge_repeated_tokens_02 PASSED [ 43%] 2023-08-09T11:55:34.0174609Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_merge_repeated_tokens_03 PASSED [ 43%] 2023-08-09T11:55:34.0175260Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_merge_repeated_tokens_04 PASSED [ 43%] 2023-08-09T11:55:34.0175821Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_merge_repeated_tokens_05 PASSED [ 43%] 2023-08-09T11:55:34.0176368Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_merge_repeated_tokens_06 PASSED [ 43%] 2023-08-09T11:55:34.0176905Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_merge_repeated_tokens_07 PASSED [ 43%] 2023-08-09T11:55:34.0177445Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_merge_repeated_tokens_08 PASSED [ 43%] 2023-08-09T11:55:34.0177993Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_merge_repeated_tokens_09 PASSED [ 43%] 2023-08-09T11:55:34.0178537Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_merge_repeated_tokens_10 PASSED [ 43%] 2023-08-09T11:55:34.0179156Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_merge_repeated_tokens_11 PASSED [ 43%] 2023-08-09T11:55:34.0179704Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_merge_repeated_tokens_12 PASSED [ 43%] 2023-08-09T11:55:34.0180241Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_merge_repeated_tokens_13 PASSED [ 43%] 2023-08-09T11:55:34.0180783Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_merge_repeated_tokens_14 PASSED [ 43%] 2023-08-09T11:55:34.0181323Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_merge_repeated_tokens_15 PASSED [ 43%] 2023-08-09T11:55:34.0181863Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_merge_repeated_tokens_16 PASSED [ 43%] 2023-08-09T11:55:34.0182414Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_merge_repeated_tokens_17 PASSED [ 43%] 2023-08-09T11:55:34.0182956Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_merge_repeated_tokens_18 PASSED [ 43%] 2023-08-09T11:55:34.0183488Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_merge_repeated_tokens_19 PASSED [ 43%] 2023-08-09T11:55:34.0184048Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_merge_repeated_tokens_20 PASSED [ 43%] 2023-08-09T11:55:34.0184655Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_merge_repeated_tokens_21 PASSED [ 43%] 2023-08-09T11:55:34.0185195Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_merge_repeated_tokens_22 PASSED [ 43%] 2023-08-09T11:55:34.0185740Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mvdr_weights_rtf PASSED [ 44%] 2023-08-09T11:55:34.0186288Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mvdr_weights_rtf_with_tensor PASSED [ 44%] 2023-08-09T11:55:34.0186841Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mvdr_weights_souden PASSED [ 44%] 2023-08-09T11:55:34.0187404Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mvdr_weights_souden_with_tensor PASSED [ 44%] 2023-08-09T11:55:34.0187961Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_phase_vocoder_shape_0_5 PASSED [ 44%] 2023-08-09T11:55:34.0188506Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_phase_vocoder_shape_1_01 PASSED [ 44%] 2023-08-09T11:55:34.0189173Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_phase_vocoder_shape_1_3 PASSED [ 44%] 2023-08-09T11:55:34.0189722Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_pitch_shift_shape_0 PASSED [ 44%] 2023-08-09T11:55:34.0190266Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_pitch_shift_shape_2 PASSED [ 44%] 2023-08-09T11:55:34.0190800Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_pitch_shift_shape_4 PASSED [ 44%] 2023-08-09T11:55:34.0191346Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_pitch_shift_shape__2 PASSED [ 44%] 2023-08-09T11:55:34.0191891Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_pitch_shift_shape__4 PASSED [ 44%] 2023-08-09T11:55:34.0192496Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_preemphasis_3_2_100_0_68 PASSED [ 44%] 2023-08-09T11:55:34.0193037Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_preemphasis_3_2_100_0_9 PASSED [ 44%] 2023-08-09T11:55:34.0193572Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_preemphasis_3_2_100_0_97 PASSED [ 44%] 2023-08-09T11:55:34.0194104Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_preemphasis_95_0_68 PASSED [ 44%] 2023-08-09T11:55:34.0194641Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_preemphasis_95_0_9 PASSED [ 44%] 2023-08-09T11:55:34.0195175Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_preemphasis_95_0_97 PASSED [ 44%] 2023-08-09T11:55:34.0195756Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_preemphasis_deemphasis_roundtrip_3_2_100_0_68 PASSED [ 44%] 2023-08-09T11:55:34.0196370Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_preemphasis_deemphasis_roundtrip_3_2_100_0_9 PASSED [ 44%] 2023-08-09T11:55:34.1568193Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_preemphasis_deemphasis_roundtrip_3_2_100_0_97 PASSED [ 44%] 2023-08-09T11:55:34.1569308Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_preemphasis_deemphasis_roundtrip_95_0_68 PASSED [ 44%] 2023-08-09T11:55:34.1570104Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_preemphasis_deemphasis_roundtrip_95_0_9 PASSED [ 44%] 2023-08-09T11:55:34.1571054Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_preemphasis_deemphasis_roundtrip_95_0_97 PASSED [ 44%] 2023-08-09T11:55:34.1571757Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_psd PASSED [ 44%] 2023-08-09T11:55:34.1572420Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_psd_with_mask_0 PASSED [ 44%] 2023-08-09T11:55:34.1573080Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_psd_with_mask_1 PASSED [ 44%] 2023-08-09T11:55:34.1573772Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_identity_0_sinc_interp_hann PASSED [ 45%] 2023-08-09T11:55:34.1574503Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_identity_1_sinc_interp_hann PASSED [ 45%] 2023-08-09T11:55:34.1575388Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_identity_2_sinc_interp_kaiser PASSED [ 45%] 2023-08-09T11:55:34.1576129Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_identity_3_sinc_interp_kaiser PASSED [ 45%] 2023-08-09T11:55:34.1576917Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_00_sinc_interp_hann PASSED [ 45%] 2023-08-09T11:55:34.1577810Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_01_sinc_interp_hann PASSED [ 45%] 2023-08-09T11:55:34.1578601Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_02_sinc_interp_hann PASSED [ 45%] 2023-08-09T11:55:34.1579393Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_03_sinc_interp_hann PASSED [ 45%] 2023-08-09T11:55:34.1580262Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_04_sinc_interp_hann PASSED [ 45%] 2023-08-09T11:55:34.1581056Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_05_sinc_interp_hann PASSED [ 45%] 2023-08-09T11:55:34.1581836Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_06_sinc_interp_hann PASSED [ 45%] 2023-08-09T11:55:34.1582835Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_07_sinc_interp_hann PASSED [ 45%] 2023-08-09T11:55:34.1583611Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_08_sinc_interp_hann PASSED [ 45%] 2023-08-09T11:55:34.1584393Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_09_sinc_interp_hann PASSED [ 45%] 2023-08-09T11:55:34.1585176Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_10_sinc_interp_hann PASSED [ 45%] 2023-08-09T11:55:34.1585950Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_11_sinc_interp_hann PASSED [ 45%] 2023-08-09T11:55:34.1586721Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_12_sinc_interp_hann PASSED [ 45%] 2023-08-09T11:55:34.1587571Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_13_sinc_interp_hann PASSED [ 45%] 2023-08-09T11:55:34.1588354Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_14_sinc_interp_hann PASSED [ 45%] 2023-08-09T11:55:34.1589139Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_15_sinc_interp_hann PASSED [ 45%] 2023-08-09T11:55:34.1589913Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_16_sinc_interp_hann PASSED [ 45%] 2023-08-09T11:55:34.1590677Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_17_sinc_interp_hann PASSED [ 45%] 2023-08-09T11:55:34.1591449Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_18_sinc_interp_hann PASSED [ 45%] 2023-08-09T11:55:34.1592244Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_19_sinc_interp_kaiser PASSED [ 45%] 2023-08-09T11:55:34.1593044Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_20_sinc_interp_kaiser PASSED [ 45%] 2023-08-09T11:55:34.1593838Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_21_sinc_interp_kaiser PASSED [ 45%] 2023-08-09T11:55:34.1594615Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_22_sinc_interp_kaiser PASSED [ 45%] 2023-08-09T11:55:34.1595404Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_23_sinc_interp_kaiser PASSED [ 46%] 2023-08-09T11:55:34.1596196Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_24_sinc_interp_kaiser PASSED [ 46%] 2023-08-09T11:55:34.1597048Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_25_sinc_interp_kaiser PASSED [ 46%] 2023-08-09T11:55:34.1597833Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_26_sinc_interp_kaiser PASSED [ 46%] 2023-08-09T11:55:34.1598616Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_27_sinc_interp_kaiser PASSED [ 46%] 2023-08-09T11:55:34.1599406Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_28_sinc_interp_kaiser PASSED [ 46%] 2023-08-09T11:55:34.1600199Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_29_sinc_interp_kaiser PASSED [ 46%] 2023-08-09T11:55:34.1600989Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_30_sinc_interp_kaiser PASSED [ 46%] 2023-08-09T11:55:34.1601760Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_31_sinc_interp_kaiser PASSED [ 46%] 2023-08-09T11:55:34.1602534Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_32_sinc_interp_kaiser PASSED [ 46%] 2023-08-09T11:55:34.1603323Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_33_sinc_interp_kaiser PASSED [ 46%] 2023-08-09T11:55:34.1604176Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_34_sinc_interp_kaiser PASSED [ 46%] 2023-08-09T11:55:34.1604964Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_35_sinc_interp_kaiser PASSED [ 46%] 2023-08-09T11:55:34.1605739Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_36_sinc_interp_kaiser PASSED [ 46%] 2023-08-09T11:55:34.1606522Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_37_sinc_interp_kaiser PASSED [ 46%] 2023-08-09T11:55:34.1607296Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_size_0_sinc_interp_hann PASSED [ 46%] 2023-08-09T11:55:34.4599968Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_size_1_sinc_interp_kaiser PASSED [ 46%] 2023-08-09T11:55:34.4600818Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_identity_size_0_sinc_interp_hann PASSED [ 46%] 2023-08-09T11:55:34.4601619Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_identity_size_1_sinc_interp_kaiser PASSED [ 46%] 2023-08-09T11:55:34.4602461Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_00_sinc_interp_hann PASSED [ 46%] 2023-08-09T11:55:34.4603256Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_01_sinc_interp_hann PASSED [ 46%] 2023-08-09T11:55:34.4604057Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_02_sinc_interp_hann PASSED [ 46%] 2023-08-09T11:55:34.4605025Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_03_sinc_interp_hann PASSED [ 46%] 2023-08-09T11:55:34.4605823Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_04_sinc_interp_hann PASSED [ 46%] 2023-08-09T11:55:34.4606606Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_05_sinc_interp_hann PASSED [ 46%] 2023-08-09T11:55:34.4607386Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_06_sinc_interp_hann PASSED [ 46%] 2023-08-09T11:55:34.4608347Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_07_sinc_interp_hann PASSED [ 46%] 2023-08-09T11:55:34.4609158Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_08_sinc_interp_hann PASSED [ 47%] 2023-08-09T11:55:34.4609933Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_09_sinc_interp_hann PASSED [ 47%] 2023-08-09T11:55:34.4610707Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_10_sinc_interp_hann PASSED [ 47%] 2023-08-09T11:55:34.4611479Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_11_sinc_interp_hann PASSED [ 47%] 2023-08-09T11:55:34.4612362Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_12_sinc_interp_hann PASSED [ 47%] 2023-08-09T11:55:34.4613129Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_13_sinc_interp_hann PASSED [ 47%] 2023-08-09T11:55:34.4613905Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_14_sinc_interp_hann PASSED [ 47%] 2023-08-09T11:55:34.4614674Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_15_sinc_interp_hann PASSED [ 47%] 2023-08-09T11:55:34.4615550Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_16_sinc_interp_hann PASSED [ 47%] 2023-08-09T11:55:34.4616316Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_17_sinc_interp_hann PASSED [ 47%] 2023-08-09T11:55:34.4617093Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_18_sinc_interp_hann PASSED [ 47%] 2023-08-09T11:55:34.4617880Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_19_sinc_interp_kaiser PASSED [ 47%] 2023-08-09T11:55:34.4618677Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_20_sinc_interp_kaiser PASSED [ 47%] 2023-08-09T11:55:34.4619464Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_21_sinc_interp_kaiser PASSED [ 47%] 2023-08-09T11:55:34.4620237Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_22_sinc_interp_kaiser PASSED [ 47%] 2023-08-09T11:55:34.4621029Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_23_sinc_interp_kaiser PASSED [ 47%] 2023-08-09T11:55:34.4621902Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_24_sinc_interp_kaiser PASSED [ 47%] 2023-08-09T11:55:34.4622894Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_25_sinc_interp_kaiser PASSED [ 47%] 2023-08-09T11:55:34.4623672Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_26_sinc_interp_kaiser PASSED [ 47%] 2023-08-09T11:55:34.4624449Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_27_sinc_interp_kaiser PASSED [ 47%] 2023-08-09T11:55:34.4625248Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_28_sinc_interp_kaiser PASSED [ 47%] 2023-08-09T11:55:34.4626037Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_29_sinc_interp_kaiser PASSED [ 47%] 2023-08-09T11:55:34.4626816Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_30_sinc_interp_kaiser PASSED [ 47%] 2023-08-09T11:55:34.4627577Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_31_sinc_interp_kaiser PASSED [ 47%] 2023-08-09T11:55:34.4628363Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_32_sinc_interp_kaiser PASSED [ 47%] 2023-08-09T11:55:34.4629220Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_33_sinc_interp_kaiser PASSED [ 47%] 2023-08-09T11:55:34.4630005Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_34_sinc_interp_kaiser PASSED [ 47%] 2023-08-09T11:55:34.4630770Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_35_sinc_interp_kaiser PASSED [ 48%] 2023-08-09T11:55:34.4631550Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_36_sinc_interp_kaiser PASSED [ 48%] 2023-08-09T11:55:34.4632331Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_37_sinc_interp_kaiser PASSED [ 48%] 2023-08-09T11:55:34.4633107Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_size_0_sinc_interp_hann PASSED [ 48%] 2023-08-09T11:55:34.4633887Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_size_1_sinc_interp_kaiser PASSED [ 48%] 2023-08-09T11:55:34.4634594Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_rnnt_loss_basic_backward PASSED [ 48%] 2023-08-09T11:55:34.4635293Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_rnnt_loss_basic_forward_no_grad PASSED [ 48%] 2023-08-09T11:55:34.4635994Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_rnnt_loss_costs_and_gradients_0 PASSED [ 48%] 2023-08-09T11:55:34.4636694Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_rnnt_loss_costs_and_gradients_1 PASSED [ 48%] 2023-08-09T11:55:34.4637385Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_rnnt_loss_costs_and_gradients_2 PASSED [ 48%] 2023-08-09T11:55:34.4638139Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_rnnt_loss_costs_and_gradients_3 PASSED [ 48%] 2023-08-09T11:55:34.4638896Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_rnnt_loss_costs_and_gradients_random_data_with_numpy_fp32_0 PASSED [ 48%] 2023-08-09T11:55:35.4181839Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_rnnt_loss_costs_and_gradients_random_data_with_numpy_fp32_1 PASSED [ 48%] 2023-08-09T11:55:35.4182698Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_rnnt_loss_nonfused_softmax PASSED [ 48%] 2023-08-09T11:55:35.4183399Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_rtf_evd PASSED [ 48%] 2023-08-09T11:55:35.4184071Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_rtf_power_0 PASSED [ 48%] 2023-08-09T11:55:35.4184748Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_rtf_power_1 PASSED [ 48%] 2023-08-09T11:55:35.4185391Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_rtf_power_2 PASSED [ 48%] 2023-08-09T11:55:35.4186045Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_rtf_power_with_tensor_0 PASSED [ 48%] 2023-08-09T11:55:35.4186740Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_rtf_power_with_tensor_1 PASSED [ 48%] 2023-08-09T11:55:35.4187422Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_rtf_power_with_tensor_2 PASSED [ 48%] 2023-08-09T11:55:35.4188513Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_simple_case_edit_distance_00_ PASSED [ 48%] 2023-08-09T11:55:35.4189219Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_simple_case_edit_distance_01_abc PASSED [ 48%] 2023-08-09T11:55:35.4189935Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_simple_case_edit_distance_02__I_O PASSED [ 48%] 2023-08-09T11:55:35.4190649Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_simple_case_edit_distance_03_abc PASSED [ 48%] 2023-08-09T11:55:35.4191356Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_simple_case_edit_distance_04_aa PASSED [ 48%] 2023-08-09T11:55:35.4192090Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_simple_case_edit_distance_05_aaa PASSED [ 48%] 2023-08-09T11:55:35.4192833Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_simple_case_edit_distance_06__I PASSED [ 49%] 2023-08-09T11:55:35.4193536Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_simple_case_edit_distance_07_aaa PASSED [ 49%] 2023-08-09T11:55:35.4194231Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_simple_case_edit_distance_08_aba PASSED [ 49%] 2023-08-09T11:55:35.4194928Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_simple_case_edit_distance_09_aba PASSED [ 49%] 2023-08-09T11:55:35.4195605Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_simple_case_edit_distance_10_abc PASSED [ 49%] 2023-08-09T11:55:35.4196293Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_simple_case_edit_distance_11_0_I PASSED [ 49%] 2023-08-09T11:55:35.4196987Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_simple_case_edit_distance_12 PASSED [ 49%] 2023-08-09T11:55:35.4197797Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_simple_case_edit_distance_13 PASSED [ 49%] 2023-08-09T11:55:35.4198497Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_simple_case_edit_distance_14 PASSED [ 49%] 2023-08-09T11:55:35.4199180Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_simple_case_edit_distance_15 PASSED [ 49%] 2023-08-09T11:55:35.4199870Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_simple_case_edit_distance_16 PASSED [ 49%] 2023-08-09T11:55:35.4200564Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_simple_case_edit_distance_17 PASSED [ 49%] 2023-08-09T11:55:35.4201246Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_simple_case_edit_distance_18 PASSED [ 49%] 2023-08-09T11:55:35.4201933Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_simple_case_edit_distance_19 PASSED [ 49%] 2023-08-09T11:55:35.4202675Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_simple_case_edit_distance_20_aba PASSED [ 49%] 2023-08-09T11:55:35.4203366Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_simple_case_edit_distance_21 PASSED [ 49%] 2023-08-09T11:55:35.4204047Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_simple_case_edit_distance_22 PASSED [ 49%] 2023-08-09T11:55:35.4204804Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_spectrogram_grad_at_zero_0 PASSED [ 49%] 2023-08-09T11:55:35.4205499Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_spectrogram_grad_at_zero_1 PASSED [ 49%] 2023-08-09T11:55:35.4206193Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_spectrogram_grad_at_zero_2 PASSED [ 49%] 2023-08-09T11:55:35.4206875Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_spectrogram_grad_at_zero_3 PASSED [ 49%] 2023-08-09T11:55:35.4207775Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_spectrogram_normalization_hann_window_0 PASSED [ 49%] 2023-08-09T11:55:35.4208537Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_spectrogram_normalization_hann_window_1 PASSED [ 49%] 2023-08-09T11:55:35.4209282Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_spectrogram_normalization_hann_window_2 PASSED [ 49%] 2023-08-09T11:55:35.4209993Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_speed_accuracy_0_8_False PASSED [ 49%] 2023-08-09T11:55:35.4210672Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_speed_accuracy_0_8_True PASSED [ 49%] 2023-08-09T11:55:35.4211350Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_speed_accuracy_1_1_False PASSED [ 49%] 2023-08-09T11:55:35.4212026Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_speed_accuracy_1_1_True PASSED [ 50%] 2023-08-09T11:55:35.4212700Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_speed_accuracy_1_2_False PASSED [ 50%] 2023-08-09T11:55:35.4213364Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_speed_accuracy_1_2_True PASSED [ 50%] 2023-08-09T11:55:35.4214025Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_speed_identity PASSED [ 50%] 2023-08-09T11:55:35.4215020Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat32::test_forced_align_same_result_torch_float16_torch_int32_1_100_100_1_10 PASSED [ 50%] 2023-08-09T11:55:35.4215884Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat32::test_forced_align_same_result_torch_float16_torch_int32_1_100_100_1_40 PASSED [ 50%] 2023-08-09T11:55:35.4216721Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat32::test_forced_align_same_result_torch_float16_torch_int32_1_100_100_1_45 PASSED [ 50%] 2023-08-09T11:55:35.4217542Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat32::test_forced_align_same_result_torch_float16_torch_int32_1_50_100_1_10 PASSED [ 50%] 2023-08-09T11:55:35.4218386Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat32::test_forced_align_same_result_torch_float16_torch_int32_1_50_100_1_40 PASSED [ 50%] 2023-08-09T11:55:35.4219226Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat32::test_forced_align_same_result_torch_float16_torch_int32_1_50_100_1_45 PASSED [ 50%] 2023-08-09T11:55:35.4220049Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat32::test_forced_align_same_result_torch_float16_torch_int64_1_100_100_1_10 PASSED [ 50%] 2023-08-09T11:55:35.4220883Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat32::test_forced_align_same_result_torch_float16_torch_int64_1_100_100_1_40 PASSED [ 50%] 2023-08-09T11:55:35.4221813Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat32::test_forced_align_same_result_torch_float16_torch_int64_1_100_100_1_45 PASSED [ 50%] 2023-08-09T11:55:35.5656322Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat32::test_forced_align_same_result_torch_float16_torch_int64_1_50_100_1_10 PASSED [ 50%] 2023-08-09T11:55:35.5657237Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat32::test_forced_align_same_result_torch_float16_torch_int64_1_50_100_1_40 PASSED [ 50%] 2023-08-09T11:55:35.5658129Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat32::test_forced_align_same_result_torch_float16_torch_int64_1_50_100_1_45 PASSED [ 50%] 2023-08-09T11:55:35.5658983Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat32::test_forced_align_same_result_torch_float32_torch_int32_1_100_100_1_10 PASSED [ 50%] 2023-08-09T11:55:35.5659841Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat32::test_forced_align_same_result_torch_float32_torch_int32_1_100_100_1_40 PASSED [ 50%] 2023-08-09T11:55:35.5660701Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat32::test_forced_align_same_result_torch_float32_torch_int32_1_100_100_1_45 PASSED [ 50%] 2023-08-09T11:55:35.5661554Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat32::test_forced_align_same_result_torch_float32_torch_int32_1_50_100_1_10 PASSED [ 50%] 2023-08-09T11:55:35.5662425Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat32::test_forced_align_same_result_torch_float32_torch_int32_1_50_100_1_40 PASSED [ 50%] 2023-08-09T11:55:35.5663266Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat32::test_forced_align_same_result_torch_float32_torch_int32_1_50_100_1_45 PASSED [ 50%] 2023-08-09T11:55:35.5664099Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat32::test_forced_align_same_result_torch_float32_torch_int64_1_100_100_1_10 PASSED [ 50%] 2023-08-09T11:55:35.5665067Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat32::test_forced_align_same_result_torch_float32_torch_int64_1_100_100_1_40 PASSED [ 50%] 2023-08-09T11:55:35.5665913Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat32::test_forced_align_same_result_torch_float32_torch_int64_1_100_100_1_45 PASSED [ 50%] 2023-08-09T11:55:35.5666743Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat32::test_forced_align_same_result_torch_float32_torch_int64_1_50_100_1_10 PASSED [ 50%] 2023-08-09T11:55:35.5667587Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat32::test_forced_align_same_result_torch_float32_torch_int64_1_50_100_1_40 PASSED [ 50%] 2023-08-09T11:55:35.5668410Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat32::test_forced_align_same_result_torch_float32_torch_int64_1_50_100_1_45 PASSED [ 51%] 2023-08-09T11:55:35.5669235Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat32::test_forced_align_same_result_torch_float64_torch_int32_1_100_100_1_10 PASSED [ 51%] 2023-08-09T11:55:35.5670068Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat32::test_forced_align_same_result_torch_float64_torch_int32_1_100_100_1_40 PASSED [ 51%] 2023-08-09T11:55:35.5670904Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat32::test_forced_align_same_result_torch_float64_torch_int32_1_100_100_1_45 PASSED [ 51%] 2023-08-09T11:55:35.5672051Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat32::test_forced_align_same_result_torch_float64_torch_int32_1_50_100_1_10 PASSED [ 51%] 2023-08-09T11:55:35.5672884Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat32::test_forced_align_same_result_torch_float64_torch_int32_1_50_100_1_40 PASSED [ 51%] 2023-08-09T11:55:35.5673713Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat32::test_forced_align_same_result_torch_float64_torch_int32_1_50_100_1_45 PASSED [ 51%] 2023-08-09T11:55:35.5674540Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat32::test_forced_align_same_result_torch_float64_torch_int64_1_100_100_1_10 PASSED [ 51%] 2023-08-09T11:55:35.5675367Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat32::test_forced_align_same_result_torch_float64_torch_int64_1_100_100_1_40 PASSED [ 51%] 2023-08-09T11:55:35.5676202Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat32::test_forced_align_same_result_torch_float64_torch_int64_1_100_100_1_45 PASSED [ 51%] 2023-08-09T11:55:35.5677023Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat32::test_forced_align_same_result_torch_float64_torch_int64_1_50_100_1_10 PASSED [ 51%] 2023-08-09T11:55:35.5677855Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat32::test_forced_align_same_result_torch_float64_torch_int64_1_50_100_1_40 PASSED [ 51%] 2023-08-09T11:55:35.5678688Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat32::test_forced_align_same_result_torch_float64_torch_int64_1_50_100_1_45 PASSED [ 51%] 2023-08-09T11:55:35.5679519Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat64::test_forced_align_same_result_torch_float16_torch_int32_1_100_100_1_10 PASSED [ 51%] 2023-08-09T11:55:35.5680421Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat64::test_forced_align_same_result_torch_float16_torch_int32_1_100_100_1_40 PASSED [ 51%] 2023-08-09T11:55:35.5681252Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat64::test_forced_align_same_result_torch_float16_torch_int32_1_100_100_1_45 PASSED [ 51%] 2023-08-09T11:55:35.5682103Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat64::test_forced_align_same_result_torch_float16_torch_int32_1_50_100_1_10 PASSED [ 51%] 2023-08-09T11:55:35.5682957Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat64::test_forced_align_same_result_torch_float16_torch_int32_1_50_100_1_40 PASSED [ 51%] 2023-08-09T11:55:35.5683789Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat64::test_forced_align_same_result_torch_float16_torch_int32_1_50_100_1_45 PASSED [ 51%] 2023-08-09T11:55:35.5684614Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat64::test_forced_align_same_result_torch_float16_torch_int64_1_100_100_1_10 PASSED [ 51%] 2023-08-09T11:55:35.5685435Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat64::test_forced_align_same_result_torch_float16_torch_int64_1_100_100_1_40 PASSED [ 51%] 2023-08-09T11:55:35.5686265Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat64::test_forced_align_same_result_torch_float16_torch_int64_1_100_100_1_45 PASSED [ 51%] 2023-08-09T11:55:35.5687092Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat64::test_forced_align_same_result_torch_float16_torch_int64_1_50_100_1_10 PASSED [ 51%] 2023-08-09T11:55:35.5688198Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat64::test_forced_align_same_result_torch_float16_torch_int64_1_50_100_1_40 PASSED [ 51%] 2023-08-09T11:55:35.5689033Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat64::test_forced_align_same_result_torch_float16_torch_int64_1_50_100_1_45 PASSED [ 51%] 2023-08-09T11:55:35.5689847Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat64::test_forced_align_same_result_torch_float32_torch_int32_1_100_100_1_10 PASSED [ 51%] 2023-08-09T11:55:35.5690677Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat64::test_forced_align_same_result_torch_float32_torch_int32_1_100_100_1_40 PASSED [ 51%] 2023-08-09T11:55:35.5691503Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat64::test_forced_align_same_result_torch_float32_torch_int32_1_100_100_1_45 PASSED [ 52%] 2023-08-09T11:55:35.5692342Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat64::test_forced_align_same_result_torch_float32_torch_int32_1_50_100_1_10 PASSED [ 52%] 2023-08-09T11:55:35.5693164Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat64::test_forced_align_same_result_torch_float32_torch_int32_1_50_100_1_40 PASSED [ 52%] 2023-08-09T11:55:42.1421827Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat64::test_forced_align_same_result_torch_float32_torch_int32_1_50_100_1_45 PASSED [ 52%] 2023-08-09T11:55:42.1422872Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat64::test_forced_align_same_result_torch_float32_torch_int64_1_100_100_1_10 PASSED [ 52%] 2023-08-09T11:55:42.1423891Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat64::test_forced_align_same_result_torch_float32_torch_int64_1_100_100_1_40 PASSED [ 52%] 2023-08-09T11:55:42.1424781Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat64::test_forced_align_same_result_torch_float32_torch_int64_1_100_100_1_45 PASSED [ 52%] 2023-08-09T11:55:42.1425463Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat64::test_forced_align_same_result_torch_float32_torch_int64_1_50_100_1_10 PASSED [ 52%] 2023-08-09T11:55:42.1426134Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat64::test_forced_align_same_result_torch_float32_torch_int64_1_50_100_1_40 PASSED [ 52%] 2023-08-09T11:55:42.1426810Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat64::test_forced_align_same_result_torch_float32_torch_int64_1_50_100_1_45 PASSED [ 52%] 2023-08-09T11:55:42.1427481Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat64::test_forced_align_same_result_torch_float64_torch_int32_1_100_100_1_10 PASSED [ 52%] 2023-08-09T11:55:42.1428168Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat64::test_forced_align_same_result_torch_float64_torch_int32_1_100_100_1_40 PASSED [ 52%] 2023-08-09T11:55:42.1428845Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat64::test_forced_align_same_result_torch_float64_torch_int32_1_100_100_1_45 PASSED [ 52%] 2023-08-09T11:55:42.1429503Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat64::test_forced_align_same_result_torch_float64_torch_int32_1_50_100_1_10 PASSED [ 52%] 2023-08-09T11:55:42.1430172Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat64::test_forced_align_same_result_torch_float64_torch_int32_1_50_100_1_40 PASSED [ 52%] 2023-08-09T11:55:42.1430931Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat64::test_forced_align_same_result_torch_float64_torch_int32_1_50_100_1_45 PASSED [ 52%] 2023-08-09T11:55:42.1431600Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat64::test_forced_align_same_result_torch_float64_torch_int64_1_100_100_1_10 PASSED [ 52%] 2023-08-09T11:55:42.1432268Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat64::test_forced_align_same_result_torch_float64_torch_int64_1_100_100_1_40 PASSED [ 52%] 2023-08-09T11:55:42.1432927Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat64::test_forced_align_same_result_torch_float64_torch_int64_1_100_100_1_45 PASSED [ 52%] 2023-08-09T11:55:42.1433600Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat64::test_forced_align_same_result_torch_float64_torch_int64_1_50_100_1_10 PASSED [ 52%] 2023-08-09T11:55:42.1434273Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat64::test_forced_align_same_result_torch_float64_torch_int64_1_50_100_1_40 PASSED [ 52%] 2023-08-09T11:55:42.1434939Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalCUDAOnlyFloat64::test_forced_align_same_result_torch_float64_torch_int64_1_50_100_1_45 PASSED [ 52%] 2023-08-09T11:55:42.1435533Z torchaudio_unittest/functional/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_sliding_window_cmn SKIPPED [ 52%] 2023-08-09T11:55:42.1436099Z torchaudio_unittest/functional/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_sliding_window_cmn SKIPPED [ 52%] 2023-08-09T11:55:42.1436668Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_amplitude_to_DB PASSED [ 52%] 2023-08-09T11:55:42.1437241Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_amplitude_to_DB_power PASSED [ 52%] 2023-08-09T11:55:42.1437857Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_00 SKIPPED [ 52%] 2023-08-09T11:55:42.1438426Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_01 SKIPPED [ 53%] 2023-08-09T11:55:42.1438989Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_02 SKIPPED [ 53%] 2023-08-09T11:55:42.1439549Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_03 SKIPPED [ 53%] 2023-08-09T11:55:42.1440107Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_04 SKIPPED [ 53%] 2023-08-09T11:55:42.1440648Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_05 SKIPPED [ 53%] 2023-08-09T11:55:42.1441206Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_06 SKIPPED [ 53%] 2023-08-09T11:55:42.1441763Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_07 SKIPPED [ 53%] 2023-08-09T11:55:42.1442315Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_08 SKIPPED [ 53%] 2023-08-09T11:55:42.1442856Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_09 SKIPPED [ 53%] 2023-08-09T11:55:42.1443464Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_10 SKIPPED [ 53%] 2023-08-09T11:55:42.1444044Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_11 SKIPPED [ 53%] 2023-08-09T11:55:42.1444623Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_12 SKIPPED [ 53%] 2023-08-09T11:55:42.1445161Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_13 SKIPPED [ 53%] 2023-08-09T11:55:42.1445709Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_14 SKIPPED [ 53%] 2023-08-09T11:55:42.1446257Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_15 SKIPPED [ 53%] 2023-08-09T11:55:42.1446814Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_16 SKIPPED [ 53%] 2023-08-09T11:55:42.1447352Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_17 SKIPPED [ 53%] 2023-08-09T11:55:42.1448093Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_18 SKIPPED [ 53%] 2023-08-09T11:55:42.1448639Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_19 SKIPPED [ 53%] 2023-08-09T11:55:42.1449187Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_20 SKIPPED [ 53%] 2023-08-09T11:55:42.1449723Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_21 SKIPPED [ 53%] 2023-08-09T11:55:42.1450276Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_22 SKIPPED [ 53%] 2023-08-09T11:55:42.1450822Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_23 SKIPPED [ 53%] 2023-08-09T11:55:42.1451448Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_24 SKIPPED [ 53%] 2023-08-09T11:55:42.1451994Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_25 SKIPPED [ 53%] 2023-08-09T11:55:42.1452544Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_26 SKIPPED [ 53%] 2023-08-09T11:55:42.1453090Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_27 SKIPPED [ 53%] 2023-08-09T11:55:42.1453648Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_griffinlim_0 PASSED [ 54%] 2023-08-09T11:55:47.1294656Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_griffinlim_0_99 PASSED [ 54%] 2023-08-09T11:55:47.1295674Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalComplexCUDA::test_phase_vocoder_0_5 PASSED [ 54%] 2023-08-09T11:55:47.1296508Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalComplexCUDA::test_phase_vocoder_1_01 PASSED [ 54%] 2023-08-09T11:55:47.1297325Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalComplexCUDA::test_phase_vocoder_1_3 PASSED [ 54%] 2023-08-09T11:55:47.1298123Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_DB_to_amplitude PASSED [ 54%] 2023-08-09T11:55:47.1299086Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_add_noise_False PASSED [ 54%] 2023-08-09T11:55:47.1299749Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_add_noise_True PASSED [ 54%] 2023-08-09T11:55:47.1300340Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_allpass PASSED [ 54%] 2023-08-09T11:55:47.1300921Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_amplitude_to_DB PASSED [ 54%] 2023-08-09T11:55:47.1301515Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_apply_beamforming PASSED [ 54%] 2023-08-09T11:55:47.1302112Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_band_with_noise PASSED [ 54%] 2023-08-09T11:55:47.1302710Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_band_without_noise PASSED [ 54%] 2023-08-09T11:55:47.1303298Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_bandpass_with_csg PASSED [ 54%] 2023-08-09T11:55:47.1303900Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_bandpass_without_csg PASSED [ 54%] 2023-08-09T11:55:47.1304490Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_bandreject PASSED [ 54%] 2023-08-09T11:55:47.1305057Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_bass PASSED [ 54%] 2023-08-09T11:55:47.1305676Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_compute_deltas PASSED [ 54%] 2023-08-09T11:55:47.1306256Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_contrast PASSED [ 54%] 2023-08-09T11:55:47.1306849Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_convolve_convolve_full PASSED [ 54%] 2023-08-09T11:55:47.1307551Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_convolve_convolve_same PASSED [ 54%] 2023-08-09T11:55:47.1308162Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_convolve_convolve_valid PASSED [ 54%] 2023-08-09T11:55:47.1308771Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_convolve_fftconvolve_full PASSED [ 54%] 2023-08-09T11:55:47.1309386Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_convolve_fftconvolve_same PASSED [ 54%] 2023-08-09T11:55:47.1310005Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_convolve_fftconvolve_valid PASSED [ 54%] 2023-08-09T11:55:47.1310601Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_create_dct SKIPPED [ 54%] 2023-08-09T11:55:47.1311163Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_dcshift PASSED [ 54%] 2023-08-09T11:55:47.1311728Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_deemph PASSED [ 55%] 2023-08-09T11:55:47.1312301Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_deemphasis PASSED [ 55%] 2023-08-09T11:55:47.1312898Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_detect_pitch_frequency PASSED [ 55%] 2023-08-09T11:55:47.1313545Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_dither_GPDF PASSED [ 55%] 2023-08-09T11:55:47.1314130Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_dither_RPDF PASSED [ 55%] 2023-08-09T11:55:47.1314701Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_dither_TPDF PASSED [ 55%] 2023-08-09T11:55:47.1315287Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_dither_noise_shaping PASSED [ 55%] 2023-08-09T11:55:47.1315861Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_equalizer PASSED [ 55%] 2023-08-09T11:55:47.1316434Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_filtfilt PASSED [ 55%] 2023-08-09T11:55:47.1317007Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_flanger PASSED [ 55%] 2023-08-09T11:55:47.1317572Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_gain PASSED [ 55%] 2023-08-09T11:55:47.1318132Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_griffinlim PASSED [ 55%] 2023-08-09T11:55:47.1318705Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_highpass PASSED [ 55%] 2023-08-09T11:55:47.1319300Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_inverse_spectrogram_0 PASSED [ 55%] 2023-08-09T11:55:47.1319905Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_inverse_spectrogram_1 PASSED [ 55%] 2023-08-09T11:55:47.1320519Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_inverse_spectrogram_2_window PASSED [ 55%] 2023-08-09T11:55:47.1321233Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_inverse_spectrogram_3_frame_length PASSED [ 55%] 2023-08-09T11:55:47.1321832Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_lfilter PASSED [ 55%] 2023-08-09T11:55:47.1322412Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_linear_fbanks SKIPPED [ 55%] 2023-08-09T11:55:47.1322988Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_lowpass PASSED [ 55%] 2023-08-09T11:55:47.1323565Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis PASSED [ 55%] 2023-08-09T11:55:47.1324155Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_iid PASSED [ 55%] 2023-08-09T11:55:47.1324750Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_measure_loudness PASSED [ 55%] 2023-08-09T11:55:47.1325334Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_melscale_fbanks SKIPPED [ 55%] 2023-08-09T11:55:47.1325915Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_mu_law_decoding PASSED [ 55%] 2023-08-09T11:55:47.1326491Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_mu_law_encoding PASSED [ 55%] 2023-08-09T11:55:47.1327132Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_mvdr_weights_rtf PASSED [ 55%] 2023-08-09T11:55:47.1327925Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_mvdr_weights_rtf_with_tensor PASSED [ 56%] 2023-08-09T11:55:47.1328533Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_mvdr_weights_souden PASSED [ 56%] 2023-08-09T11:55:47.1329151Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_mvdr_weights_souden_with_tensor PASSED [ 56%] 2023-08-09T11:55:47.1329747Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_overdrive PASSED [ 56%] 2023-08-09T11:55:55.2058537Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_perf_biquad_filtering PASSED [ 56%] 2023-08-09T11:55:55.2059397Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_phase_vocoder PASSED [ 56%] 2023-08-09T11:55:55.2059976Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_phaser PASSED [ 56%] 2023-08-09T11:55:55.2060555Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_preemphasis PASSED [ 56%] 2023-08-09T11:55:55.2061120Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_psd PASSED [ 56%] 2023-08-09T11:55:55.2061691Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_psd_with_mask PASSED [ 56%] 2023-08-09T11:55:55.2062271Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_resample_kaiser_0 PASSED [ 56%] 2023-08-09T11:55:55.2062863Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_resample_kaiser_1 PASSED [ 56%] 2023-08-09T11:55:55.2063433Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_resample_sinc PASSED [ 56%] 2023-08-09T11:55:55.2064185Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_riaa PASSED [ 56%] 2023-08-09T11:55:55.2064756Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_rnnt_loss PASSED [ 56%] 2023-08-09T11:55:55.2065317Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_rtf_evd PASSED [ 56%] 2023-08-09T11:55:55.2065877Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_rtf_power_0 PASSED [ 56%] 2023-08-09T11:55:55.2066451Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_rtf_power_1 PASSED [ 56%] 2023-08-09T11:55:55.2067034Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_rtf_power_with_tensor_0 PASSED [ 56%] 2023-08-09T11:55:55.2067645Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_rtf_power_with_tensor_1 PASSED [ 56%] 2023-08-09T11:55:55.2068231Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_sliding_window_cmn PASSED [ 56%] 2023-08-09T11:55:55.2068818Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_spectral_centroid PASSED [ 56%] 2023-08-09T11:55:55.2069399Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_spectrogram_0 PASSED [ 56%] 2023-08-09T11:55:55.2070061Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_spectrogram_1 PASSED [ 56%] 2023-08-09T11:55:55.2070648Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_spectrogram_2_window PASSED [ 56%] 2023-08-09T11:55:55.2071252Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_spectrogram_3_frame_length PASSED [ 56%] 2023-08-09T11:55:55.2071839Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_speed_False PASSED [ 56%] 2023-08-09T11:55:55.2072407Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_speed_True PASSED [ 57%] 2023-08-09T11:55:55.2072963Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_treble PASSED [ 57%] 2023-08-09T11:55:55.2073544Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_DB_to_amplitude PASSED [ 57%] 2023-08-09T11:55:55.2074125Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_add_noise_False PASSED [ 57%] 2023-08-09T11:55:55.2074704Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_add_noise_True PASSED [ 57%] 2023-08-09T11:55:55.2075286Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_allpass SKIPPED [ 57%] 2023-08-09T11:55:55.2075855Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_amplitude_to_DB PASSED [ 57%] 2023-08-09T11:55:55.2076440Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_apply_beamforming PASSED [ 57%] 2023-08-09T11:55:55.2077029Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_band_with_noise SKIPPED [ 57%] 2023-08-09T11:55:55.2077674Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_band_without_noise SKIPPED [ 57%] 2023-08-09T11:55:55.2078360Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_bandpass_with_csg SKIPPED [ 57%] 2023-08-09T11:55:55.2079008Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_bandpass_without_csg SKIPPED [ 57%] 2023-08-09T11:55:55.2079635Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_bandreject SKIPPED [ 57%] 2023-08-09T11:55:55.2080242Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_bass SKIPPED [ 57%] 2023-08-09T11:55:55.2080854Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_compute_deltas PASSED [ 57%] 2023-08-09T11:55:55.2081473Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_contrast PASSED [ 57%] 2023-08-09T11:55:55.2082110Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_convolve_convolve_full PASSED [ 57%] 2023-08-09T11:55:55.2082755Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_convolve_convolve_same PASSED [ 57%] 2023-08-09T11:55:55.2083398Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_convolve_convolve_valid PASSED [ 57%] 2023-08-09T11:55:55.2084113Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_convolve_fftconvolve_full PASSED [ 57%] 2023-08-09T11:55:55.2084770Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_convolve_fftconvolve_same PASSED [ 57%] 2023-08-09T11:55:55.2085429Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_convolve_fftconvolve_valid PASSED [ 57%] 2023-08-09T11:55:55.2086061Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_create_dct SKIPPED [ 57%] 2023-08-09T11:55:55.2086662Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_dcshift PASSED [ 57%] 2023-08-09T11:55:55.2087270Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_deemph SKIPPED [ 57%] 2023-08-09T11:55:55.2088129Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_deemphasis PASSED [ 57%] 2023-08-09T11:55:55.2088718Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_detect_pitch_frequency PASSED [ 57%] 2023-08-09T11:55:55.2089302Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_dither_GPDF PASSED [ 58%] 2023-08-09T11:55:55.2089875Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_dither_RPDF PASSED [ 58%] 2023-08-09T11:55:55.2090439Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_dither_TPDF PASSED [ 58%] 2023-08-09T11:55:55.2091019Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_dither_noise_shaping PASSED [ 58%] 2023-08-09T11:55:55.2091601Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_equalizer SKIPPED [ 58%] 2023-08-09T11:55:55.2092168Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_filtfilt PASSED [ 58%] 2023-08-09T11:55:55.2092816Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_flanger PASSED [ 58%] 2023-08-09T11:56:13.7865264Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_gain PASSED [ 58%] 2023-08-09T11:56:13.7865905Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_griffinlim PASSED [ 58%] 2023-08-09T11:56:13.7866527Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_highpass SKIPPED [ 58%] 2023-08-09T11:56:13.7867167Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_inverse_spectrogram_0 PASSED [ 58%] 2023-08-09T11:56:13.7867781Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_inverse_spectrogram_1 PASSED [ 58%] 2023-08-09T11:56:13.7868401Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_inverse_spectrogram_2_window PASSED [ 58%] 2023-08-09T11:56:13.7869047Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_inverse_spectrogram_3_frame_length PASSED [ 58%] 2023-08-09T11:56:13.7869642Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_lfilter SKIPPED [ 58%] 2023-08-09T11:56:13.7870229Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_linear_fbanks SKIPPED [ 58%] 2023-08-09T11:56:13.7871105Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_lowpass SKIPPED [ 58%] 2023-08-09T11:56:13.7871688Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_mask_along_axis PASSED [ 58%] 2023-08-09T11:56:13.7872284Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_mask_along_axis_iid PASSED [ 58%] 2023-08-09T11:56:13.7872881Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_measure_loudness SKIPPED [ 58%] 2023-08-09T11:56:13.7873465Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_melscale_fbanks SKIPPED [ 58%] 2023-08-09T11:56:13.7874055Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_mu_law_decoding PASSED [ 58%] 2023-08-09T11:56:13.7874641Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_mu_law_encoding PASSED [ 58%] 2023-08-09T11:56:13.7875228Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_mvdr_weights_rtf PASSED [ 58%] 2023-08-09T11:56:13.7875823Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_mvdr_weights_rtf_with_tensor PASSED [ 58%] 2023-08-09T11:56:13.7876429Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_mvdr_weights_souden PASSED [ 58%] 2023-08-09T11:56:13.7877052Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_mvdr_weights_souden_with_tensor PASSED [ 58%] 2023-08-09T11:56:13.7888428Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_overdrive PASSED [ 59%] 2023-08-09T11:56:13.7889141Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_perf_biquad_filtering SKIPPED [ 59%] 2023-08-09T11:56:13.7889938Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_phase_vocoder PASSED [ 59%] 2023-08-09T11:56:13.7890527Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_phaser PASSED [ 59%] 2023-08-09T11:56:13.7891106Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_preemphasis PASSED [ 59%] 2023-08-09T11:56:13.7891679Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_psd PASSED [ 59%] 2023-08-09T11:56:13.7892247Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_psd_with_mask PASSED [ 59%] 2023-08-09T11:56:13.7892844Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_resample_kaiser_0 PASSED [ 59%] 2023-08-09T11:56:13.7893454Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_resample_kaiser_1 PASSED [ 59%] 2023-08-09T11:56:13.7894045Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_resample_sinc PASSED [ 59%] 2023-08-09T11:56:13.7894745Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_riaa SKIPPED [ 59%] 2023-08-09T11:56:13.7895315Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_rtf_evd PASSED [ 59%] 2023-08-09T11:56:13.7895892Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_rtf_power_0 PASSED [ 59%] 2023-08-09T11:56:13.7896564Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_rtf_power_1 PASSED [ 59%] 2023-08-09T11:56:13.7897161Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_rtf_power_with_tensor_0 PASSED [ 59%] 2023-08-09T11:56:13.7897763Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_rtf_power_with_tensor_1 PASSED [ 59%] 2023-08-09T11:56:13.7898363Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_sliding_window_cmn PASSED [ 59%] 2023-08-09T11:56:13.7898958Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_spectral_centroid PASSED [ 59%] 2023-08-09T11:56:13.7899554Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_spectrogram_0 PASSED [ 59%] 2023-08-09T11:56:13.7900130Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_spectrogram_1 PASSED [ 59%] 2023-08-09T11:56:13.7900725Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_spectrogram_2_window PASSED [ 59%] 2023-08-09T11:56:13.7901338Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_spectrogram_3_frame_length PASSED [ 59%] 2023-08-09T11:56:13.7901930Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_speed_False PASSED [ 59%] 2023-08-09T11:56:13.7902504Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_speed_True PASSED [ 59%] 2023-08-09T11:56:13.7903081Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_treble SKIPPED [ 59%] 2023-08-09T11:56:13.7903608Z torchaudio_unittest/io/stream_reader_test.py::CudaDecoderTest_str::test_h264_cuvid PASSED [ 59%] 2023-08-09T11:56:13.7904182Z torchaudio_unittest/io/stream_reader_test.py::CudaDecoderTest_str::test_h264_cuvid_hw_accel PASSED [ 59%] 2023-08-09T11:56:13.7904707Z torchaudio_unittest/io/stream_reader_test.py::CudaDecoderTest_str::test_h264_cuvid_hw_accel_crop PASSED [ 60%] 2023-08-09T11:56:13.7905241Z torchaudio_unittest/io/stream_reader_test.py::CudaDecoderTest_str::test_h264_cuvid_hw_accel_resize PASSED [ 60%] 2023-08-09T11:56:13.7905749Z torchaudio_unittest/io/stream_reader_test.py::CudaDecoderTest_str::test_hevc_cuvid PASSED [ 60%] 2023-08-09T11:56:13.7906259Z torchaudio_unittest/io/stream_reader_test.py::CudaDecoderTest_str::test_hevc_cuvid_hw_accel PASSED [ 60%] 2023-08-09T11:56:13.7906781Z torchaudio_unittest/io/stream_reader_test.py::CudaDecoderTest_str::test_hevc_cuvid_hw_accel_crop PASSED [ 60%] 2023-08-09T11:56:13.7907318Z torchaudio_unittest/io/stream_reader_test.py::CudaDecoderTest_str::test_hevc_cuvid_hw_accel_resize PASSED [ 60%] 2023-08-09T11:56:13.7907838Z torchaudio_unittest/io/stream_reader_test.py::CudaDecoderTest_fileobj::test_h264_cuvid PASSED [ 60%] 2023-08-09T11:56:13.7908354Z torchaudio_unittest/io/stream_reader_test.py::CudaDecoderTest_fileobj::test_h264_cuvid_hw_accel PASSED [ 60%] 2023-08-09T11:56:13.7908880Z torchaudio_unittest/io/stream_reader_test.py::CudaDecoderTest_fileobj::test_h264_cuvid_hw_accel_crop PASSED [ 60%] 2023-08-09T11:56:13.7909426Z torchaudio_unittest/io/stream_reader_test.py::CudaDecoderTest_fileobj::test_h264_cuvid_hw_accel_resize PASSED [ 60%] 2023-08-09T11:56:13.7910007Z torchaudio_unittest/io/stream_reader_test.py::CudaDecoderTest_fileobj::test_hevc_cuvid PASSED [ 60%] 2023-08-09T11:56:13.7910524Z torchaudio_unittest/io/stream_reader_test.py::CudaDecoderTest_fileobj::test_hevc_cuvid_hw_accel PASSED [ 60%] 2023-08-09T11:56:47.1773576Z torchaudio_unittest/io/stream_reader_test.py::CudaDecoderTest_fileobj::test_hevc_cuvid_hw_accel_crop PASSED [ 60%] 2023-08-09T11:56:47.1774200Z torchaudio_unittest/io/stream_reader_test.py::CudaDecoderTest_fileobj::test_hevc_cuvid_hw_accel_resize PASSED [ 60%] 2023-08-09T11:56:47.1774894Z torchaudio_unittest/io/stream_reader_test.py::FilterGraphWithCudaAccel::test_scale_cuda_format SKIPPED [ 60%] 2023-08-09T11:56:47.1775522Z torchaudio_unittest/io/stream_reader_test.py::FilterGraphWithCudaAccel::test_sclae_cuda_change_size SKIPPED [ 60%] 2023-08-09T11:56:47.1776174Z torchaudio_unittest/models/conformer/conformer_gpu_test.py::ConformerFloat32GPUTest::test_torchscript_consistency_forward PASSED [ 60%] 2023-08-09T11:56:47.1776867Z torchaudio_unittest/models/conformer/conformer_gpu_test.py::ConformerFloat64GPUTest::test_torchscript_consistency_forward PASSED [ 60%] 2023-08-09T11:56:47.1777508Z torchaudio_unittest/models/decoder/cuda_ctc_decoder_test.py::CUCTCDecoderTest::test_construct_basic_decoder_path PASSED [ 60%] 2023-08-09T11:56:47.1778139Z torchaudio_unittest/models/decoder/cuda_ctc_decoder_test.py::CUCTCDecoderTest::test_construct_basic_decoder_tokens PASSED [ 60%] 2023-08-09T11:56:47.1778755Z torchaudio_unittest/models/decoder/cuda_ctc_decoder_test.py::CUCTCDecoderTest::test_shape PASSED [ 60%] 2023-08-09T11:56:47.1779429Z torchaudio_unittest/models/emformer/emformer_gpu_test.py::EmformerFloat32GPUTest::test_output_lengths_forward PASSED [ 60%] 2023-08-09T11:56:47.1780236Z torchaudio_unittest/models/emformer/emformer_gpu_test.py::EmformerFloat32GPUTest::test_output_lengths_infer PASSED [ 60%] 2023-08-09T11:56:47.1780866Z torchaudio_unittest/models/emformer/emformer_gpu_test.py::EmformerFloat32GPUTest::test_output_shape_forward PASSED [ 60%] 2023-08-09T11:56:47.1781693Z torchaudio_unittest/models/emformer/emformer_gpu_test.py::EmformerFloat32GPUTest::test_output_shape_infer PASSED [ 60%] 2023-08-09T11:56:47.1782294Z torchaudio_unittest/models/emformer/emformer_gpu_test.py::EmformerFloat32GPUTest::test_torchscript_consistency_forward PASSED [ 60%] 2023-08-09T11:56:47.1782896Z torchaudio_unittest/models/emformer/emformer_gpu_test.py::EmformerFloat32GPUTest::test_torchscript_consistency_infer PASSED [ 60%] 2023-08-09T11:56:47.1783529Z torchaudio_unittest/models/emformer/emformer_gpu_test.py::EmformerFloat64GPUTest::test_output_lengths_forward PASSED [ 61%] 2023-08-09T11:56:47.1784088Z torchaudio_unittest/models/emformer/emformer_gpu_test.py::EmformerFloat64GPUTest::test_output_lengths_infer PASSED [ 61%] 2023-08-09T11:56:47.1784661Z torchaudio_unittest/models/emformer/emformer_gpu_test.py::EmformerFloat64GPUTest::test_output_shape_forward PASSED [ 61%] 2023-08-09T11:56:47.1789321Z torchaudio_unittest/models/emformer/emformer_gpu_test.py::EmformerFloat64GPUTest::test_output_shape_infer PASSED [ 61%] 2023-08-09T11:56:47.1790102Z torchaudio_unittest/models/emformer/emformer_gpu_test.py::EmformerFloat64GPUTest::test_torchscript_consistency_forward PASSED [ 61%] 2023-08-09T11:56:47.1790905Z torchaudio_unittest/models/emformer/emformer_gpu_test.py::EmformerFloat64GPUTest::test_torchscript_consistency_infer PASSED [ 61%] 2023-08-09T11:56:47.1791550Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::CompareHDemucsOriginal::test_import_recreate_high_model_0 PASSED [ 61%] 2023-08-09T11:56:47.1792139Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::CompareHDemucsOriginal::test_import_recreate_high_model_1 PASSED [ 61%] 2023-08-09T11:56:47.1792880Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::CompareHDemucsOriginal::test_import_recreate_high_model_2 PASSED [ 61%] 2023-08-09T11:56:47.1793514Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::CompareHDemucsOriginal::test_import_recreate_high_model_3 PASSED [ 61%] 2023-08-09T11:56:47.1794096Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::CompareHDemucsOriginal::test_import_recreate_low_model_0 PASSED [ 61%] 2023-08-09T11:56:47.1794683Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::CompareHDemucsOriginal::test_import_recreate_low_model_1 PASSED [ 61%] 2023-08-09T11:56:47.1795264Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::CompareHDemucsOriginal::test_import_recreate_low_model_2 PASSED [ 61%] 2023-08-09T11:56:47.1795844Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::CompareHDemucsOriginal::test_import_recreate_low_model_3 PASSED [ 61%] 2023-08-09T11:56:47.1796429Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_decoder_output_shape_frequency PASSED [ 61%] 2023-08-09T11:56:47.1797023Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_decoder_output_shape_time PASSED [ 61%] 2023-08-09T11:56:47.1797607Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_encoder_output_shape_frequency PASSED [ 61%] 2023-08-09T11:56:47.1798173Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_encoder_output_shape_time PASSED [ 61%] 2023-08-09T11:56:47.1798749Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_hdemucs_output_shape_00 PASSED [ 61%] 2023-08-09T11:56:47.1799326Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_hdemucs_output_shape_01 PASSED [ 61%] 2023-08-09T11:56:47.1799893Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_hdemucs_output_shape_02 PASSED [ 61%] 2023-08-09T11:56:47.1800497Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_hdemucs_output_shape_03 PASSED [ 61%] 2023-08-09T11:56:47.1801068Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_hdemucs_output_shape_04 PASSED [ 61%] 2023-08-09T11:56:47.1801637Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_hdemucs_output_shape_05 PASSED [ 61%] 2023-08-09T11:56:47.1802190Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_hdemucs_output_shape_06 PASSED [ 61%] 2023-08-09T11:56:47.1802742Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_hdemucs_output_shape_07 PASSED [ 61%] 2023-08-09T11:56:47.1803295Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_hdemucs_output_shape_08 PASSED [ 61%] 2023-08-09T11:56:47.1803869Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_hdemucs_output_shape_09 PASSED [ 62%] 2023-08-09T11:56:47.1804426Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_hdemucs_output_shape_10 PASSED [ 62%] 2023-08-09T11:56:47.1804974Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_hdemucs_output_shape_11 PASSED [ 62%] 2023-08-09T11:56:47.1805540Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_import_recreate_high_model_0 PASSED [ 62%] 2023-08-09T11:56:47.1806171Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_import_recreate_high_model_1 PASSED [ 62%] 2023-08-09T11:56:47.1806748Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_import_recreate_high_model_2 PASSED [ 62%] 2023-08-09T11:56:47.1807317Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_import_recreate_high_model_3 PASSED [ 62%] 2023-08-09T11:56:47.1808321Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_import_recreate_low_model_0 PASSED [ 62%] 2023-08-09T11:56:47.1808938Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_import_recreate_low_model_1 PASSED [ 62%] 2023-08-09T11:56:47.1809509Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_import_recreate_low_model_2 PASSED [ 62%] 2023-08-09T11:56:47.1810088Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_import_recreate_low_model_3 PASSED [ 62%] 2023-08-09T11:56:47.1810629Z torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat32GPUTest::test_output_shape_forward PASSED [ 62%] 2023-08-09T11:56:47.1811165Z torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat32GPUTest::test_output_shape_join PASSED [ 62%] 2023-08-09T11:56:47.1811698Z torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat32GPUTest::test_output_shape_predict PASSED [ 62%] 2023-08-09T11:56:47.1812240Z torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat32GPUTest::test_output_shape_transcribe PASSED [ 62%] 2023-08-09T11:56:47.1812792Z torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat32GPUTest::test_output_shape_transcribe_streaming PASSED [ 62%] 2023-08-09T11:57:37.2911555Z torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat32GPUTest::test_torchscript_consistency_forward PASSED [ 62%] 2023-08-09T11:57:37.2912363Z torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat32GPUTest::test_torchscript_consistency_join PASSED [ 62%] 2023-08-09T11:57:37.2913409Z torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat32GPUTest::test_torchscript_consistency_predict PASSED [ 62%] 2023-08-09T11:57:37.2914160Z torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat32GPUTest::test_torchscript_consistency_transcribe PASSED [ 62%] 2023-08-09T11:57:37.2914908Z torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat32GPUTest::test_torchscript_consistency_transcribe_streaming PASSED [ 62%] 2023-08-09T11:57:37.2915641Z torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat64GPUTest::test_output_shape_forward PASSED [ 62%] 2023-08-09T11:57:37.2916318Z torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat64GPUTest::test_output_shape_join PASSED [ 62%] 2023-08-09T11:57:37.2917005Z torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat64GPUTest::test_output_shape_predict PASSED [ 62%] 2023-08-09T11:57:37.2917681Z torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat64GPUTest::test_output_shape_transcribe PASSED [ 62%] 2023-08-09T11:57:37.2918454Z torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat64GPUTest::test_output_shape_transcribe_streaming PASSED [ 62%] 2023-08-09T11:57:37.2930839Z torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat64GPUTest::test_torchscript_consistency_forward PASSED [ 62%] 2023-08-09T11:57:37.2931634Z torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat64GPUTest::test_torchscript_consistency_join PASSED [ 63%] 2023-08-09T11:57:37.2932391Z torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat64GPUTest::test_torchscript_consistency_predict PASSED [ 63%] 2023-08-09T11:57:37.2933546Z torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat64GPUTest::test_torchscript_consistency_transcribe PASSED [ 63%] 2023-08-09T11:57:37.2934332Z torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat64GPUTest::test_torchscript_consistency_transcribe_streaming PASSED [ 63%] 2023-08-09T11:57:37.2939397Z torchaudio_unittest/models/rnnt_decoder/rnnt_decoder_gpu_test.py::RNNTBeamSearchFloat32GPUTest::test_torchscript_consistency_forward PASSED [ 63%] 2023-08-09T11:57:37.2940419Z torchaudio_unittest/models/rnnt_decoder/rnnt_decoder_gpu_test.py::RNNTBeamSearchFloat32GPUTest::test_torchscript_consistency_infer PASSED [ 63%] 2023-08-09T11:57:37.2941406Z torchaudio_unittest/models/rnnt_decoder/rnnt_decoder_gpu_test.py::RNNTBeamSearchFloat64GPUTest::test_torchscript_consistency_forward PASSED [ 63%] 2023-08-09T11:57:37.2942384Z torchaudio_unittest/models/rnnt_decoder/rnnt_decoder_gpu_test.py::RNNTBeamSearchFloat64GPUTest::test_torchscript_consistency_infer PASSED [ 63%] 2023-08-09T11:57:37.2943232Z torchaudio_unittest/models/squim/squim_test.py::TestSquimObjective::test_cuda_smoke_test_0 PASSED [ 63%] 2023-08-09T11:57:37.2944016Z torchaudio_unittest/models/squim/squim_test.py::TestSquimObjective::test_cuda_smoke_test_1 PASSED [ 63%] 2023-08-09T11:57:37.2944803Z torchaudio_unittest/models/squim/squim_test.py::TestSquimSubjective::test_cuda_smoke_test_0 PASSED [ 63%] 2023-08-09T11:57:37.2945551Z torchaudio_unittest/models/squim/squim_test.py::TestSquimSubjective::test_cuda_smoke_test_1 PASSED [ 63%] 2023-08-09T11:57:37.2946391Z torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2EncoderFloat32CUDA::test_encoder_output_shape PASSED [ 63%] 2023-08-09T11:57:37.2947394Z torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2EncoderFloat32CUDA::test_tacotron2_torchscript_consistency SKIPPED [ 63%] 2023-08-09T11:57:37.2948442Z torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2DecoderFloat32CUDA::test_decoder_inference_output_shape_0 PASSED [ 63%] 2023-08-09T11:57:37.2949662Z torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2DecoderFloat32CUDA::test_decoder_inference_output_shape_1 PASSED [ 63%] 2023-08-09T11:57:37.2950684Z torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2DecoderFloat32CUDA::test_decoder_inference_torchscript_consistency_0 PASSED [ 63%] 2023-08-09T11:57:37.2951696Z torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2DecoderFloat32CUDA::test_decoder_inference_torchscript_consistency_1 PASSED [ 63%] 2023-08-09T11:57:37.2952634Z torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2DecoderFloat32CUDA::test_decoder_output_shape_0 PASSED [ 63%] 2023-08-09T11:57:37.2953535Z torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2DecoderFloat32CUDA::test_decoder_output_shape_1 PASSED [ 63%] 2023-08-09T11:57:37.2954491Z torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2DecoderFloat32CUDA::test_decoder_torchscript_consistency_0 PASSED [ 63%] 2023-08-09T11:57:37.2955441Z torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2DecoderFloat32CUDA::test_decoder_torchscript_consistency_1 PASSED [ 63%] 2023-08-09T11:57:37.2956393Z torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2Float32CUDA::test_tacotron2_backward_0 PASSED [ 63%] 2023-08-09T11:57:37.2957258Z torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2Float32CUDA::test_tacotron2_backward_1 PASSED [ 63%] 2023-08-09T11:57:37.2958162Z torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2Float32CUDA::test_tacotron2_inference_output_shape_0 PASSED [ 63%] 2023-08-09T11:57:37.2959239Z torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2Float32CUDA::test_tacotron2_inference_output_shape_1 PASSED [ 63%] 2023-08-09T11:57:37.2960208Z torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2Float32CUDA::test_tacotron2_inference_torchscript_consistency_0 SKIPPED [ 63%] 2023-08-09T11:57:37.2961194Z torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2Float32CUDA::test_tacotron2_inference_torchscript_consistency_1 SKIPPED [ 64%] 2023-08-09T11:57:37.2962124Z torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2Float32CUDA::test_tacotron2_output_shape_0 PASSED [ 64%] 2023-08-09T11:57:37.2962992Z torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2Float32CUDA::test_tacotron2_output_shape_1 PASSED [ 64%] 2023-08-09T11:57:37.2963890Z torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2Float32CUDA::test_tacotron2_torchscript_consistency_0 SKIPPED [ 64%] 2023-08-09T11:57:37.2964827Z torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2Float32CUDA::test_tacotron2_torchscript_consistency_1 SKIPPED [ 64%] 2023-08-09T11:57:37.2965652Z torchaudio_unittest/models/wav2vec2/model_test.py::TestWav2Vec2Model::test_cuda_smoke_test_0 PASSED [ 64%] 2023-08-09T11:57:37.2966436Z torchaudio_unittest/models/wav2vec2/model_test.py::TestWav2Vec2Model::test_cuda_smoke_test_1 PASSED [ 64%] 2023-08-09T11:57:37.2967170Z torchaudio_unittest/models/wav2vec2/model_test.py::TestWavLMModel::test_cuda_smoke_test_0 PASSED [ 64%] 2023-08-09T11:57:37.2968202Z torchaudio_unittest/models/wav2vec2/model_test.py::TestWavLMModel::test_cuda_smoke_test_1 PASSED [ 64%] 2023-08-09T11:57:37.2968960Z torchaudio_unittest/models/wav2vec2/model_test.py::TestHuBERTPretrainModel::test_cuda_smoke_test_0 PASSED [ 64%] 2023-08-09T11:57:37.2969753Z torchaudio_unittest/models/wav2vec2/model_test.py::TestHuBERTPretrainModel::test_cuda_smoke_test_1 PASSED [ 64%] 2023-08-09T11:57:37.2970770Z torchaudio_unittest/prototype/conformer_wav2vec2_test.py::TestConformerWav2Vec2::test_cuda_smoke_test_0 SKIPPED [ 64%] 2023-08-09T11:57:37.2971642Z torchaudio_unittest/prototype/conformer_wav2vec2_test.py::TestConformerWav2Vec2::test_cuda_smoke_test_1 SKIPPED [ 64%] 2023-08-09T11:57:37.2972692Z torchaudio_unittest/prototype/conformer_wav2vec2_test.py::TestConformerWav2Vec2::test_pretrain_cuda_smoke_test__function_conformer_wav2vec2_pretrain_base_at_0x7fe911c08280__torch_float32 SKIPPED [ 64%] 2023-08-09T11:57:37.2973831Z torchaudio_unittest/prototype/conformer_wav2vec2_test.py::TestConformerWav2Vec2::test_pretrain_cuda_smoke_test__function_conformer_wav2vec2_pretrain_base_at_0x7fe911c08280__torch_float64 SKIPPED [ 64%] 2023-08-09T11:57:37.2975071Z torchaudio_unittest/prototype/conformer_wav2vec2_test.py::TestConformerWav2Vec2::test_pretrain_cuda_smoke_test__function_conformer_wav2vec2_pretrain_large_at_0x7fe911c08310__torch_float32 SKIPPED [ 64%] 2023-08-09T11:57:37.2976206Z torchaudio_unittest/prototype/conformer_wav2vec2_test.py::TestConformerWav2Vec2::test_pretrain_cuda_smoke_test__function_conformer_wav2vec2_pretrain_large_at_0x7fe911c08310__torch_float64 SKIPPED [ 64%] 2023-08-09T11:58:47.1647366Z torchaudio_unittest/prototype/conv_emformer_gpu_test.py::ConvEmformerFloat32GPUTest::test_output_lengths_forward PASSED [ 64%] 2023-08-09T11:58:47.1648352Z torchaudio_unittest/prototype/conv_emformer_gpu_test.py::ConvEmformerFloat32GPUTest::test_output_lengths_infer PASSED [ 64%] 2023-08-09T11:58:47.1649450Z torchaudio_unittest/prototype/conv_emformer_gpu_test.py::ConvEmformerFloat32GPUTest::test_output_shape_forward PASSED [ 64%] 2023-08-09T11:58:47.1650159Z torchaudio_unittest/prototype/conv_emformer_gpu_test.py::ConvEmformerFloat32GPUTest::test_output_shape_infer PASSED [ 64%] 2023-08-09T11:58:47.1650918Z torchaudio_unittest/prototype/conv_emformer_gpu_test.py::ConvEmformerFloat32GPUTest::test_torchscript_consistency_forward PASSED [ 64%] 2023-08-09T11:58:47.1651552Z torchaudio_unittest/prototype/conv_emformer_gpu_test.py::ConvEmformerFloat32GPUTest::test_torchscript_consistency_infer PASSED [ 64%] 2023-08-09T11:58:47.1652160Z torchaudio_unittest/prototype/conv_emformer_gpu_test.py::ConvEmformerFloat64GPUTest::test_output_lengths_forward PASSED [ 64%] 2023-08-09T11:58:47.1652741Z torchaudio_unittest/prototype/conv_emformer_gpu_test.py::ConvEmformerFloat64GPUTest::test_output_lengths_infer PASSED [ 64%] 2023-08-09T11:58:47.1653476Z torchaudio_unittest/prototype/conv_emformer_gpu_test.py::ConvEmformerFloat64GPUTest::test_output_shape_forward PASSED [ 64%] 2023-08-09T11:58:47.1654594Z torchaudio_unittest/prototype/conv_emformer_gpu_test.py::ConvEmformerFloat64GPUTest::test_output_shape_infer PASSED [ 64%] 2023-08-09T11:58:47.1655440Z torchaudio_unittest/prototype/conv_emformer_gpu_test.py::ConvEmformerFloat64GPUTest::test_torchscript_consistency_forward PASSED [ 65%] 2023-08-09T11:58:47.1656379Z torchaudio_unittest/prototype/conv_emformer_gpu_test.py::ConvEmformerFloat64GPUTest::test_torchscript_consistency_infer PASSED [ 65%] 2023-08-09T11:58:47.1656974Z torchaudio_unittest/prototype/rnnt_gpu_test.py::ConformerRNNTFloat32GPUTest::test_output_shape_forward PASSED [ 65%] 2023-08-09T11:58:47.1657556Z torchaudio_unittest/prototype/rnnt_gpu_test.py::ConformerRNNTFloat32GPUTest::test_output_shape_join PASSED [ 65%] 2023-08-09T11:58:47.1658129Z torchaudio_unittest/prototype/rnnt_gpu_test.py::ConformerRNNTFloat32GPUTest::test_output_shape_predict PASSED [ 65%] 2023-08-09T11:58:47.1658706Z torchaudio_unittest/prototype/rnnt_gpu_test.py::ConformerRNNTFloat32GPUTest::test_output_shape_transcribe PASSED [ 65%] 2023-08-09T11:58:47.1659437Z torchaudio_unittest/prototype/rnnt_gpu_test.py::ConformerRNNTFloat32GPUTest::test_torchscript_consistency_forward PASSED [ 65%] 2023-08-09T11:58:47.1660042Z torchaudio_unittest/prototype/rnnt_gpu_test.py::ConformerRNNTFloat32GPUTest::test_torchscript_consistency_join PASSED [ 65%] 2023-08-09T11:58:47.1660637Z torchaudio_unittest/prototype/rnnt_gpu_test.py::ConformerRNNTFloat32GPUTest::test_torchscript_consistency_predict PASSED [ 65%] 2023-08-09T11:58:47.1661241Z torchaudio_unittest/prototype/rnnt_gpu_test.py::ConformerRNNTFloat32GPUTest::test_torchscript_consistency_transcribe PASSED [ 65%] 2023-08-09T11:58:47.1661834Z torchaudio_unittest/prototype/rnnt_gpu_test.py::ConformerRNNTFloat64GPUTest::test_output_shape_forward PASSED [ 65%] 2023-08-09T11:58:47.1662389Z torchaudio_unittest/prototype/rnnt_gpu_test.py::ConformerRNNTFloat64GPUTest::test_output_shape_join PASSED [ 65%] 2023-08-09T11:58:47.1662958Z torchaudio_unittest/prototype/rnnt_gpu_test.py::ConformerRNNTFloat64GPUTest::test_output_shape_predict PASSED [ 65%] 2023-08-09T11:58:47.1663528Z torchaudio_unittest/prototype/rnnt_gpu_test.py::ConformerRNNTFloat64GPUTest::test_output_shape_transcribe PASSED [ 65%] 2023-08-09T11:58:47.1664121Z torchaudio_unittest/prototype/rnnt_gpu_test.py::ConformerRNNTFloat64GPUTest::test_torchscript_consistency_forward PASSED [ 65%] 2023-08-09T11:58:47.1664709Z torchaudio_unittest/prototype/rnnt_gpu_test.py::ConformerRNNTFloat64GPUTest::test_torchscript_consistency_join PASSED [ 65%] 2023-08-09T11:58:47.1665400Z torchaudio_unittest/prototype/rnnt_gpu_test.py::ConformerRNNTFloat64GPUTest::test_torchscript_consistency_predict PASSED [ 65%] 2023-08-09T11:58:47.1665999Z torchaudio_unittest/prototype/rnnt_gpu_test.py::ConformerRNNTFloat64GPUTest::test_torchscript_consistency_transcribe PASSED [ 65%] 2023-08-09T11:58:47.1666660Z torchaudio_unittest/prototype/ssl_model_test.py::TestSSLModel::test_cuda_smoke_test__function_conformer_wav2vec2_base_at_0x7fe911c08160__64_torch_float32 PASSED [ 65%] 2023-08-09T11:58:47.1667314Z torchaudio_unittest/prototype/ssl_model_test.py::TestSSLModel::test_cuda_smoke_test__function_conformer_wav2vec2_base_at_0x7fe911c08160__64_torch_float64 PASSED [ 65%] 2023-08-09T11:58:47.1667968Z torchaudio_unittest/prototype/ssl_model_test.py::TestSSLModel::test_cuda_smoke_test__function_emformer_hubert_base_at_0x7fe911c08a60__80_torch_float32 PASSED [ 65%] 2023-08-09T11:58:47.1668632Z torchaudio_unittest/prototype/ssl_model_test.py::TestSSLModel::test_cuda_smoke_test__function_emformer_hubert_base_at_0x7fe911c08a60__80_torch_float64 PASSED [ 65%] 2023-08-09T11:58:47.1669243Z torchaudio_unittest/prototype/functional/autograd_cuda_test.py::TestAutogradCUDAFloat64::test_exp_sigmoid_input PASSED [ 65%] 2023-08-09T11:58:47.1669825Z torchaudio_unittest/prototype/functional/autograd_cuda_test.py::TestAutogradCUDAFloat64::test_extend_pitch PASSED [ 65%] 2023-08-09T11:58:47.1670408Z torchaudio_unittest/prototype/functional/autograd_cuda_test.py::TestAutogradCUDAFloat64::test_filter_waveform PASSED [ 65%] 2023-08-09T11:58:47.1670973Z torchaudio_unittest/prototype/functional/autograd_cuda_test.py::TestAutogradCUDAFloat64::test_freq_ir PASSED [ 65%] 2023-08-09T11:58:47.1671548Z torchaudio_unittest/prototype/functional/autograd_cuda_test.py::TestAutogradCUDAFloat64::test_oscillator_bank_0 PASSED [ 65%] 2023-08-09T11:58:47.1672134Z torchaudio_unittest/prototype/functional/autograd_cuda_test.py::TestAutogradCUDAFloat64::test_oscillator_bank_1 PASSED [ 66%] 2023-08-09T11:58:47.1672698Z torchaudio_unittest/prototype/functional/autograd_cuda_test.py::TestAutogradCUDAFloat64::test_sinc_ir PASSED [ 66%] 2023-08-09T11:58:47.1673363Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_adsr_envelope_00 PASSED [ 66%] 2023-08-09T11:58:47.1673969Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_adsr_envelope_01 PASSED [ 66%] 2023-08-09T11:58:47.1674567Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_adsr_envelope_02 PASSED [ 66%] 2023-08-09T11:58:47.1675152Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_adsr_envelope_03 PASSED [ 66%] 2023-08-09T11:58:47.1675750Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_adsr_envelope_04 PASSED [ 66%] 2023-08-09T11:58:47.1676344Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_adsr_envelope_05 PASSED [ 66%] 2023-08-09T11:58:47.1676934Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_adsr_envelope_06 PASSED [ 66%] 2023-08-09T11:58:47.1677511Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_adsr_envelope_07 PASSED [ 66%] 2023-08-09T11:58:47.1678100Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_adsr_envelope_08 PASSED [ 66%] 2023-08-09T11:58:47.1678690Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_adsr_envelope_09 PASSED [ 66%] 2023-08-09T11:58:47.1679334Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_adsr_envelope_10 PASSED [ 66%] 2023-08-09T11:58:47.1679970Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_adsr_envelope_11 PASSED [ 66%] 2023-08-09T11:58:47.1680549Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_adsr_envelope_12 PASSED [ 66%] 2023-08-09T11:58:47.1681131Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_adsr_envelope_13 PASSED [ 66%] 2023-08-09T11:58:47.1681711Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_adsr_envelope_14 PASSED [ 66%] 2023-08-09T11:58:47.1682286Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_adsr_envelope_15 PASSED [ 66%] 2023-08-09T11:58:47.1682871Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_adsr_envelope_16 PASSED [ 66%] 2023-08-09T11:58:47.3068557Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_exp_sigmoid_input_diff_0 PASSED [ 66%] 2023-08-09T11:58:47.3069478Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_exp_sigmoid_input_diff_1 PASSED [ 66%] 2023-08-09T11:58:47.3070202Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_exp_sigmoid_input_diff_2 PASSED [ 66%] 2023-08-09T11:58:47.3070909Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_extend_pitch PASSED [ 66%] 2023-08-09T11:58:47.3071682Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_delta_1_3 PASSED [ 66%] 2023-08-09T11:58:47.3072556Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_delta_1_4 PASSED [ 66%] 2023-08-09T11:58:47.3073557Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_delta_1_5 PASSED [ 66%] 2023-08-09T11:58:47.3074391Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_delta_1_6 PASSED [ 66%] 2023-08-09T11:58:47.3074996Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_delta_1_7 PASSED [ 67%] 2023-08-09T11:58:47.3075596Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_delta_1_8 PASSED [ 67%] 2023-08-09T11:58:47.3076212Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_delta_3_3 PASSED [ 67%] 2023-08-09T11:58:47.3076822Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_delta_3_4 PASSED [ 67%] 2023-08-09T11:58:47.3077425Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_delta_3_5 PASSED [ 67%] 2023-08-09T11:58:47.3078016Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_delta_3_6 PASSED [ 67%] 2023-08-09T11:58:47.3078626Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_delta_3_7 PASSED [ 67%] 2023-08-09T11:58:47.3079227Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_delta_3_8 PASSED [ 67%] 2023-08-09T11:58:47.3079990Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_delta_5_3 PASSED [ 67%] 2023-08-09T11:58:47.3080588Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_delta_5_4 PASSED [ 67%] 2023-08-09T11:58:47.3081185Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_delta_5_5 PASSED [ 67%] 2023-08-09T11:58:47.3081782Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_delta_5_6 PASSED [ 67%] 2023-08-09T11:58:47.3082377Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_delta_5_7 PASSED [ 67%] 2023-08-09T11:58:47.3082975Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_delta_5_8 PASSED [ 67%] 2023-08-09T11:58:47.3083575Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_diff PASSED [ 67%] 2023-08-09T11:58:47.3084183Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_same PASSED [ 67%] 2023-08-09T11:58:47.3084790Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_00 PASSED [ 67%] 2023-08-09T11:58:47.3085397Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_01 PASSED [ 67%] 2023-08-09T11:58:47.3085993Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_02 PASSED [ 67%] 2023-08-09T11:58:47.3086605Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_03 PASSED [ 67%] 2023-08-09T11:58:47.3087251Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_04 PASSED [ 67%] 2023-08-09T11:58:47.3088038Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_05 PASSED [ 67%] 2023-08-09T11:58:47.3088628Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_06 PASSED [ 67%] 2023-08-09T11:58:47.3089237Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_07 PASSED [ 67%] 2023-08-09T11:58:47.3089843Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_08 PASSED [ 67%] 2023-08-09T11:58:47.3090441Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_09 PASSED [ 67%] 2023-08-09T11:58:47.3091037Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_10 PASSED [ 67%] 2023-08-09T11:58:47.3091631Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_11 PASSED [ 68%] 2023-08-09T11:58:47.3092234Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_12 PASSED [ 68%] 2023-08-09T11:58:47.3092833Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_13 PASSED [ 68%] 2023-08-09T11:58:47.3093514Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_14 PASSED [ 68%] 2023-08-09T11:58:47.3094108Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_15 PASSED [ 68%] 2023-08-09T11:58:47.3094707Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_16 PASSED [ 68%] 2023-08-09T11:58:47.3095305Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_17 PASSED [ 68%] 2023-08-09T11:58:47.3095978Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_18 PASSED [ 68%] 2023-08-09T11:58:47.3096570Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_19 PASSED [ 68%] 2023-08-09T11:58:47.3097168Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_20 PASSED [ 68%] 2023-08-09T11:58:47.3097768Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_21 PASSED [ 68%] 2023-08-09T11:58:47.3098361Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_22 PASSED [ 68%] 2023-08-09T11:58:47.3098947Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_23 PASSED [ 68%] 2023-08-09T11:58:47.3099567Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_freq_ir_reference_0 PASSED [ 68%] 2023-08-09T11:58:47.3100192Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_freq_ir_reference_1 PASSED [ 68%] 2023-08-09T11:58:47.3100868Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_freq_ir_warns_negative_values PASSED [ 68%] 2023-08-09T11:58:47.3101512Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_oscillator_bank_smoke_test_2_3_5_7_mean PASSED [ 68%] 2023-08-09T11:58:47.3102145Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_oscillator_bank_smoke_test_2_3_5_7_none PASSED [ 68%] 2023-08-09T11:58:47.6860010Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_oscillator_bank_smoke_test_2_3_5_7_sum PASSED [ 68%] 2023-08-09T11:58:47.6861565Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_oscillator_bank_smoke_test_2_3_5_mean PASSED [ 68%] 2023-08-09T11:58:47.6862223Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_oscillator_bank_smoke_test_2_3_5_none PASSED [ 68%] 2023-08-09T11:58:47.6863104Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_oscillator_bank_smoke_test_2_3_5_sum PASSED [ 68%] 2023-08-09T11:58:47.6863897Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_oscillator_bank_smoke_test_2_3_mean PASSED [ 68%] 2023-08-09T11:58:47.6864738Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_oscillator_bank_smoke_test_2_3_none PASSED [ 68%] 2023-08-09T11:58:47.6865626Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_oscillator_bank_smoke_test_2_3_sum PASSED [ 68%] 2023-08-09T11:58:47.6866667Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_oscillator_invalid PASSED [ 68%] 2023-08-09T11:58:47.6867481Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_1025_False PASSED [ 68%] 2023-08-09T11:58:47.6868313Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_1025_True PASSED [ 69%] 2023-08-09T11:58:47.6869050Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_129_False PASSED [ 69%] 2023-08-09T11:58:47.6869662Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_129_True PASSED [ 69%] 2023-08-09T11:58:47.6870302Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_1_1025_False PASSED [ 69%] 2023-08-09T11:58:47.6870962Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_1_1025_True PASSED [ 69%] 2023-08-09T11:58:47.6871577Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_1_129_False PASSED [ 69%] 2023-08-09T11:58:47.6872191Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_1_129_True PASSED [ 69%] 2023-08-09T11:58:47.6872805Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_1_1_False PASSED [ 69%] 2023-08-09T11:58:47.6873422Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_1_1_True PASSED [ 69%] 2023-08-09T11:58:47.6874041Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_1_2049_False PASSED [ 69%] 2023-08-09T11:58:47.6874778Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_1_2049_True PASSED [ 69%] 2023-08-09T11:58:47.6875389Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_1_257_False PASSED [ 69%] 2023-08-09T11:58:47.6876006Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_1_257_True PASSED [ 69%] 2023-08-09T11:58:47.6876638Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_1_3_False PASSED [ 69%] 2023-08-09T11:58:47.6877256Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_1_3_True PASSED [ 69%] 2023-08-09T11:58:47.6877879Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_1_513_False PASSED [ 69%] 2023-08-09T11:58:47.6878486Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_1_513_True PASSED [ 69%] 2023-08-09T11:58:47.6879099Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_1_5_False PASSED [ 69%] 2023-08-09T11:58:47.6879729Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_1_5_True PASSED [ 69%] 2023-08-09T11:58:47.6880423Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_1_65_False PASSED [ 69%] 2023-08-09T11:58:47.6881027Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_1_65_True PASSED [ 69%] 2023-08-09T11:58:47.6881643Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_1_False PASSED [ 69%] 2023-08-09T11:58:47.6882256Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_1_True PASSED [ 69%] 2023-08-09T11:58:47.6882873Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_2049_False PASSED [ 69%] 2023-08-09T11:58:47.6883477Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_2049_True PASSED [ 69%] 2023-08-09T11:58:47.6884095Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_257_False PASSED [ 69%] 2023-08-09T11:58:47.6884711Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_257_True PASSED [ 69%] 2023-08-09T11:58:47.6885323Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_3_False PASSED [ 70%] 2023-08-09T11:58:47.6885942Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_3_True PASSED [ 70%] 2023-08-09T11:58:47.6886541Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_513_False PASSED [ 70%] 2023-08-09T11:58:47.6887157Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_513_True PASSED [ 70%] 2023-08-09T11:58:47.6888314Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_5_1025_False PASSED [ 70%] 2023-08-09T11:58:47.6889132Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_5_1025_True PASSED [ 70%] 2023-08-09T11:58:47.6889941Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_5_129_False PASSED [ 70%] 2023-08-09T11:58:47.6890572Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_5_129_True PASSED [ 70%] 2023-08-09T11:58:47.6891191Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_5_1_False PASSED [ 70%] 2023-08-09T11:58:47.6891809Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_5_1_True PASSED [ 70%] 2023-08-09T11:58:47.6892430Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_5_2049_False PASSED [ 70%] 2023-08-09T11:58:47.6893036Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_5_2049_True PASSED [ 70%] 2023-08-09T11:58:47.6893650Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_5_257_False PASSED [ 70%] 2023-08-09T11:58:47.6894266Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_5_257_True PASSED [ 70%] 2023-08-09T11:58:47.6894992Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_5_3_False PASSED [ 70%] 2023-08-09T11:58:47.8063681Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_5_3_True PASSED [ 70%] 2023-08-09T11:58:47.8064405Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_5_513_False PASSED [ 70%] 2023-08-09T11:58:47.8065290Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_5_513_True PASSED [ 70%] 2023-08-09T11:58:47.8066084Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_5_5_False PASSED [ 70%] 2023-08-09T11:58:47.8066722Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_5_5_True PASSED [ 70%] 2023-08-09T11:58:47.8067340Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_5_65_False PASSED [ 70%] 2023-08-09T11:58:47.8067967Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_5_65_True PASSED [ 70%] 2023-08-09T11:58:47.8068589Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_5_False PASSED [ 70%] 2023-08-09T11:58:47.8069210Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_5_True PASSED [ 70%] 2023-08-09T11:58:47.8069825Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_65_False PASSED [ 70%] 2023-08-09T11:58:47.8070449Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_65_True PASSED [ 70%] 2023-08-09T11:58:47.8071198Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_9_1025_False PASSED [ 70%] 2023-08-09T11:58:47.8071829Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_9_1025_True PASSED [ 71%] 2023-08-09T11:58:47.8072449Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_9_129_False PASSED [ 71%] 2023-08-09T11:58:47.8073069Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_9_129_True PASSED [ 71%] 2023-08-09T11:58:47.8073698Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_9_1_False PASSED [ 71%] 2023-08-09T11:58:47.8074322Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_9_1_True PASSED [ 71%] 2023-08-09T11:58:47.8074947Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_9_2049_False PASSED [ 71%] 2023-08-09T11:58:47.8075563Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_9_2049_True PASSED [ 71%] 2023-08-09T11:58:47.8076181Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_9_257_False PASSED [ 71%] 2023-08-09T11:58:47.8076896Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_9_257_True PASSED [ 71%] 2023-08-09T11:58:47.8077524Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_9_3_False PASSED [ 71%] 2023-08-09T11:58:47.8078150Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_9_3_True PASSED [ 71%] 2023-08-09T11:58:47.8078763Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_9_513_False PASSED [ 71%] 2023-08-09T11:58:47.8079387Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_9_513_True PASSED [ 71%] 2023-08-09T11:58:47.8080007Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_9_5_False PASSED [ 71%] 2023-08-09T11:58:47.8080691Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_9_5_True PASSED [ 71%] 2023-08-09T11:58:47.8081312Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_9_65_False PASSED [ 71%] 2023-08-09T11:58:47.8081933Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_9_65_True PASSED [ 71%] 2023-08-09T11:58:47.8082556Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_1_0_1025_False PASSED [ 71%] 2023-08-09T11:58:47.8083176Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_1_0_1025_True PASSED [ 71%] 2023-08-09T11:58:47.8083797Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_1_0_129_False PASSED [ 71%] 2023-08-09T11:58:47.8084409Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_1_0_129_True PASSED [ 71%] 2023-08-09T11:58:47.8085091Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_1_0_1_False PASSED [ 71%] 2023-08-09T11:58:47.8085712Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_1_0_1_True PASSED [ 71%] 2023-08-09T11:58:47.8086338Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_1_0_2049_False PASSED [ 71%] 2023-08-09T11:58:47.8086949Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_1_0_2049_True PASSED [ 71%] 2023-08-09T11:58:47.8087738Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_1_0_257_False PASSED [ 71%] 2023-08-09T11:58:47.8088371Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_1_0_257_True PASSED [ 71%] 2023-08-09T11:58:47.8088993Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_1_0_3_False PASSED [ 72%] 2023-08-09T11:58:47.8089603Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_1_0_3_True PASSED [ 72%] 2023-08-09T11:58:47.8090273Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_1_0_513_False PASSED [ 72%] 2023-08-09T11:58:47.8090978Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_1_0_513_True PASSED [ 72%] 2023-08-09T11:58:47.8091599Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_1_0_5_False PASSED [ 72%] 2023-08-09T11:58:47.8092218Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_1_0_5_True PASSED [ 72%] 2023-08-09T11:58:47.8092826Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_1_0_65_False PASSED [ 72%] 2023-08-09T11:58:47.8093442Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_1_0_65_True PASSED [ 72%] 2023-08-09T11:58:47.8094061Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_10_1025_False PASSED [ 72%] 2023-08-09T11:58:47.8094673Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_10_1025_True PASSED [ 72%] 2023-08-09T11:58:47.8095281Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_10_129_False PASSED [ 72%] 2023-08-09T11:58:47.8095960Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_10_129_True PASSED [ 72%] 2023-08-09T11:58:47.8096573Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_10_1_False PASSED [ 72%] 2023-08-09T11:58:47.9160419Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_10_1_True PASSED [ 72%] 2023-08-09T11:58:47.9161074Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_10_257_False PASSED [ 72%] 2023-08-09T11:58:47.9162018Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_10_257_True PASSED [ 72%] 2023-08-09T11:58:47.9162857Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_10_3_False PASSED [ 72%] 2023-08-09T11:58:47.9163646Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_10_3_True PASSED [ 72%] 2023-08-09T11:58:47.9164460Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_10_513_False PASSED [ 72%] 2023-08-09T11:58:47.9165224Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_10_513_True PASSED [ 72%] 2023-08-09T11:58:47.9165831Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_10_65_False PASSED [ 72%] 2023-08-09T11:58:47.9166448Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_10_65_True PASSED [ 72%] 2023-08-09T11:58:47.9167052Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_1_1025_False PASSED [ 72%] 2023-08-09T11:58:47.9167810Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_1_1025_True PASSED [ 72%] 2023-08-09T11:58:47.9168400Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_1_129_False PASSED [ 72%] 2023-08-09T11:58:47.9169100Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_1_129_True PASSED [ 72%] 2023-08-09T11:58:47.9169704Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_1_1_False PASSED [ 72%] 2023-08-09T11:58:47.9170335Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_1_1_True PASSED [ 73%] 2023-08-09T11:58:47.9170940Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_1_257_False PASSED [ 73%] 2023-08-09T11:58:47.9171529Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_1_257_True PASSED [ 73%] 2023-08-09T11:58:47.9172129Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_1_3_False PASSED [ 73%] 2023-08-09T11:58:47.9172731Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_1_3_True PASSED [ 73%] 2023-08-09T11:58:47.9173336Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_1_513_False PASSED [ 73%] 2023-08-09T11:58:47.9173925Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_1_513_True PASSED [ 73%] 2023-08-09T11:58:47.9174525Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_1_65_False PASSED [ 73%] 2023-08-09T11:58:47.9175123Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_1_65_True PASSED [ 73%] 2023-08-09T11:58:47.9175788Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_2_5_1025_False PASSED [ 73%] 2023-08-09T11:58:47.9176394Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_2_5_1025_True PASSED [ 73%] 2023-08-09T11:58:47.9177058Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_2_5_129_False PASSED [ 73%] 2023-08-09T11:58:47.9177665Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_2_5_129_True PASSED [ 73%] 2023-08-09T11:58:47.9178268Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_2_5_1_False PASSED [ 73%] 2023-08-09T11:58:47.9178866Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_2_5_1_True PASSED [ 73%] 2023-08-09T11:58:47.9179462Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_2_5_257_False PASSED [ 73%] 2023-08-09T11:58:47.9180068Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_2_5_257_True PASSED [ 73%] 2023-08-09T11:58:47.9180666Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_2_5_3_False PASSED [ 73%] 2023-08-09T11:58:47.9181263Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_2_5_3_True PASSED [ 73%] 2023-08-09T11:58:47.9181856Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_2_5_513_False PASSED [ 73%] 2023-08-09T11:58:47.9182504Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_2_5_513_True PASSED [ 73%] 2023-08-09T11:58:47.9183107Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_2_5_65_False PASSED [ 73%] 2023-08-09T11:58:47.9183714Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_2_5_65_True PASSED [ 73%] 2023-08-09T11:58:47.9184321Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_3_5_7_1025_False PASSED [ 73%] 2023-08-09T11:58:47.9184924Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_3_5_7_1025_True PASSED [ 73%] 2023-08-09T11:58:47.9185524Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_3_5_7_129_False PASSED [ 73%] 2023-08-09T11:58:47.9186138Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_3_5_7_129_True PASSED [ 73%] 2023-08-09T11:58:47.9186743Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_3_5_7_1_False PASSED [ 74%] 2023-08-09T11:58:47.9187335Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_3_5_7_1_True PASSED [ 74%] 2023-08-09T11:58:47.9187938Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_3_5_7_257_False PASSED [ 74%] 2023-08-09T11:58:47.9188541Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_3_5_7_257_True PASSED [ 74%] 2023-08-09T11:58:47.9189146Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_3_5_7_3_False PASSED [ 74%] 2023-08-09T11:58:47.9189822Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_3_5_7_3_True PASSED [ 74%] 2023-08-09T11:58:47.9190445Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_3_5_7_513_False PASSED [ 74%] 2023-08-09T11:58:47.9191047Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_3_5_7_513_True PASSED [ 74%] 2023-08-09T11:58:47.9191645Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_3_5_7_65_False PASSED [ 74%] 2023-08-09T11:58:47.9192248Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_3_5_7_65_True PASSED [ 74%] 2023-08-09T11:58:47.9192842Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_size_False PASSED [ 74%] 2023-08-09T11:58:47.9193436Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_size_True PASSED [ 74%] 2023-08-09T11:58:48.0520008Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_adsr_envelope_00 PASSED [ 74%] 2023-08-09T11:58:48.0520822Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_adsr_envelope_01 PASSED [ 74%] 2023-08-09T11:58:48.0521617Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_adsr_envelope_02 PASSED [ 74%] 2023-08-09T11:58:48.0522419Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_adsr_envelope_03 PASSED [ 74%] 2023-08-09T11:58:48.0523009Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_adsr_envelope_04 PASSED [ 74%] 2023-08-09T11:58:48.0523603Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_adsr_envelope_05 PASSED [ 74%] 2023-08-09T11:58:48.0524181Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_adsr_envelope_06 PASSED [ 74%] 2023-08-09T11:58:48.0524752Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_adsr_envelope_07 PASSED [ 74%] 2023-08-09T11:58:48.0525327Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_adsr_envelope_08 PASSED [ 74%] 2023-08-09T11:58:48.0525919Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_adsr_envelope_09 PASSED [ 74%] 2023-08-09T11:58:48.0526494Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_adsr_envelope_10 PASSED [ 74%] 2023-08-09T11:58:48.0527066Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_adsr_envelope_11 PASSED [ 74%] 2023-08-09T11:58:48.0527809Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_adsr_envelope_12 PASSED [ 74%] 2023-08-09T11:58:48.0528390Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_adsr_envelope_13 PASSED [ 74%] 2023-08-09T11:58:48.0528968Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_adsr_envelope_14 PASSED [ 74%] 2023-08-09T11:58:48.0529563Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_adsr_envelope_15 PASSED [ 75%] 2023-08-09T11:58:48.0530210Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_adsr_envelope_16 PASSED [ 75%] 2023-08-09T11:58:48.0530814Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_exp_sigmoid_input_diff_0 PASSED [ 75%] 2023-08-09T11:58:48.0531420Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_exp_sigmoid_input_diff_1 PASSED [ 75%] 2023-08-09T11:58:48.0532022Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_exp_sigmoid_input_diff_2 PASSED [ 75%] 2023-08-09T11:58:48.0532594Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_extend_pitch PASSED [ 75%] 2023-08-09T11:58:48.0533195Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_delta_1_3 PASSED [ 75%] 2023-08-09T11:58:48.0533802Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_delta_1_4 PASSED [ 75%] 2023-08-09T11:58:48.0534402Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_delta_1_5 PASSED [ 75%] 2023-08-09T11:58:48.0534992Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_delta_1_6 PASSED [ 75%] 2023-08-09T11:58:48.0535650Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_delta_1_7 PASSED [ 75%] 2023-08-09T11:58:48.0536318Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_delta_1_8 PASSED [ 75%] 2023-08-09T11:58:48.0536912Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_delta_3_3 PASSED [ 75%] 2023-08-09T11:58:48.0537514Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_delta_3_4 PASSED [ 75%] 2023-08-09T11:58:48.0538102Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_delta_3_5 PASSED [ 75%] 2023-08-09T11:58:48.0538709Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_delta_3_6 PASSED [ 75%] 2023-08-09T11:58:48.0539306Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_delta_3_7 PASSED [ 75%] 2023-08-09T11:58:48.0539906Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_delta_3_8 PASSED [ 75%] 2023-08-09T11:58:48.0540498Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_delta_5_3 PASSED [ 75%] 2023-08-09T11:58:48.0541089Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_delta_5_4 PASSED [ 75%] 2023-08-09T11:58:48.0541688Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_delta_5_5 PASSED [ 75%] 2023-08-09T11:58:48.0542288Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_delta_5_6 PASSED [ 75%] 2023-08-09T11:58:48.0542882Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_delta_5_7 PASSED [ 75%] 2023-08-09T11:58:48.0543477Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_delta_5_8 PASSED [ 75%] 2023-08-09T11:58:48.0544118Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_diff PASSED [ 75%] 2023-08-09T11:58:48.0544724Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_same PASSED [ 75%] 2023-08-09T11:58:48.0545329Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_00 PASSED [ 75%] 2023-08-09T11:58:48.0545924Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_01 PASSED [ 76%] 2023-08-09T11:58:48.0546533Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_02 PASSED [ 76%] 2023-08-09T11:58:48.0547136Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_03 PASSED [ 76%] 2023-08-09T11:58:48.0547737Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_04 PASSED [ 76%] 2023-08-09T11:58:48.0548326Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_05 PASSED [ 76%] 2023-08-09T11:58:48.0548923Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_06 PASSED [ 76%] 2023-08-09T11:58:48.0549570Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_07 PASSED [ 76%] 2023-08-09T11:58:48.0550218Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_08 PASSED [ 76%] 2023-08-09T11:58:48.0550810Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_09 PASSED [ 76%] 2023-08-09T11:58:48.0551405Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_10 PASSED [ 76%] 2023-08-09T11:58:48.0552009Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_11 PASSED [ 76%] 2023-08-09T11:58:48.0552607Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_12 PASSED [ 76%] 2023-08-09T11:58:48.1845683Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_13 PASSED [ 76%] 2023-08-09T11:58:48.1846497Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_14 PASSED [ 76%] 2023-08-09T11:58:48.1847386Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_15 PASSED [ 76%] 2023-08-09T11:58:48.1848551Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_16 PASSED [ 76%] 2023-08-09T11:58:48.1849326Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_17 PASSED [ 76%] 2023-08-09T11:58:48.1850027Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_18 PASSED [ 76%] 2023-08-09T11:58:48.1850698Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_19 PASSED [ 76%] 2023-08-09T11:58:48.1851419Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_20 PASSED [ 76%] 2023-08-09T11:58:48.1852019Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_21 PASSED [ 76%] 2023-08-09T11:58:48.1852613Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_22 PASSED [ 76%] 2023-08-09T11:58:48.1853196Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_23 PASSED [ 76%] 2023-08-09T11:58:48.1853792Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_freq_ir_reference_0 PASSED [ 76%] 2023-08-09T11:58:48.1854384Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_freq_ir_reference_1 PASSED [ 76%] 2023-08-09T11:58:48.1854997Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_freq_ir_warns_negative_values PASSED [ 76%] 2023-08-09T11:58:48.1855687Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_oscillator_bank_smoke_test_2_3_5_7_mean PASSED [ 76%] 2023-08-09T11:58:48.1856322Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_oscillator_bank_smoke_test_2_3_5_7_none PASSED [ 77%] 2023-08-09T11:58:48.1856951Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_oscillator_bank_smoke_test_2_3_5_7_sum PASSED [ 77%] 2023-08-09T11:58:48.1857668Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_oscillator_bank_smoke_test_2_3_5_mean PASSED [ 77%] 2023-08-09T11:58:48.1858308Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_oscillator_bank_smoke_test_2_3_5_none PASSED [ 77%] 2023-08-09T11:58:48.1858928Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_oscillator_bank_smoke_test_2_3_5_sum PASSED [ 77%] 2023-08-09T11:58:48.1859558Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_oscillator_bank_smoke_test_2_3_mean PASSED [ 77%] 2023-08-09T11:58:48.1860188Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_oscillator_bank_smoke_test_2_3_none PASSED [ 77%] 2023-08-09T11:58:48.1860868Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_oscillator_bank_smoke_test_2_3_sum PASSED [ 77%] 2023-08-09T11:58:48.1861483Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_oscillator_invalid PASSED [ 77%] 2023-08-09T11:58:48.1862088Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_1025_False PASSED [ 77%] 2023-08-09T11:58:48.1862700Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_1025_True PASSED [ 77%] 2023-08-09T11:58:48.1863311Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_129_False PASSED [ 77%] 2023-08-09T11:58:48.1863929Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_129_True PASSED [ 77%] 2023-08-09T11:58:48.1864535Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_1_1025_False PASSED [ 77%] 2023-08-09T11:58:48.1865215Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_1_1025_True PASSED [ 77%] 2023-08-09T11:58:48.1865832Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_1_129_False PASSED [ 77%] 2023-08-09T11:58:48.1866449Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_1_129_True PASSED [ 77%] 2023-08-09T11:58:48.1867052Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_1_1_False PASSED [ 77%] 2023-08-09T11:58:48.1867677Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_1_1_True PASSED [ 77%] 2023-08-09T11:58:48.1868297Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_1_2049_False PASSED [ 77%] 2023-08-09T11:58:48.1868912Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_1_2049_True PASSED [ 77%] 2023-08-09T11:58:48.1869524Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_1_257_False PASSED [ 77%] 2023-08-09T11:58:48.1870137Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_1_257_True PASSED [ 77%] 2023-08-09T11:58:48.1870801Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_1_3_False PASSED [ 77%] 2023-08-09T11:58:48.1871416Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_1_3_True PASSED [ 77%] 2023-08-09T11:58:48.1872030Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_1_513_False PASSED [ 77%] 2023-08-09T11:58:48.1872635Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_1_513_True PASSED [ 77%] 2023-08-09T11:58:48.1873248Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_1_5_False PASSED [ 78%] 2023-08-09T11:58:48.1873861Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_1_5_True PASSED [ 78%] 2023-08-09T11:58:48.1874476Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_1_65_False PASSED [ 78%] 2023-08-09T11:58:48.1875093Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_1_65_True PASSED [ 78%] 2023-08-09T11:58:48.1875691Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_1_False PASSED [ 78%] 2023-08-09T11:58:48.1876296Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_1_True PASSED [ 78%] 2023-08-09T11:58:48.1876909Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_2049_False PASSED [ 78%] 2023-08-09T11:58:48.1877529Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_2049_True PASSED [ 78%] 2023-08-09T11:58:48.1878170Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_257_False PASSED [ 78%] 2023-08-09T11:58:48.1878776Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_257_True PASSED [ 78%] 2023-08-09T11:58:48.3056497Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_3_False PASSED [ 78%] 2023-08-09T11:58:48.3057269Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_3_True PASSED [ 78%] 2023-08-09T11:58:48.3058174Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_513_False PASSED [ 78%] 2023-08-09T11:58:48.3059073Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_513_True PASSED [ 78%] 2023-08-09T11:58:48.3059729Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_5_1025_False PASSED [ 78%] 2023-08-09T11:58:48.3060432Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_5_1025_True PASSED [ 78%] 2023-08-09T11:58:48.3061106Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_5_129_False PASSED [ 78%] 2023-08-09T11:58:48.3061720Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_5_129_True PASSED [ 78%] 2023-08-09T11:58:48.3062449Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_5_1_False PASSED [ 78%] 2023-08-09T11:58:48.3063056Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_5_1_True PASSED [ 78%] 2023-08-09T11:58:48.3063673Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_5_2049_False PASSED [ 78%] 2023-08-09T11:58:48.3064283Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_5_2049_True PASSED [ 78%] 2023-08-09T11:58:48.3064892Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_5_257_False PASSED [ 78%] 2023-08-09T11:58:48.3065503Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_5_257_True PASSED [ 78%] 2023-08-09T11:58:48.3066119Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_5_3_False PASSED [ 78%] 2023-08-09T11:58:48.3066727Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_5_3_True PASSED [ 78%] 2023-08-09T11:58:48.3067335Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_5_513_False PASSED [ 78%] 2023-08-09T11:58:48.3067934Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_5_513_True PASSED [ 79%] 2023-08-09T11:58:48.3068546Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_5_5_False PASSED [ 79%] 2023-08-09T11:58:48.3069150Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_5_5_True PASSED [ 79%] 2023-08-09T11:58:48.3069845Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_5_65_False PASSED [ 79%] 2023-08-09T11:58:48.3070485Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_5_65_True PASSED [ 79%] 2023-08-09T11:58:48.3071082Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_5_False PASSED [ 79%] 2023-08-09T11:58:48.3071687Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_5_True PASSED [ 79%] 2023-08-09T11:58:48.3072306Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_65_False PASSED [ 79%] 2023-08-09T11:58:48.3072916Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_65_True PASSED [ 79%] 2023-08-09T11:58:48.3073522Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_9_1025_False PASSED [ 79%] 2023-08-09T11:58:48.3074134Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_9_1025_True PASSED [ 79%] 2023-08-09T11:58:48.3074745Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_9_129_False PASSED [ 79%] 2023-08-09T11:58:48.3075406Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_9_129_True PASSED [ 79%] 2023-08-09T11:58:48.3076017Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_9_1_False PASSED [ 79%] 2023-08-09T11:58:48.3076625Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_9_1_True PASSED [ 79%] 2023-08-09T11:58:48.3077236Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_9_2049_False PASSED [ 79%] 2023-08-09T11:58:48.3077847Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_9_2049_True PASSED [ 79%] 2023-08-09T11:58:48.3078454Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_9_257_False PASSED [ 79%] 2023-08-09T11:58:48.3079063Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_9_257_True PASSED [ 79%] 2023-08-09T11:58:48.3079677Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_9_3_False PASSED [ 79%] 2023-08-09T11:58:48.3080286Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_9_3_True PASSED [ 79%] 2023-08-09T11:58:48.3080894Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_9_513_False PASSED [ 79%] 2023-08-09T11:58:48.3081493Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_9_513_True PASSED [ 79%] 2023-08-09T11:58:48.3082105Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_9_5_False PASSED [ 79%] 2023-08-09T11:58:48.3082765Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_9_5_True PASSED [ 79%] 2023-08-09T11:58:48.3083376Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_9_65_False PASSED [ 79%] 2023-08-09T11:58:48.3083982Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_9_65_True PASSED [ 79%] 2023-08-09T11:58:48.3084587Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_1_0_1025_False PASSED [ 80%] 2023-08-09T11:58:48.3085204Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_1_0_1025_True PASSED [ 80%] 2023-08-09T11:58:48.3085808Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_1_0_129_False PASSED [ 80%] 2023-08-09T11:58:48.3086420Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_1_0_129_True PASSED [ 80%] 2023-08-09T11:58:48.3087019Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_1_0_1_False PASSED [ 80%] 2023-08-09T11:58:48.3087800Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_1_0_1_True PASSED [ 80%] 2023-08-09T11:58:48.3088415Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_1_0_2049_False PASSED [ 80%] 2023-08-09T11:58:48.3089104Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_1_0_2049_True PASSED [ 80%] 2023-08-09T11:58:48.4098530Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_1_0_257_False PASSED [ 80%] 2023-08-09T11:58:48.4099503Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_1_0_257_True PASSED [ 80%] 2023-08-09T11:58:48.4100392Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_1_0_3_False PASSED [ 80%] 2023-08-09T11:58:48.4101202Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_1_0_3_True PASSED [ 80%] 2023-08-09T11:58:48.4101837Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_1_0_513_False PASSED [ 80%] 2023-08-09T11:58:48.4102455Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_1_0_513_True PASSED [ 80%] 2023-08-09T11:58:48.4103066Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_1_0_5_False PASSED [ 80%] 2023-08-09T11:58:48.4103686Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_1_0_5_True PASSED [ 80%] 2023-08-09T11:58:48.4104296Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_1_0_65_False PASSED [ 80%] 2023-08-09T11:58:48.4104910Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_1_0_65_True PASSED [ 80%] 2023-08-09T11:58:48.4105517Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_10_1025_False PASSED [ 80%] 2023-08-09T11:58:48.4106262Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_10_1025_True PASSED [ 80%] 2023-08-09T11:58:48.4106876Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_10_129_False PASSED [ 80%] 2023-08-09T11:58:48.4107476Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_10_129_True PASSED [ 80%] 2023-08-09T11:58:48.4108076Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_10_1_False PASSED [ 80%] 2023-08-09T11:58:48.4108671Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_10_1_True PASSED [ 80%] 2023-08-09T11:58:48.4109278Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_10_257_False PASSED [ 80%] 2023-08-09T11:58:48.4109878Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_10_257_True PASSED [ 80%] 2023-08-09T11:58:48.4110525Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_10_3_False PASSED [ 80%] 2023-08-09T11:58:48.4111115Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_10_3_True PASSED [ 81%] 2023-08-09T11:58:48.4111716Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_10_513_False PASSED [ 81%] 2023-08-09T11:58:48.4112408Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_10_513_True PASSED [ 81%] 2023-08-09T11:58:48.4113013Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_10_65_False PASSED [ 81%] 2023-08-09T11:58:48.4113605Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_10_65_True PASSED [ 81%] 2023-08-09T11:58:48.4114200Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_1_1025_False PASSED [ 81%] 2023-08-09T11:58:48.4114797Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_1_1025_True PASSED [ 81%] 2023-08-09T11:58:48.4115404Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_1_129_False PASSED [ 81%] 2023-08-09T11:58:48.4115997Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_1_129_True PASSED [ 81%] 2023-08-09T11:58:48.4116593Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_1_1_False PASSED [ 81%] 2023-08-09T11:58:48.4117193Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_1_1_True PASSED [ 81%] 2023-08-09T11:58:48.4117795Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_1_257_False PASSED [ 81%] 2023-08-09T11:58:48.4118396Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_1_257_True PASSED [ 81%] 2023-08-09T11:58:48.4118995Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_1_3_False PASSED [ 81%] 2023-08-09T11:58:48.4119640Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_1_3_True PASSED [ 81%] 2023-08-09T11:58:48.4120247Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_1_513_False PASSED [ 81%] 2023-08-09T11:58:48.4120850Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_1_513_True PASSED [ 81%] 2023-08-09T11:58:48.4121442Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_1_65_False PASSED [ 81%] 2023-08-09T11:58:48.4122052Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_1_65_True PASSED [ 81%] 2023-08-09T11:58:48.4122655Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_2_5_1025_False PASSED [ 81%] 2023-08-09T11:58:48.4123264Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_2_5_1025_True PASSED [ 81%] 2023-08-09T11:58:48.4123871Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_2_5_129_False PASSED [ 81%] 2023-08-09T11:58:48.4124466Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_2_5_129_True PASSED [ 81%] 2023-08-09T11:58:48.4125064Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_2_5_1_False PASSED [ 81%] 2023-08-09T11:58:48.4125713Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_2_5_1_True PASSED [ 81%] 2023-08-09T11:58:48.4126319Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_2_5_257_False PASSED [ 81%] 2023-08-09T11:58:48.4126911Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_2_5_257_True PASSED [ 81%] 2023-08-09T11:58:48.4127676Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_2_5_3_False PASSED [ 82%] 2023-08-09T11:58:48.4128277Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_2_5_3_True PASSED [ 82%] 2023-08-09T11:58:48.4128879Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_2_5_513_False PASSED [ 82%] 2023-08-09T11:58:48.4129478Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_2_5_513_True PASSED [ 82%] 2023-08-09T11:58:48.4130077Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_2_5_65_False PASSED [ 82%] 2023-08-09T11:58:48.4130676Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_2_5_65_True PASSED [ 82%] 2023-08-09T11:58:48.4131280Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_3_5_7_1025_False PASSED [ 82%] 2023-08-09T11:58:49.0966092Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_3_5_7_1025_True PASSED [ 82%] 2023-08-09T11:58:49.0966963Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_3_5_7_129_False PASSED [ 82%] 2023-08-09T11:58:49.0968407Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_3_5_7_129_True PASSED [ 82%] 2023-08-09T11:58:49.0969182Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_3_5_7_1_False PASSED [ 82%] 2023-08-09T11:58:49.0969931Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_3_5_7_1_True PASSED [ 82%] 2023-08-09T11:58:49.0970686Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_3_5_7_257_False PASSED [ 82%] 2023-08-09T11:58:49.0971445Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_3_5_7_257_True PASSED [ 82%] 2023-08-09T11:58:49.0972194Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_3_5_7_3_False PASSED [ 82%] 2023-08-09T11:58:49.0972940Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_3_5_7_3_True PASSED [ 82%] 2023-08-09T11:58:49.0973693Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_3_5_7_513_False PASSED [ 82%] 2023-08-09T11:58:49.0974444Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_3_5_7_513_True PASSED [ 82%] 2023-08-09T11:58:49.0975186Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_3_5_7_65_False PASSED [ 82%] 2023-08-09T11:58:49.0976160Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_3_5_7_65_True PASSED [ 82%] 2023-08-09T11:58:49.0976894Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_size_False PASSED [ 82%] 2023-08-09T11:58:49.0977626Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_size_True PASSED [ 82%] 2023-08-09T11:58:49.0978384Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_1000_1_16000 PASSED [ 82%] 2023-08-09T11:58:49.0979155Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_1000_1_8000 PASSED [ 82%] 2023-08-09T11:58:49.0979923Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_1000_2_16000 PASSED [ 82%] 2023-08-09T11:58:49.0980706Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_1000_2_8000 PASSED [ 82%] 2023-08-09T11:58:49.0981504Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_1000_4_16000 PASSED [ 82%] 2023-08-09T11:58:49.0982259Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_1000_4_8000 PASSED [ 83%] 2023-08-09T11:58:49.0983004Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_1000_8_16000 PASSED [ 83%] 2023-08-09T11:58:49.0983761Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_1000_8_8000 PASSED [ 83%] 2023-08-09T11:58:49.0984528Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_100_1_16000 PASSED [ 83%] 2023-08-09T11:58:49.0985355Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_100_1_8000 PASSED [ 83%] 2023-08-09T11:58:49.0986120Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_100_2_16000 PASSED [ 83%] 2023-08-09T11:58:49.0986870Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_100_2_8000 PASSED [ 83%] 2023-08-09T11:58:49.0987624Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_100_4_16000 PASSED [ 83%] 2023-08-09T11:58:49.0988386Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_100_4_8000 PASSED [ 83%] 2023-08-09T11:58:49.0989152Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_100_8_16000 PASSED [ 83%] 2023-08-09T11:58:49.0989902Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_100_8_8000 PASSED [ 83%] 2023-08-09T11:58:49.0990652Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_10_1_16000 PASSED [ 83%] 2023-08-09T11:58:49.0991405Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_10_1_8000 PASSED [ 83%] 2023-08-09T11:58:49.0992157Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_10_2_16000 PASSED [ 83%] 2023-08-09T11:58:49.0992969Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_10_2_8000 PASSED [ 83%] 2023-08-09T11:58:49.0993732Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_10_4_16000 PASSED [ 83%] 2023-08-09T11:58:49.0994480Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_10_4_8000 PASSED [ 83%] 2023-08-09T11:58:49.0995231Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_10_8_16000 PASSED [ 83%] 2023-08-09T11:58:49.0995984Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_10_8_8000 PASSED [ 83%] 2023-08-09T11:58:49.0996731Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_1_1_16000 PASSED [ 83%] 2023-08-09T11:58:49.0997490Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_1_1_8000 PASSED [ 83%] 2023-08-09T11:58:49.0998247Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_1_2_16000 PASSED [ 83%] 2023-08-09T11:58:49.0999005Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_1_2_8000 PASSED [ 83%] 2023-08-09T11:58:49.0999757Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_1_4_16000 PASSED [ 83%] 2023-08-09T11:58:49.1000569Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_1_4_8000 PASSED [ 83%] 2023-08-09T11:58:49.1001326Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_1_8_16000 PASSED [ 83%] 2023-08-09T11:58:49.1002176Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_1_8_8000 PASSED [ 83%] 2023-08-09T11:58:49.1002946Z torchaudio_unittest/prototype/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_chroma_filterbank PASSED [ 84%] 2023-08-09T11:58:49.1003754Z torchaudio_unittest/prototype/functional/torchscript_consistency_cuda_test.py::TorchScriptConsistencyCUDAFloat32Test::test_barkscale_fbanks SKIPPED [ 84%] 2023-08-09T11:58:49.1004604Z torchaudio_unittest/prototype/functional/torchscript_consistency_cuda_test.py::TorchScriptConsistencyCUDAFloat32Test::test_extend_pitch PASSED [ 84%] 2023-08-09T11:58:49.1005441Z torchaudio_unittest/prototype/functional/torchscript_consistency_cuda_test.py::TorchScriptConsistencyCUDAFloat32Test::test_freq_ir PASSED [ 84%] 2023-08-09T11:58:49.1006292Z torchaudio_unittest/prototype/functional/torchscript_consistency_cuda_test.py::TorchScriptConsistencyCUDAFloat32Test::test_oscillator_bank PASSED [ 84%] 2023-08-09T12:05:45.9960681Z torchaudio_unittest/prototype/functional/torchscript_consistency_cuda_test.py::TorchScriptConsistencyCUDAFloat32Test::test_sinc_ir PASSED [ 84%] 2023-08-09T12:05:45.9961609Z torchaudio_unittest/prototype/functional/torchscript_consistency_cuda_test.py::TorchScriptConsistencyCUDAFloat64Test::test_barkscale_fbanks SKIPPED [ 84%] 2023-08-09T12:05:45.9964347Z torchaudio_unittest/prototype/functional/torchscript_consistency_cuda_test.py::TorchScriptConsistencyCUDAFloat64Test::test_extend_pitch PASSED [ 84%] 2023-08-09T12:05:45.9965500Z torchaudio_unittest/prototype/functional/torchscript_consistency_cuda_test.py::TorchScriptConsistencyCUDAFloat64Test::test_freq_ir PASSED [ 84%] 2023-08-09T12:05:45.9966246Z torchaudio_unittest/prototype/functional/torchscript_consistency_cuda_test.py::TorchScriptConsistencyCUDAFloat64Test::test_oscillator_bank PASSED [ 84%] 2023-08-09T12:05:45.9967008Z torchaudio_unittest/prototype/functional/torchscript_consistency_cuda_test.py::TorchScriptConsistencyCUDAFloat64Test::test_sinc_ir PASSED [ 84%] 2023-08-09T12:05:45.9967783Z torchaudio_unittest/prototype/hifi_gan/hifi_gan_gpu_test.py::HiFiGANFloat32CPUTest::test_mel_transform PASSED [ 84%] 2023-08-09T12:05:45.9968481Z torchaudio_unittest/prototype/hifi_gan/hifi_gan_gpu_test.py::HiFiGANFloat32CPUTest::test_original_implementation_match PASSED [ 84%] 2023-08-09T12:05:45.9969067Z torchaudio_unittest/prototype/hifi_gan/hifi_gan_gpu_test.py::HiFiGANFloat32CPUTest::test_output_shape_forward PASSED [ 84%] 2023-08-09T12:05:45.9969716Z torchaudio_unittest/prototype/hifi_gan/hifi_gan_gpu_test.py::HiFiGANFloat32CPUTest::test_smoke_0 PASSED [ 84%] 2023-08-09T12:05:45.9970265Z torchaudio_unittest/prototype/hifi_gan/hifi_gan_gpu_test.py::HiFiGANFloat32CPUTest::test_smoke_1 PASSED [ 84%] 2023-08-09T12:05:45.9970809Z torchaudio_unittest/prototype/hifi_gan/hifi_gan_gpu_test.py::HiFiGANFloat32CPUTest::test_smoke_2 PASSED [ 84%] 2023-08-09T12:05:45.9971374Z torchaudio_unittest/prototype/hifi_gan/hifi_gan_gpu_test.py::HiFiGANFloat32CPUTest::test_torchscript_consistency_forward PASSED [ 84%] 2023-08-09T12:05:45.9971979Z torchaudio_unittest/prototype/hifi_gan/hifi_gan_gpu_test.py::HiFiGANFloat64CPUTest::test_mel_transform PASSED [ 84%] 2023-08-09T12:05:45.9972582Z torchaudio_unittest/prototype/hifi_gan/hifi_gan_gpu_test.py::HiFiGANFloat64CPUTest::test_original_implementation_match PASSED [ 84%] 2023-08-09T12:05:45.9973423Z torchaudio_unittest/prototype/hifi_gan/hifi_gan_gpu_test.py::HiFiGANFloat64CPUTest::test_output_shape_forward PASSED [ 84%] 2023-08-09T12:05:45.9974457Z torchaudio_unittest/prototype/hifi_gan/hifi_gan_gpu_test.py::HiFiGANFloat64CPUTest::test_smoke_0 PASSED [ 84%] 2023-08-09T12:05:45.9975389Z torchaudio_unittest/prototype/hifi_gan/hifi_gan_gpu_test.py::HiFiGANFloat64CPUTest::test_smoke_1 PASSED [ 84%] 2023-08-09T12:05:45.9976015Z torchaudio_unittest/prototype/hifi_gan/hifi_gan_gpu_test.py::HiFiGANFloat64CPUTest::test_smoke_2 PASSED [ 84%] 2023-08-09T12:05:45.9976590Z torchaudio_unittest/prototype/hifi_gan/hifi_gan_gpu_test.py::HiFiGANFloat64CPUTest::test_torchscript_consistency_forward PASSED [ 84%] 2023-08-09T12:05:45.9977151Z torchaudio_unittest/prototype/transforms/autograd_cuda_test.py::AutogradCUDATest::test_barkscale PASSED [ 84%] 2023-08-09T12:05:45.9977712Z torchaudio_unittest/prototype/transforms/autograd_cuda_test.py::AutogradCUDATest::test_barkspectrogram PASSED [ 84%] 2023-08-09T12:05:45.9978271Z torchaudio_unittest/prototype/transforms/autograd_cuda_test.py::AutogradCUDATest::test_chroma_scale PASSED [ 85%] 2023-08-09T12:05:45.9978853Z torchaudio_unittest/prototype/transforms/autograd_cuda_test.py::AutogradCUDATest::test_chroma_spectrogram PASSED [ 85%] 2023-08-09T12:05:45.9979444Z torchaudio_unittest/prototype/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_chroma_spectrogram_0 PASSED [ 85%] 2023-08-09T12:05:45.9980038Z torchaudio_unittest/prototype/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_chroma_spectrogram_1 PASSED [ 85%] 2023-08-09T12:05:45.9980631Z torchaudio_unittest/prototype/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_chroma_spectrogram_2 PASSED [ 85%] 2023-08-09T12:05:45.9981333Z torchaudio_unittest/prototype/transforms/transforms_cuda_test.py::TransformsFloat32CUDATest::test_InverseBarkScale PASSED [ 85%] 2023-08-09T12:05:45.9981974Z torchaudio_unittest/prototype/transforms/transforms_cuda_test.py::TransformsFloat64CUDATest::test_InverseBarkScale PASSED [ 85%] 2023-08-09T12:05:45.9982552Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_add_noise_False PASSED [ 85%] 2023-08-09T12:05:45.9983080Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_add_noise_True PASSED [ 85%] 2023-08-09T12:05:45.9983606Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_amplitude_to_db PASSED [ 85%] 2023-08-09T12:05:45.9984131Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_compute_deltas PASSED [ 85%] 2023-08-09T12:05:45.9984660Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_convolve_Convolve_full PASSED [ 85%] 2023-08-09T12:05:45.9985203Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_convolve_Convolve_same PASSED [ 85%] 2023-08-09T12:05:45.9985758Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_convolve_Convolve_valid PASSED [ 85%] 2023-08-09T12:05:45.9986309Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_convolve_FFTConvolve_full PASSED [ 85%] 2023-08-09T12:05:45.9986851Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_convolve_FFTConvolve_same PASSED [ 85%] 2023-08-09T12:05:45.9987403Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_convolve_FFTConvolve_valid PASSED [ 85%] 2023-08-09T12:05:45.9987938Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_deemphasis PASSED [ 85%] 2023-08-09T12:05:45.9988459Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_fade_0_linear PASSED [ 85%] 2023-08-09T12:05:45.9989033Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_fade_1_exponential PASSED [ 85%] 2023-08-09T12:05:45.9989562Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_fade_2_logarithmic PASSED [ 85%] 2023-08-09T12:05:45.9990099Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_fade_3_quarter_sine PASSED [ 85%] 2023-08-09T12:05:45.9990623Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_fade_4_half_sine PASSED [ 85%] 2023-08-09T12:05:45.9991150Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_griffinlim_0_99_False PASSED [ 85%] 2023-08-09T12:05:45.9991692Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_griffinlim_0_99_True PASSED [ 85%] 2023-08-09T12:05:45.9992269Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_griffinlim_0_False PASSED [ 85%] 2023-08-09T12:05:45.9992803Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_griffinlim_0_True PASSED [ 85%] 2023-08-09T12:05:45.9993331Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_inverse_spectrogram PASSED [ 86%] 2023-08-09T12:05:45.9993845Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_lfcc_0 PASSED [ 86%] 2023-08-09T12:05:45.9994351Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_lfcc_1 PASSED [ 86%] 2023-08-09T12:05:45.9994856Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_masking_0 PASSED [ 86%] 2023-08-09T12:05:45.9995411Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_masking_1 PASSED [ 86%] 2023-08-09T12:05:45.9995927Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_masking_iid_0 PASSED [ 86%] 2023-08-09T12:05:45.9996447Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_masking_iid_1 PASSED [ 86%] 2023-08-09T12:05:45.9996950Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_melscale PASSED [ 86%] 2023-08-09T12:05:45.9997463Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_melspectrogram PASSED [ 86%] 2023-08-09T12:05:45.9997975Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_mfcc_0 PASSED [ 86%] 2023-08-09T12:05:45.9998473Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_mfcc_1 PASSED [ 86%] 2023-08-09T12:05:45.9998988Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_mvdr_0_ref_channel PASSED [ 86%] 2023-08-09T12:14:25.5984749Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_preemphasis PASSED [ 86%] 2023-08-09T12:14:25.5985462Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_psd PASSED [ 86%] 2023-08-09T12:14:25.5986135Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_psd_with_mask_0 PASSED [ 86%] 2023-08-09T12:14:25.5990029Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_psd_with_mask_1 PASSED [ 86%] 2023-08-09T12:14:25.5990699Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_resample_0 PASSED [ 86%] 2023-08-09T12:14:25.5991367Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_resample_1 PASSED [ 86%] 2023-08-09T12:14:25.5991993Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_resample_2 PASSED [ 86%] 2023-08-09T12:14:25.5992877Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_rtf_mvdr PASSED [ 86%] 2023-08-09T12:14:25.5993548Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_sliding_window_cmn_0 PASSED [ 86%] 2023-08-09T12:14:25.6050428Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_sliding_window_cmn_1 PASSED [ 86%] 2023-08-09T12:14:25.6051206Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_sliding_window_cmn_2 PASSED [ 86%] 2023-08-09T12:14:25.6051911Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_sliding_window_cmn_3 PASSED [ 86%] 2023-08-09T12:14:25.6052619Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_souden_mvdr PASSED [ 86%] 2023-08-09T12:14:25.6053310Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectral_centroid PASSED [ 86%] 2023-08-09T12:14:25.6054035Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_00 PASSED [ 86%] 2023-08-09T12:14:25.6054836Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_01 PASSED [ 87%] 2023-08-09T12:14:25.6055536Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_02 PASSED [ 87%] 2023-08-09T12:14:25.6056220Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_03 PASSED [ 87%] 2023-08-09T12:14:25.6098562Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_04 PASSED [ 87%] 2023-08-09T12:14:25.6099694Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_05 PASSED [ 87%] 2023-08-09T12:14:25.6100380Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_06 PASSED [ 87%] 2023-08-09T12:14:25.6101069Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_07 PASSED [ 87%] 2023-08-09T12:14:25.6101746Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_08 PASSED [ 87%] 2023-08-09T12:14:25.6102411Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_09 PASSED [ 87%] 2023-08-09T12:14:25.6103086Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_10 PASSED [ 87%] 2023-08-09T12:14:25.6103771Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_11 PASSED [ 87%] 2023-08-09T12:14:25.6104443Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_12 PASSED [ 87%] 2023-08-09T12:14:25.6136250Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_13 PASSED [ 87%] 2023-08-09T12:14:25.6137049Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_14 PASSED [ 87%] 2023-08-09T12:14:25.6137735Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_15 PASSED [ 87%] 2023-08-09T12:14:25.6138388Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_speed PASSED [ 87%] 2023-08-09T12:14:25.6139058Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_speed_perturbation PASSED [ 87%] 2023-08-09T12:14:25.6139752Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_time_masking_p PASSED [ 87%] 2023-08-09T12:14:25.6140443Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_timestretch_non_zero_0_7 PASSED [ 87%] 2023-08-09T12:14:25.6141321Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_timestretch_non_zero_0_8 PASSED [ 87%] 2023-08-09T12:14:25.6142018Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_timestretch_non_zero_0_9 PASSED [ 87%] 2023-08-09T12:14:25.6142721Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_timestretch_non_zero_1_0 PASSED [ 87%] 2023-08-09T12:14:25.6143413Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_timestretch_non_zero_1_3 PASSED [ 87%] 2023-08-09T12:14:25.6144101Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_timestretch_zeros_fail XFAIL [ 87%] 2023-08-09T12:14:25.6144768Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_vol_0 PASSED [ 87%] 2023-08-09T12:14:25.6145431Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_vol_1 PASSED [ 87%] 2023-08-09T12:14:25.6234785Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_vol_2 PASSED [ 87%] 2023-08-09T12:14:25.6235544Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradRNNTCUDATest::test_rnnt_loss_0 PASSED [ 88%] 2023-08-09T12:14:25.6241800Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradRNNTCUDATest::test_rnnt_loss_1 PASSED [ 88%] 2023-08-09T12:14:25.6242464Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradRNNTCUDATest::test_rnnt_loss_2 PASSED [ 88%] 2023-08-09T12:14:25.6243367Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_MelSpectrogram_00 PASSED [ 88%] 2023-08-09T12:14:25.6244066Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_MelSpectrogram_01 PASSED [ 88%] 2023-08-09T12:14:25.6244763Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_MelSpectrogram_02 PASSED [ 88%] 2023-08-09T12:14:25.6245451Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_MelSpectrogram_03 PASSED [ 88%] 2023-08-09T12:14:25.6246140Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_MelSpectrogram_04 PASSED [ 88%] 2023-08-09T12:14:25.6246821Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_MelSpectrogram_05 PASSED [ 88%] 2023-08-09T12:14:25.6247711Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_MelSpectrogram_06 PASSED [ 88%] 2023-08-09T12:14:25.6248423Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_MelSpectrogram_07 PASSED [ 88%] 2023-08-09T12:14:25.6249132Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_MelSpectrogram_08 PASSED [ 88%] 2023-08-09T12:14:25.6249865Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_MelSpectrogram_09 PASSED [ 88%] 2023-08-09T12:14:25.6250575Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_MelSpectrogram_10 PASSED [ 88%] 2023-08-09T12:14:25.6251312Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_MelSpectrogram_11 PASSED [ 88%] 2023-08-09T12:14:25.6252011Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_Spectrogram_0 PASSED [ 88%] 2023-08-09T12:14:25.6252700Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_Spectrogram_1 PASSED [ 88%] 2023-08-09T12:14:25.6253523Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_Spectrogram_2 PASSED [ 88%] 2023-08-09T12:14:25.6254202Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_Spectrogram_3 PASSED [ 88%] 2023-08-09T12:14:25.6255036Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_Spectrogram_complex PASSED [ 88%] 2023-08-09T12:14:25.6255781Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_magnitude_to_db PASSED [ 88%] 2023-08-09T12:14:25.6256437Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_mfcc_0 PASSED [ 88%] 2023-08-09T12:14:28.9347654Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_mfcc_1 PASSED [ 88%] 2023-08-09T12:14:28.9348337Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_mfcc_2 PASSED [ 88%] 2023-08-09T12:14:28.9348952Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_power_to_db PASSED [ 88%] 2023-08-09T12:14:28.9349555Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_spectral_centroid_0 PASSED [ 88%] 2023-08-09T12:14:28.9350201Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_spectral_centroid_1 PASSED [ 88%] 2023-08-09T12:14:28.9350814Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_spectral_centroid_2 PASSED [ 89%] 2023-08-09T12:14:28.9351771Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_AmplitudeToDB PASSED [ 89%] 2023-08-09T12:14:28.9352398Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_ComputeDelta PASSED [ 89%] 2023-08-09T12:14:28.9353024Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_Fade PASSED [ 89%] 2023-08-09T12:14:28.9353663Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_FrequencyMasking PASSED [ 89%] 2023-08-09T12:14:28.9354333Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_GriffinLim PASSED [ 89%] 2023-08-09T12:14:28.9355122Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_InverseSpectrogram PASSED [ 89%] 2023-08-09T12:14:28.9355863Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_LFCC PASSED [ 89%] 2023-08-09T12:14:28.9356554Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_MFCC PASSED [ 89%] 2023-08-09T12:14:28.9357260Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_MVDR_0_ref_channel PASSED [ 89%] 2023-08-09T12:14:28.9357981Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_MVDR_1_stv_evd PASSED [ 89%] 2023-08-09T12:14:28.9358694Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_MVDR_2_stv_power PASSED [ 89%] 2023-08-09T12:14:28.9359411Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_MVDR_3_ref_channel PASSED [ 89%] 2023-08-09T12:14:28.9360128Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_MVDR_4_stv_evd PASSED [ 89%] 2023-08-09T12:14:28.9360841Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_MVDR_5_stv_power PASSED [ 89%] 2023-08-09T12:14:28.9361737Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_MelScale PASSED [ 89%] 2023-08-09T12:14:28.9362462Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_MelSpectrogram PASSED [ 89%] 2023-08-09T12:14:28.9363185Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_MuLawDecoding PASSED [ 89%] 2023-08-09T12:14:28.9363893Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_MuLawEncoding PASSED [ 89%] 2023-08-09T12:14:28.9364590Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_PSD PASSED [ 89%] 2023-08-09T12:14:28.9365298Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_PSD_with_mask PASSED [ 89%] 2023-08-09T12:14:28.9366013Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_PitchShift PASSED [ 89%] 2023-08-09T12:14:28.9366738Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_Resample PASSED [ 89%] 2023-08-09T12:14:28.9367694Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_SlidingWindowCmn PASSED [ 89%] 2023-08-09T12:14:28.9368441Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_SpectralCentroid PASSED [ 89%] 2023-08-09T12:14:28.9369267Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_Spectrogram PASSED [ 89%] 2023-08-09T12:14:28.9370003Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_Spectrogram_return_complex PASSED [ 89%] 2023-08-09T12:14:28.9370744Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_TimeMasking PASSED [ 90%] 2023-08-09T12:14:28.9371454Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_TimeStretch PASSED [ 90%] 2023-08-09T12:14:28.9372143Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_Vad PASSED [ 90%] 2023-08-09T12:14:28.9372817Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_Vol PASSED [ 90%] 2023-08-09T12:14:28.9373534Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_add_noise_False PASSED [ 90%] 2023-08-09T12:14:28.9374254Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_add_noise_True PASSED [ 90%] 2023-08-09T12:14:28.9375116Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_convolve_Convolve_full PASSED [ 90%] 2023-08-09T12:14:28.9375855Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_convolve_Convolve_same PASSED [ 90%] 2023-08-09T12:14:28.9376640Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_convolve_Convolve_valid PASSED [ 90%] 2023-08-09T12:14:28.9377410Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_convolve_FFTConvolve_full PASSED [ 90%] 2023-08-09T12:14:28.9378174Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_convolve_FFTConvolve_same PASSED [ 90%] 2023-08-09T12:14:28.9379009Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_convolve_FFTConvolve_valid PASSED [ 90%] 2023-08-09T12:14:28.9379733Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_deemphasis PASSED [ 90%] 2023-08-09T12:14:28.9380452Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_preemphasis PASSED [ 90%] 2023-08-09T12:14:28.9381161Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_rnnt_loss PASSED [ 90%] 2023-08-09T12:14:28.9381866Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_rtf_mvdr PASSED [ 90%] 2023-08-09T12:14:28.9382566Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_souden_mvdr PASSED [ 90%] 2023-08-09T12:14:28.9383279Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_speed_False PASSED [ 90%] 2023-08-09T12:14:28.9383985Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_speed_True PASSED [ 90%] 2023-08-09T12:14:28.9384720Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_speed_perturbation_False PASSED [ 90%] 2023-08-09T12:14:28.9385465Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_speed_perturbation_True PASSED [ 90%] 2023-08-09T12:14:28.9386201Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_AmplitudeToDB PASSED [ 90%] 2023-08-09T12:14:28.9386998Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_ComputeDelta PASSED [ 90%] 2023-08-09T12:14:28.9387708Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_Fade PASSED [ 90%] 2023-08-09T12:14:28.9388412Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_FrequencyMasking PASSED [ 90%] 2023-08-09T12:14:28.9389133Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_GriffinLim PASSED [ 90%] 2023-08-09T12:14:33.4379753Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_InverseSpectrogram PASSED [ 90%] 2023-08-09T12:14:33.4380762Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_LFCC PASSED [ 91%] 2023-08-09T12:14:33.4381500Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_MFCC PASSED [ 91%] 2023-08-09T12:14:33.4382221Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_MVDR_0_ref_channel PASSED [ 91%] 2023-08-09T12:14:33.4382947Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_MVDR_1_stv_evd PASSED [ 91%] 2023-08-09T12:14:33.4383671Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_MVDR_2_stv_power PASSED [ 91%] 2023-08-09T12:14:33.4384395Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_MVDR_3_ref_channel PASSED [ 91%] 2023-08-09T12:14:33.4385104Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_MVDR_4_stv_evd PASSED [ 91%] 2023-08-09T12:14:33.4385827Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_MVDR_5_stv_power PASSED [ 91%] 2023-08-09T12:14:33.4386822Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_MelScale PASSED [ 91%] 2023-08-09T12:14:33.4387549Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_MelSpectrogram PASSED [ 91%] 2023-08-09T12:14:33.4388261Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_MuLawDecoding PASSED [ 91%] 2023-08-09T12:14:33.4388975Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_MuLawEncoding PASSED [ 91%] 2023-08-09T12:14:33.4389672Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_PSD PASSED [ 91%] 2023-08-09T12:14:33.4390385Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_PSD_with_mask PASSED [ 91%] 2023-08-09T12:14:33.4391087Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_PitchShift PASSED [ 91%] 2023-08-09T12:14:33.4391793Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_Resample PASSED [ 91%] 2023-08-09T12:14:33.4392514Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_SlidingWindowCmn PASSED [ 91%] 2023-08-09T12:14:33.4393245Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_SpectralCentroid PASSED [ 91%] 2023-08-09T12:14:33.4393956Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_Spectrogram PASSED [ 91%] 2023-08-09T12:14:33.4394802Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_Spectrogram_return_complex PASSED [ 91%] 2023-08-09T12:14:33.4395541Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_TimeMasking PASSED [ 91%] 2023-08-09T12:14:33.4396248Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_TimeStretch PASSED [ 91%] 2023-08-09T12:14:33.4396924Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_Vad PASSED [ 91%] 2023-08-09T12:14:33.4397607Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_Vol PASSED [ 91%] 2023-08-09T12:14:33.4398340Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_add_noise_False PASSED [ 91%] 2023-08-09T12:14:33.4399085Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_add_noise_True PASSED [ 91%] 2023-08-09T12:14:33.4399821Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_convolve_Convolve_full PASSED [ 91%] 2023-08-09T12:14:33.4400577Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_convolve_Convolve_same PASSED [ 92%] 2023-08-09T12:14:33.4401321Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_convolve_Convolve_valid PASSED [ 92%] 2023-08-09T12:14:33.4402071Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_convolve_FFTConvolve_full PASSED [ 92%] 2023-08-09T12:14:33.4402831Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_convolve_FFTConvolve_same PASSED [ 92%] 2023-08-09T12:14:33.4403571Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_convolve_FFTConvolve_valid PASSED [ 92%] 2023-08-09T12:14:33.4404359Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_deemphasis PASSED [ 92%] 2023-08-09T12:14:33.4405080Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_preemphasis PASSED [ 92%] 2023-08-09T12:14:33.4405782Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_rtf_mvdr PASSED [ 92%] 2023-08-09T12:14:33.4406468Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_souden_mvdr PASSED [ 92%] 2023-08-09T12:14:33.4407176Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_speed_False PASSED [ 92%] 2023-08-09T12:14:33.4408268Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_speed_True PASSED [ 92%] 2023-08-09T12:14:33.4409014Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_speed_perturbation_False PASSED [ 92%] 2023-08-09T12:14:33.4409767Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_speed_perturbation_True PASSED [ 92%] 2023-08-09T12:14:33.4410480Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_add_noise_broadcast PASSED [ 92%] 2023-08-09T12:14:33.4411204Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_add_noise_leading_dim_check_0 PASSED [ 92%] 2023-08-09T12:14:33.4412054Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_add_noise_leading_dim_check_1 PASSED [ 92%] 2023-08-09T12:14:33.4412791Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_add_noise_leading_dim_check_2 PASSED [ 92%] 2023-08-09T12:14:33.4413493Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_add_noise_length_check PASSED [ 92%] 2023-08-09T12:14:33.4414206Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve_10_4_100_43_full PASSED [ 92%] 2023-08-09T12:14:33.4415028Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve_10_4_100_43_same PASSED [ 92%] 2023-08-09T12:14:33.4415739Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve_10_4_100_43_valid PASSED [ 92%] 2023-08-09T12:14:33.4416448Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve_10_4_21_45_full PASSED [ 92%] 2023-08-09T12:14:33.4417151Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve_10_4_21_45_same PASSED [ 92%] 2023-08-09T12:14:33.4417859Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve_10_4_21_45_valid PASSED [ 92%] 2023-08-09T12:14:33.4418560Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve_2_100_43_full PASSED [ 92%] 2023-08-09T12:14:33.4419242Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve_2_100_43_same PASSED [ 92%] 2023-08-09T12:14:33.4419947Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve_2_100_43_valid PASSED [ 92%] 2023-08-09T12:14:33.4420656Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve_2_21_45_full PASSED [ 93%] 2023-08-09T12:14:33.4421446Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve_2_21_45_same PASSED [ 93%] 2023-08-09T12:14:33.7381999Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve_2_21_45_valid PASSED [ 93%] 2023-08-09T12:14:33.7382779Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve_4_3_1_2_100_43_full PASSED [ 93%] 2023-08-09T12:14:33.7383496Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve_4_3_1_2_100_43_same PASSED [ 93%] 2023-08-09T12:14:33.7384211Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve_4_3_1_2_100_43_valid PASSED [ 93%] 2023-08-09T12:14:33.7384946Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve_4_3_1_2_21_45_full PASSED [ 93%] 2023-08-09T12:14:33.7385672Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve_4_3_1_2_21_45_same PASSED [ 93%] 2023-08-09T12:14:33.7386381Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve_4_3_1_2_21_45_valid PASSED [ 93%] 2023-08-09T12:14:33.7387086Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve__100_43_full PASSED [ 93%] 2023-08-09T12:14:33.7387793Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve__100_43_same PASSED [ 93%] 2023-08-09T12:14:33.7388816Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve__100_43_valid PASSED [ 93%] 2023-08-09T12:14:33.7389511Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve__21_45_full PASSED [ 93%] 2023-08-09T12:14:33.7390218Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve__21_45_same PASSED [ 93%] 2023-08-09T12:14:33.7390914Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve__21_45_valid PASSED [ 93%] 2023-08-09T12:14:33.7391623Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_deemphasis_2_1_31_0_72 PASSED [ 93%] 2023-08-09T12:14:33.7392317Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_deemphasis_2_1_31_0_97 PASSED [ 93%] 2023-08-09T12:14:33.7393033Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve_10_4_100_43_full PASSED [ 93%] 2023-08-09T12:14:33.7393759Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve_10_4_100_43_same PASSED [ 93%] 2023-08-09T12:14:33.7394487Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve_10_4_100_43_valid PASSED [ 93%] 2023-08-09T12:14:33.7395201Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve_10_4_21_45_full PASSED [ 93%] 2023-08-09T12:14:33.7395904Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve_10_4_21_45_same PASSED [ 93%] 2023-08-09T12:14:33.7396614Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve_10_4_21_45_valid PASSED [ 93%] 2023-08-09T12:14:33.7397331Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve_2_100_43_full PASSED [ 93%] 2023-08-09T12:14:33.7398038Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve_2_100_43_same PASSED [ 93%] 2023-08-09T12:14:33.7398872Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve_2_100_43_valid PASSED [ 93%] 2023-08-09T12:14:33.7399582Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve_2_21_45_full PASSED [ 93%] 2023-08-09T12:14:33.7400287Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve_2_21_45_same PASSED [ 94%] 2023-08-09T12:14:33.7400995Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve_2_21_45_valid PASSED [ 94%] 2023-08-09T12:14:33.7401724Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve_4_3_1_2_100_43_full PASSED [ 94%] 2023-08-09T12:14:33.7402443Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve_4_3_1_2_100_43_same PASSED [ 94%] 2023-08-09T12:14:33.7403159Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve_4_3_1_2_100_43_valid PASSED [ 94%] 2023-08-09T12:14:33.7403878Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve_4_3_1_2_21_45_full PASSED [ 94%] 2023-08-09T12:14:33.7404590Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve_4_3_1_2_21_45_same PASSED [ 94%] 2023-08-09T12:14:33.7405300Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve_4_3_1_2_21_45_valid PASSED [ 94%] 2023-08-09T12:14:33.7406084Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve__100_43_full PASSED [ 94%] 2023-08-09T12:14:33.7406799Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve__100_43_same PASSED [ 94%] 2023-08-09T12:14:33.7407731Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve__100_43_valid PASSED [ 94%] 2023-08-09T12:14:33.7408447Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve__21_45_full PASSED [ 94%] 2023-08-09T12:14:33.7409137Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve__21_45_same PASSED [ 94%] 2023-08-09T12:14:33.7409834Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve__21_45_valid PASSED [ 94%] 2023-08-09T12:14:33.7410544Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_freq_masking_100_200 PASSED [ 94%] 2023-08-09T12:14:33.7411250Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_freq_masking_50_50_100_200 PASSED [ 94%] 2023-08-09T12:14:33.7411931Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_freq_masking_5_10_20 PASSED [ 94%] 2023-08-09T12:14:33.7412621Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_inverse_melscale PASSED [ 94%] 2023-08-09T12:14:33.7413296Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_mvdr_0 PASSED [ 94%] 2023-08-09T12:14:33.7413949Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_mvdr_1 PASSED [ 94%] 2023-08-09T12:14:33.7414773Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_pitch_shift_resample_kernel PASSED [ 94%] 2023-08-09T12:14:33.7415611Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_preemphasis_2_1_31_0_72 PASSED [ 94%] 2023-08-09T12:14:33.7416313Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_preemphasis_2_1_31_0_97 PASSED [ 94%] 2023-08-09T12:14:33.7416988Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_psd_0 PASSED [ 94%] 2023-08-09T12:14:33.7417634Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_psd_1 PASSED [ 94%] 2023-08-09T12:14:33.7418289Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_psd_2 PASSED [ 94%] 2023-08-09T12:14:33.7418954Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_psd_3 PASSED [ 94%] 2023-08-09T12:14:33.7419689Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_resample_cache_dtype_sinc_interp_hann_None PASSED [ 95%] 2023-08-09T12:14:33.7420477Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_resample_cache_dtype_sinc_interp_hann_torch_float64 PASSED [ 95%] 2023-08-09T12:14:33.7421265Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_resample_cache_dtype_sinc_interp_kaiser_None PASSED [ 95%] 2023-08-09T12:14:33.7422064Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_resample_cache_dtype_sinc_interp_kaiser_torch_float64 PASSED [ 95%] 2023-08-09T12:14:33.7422940Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_resample_identity_sinc_interp_hann_16000 PASSED [ 95%] 2023-08-09T12:14:33.9926009Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_resample_identity_sinc_interp_hann_44100 PASSED [ 95%] 2023-08-09T12:14:33.9926931Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_resample_identity_sinc_interp_kaiser_16000 PASSED [ 95%] 2023-08-09T12:14:33.9927963Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_resample_identity_sinc_interp_kaiser_44100 PASSED [ 95%] 2023-08-09T12:14:33.9928777Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_roundtrip_spectrogram_0 PASSED [ 95%] 2023-08-09T12:14:33.9929557Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_roundtrip_spectrogram_1 PASSED [ 95%] 2023-08-09T12:14:33.9930285Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_roundtrip_spectrogram_2 PASSED [ 95%] 2023-08-09T12:14:33.9930994Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_roundtrip_spectrogram_3 PASSED [ 95%] 2023-08-09T12:14:33.9931702Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_roundtrip_spectrogram_4 PASSED [ 95%] 2023-08-09T12:14:33.9932417Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_roundtrip_spectrogram_5 PASSED [ 95%] 2023-08-09T12:14:33.9933122Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_roundtrip_spectrogram_6 PASSED [ 95%] 2023-08-09T12:14:33.9933820Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_roundtrip_spectrogram_7 PASSED [ 95%] 2023-08-09T12:14:33.9934653Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_roundtrip_spectrogram_8 PASSED [ 95%] 2023-08-09T12:14:33.9935718Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_specaugment_0 PASSED [ 95%] 2023-08-09T12:14:33.9936419Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_specaugment_1 PASSED [ 95%] 2023-08-09T12:14:33.9937116Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_specaugment_2 PASSED [ 95%] 2023-08-09T12:14:33.9937798Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_specaugment_3 PASSED [ 95%] 2023-08-09T12:14:33.9938528Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_specaugment_4 PASSED [ 95%] 2023-08-09T12:14:33.9939211Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_specaugment_5 PASSED [ 95%] 2023-08-09T12:14:33.9939912Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_speed_accuracy_0_8_False PASSED [ 95%] 2023-08-09T12:14:33.9940622Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_speed_accuracy_0_8_True PASSED [ 95%] 2023-08-09T12:14:33.9941330Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_speed_accuracy_1_1_False PASSED [ 95%] 2023-08-09T12:14:33.9942039Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_speed_accuracy_1_1_True PASSED [ 95%] 2023-08-09T12:14:33.9942745Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_speed_accuracy_1_2_False PASSED [ 96%] 2023-08-09T12:14:33.9943562Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_speed_accuracy_1_2_True PASSED [ 96%] 2023-08-09T12:14:33.9944253Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_speed_identity PASSED [ 96%] 2023-08-09T12:14:33.9944960Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_speed_perturbation PASSED [ 96%] 2023-08-09T12:14:33.9945671Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_time_masking_100_200 PASSED [ 96%] 2023-08-09T12:14:33.9946365Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_time_masking_50_50_100_200 PASSED [ 96%] 2023-08-09T12:14:33.9947058Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_time_masking_5_10_20 PASSED [ 96%] 2023-08-09T12:14:33.9947767Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_add_noise_broadcast PASSED [ 96%] 2023-08-09T12:14:33.9948523Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_add_noise_leading_dim_check_0 PASSED [ 96%] 2023-08-09T12:14:33.9949273Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_add_noise_leading_dim_check_1 PASSED [ 96%] 2023-08-09T12:14:33.9950002Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_add_noise_leading_dim_check_2 PASSED [ 96%] 2023-08-09T12:14:33.9950711Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_add_noise_length_check PASSED [ 96%] 2023-08-09T12:14:33.9951418Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve_10_4_100_43_full PASSED [ 96%] 2023-08-09T12:14:33.9952115Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve_10_4_100_43_same PASSED [ 96%] 2023-08-09T12:14:33.9952890Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve_10_4_100_43_valid PASSED [ 96%] 2023-08-09T12:14:33.9953601Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve_10_4_21_45_full PASSED [ 96%] 2023-08-09T12:14:33.9954295Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve_10_4_21_45_same PASSED [ 96%] 2023-08-09T12:14:33.9954989Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve_10_4_21_45_valid PASSED [ 96%] 2023-08-09T12:14:33.9955690Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve_2_100_43_full PASSED [ 96%] 2023-08-09T12:14:33.9956393Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve_2_100_43_same PASSED [ 96%] 2023-08-09T12:14:33.9957096Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve_2_100_43_valid PASSED [ 96%] 2023-08-09T12:14:33.9957793Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve_2_21_45_full PASSED [ 96%] 2023-08-09T12:14:33.9958485Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve_2_21_45_same PASSED [ 96%] 2023-08-09T12:14:33.9959183Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve_2_21_45_valid PASSED [ 96%] 2023-08-09T12:14:33.9959894Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve_4_3_1_2_100_43_full PASSED [ 96%] 2023-08-09T12:14:33.9960666Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve_4_3_1_2_100_43_same PASSED [ 96%] 2023-08-09T12:14:33.9961376Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve_4_3_1_2_100_43_valid PASSED [ 96%] 2023-08-09T12:14:33.9962088Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve_4_3_1_2_21_45_full PASSED [ 97%] 2023-08-09T12:14:33.9962792Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve_4_3_1_2_21_45_same PASSED [ 97%] 2023-08-09T12:14:33.9963496Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve_4_3_1_2_21_45_valid PASSED [ 97%] 2023-08-09T12:14:33.9964193Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve__100_43_full PASSED [ 97%] 2023-08-09T12:14:33.9964885Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve__100_43_same PASSED [ 97%] 2023-08-09T12:14:33.9965588Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve__100_43_valid PASSED [ 97%] 2023-08-09T12:14:33.9966288Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve__21_45_full PASSED [ 97%] 2023-08-09T12:14:33.9966969Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve__21_45_same PASSED [ 97%] 2023-08-09T12:14:34.3712574Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve__21_45_valid PASSED [ 97%] 2023-08-09T12:14:34.3713398Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_deemphasis_2_1_31_0_72 PASSED [ 97%] 2023-08-09T12:14:34.3714118Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_deemphasis_2_1_31_0_97 PASSED [ 97%] 2023-08-09T12:14:34.3715156Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve_10_4_100_43_full PASSED [ 97%] 2023-08-09T12:14:34.3715901Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve_10_4_100_43_same PASSED [ 97%] 2023-08-09T12:14:34.3716630Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve_10_4_100_43_valid PASSED [ 97%] 2023-08-09T12:14:34.3717357Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve_10_4_21_45_full PASSED [ 97%] 2023-08-09T12:14:34.3718083Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve_10_4_21_45_same PASSED [ 97%] 2023-08-09T12:14:34.3718811Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve_10_4_21_45_valid PASSED [ 97%] 2023-08-09T12:14:34.3719533Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve_2_100_43_full PASSED [ 97%] 2023-08-09T12:14:34.3720236Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve_2_100_43_same PASSED [ 97%] 2023-08-09T12:14:34.3720944Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve_2_100_43_valid PASSED [ 97%] 2023-08-09T12:14:34.3721652Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve_2_21_45_full PASSED [ 97%] 2023-08-09T12:14:34.3722474Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve_2_21_45_same PASSED [ 97%] 2023-08-09T12:14:34.3723182Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve_2_21_45_valid PASSED [ 97%] 2023-08-09T12:14:34.3723906Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve_4_3_1_2_100_43_full PASSED [ 97%] 2023-08-09T12:14:34.3724624Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve_4_3_1_2_100_43_same PASSED [ 97%] 2023-08-09T12:14:34.3725341Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve_4_3_1_2_100_43_valid PASSED [ 97%] 2023-08-09T12:14:34.3726064Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve_4_3_1_2_21_45_full PASSED [ 97%] 2023-08-09T12:14:34.3726785Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve_4_3_1_2_21_45_same PASSED [ 98%] 2023-08-09T12:14:34.3727727Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve_4_3_1_2_21_45_valid PASSED [ 98%] 2023-08-09T12:14:34.3728454Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve__100_43_full PASSED [ 98%] 2023-08-09T12:14:34.3729155Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve__100_43_same PASSED [ 98%] 2023-08-09T12:14:34.3729867Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve__100_43_valid PASSED [ 98%] 2023-08-09T12:14:34.3730562Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve__21_45_full PASSED [ 98%] 2023-08-09T12:14:34.3731269Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve__21_45_same PASSED [ 98%] 2023-08-09T12:14:34.3732061Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve__21_45_valid PASSED [ 98%] 2023-08-09T12:14:34.3732771Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_freq_masking_100_200 PASSED [ 98%] 2023-08-09T12:14:34.3733487Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_freq_masking_50_50_100_200 PASSED [ 98%] 2023-08-09T12:14:34.3734167Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_freq_masking_5_10_20 PASSED [ 98%] 2023-08-09T12:14:34.3734964Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_inverse_melscale PASSED [ 98%] 2023-08-09T12:14:34.3735647Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_mvdr_0 PASSED [ 98%] 2023-08-09T12:14:34.3736305Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_mvdr_1 PASSED [ 98%] 2023-08-09T12:14:34.3737004Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_pitch_shift_resample_kernel PASSED [ 98%] 2023-08-09T12:14:34.3737718Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_preemphasis_2_1_31_0_72 PASSED [ 98%] 2023-08-09T12:14:34.3738412Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_preemphasis_2_1_31_0_97 PASSED [ 98%] 2023-08-09T12:14:34.3739080Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_psd_0 PASSED [ 98%] 2023-08-09T12:14:34.3739827Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_psd_1 PASSED [ 98%] 2023-08-09T12:14:34.3740483Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_psd_2 PASSED [ 98%] 2023-08-09T12:14:34.3741140Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_psd_3 PASSED [ 98%] 2023-08-09T12:14:34.3741871Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_resample_cache_dtype_sinc_interp_hann_None PASSED [ 98%] 2023-08-09T12:14:34.3742658Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_resample_cache_dtype_sinc_interp_hann_torch_float64 PASSED [ 98%] 2023-08-09T12:14:34.3743446Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_resample_cache_dtype_sinc_interp_kaiser_None PASSED [ 98%] 2023-08-09T12:14:34.3744255Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_resample_cache_dtype_sinc_interp_kaiser_torch_float64 PASSED [ 98%] 2023-08-09T12:14:34.3745044Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_resample_identity_sinc_interp_hann_16000 PASSED [ 98%] 2023-08-09T12:14:34.3745798Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_resample_identity_sinc_interp_hann_44100 PASSED [ 98%] 2023-08-09T12:14:34.3746567Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_resample_identity_sinc_interp_kaiser_16000 PASSED [ 99%] 2023-08-09T12:14:34.3747334Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_resample_identity_sinc_interp_kaiser_44100 PASSED [ 99%] 2023-08-09T12:14:34.3748084Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_roundtrip_spectrogram_0 PASSED [ 99%] 2023-08-09T12:14:34.3748858Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_roundtrip_spectrogram_1 PASSED [ 99%] 2023-08-09T12:14:34.3749571Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_roundtrip_spectrogram_2 PASSED [ 99%] 2023-08-09T12:14:34.3750276Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_roundtrip_spectrogram_3 PASSED [ 99%] 2023-08-09T12:14:34.3750983Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_roundtrip_spectrogram_4 PASSED [ 99%] 2023-08-09T12:14:34.3751693Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_roundtrip_spectrogram_5 PASSED [ 99%] 2023-08-09T12:14:34.3752398Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_roundtrip_spectrogram_6 PASSED [ 99%] 2023-08-09T12:14:34.3753118Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_roundtrip_spectrogram_7 PASSED [ 99%] 2023-08-09T12:14:35.4358575Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_roundtrip_spectrogram_8 PASSED [ 99%] 2023-08-09T12:14:35.4359441Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_specaugment_0 PASSED [ 99%] 2023-08-09T12:14:35.4360143Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_specaugment_1 PASSED [ 99%] 2023-08-09T12:14:35.4360928Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_specaugment_2 PASSED [ 99%] 2023-08-09T12:14:35.4361894Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_specaugment_3 PASSED [ 99%] 2023-08-09T12:14:35.4362436Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_specaugment_4 PASSED [ 99%] 2023-08-09T12:14:35.4363108Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_specaugment_5 PASSED [ 99%] 2023-08-09T12:14:35.4363944Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_speed_accuracy_0_8_False PASSED [ 99%] 2023-08-09T12:14:35.4364803Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_speed_accuracy_0_8_True PASSED [ 99%] 2023-08-09T12:14:35.4365460Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_speed_accuracy_1_1_False PASSED [ 99%] 2023-08-09T12:14:35.4366055Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_speed_accuracy_1_1_True PASSED [ 99%] 2023-08-09T12:14:35.4366689Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_speed_accuracy_1_2_False PASSED [ 99%] 2023-08-09T12:14:35.4367881Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_speed_accuracy_1_2_True PASSED [ 99%] 2023-08-09T12:14:35.4368808Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_speed_identity PASSED [ 99%] 2023-08-09T12:14:35.4369617Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_speed_perturbation PASSED [ 99%] 2023-08-09T12:14:35.4370325Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_time_masking_100_200 PASSED [ 99%] 2023-08-09T12:14:35.4371073Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_time_masking_50_50_100_200 PASSED [ 99%] 2023-08-09T12:14:35.4371851Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_time_masking_5_10_20 PASSED [100%] 2023-08-09T12:14:35.4372366Z 2023-08-09T12:14:35.4374977Z =============================== warnings summary =============================== 2023-08-09T12:14:35.4375515Z ../ci_env/lib/python3.10/site-packages/lightning_utilities/core/imports.py:13 2023-08-09T12:14:35.4376367Z /work/ci_env/lib/python3.10/site-packages/lightning_utilities/core/imports.py:13: DeprecationWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html 2023-08-09T12:14:35.4376818Z import pkg_resources 2023-08-09T12:14:35.4376952Z 2023-08-09T12:14:35.4377162Z ../ci_env/lib/python3.10/site-packages/pkg_resources/__init__.py:2871 2023-08-09T12:14:35.4377720Z /work/ci_env/lib/python3.10/site-packages/pkg_resources/__init__.py:2871: DeprecationWarning: Deprecated call to `pkg_resources.declare_namespace('mpl_toolkits')`. 2023-08-09T12:14:35.4378543Z Implementing implicit namespace packages (as specified in PEP 420) is preferred to `pkg_resources.declare_namespace`. See https://setuptools.pypa.io/en/latest/references/keywords.html#keyword-namespace-packages 2023-08-09T12:14:35.4379006Z declare_namespace(pkg) 2023-08-09T12:14:35.4379143Z 2023-08-09T12:14:35.4379348Z ../ci_env/lib/python3.10/site-packages/pkg_resources/__init__.py:2871 2023-08-09T12:14:35.4379879Z /work/ci_env/lib/python3.10/site-packages/pkg_resources/__init__.py:2871: DeprecationWarning: Deprecated call to `pkg_resources.declare_namespace('google')`. 2023-08-09T12:14:35.4380632Z Implementing implicit namespace packages (as specified in PEP 420) is preferred to `pkg_resources.declare_namespace`. See https://setuptools.pypa.io/en/latest/references/keywords.html#keyword-namespace-packages 2023-08-09T12:14:35.4381206Z declare_namespace(pkg) 2023-08-09T12:14:35.4381341Z 2023-08-09T12:14:35.4381549Z ../ci_env/lib/python3.10/site-packages/lightning_fabric/__init__.py:36 2023-08-09T12:14:35.4382106Z /work/ci_env/lib/python3.10/site-packages/lightning_fabric/__init__.py:36: DeprecationWarning: Deprecated call to `pkg_resources.declare_namespace('lightning_fabric')`. 2023-08-09T12:14:35.4382870Z Implementing implicit namespace packages (as specified in PEP 420) is preferred to `pkg_resources.declare_namespace`. See https://setuptools.pypa.io/en/latest/references/keywords.html#keyword-namespace-packages 2023-08-09T12:14:35.4383360Z __import__("pkg_resources").declare_namespace(__name__) 2023-08-09T12:14:35.4383528Z 2023-08-09T12:14:35.4383750Z ../ci_env/lib/python3.10/site-packages/torchmetrics/utilities/imports.py:24 2023-08-09T12:14:35.4384150Z ../ci_env/lib/python3.10/site-packages/torchmetrics/utilities/imports.py:24 2023-08-09T12:14:35.4384753Z /work/ci_env/lib/python3.10/site-packages/torchmetrics/utilities/imports.py:24: DeprecationWarning: distutils Version classes are deprecated. Use packaging.version instead. 2023-08-09T12:14:35.4385210Z _PYTHON_LOWER_3_8 = LooseVersion(_PYTHON_VERSION) < LooseVersion("3.8") 2023-08-09T12:14:35.4385401Z 2023-08-09T12:14:35.4385617Z ../ci_env/lib/python3.10/site-packages/pytorch_lightning/__init__.py:36 2023-08-09T12:14:35.4386179Z /work/ci_env/lib/python3.10/site-packages/pytorch_lightning/__init__.py:36: DeprecationWarning: Deprecated call to `pkg_resources.declare_namespace('pytorch_lightning')`. 2023-08-09T12:14:35.4386949Z Implementing implicit namespace packages (as specified in PEP 420) is preferred to `pkg_resources.declare_namespace`. See https://setuptools.pypa.io/en/latest/references/keywords.html#keyword-namespace-packages 2023-08-09T12:14:35.4387443Z __import__("pkg_resources").declare_namespace(__name__) 2023-08-09T12:14:35.4387614Z 2023-08-09T12:14:35.4387775Z test/torchaudio_unittest/functional/autograd_cuda_test.py: 55 warnings 2023-08-09T12:14:35.4388106Z test/torchaudio_unittest/functional/functional_cuda_test.py: 746 warnings 2023-08-09T12:14:35.4388462Z test/torchaudio_unittest/functional/librosa_compatibility_cuda_test.py: 35 warnings 2023-08-09T12:14:35.4388910Z test/torchaudio_unittest/functional/torchscript_consistency_cuda_test.py: 155 warnings 2023-08-09T12:14:35.4389251Z test/torchaudio_unittest/io/stream_reader_test.py: 16 warnings 2023-08-09T12:14:35.4403379Z test/torchaudio_unittest/models/conformer/conformer_gpu_test.py: 2 warnings 2023-08-09T12:14:35.4403742Z test/torchaudio_unittest/models/decoder/cuda_ctc_decoder_test.py: 3 warnings 2023-08-09T12:14:35.4404092Z test/torchaudio_unittest/models/emformer/emformer_gpu_test.py: 12 warnings 2023-08-09T12:14:35.4404445Z test/torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py: 32 warnings 2023-08-09T12:14:35.4404783Z test/torchaudio_unittest/models/rnnt/rnnt_gpu_test.py: 20 warnings 2023-08-09T12:14:35.4405146Z test/torchaudio_unittest/models/rnnt_decoder/rnnt_decoder_gpu_test.py: 4 warnings 2023-08-09T12:14:35.4405482Z test/torchaudio_unittest/models/squim/squim_test.py: 4 warnings 2023-08-09T12:14:35.4405825Z test/torchaudio_unittest/models/tacotron2/model_test_gpu_test.py: 15 warnings 2023-08-09T12:14:35.4406166Z test/torchaudio_unittest/models/wav2vec2/model_test.py: 6 warnings 2023-08-09T12:14:35.4406508Z test/torchaudio_unittest/prototype/conv_emformer_gpu_test.py: 12 warnings 2023-08-09T12:14:35.4406850Z test/torchaudio_unittest/prototype/rnnt_gpu_test.py: 16 warnings 2023-08-09T12:14:35.4407178Z test/torchaudio_unittest/prototype/ssl_model_test.py: 4 warnings 2023-08-09T12:14:35.4407654Z test/torchaudio_unittest/prototype/functional/autograd_cuda_test.py: 7 warnings 2023-08-09T12:14:35.4408031Z test/torchaudio_unittest/prototype/functional/functional_cuda_test.py: 484 warnings 2023-08-09T12:14:35.4408447Z test/torchaudio_unittest/prototype/functional/librosa_compatibility_cuda_test.py: 1 warning 2023-08-09T12:14:35.4408996Z test/torchaudio_unittest/prototype/functional/torchscript_consistency_cuda_test.py: 10 warnings 2023-08-09T12:14:35.4409374Z test/torchaudio_unittest/prototype/hifi_gan/hifi_gan_gpu_test.py: 14 warnings 2023-08-09T12:14:35.4409738Z test/torchaudio_unittest/prototype/transforms/autograd_cuda_test.py: 4 warnings 2023-08-09T12:14:35.4410135Z test/torchaudio_unittest/prototype/transforms/librosa_compatibility_cuda_test.py: 3 warnings 2023-08-09T12:14:35.4410515Z test/torchaudio_unittest/prototype/transforms/transforms_cuda_test.py: 2 warnings 2023-08-09T12:14:35.4410876Z test/torchaudio_unittest/transforms/autograd_cuda_test.py: 77 warnings 2023-08-09T12:14:35.4411234Z test/torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py: 25 warnings 2023-08-09T12:14:35.4411619Z test/torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py: 93 warnings 2023-08-09T12:14:35.4411975Z test/torchaudio_unittest/transforms/transforms_cuda_test.py: 204 warnings 2023-08-09T12:14:35.4412524Z /work/torchaudio/backend/utils.py:29: UserWarning: list_audio_backend's return value is irrelevant when the I/O backend dispatcher is enabled. 2023-08-09T12:14:35.4413067Z warnings.warn("list_audio_backend's return value is irrelevant when the I/O backend dispatcher is enabled.") 2023-08-09T12:14:35.4413303Z 2023-08-09T12:14:35.4413468Z test/torchaudio_unittest/functional/autograd_cuda_test.py: 55 warnings 2023-08-09T12:14:35.4413806Z test/torchaudio_unittest/functional/functional_cuda_test.py: 746 warnings 2023-08-09T12:14:35.4414169Z test/torchaudio_unittest/functional/librosa_compatibility_cuda_test.py: 35 warnings 2023-08-09T12:14:35.4414649Z test/torchaudio_unittest/functional/torchscript_consistency_cuda_test.py: 155 warnings 2023-08-09T12:14:35.4414991Z test/torchaudio_unittest/io/stream_reader_test.py: 16 warnings 2023-08-09T12:14:35.4415331Z test/torchaudio_unittest/models/conformer/conformer_gpu_test.py: 2 warnings 2023-08-09T12:14:35.4415687Z test/torchaudio_unittest/models/decoder/cuda_ctc_decoder_test.py: 3 warnings 2023-08-09T12:14:35.4416037Z test/torchaudio_unittest/models/emformer/emformer_gpu_test.py: 12 warnings 2023-08-09T12:14:35.4416380Z test/torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py: 32 warnings 2023-08-09T12:14:35.4416715Z test/torchaudio_unittest/models/rnnt/rnnt_gpu_test.py: 20 warnings 2023-08-09T12:14:35.4417135Z test/torchaudio_unittest/models/rnnt_decoder/rnnt_decoder_gpu_test.py: 4 warnings 2023-08-09T12:14:35.4417475Z test/torchaudio_unittest/models/squim/squim_test.py: 4 warnings 2023-08-09T12:14:35.4417815Z test/torchaudio_unittest/models/tacotron2/model_test_gpu_test.py: 15 warnings 2023-08-09T12:14:35.4418155Z test/torchaudio_unittest/models/wav2vec2/model_test.py: 6 warnings 2023-08-09T12:14:35.4418485Z test/torchaudio_unittest/prototype/conv_emformer_gpu_test.py: 12 warnings 2023-08-09T12:14:35.4418824Z test/torchaudio_unittest/prototype/rnnt_gpu_test.py: 16 warnings 2023-08-09T12:14:35.4419151Z test/torchaudio_unittest/prototype/ssl_model_test.py: 4 warnings 2023-08-09T12:14:35.4419503Z test/torchaudio_unittest/prototype/functional/autograd_cuda_test.py: 7 warnings 2023-08-09T12:14:35.4419911Z test/torchaudio_unittest/prototype/functional/functional_cuda_test.py: 484 warnings 2023-08-09T12:14:35.4420302Z test/torchaudio_unittest/prototype/functional/librosa_compatibility_cuda_test.py: 1 warning 2023-08-09T12:14:35.4420709Z test/torchaudio_unittest/prototype/functional/torchscript_consistency_cuda_test.py: 10 warnings 2023-08-09T12:14:35.4421090Z test/torchaudio_unittest/prototype/hifi_gan/hifi_gan_gpu_test.py: 14 warnings 2023-08-09T12:14:35.4421443Z test/torchaudio_unittest/prototype/transforms/autograd_cuda_test.py: 4 warnings 2023-08-09T12:14:35.4421819Z test/torchaudio_unittest/prototype/transforms/librosa_compatibility_cuda_test.py: 3 warnings 2023-08-09T12:14:35.4422199Z test/torchaudio_unittest/prototype/transforms/transforms_cuda_test.py: 2 warnings 2023-08-09T12:14:35.4422551Z test/torchaudio_unittest/transforms/autograd_cuda_test.py: 77 warnings 2023-08-09T12:14:35.4422955Z test/torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py: 25 warnings 2023-08-09T12:14:35.4423327Z test/torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py: 93 warnings 2023-08-09T12:14:35.4423689Z test/torchaudio_unittest/transforms/transforms_cuda_test.py: 204 warnings 2023-08-09T12:14:35.4424189Z /work/torchaudio/backend/utils.py:48: UserWarning: set_audio_backend is a no-op when the I/O backend dispatcher is enabled. 2023-08-09T12:14:35.4424677Z warnings.warn("set_audio_backend is a no-op when the I/O backend dispatcher is enabled.") 2023-08-09T12:14:35.4424894Z 2023-08-09T12:14:35.4425106Z test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradRNNTCUDA::test_rnnt_loss_0 2023-08-09T12:14:35.4425537Z test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradRNNTCUDA::test_rnnt_loss_1 2023-08-09T12:14:35.4425956Z test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradRNNTCUDA::test_rnnt_loss_2 2023-08-09T12:14:35.4426377Z test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradRNNTCUDATest::test_rnnt_loss_0 2023-08-09T12:14:35.4426793Z test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradRNNTCUDATest::test_rnnt_loss_1 2023-08-09T12:14:35.4427207Z test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradRNNTCUDATest::test_rnnt_loss_2 2023-08-09T12:14:35.4427977Z /work/ci_env/lib/python3.10/site-packages/torch/autograd/gradcheck.py:910: UserWarning: Input #0 requires gradient and is not a double precision floating point or complex. This check will likely fail if all the inputs are not of double precision floating point or complex. 2023-08-09T12:14:35.4428507Z warnings.warn( 2023-08-09T12:14:35.4428629Z 2023-08-09T12:14:35.4428808Z test/torchaudio_unittest/functional/librosa_compatibility_cuda_test.py: 28 warnings 2023-08-09T12:14:35.4429296Z /work/test/torchaudio_unittest/functional/librosa_compatibility_test_impl.py:80: DeprecationWarning: distutils Version classes are deprecated. Use packaging.version instead. 2023-08-09T12:14:35.4429769Z if norm == "slaney" and StrictVersion(librosa.__version__) < StrictVersion("0.7.2"): 2023-08-09T12:14:35.4429970Z 2023-08-09T12:14:35.4430202Z test/torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_spectrogram_0 2023-08-09T12:14:35.4430718Z test/torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_spectrogram_1 2023-08-09T12:14:35.4431195Z test/torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_spectrogram_2_window 2023-08-09T12:14:35.4431691Z test/torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_spectrogram_3_frame_length 2023-08-09T12:14:35.4432165Z test/torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_spectrogram_0 2023-08-09T12:14:35.4432616Z test/torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_spectrogram_1 2023-08-09T12:14:35.4433085Z test/torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_spectrogram_2_window 2023-08-09T12:14:35.4433564Z test/torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_spectrogram_3_frame_length 2023-08-09T12:14:35.4434226Z /work/torchaudio/functional/functional.py:109: UserWarning: `return_complex` argument is now deprecated and is not effective.`torchaudio.functional.spectrogram(power=None)` always returns a tensor with complex dtype. Please remove the argument in the function call. 2023-08-09T12:14:35.4434798Z warnings.warn( 2023-08-09T12:14:35.4434961Z 2023-08-09T12:14:35.4435254Z test/torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_spectrogram_0 2023-08-09T12:14:35.4435843Z test/torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_spectrogram_1 2023-08-09T12:14:35.4436545Z test/torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_spectrogram_2_window 2023-08-09T12:14:35.4437154Z test/torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_spectrogram_3_frame_length 2023-08-09T12:14:35.4437751Z test/torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_spectrogram_0 2023-08-09T12:14:35.4438323Z test/torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_spectrogram_1 2023-08-09T12:14:35.4438930Z test/torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_spectrogram_2_window 2023-08-09T12:14:35.4439546Z test/torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_spectrogram_3_frame_length 2023-08-09T12:14:35.4440171Z code/__torch__.py:22: UserWarning: `return_complex` argument is now deprecated and is not effective.`torchaudio.functional.spectrogram(power=None)` always returns a tensor with complex dtype. Please remove the argument in the function call. 2023-08-09T12:14:35.4440558Z 2023-08-09T12:14:35.4440803Z test/torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2Float32CUDA::test_tacotron2_inference_output_shape_0 2023-08-09T12:14:35.4441290Z test/torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2Float32CUDA::test_tacotron2_inference_output_shape_1 2023-08-09T12:14:35.4441781Z /work/torchaudio/models/tacotron2.py:856: UserWarning: Reached max decoder steps. The generated spectrogram might not cover the whole transcript. 2023-08-09T12:14:35.4442122Z warnings.warn( 2023-08-09T12:14:35.4442245Z 2023-08-09T12:14:35.4442461Z test/torchaudio_unittest/prototype/functional/autograd_cuda_test.py::TestAutogradCUDAFloat64::test_freq_ir 2023-08-09T12:14:35.4442916Z /work/torchaudio/prototype/functional/_dsp.py:304: UserWarning: The input frequency response should not contain negative values. 2023-08-09T12:14:35.4443331Z warnings.warn("The input frequency response should not contain negative values.") 2023-08-09T12:14:35.4443535Z 2023-08-09T12:14:35.4443761Z test/torchaudio_unittest/prototype/functional/autograd_cuda_test.py::TestAutogradCUDAFloat64::test_oscillator_bank_0 2023-08-09T12:14:35.4444378Z test/torchaudio_unittest/prototype/functional/autograd_cuda_test.py::TestAutogradCUDAFloat64::test_oscillator_bank_1 2023-08-09T12:14:35.4444973Z test/torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_1000_4_8000 2023-08-09T12:14:35.4445511Z test/torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_1000_8_16000 2023-08-09T12:14:35.4446119Z test/torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_1000_8_8000 2023-08-09T12:14:35.4446776Z /work/torchaudio/prototype/functional/_dsp.py:63: UserWarning: Some frequencies are above nyquist frequency. Setting the corresponding amplitude to zero. This might cause numerically unstable gradient. 2023-08-09T12:14:35.4447261Z warnings.warn( 2023-08-09T12:14:35.4447588Z 2023-08-09T12:14:35.4447869Z test/torchaudio_unittest/prototype/hifi_gan/hifi_gan_gpu_test.py::HiFiGANFloat32CPUTest::test_mel_transform 2023-08-09T12:14:35.4448752Z /work/ci_env/lib/python3.10/site-packages/torch/functional.py:650: UserWarning: stft with return_complex=False is deprecated. In a future pytorch release, stft will return complex tensors for all inputs, and return_complex=False will raise an error. 2023-08-09T12:14:35.4449826Z Note: you can still call torch.view_as_real on the complex output to recover the old return format. (Triggered internally at /opt/conda/conda-bld/pytorch_1691566927058/work/aten/src/ATen/native/SpectralOps.cpp:863.) 2023-08-09T12:14:35.4450504Z return _VF.stft(input, n_fft, hop_length, win_length, window, # type: ignore[attr-defined] 2023-08-09T12:14:35.4450841Z 2023-08-09T12:14:35.4451082Z test/torchaudio_unittest/prototype/hifi_gan/hifi_gan_gpu_test.py::HiFiGANFloat32CPUTest::test_original_implementation_match 2023-08-09T12:14:35.4451559Z test/torchaudio_unittest/prototype/hifi_gan/hifi_gan_gpu_test.py::HiFiGANFloat64CPUTest::test_original_implementation_match 2023-08-09T12:14:35.4452256Z /work/ci_env/lib/python3.10/site-packages/torch/nn/utils/weight_norm.py:30: UserWarning: torch.nn.utils.weight_norm is deprecated in favor of torch.nn.utils.parametrizations.weight_norm. 2023-08-09T12:14:35.4452825Z warnings.warn("torch.nn.utils.weight_norm is deprecated in favor of torch.nn.utils.parametrizations.weight_norm.") 2023-08-09T12:14:35.4453097Z 2023-08-09T12:14:35.4453304Z test/torchaudio_unittest/prototype/transforms/autograd_cuda_test.py::AutogradCUDATest::test_barkscale 2023-08-09T12:14:35.4453825Z /work/torchaudio/prototype/functional/functional.py:123: UserWarning: At least one bark filterbank has all zero values. The value for `n_barks` (201) may be set too high. Or, the value for `n_freqs` (201) may be set too low. 2023-08-09T12:14:35.4454245Z warnings.warn( 2023-08-09T12:14:35.4454373Z 2023-08-09T12:14:35.4454699Z test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_00 2023-08-09T12:14:35.4455120Z test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_01 2023-08-09T12:14:35.4455529Z test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_02 2023-08-09T12:14:35.4455939Z test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_03 2023-08-09T12:14:35.4456377Z test/torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_Spectrogram_complex 2023-08-09T12:14:35.4456850Z test/torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_Spectrogram_return_complex 2023-08-09T12:14:35.4457337Z test/torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_Spectrogram_return_complex 2023-08-09T12:14:35.4458044Z /work/torchaudio/transforms/_transforms.py:94: UserWarning: `return_complex` argument is now deprecated and is not effective.`torchaudio.transforms.Spectrogram(power=None)` always returns a tensor with complex dtype. Please remove the argument in the function call. 2023-08-09T12:14:35.4458533Z warnings.warn( 2023-08-09T12:14:35.4458658Z 2023-08-09T12:14:35.4458891Z test/torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_InverseSpectrogram 2023-08-09T12:14:35.4459366Z test/torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_InverseSpectrogram 2023-08-09T12:14:35.4460018Z /work/ci_env/lib/python3.10/site-packages/torch/jit/_recursive.py:320: UserWarning: 'power' was found in ScriptModule constants, but was not actually set in __init__. Consider removing it. 2023-08-09T12:14:35.4460409Z warnings.warn( 2023-08-09T12:14:35.4460534Z 2023-08-09T12:14:35.4460750Z test/torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_MFCC 2023-08-09T12:14:35.4461191Z test/torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_MelScale 2023-08-09T12:14:35.4461654Z test/torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_MelSpectrogram 2023-08-09T12:14:35.4462105Z test/torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_MFCC 2023-08-09T12:14:35.4462548Z test/torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_MelScale 2023-08-09T12:14:35.4462995Z test/torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_MelSpectrogram 2023-08-09T12:14:35.4463531Z /work/torchaudio/functional/functional.py:584: UserWarning: At least one mel filterbank has all zero values. The value for `n_mels` (128) may be set too high. Or, the value for `n_freqs` (201) may be set too low. 2023-08-09T12:14:35.4464030Z warnings.warn( 2023-08-09T12:14:35.4464156Z 2023-08-09T12:14:35.4464378Z test/torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_PitchShift 2023-08-09T12:14:35.4464831Z test/torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_PitchShift 2023-08-09T12:14:35.4465295Z test/torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_pitch_shift_resample_kernel 2023-08-09T12:14:35.4465775Z test/torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_pitch_shift_resample_kernel 2023-08-09T12:14:35.4466458Z /work/ci_env/lib/python3.10/site-packages/torch/nn/modules/lazy.py:180: UserWarning: Lazy modules are a new feature under heavy development so changes to the API or functionality can happen at any moment. 2023-08-09T12:14:35.4466992Z warnings.warn('Lazy modules are a new feature under heavy development ' 2023-08-09T12:14:35.4467190Z 2023-08-09T12:14:35.4467426Z -- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html 2023-08-09T12:14:35.4467864Z ----------------- generated xml file: /test-results/junit.xml ------------------ 2023-08-09T12:14:35.4468078Z 2023-08-09T12:14:35.4468293Z ---------- coverage: platform linux, python 3.10.12-final-0 ---------- 2023-08-09T12:14:35.4468652Z Name Stmts Miss Cover 2023-08-09T12:14:35.4469038Z -------------------------------------------------------------------------------------- 2023-08-09T12:14:35.4469370Z /work/torchaudio/__init__.py 7 2 71% 2023-08-09T12:14:35.4469667Z /work/torchaudio/_backend/__init__.py 4 0 100% 2023-08-09T12:14:35.4469982Z /work/torchaudio/_backend/ffmpeg.py 143 122 15% 2023-08-09T12:14:35.4470283Z /work/torchaudio/_backend/utils.py 166 79 52% 2023-08-09T12:14:35.4470587Z /work/torchaudio/_extension/__init__.py 50 9 82% 2023-08-09T12:14:35.4470944Z /work/torchaudio/_extension/utils.py 108 35 68% 2023-08-09T12:14:35.4471246Z /work/torchaudio/_internal/__init__.py 5 0 100% 2023-08-09T12:14:35.4471552Z /work/torchaudio/_internal/module_utils.py 50 20 60% 2023-08-09T12:14:35.4471848Z /work/torchaudio/backend/__init__.py 9 1 89% 2023-08-09T12:14:35.4472149Z /work/torchaudio/backend/common.py 9 6 33% 2023-08-09T12:14:35.4472455Z /work/torchaudio/backend/no_backend.py 9 3 67% 2023-08-09T12:14:35.4472774Z /work/torchaudio/backend/soundfile_backend.py 132 107 19% 2023-08-09T12:14:35.4473084Z /work/torchaudio/backend/sox_io_backend.py 27 16 41% 2023-08-09T12:14:35.4473387Z /work/torchaudio/backend/utils.py 51 27 47% 2023-08-09T12:14:35.4473697Z /work/torchaudio/compliance/__init__.py 2 0 100% 2023-08-09T12:14:35.4473998Z /work/torchaudio/compliance/kaldi.py 228 194 15% 2023-08-09T12:14:35.4474303Z /work/torchaudio/datasets/__init__.py 22 0 100% 2023-08-09T12:14:35.4474604Z /work/torchaudio/datasets/cmuarctic.py 54 33 39% 2023-08-09T12:14:35.4474910Z /work/torchaudio/datasets/cmudict.py 56 41 27% 2023-08-09T12:14:35.4475214Z /work/torchaudio/datasets/commonvoice.py 33 18 45% 2023-08-09T12:14:35.4475574Z /work/torchaudio/datasets/dr_vctk.py 52 36 31% 2023-08-09T12:14:35.4475889Z /work/torchaudio/datasets/fluentcommands.py 35 22 37% 2023-08-09T12:14:35.4476191Z /work/torchaudio/datasets/gtzan.py 70 49 30% 2023-08-09T12:14:35.4476499Z /work/torchaudio/datasets/iemocap.py 73 59 19% 2023-08-09T12:14:35.4476825Z /work/torchaudio/datasets/librilight_limited.py 45 25 44% 2023-08-09T12:14:35.4477136Z /work/torchaudio/datasets/librimix.py 49 36 27% 2023-08-09T12:14:35.4477438Z /work/torchaudio/datasets/librispeech.py 59 38 36% 2023-08-09T12:14:35.4477761Z /work/torchaudio/datasets/librispeech_biasing.py 65 44 32% 2023-08-09T12:14:35.4478071Z /work/torchaudio/datasets/libritts.py 55 36 35% 2023-08-09T12:14:35.4478378Z /work/torchaudio/datasets/ljspeech.py 40 25 38% 2023-08-09T12:14:35.4478680Z /work/torchaudio/datasets/musdb_hq.py 70 50 29% 2023-08-09T12:14:35.4478980Z /work/torchaudio/datasets/quesst14.py 56 38 32% 2023-08-09T12:14:35.4479285Z /work/torchaudio/datasets/snips.py 56 41 27% 2023-08-09T12:14:35.4479588Z /work/torchaudio/datasets/speechcommands.py 71 51 28% 2023-08-09T12:14:35.4479900Z /work/torchaudio/datasets/tedlium.py 74 57 23% 2023-08-09T12:14:35.4480197Z /work/torchaudio/datasets/utils.py 42 33 21% 2023-08-09T12:14:35.4480493Z /work/torchaudio/datasets/vctk.py 57 40 30% 2023-08-09T12:14:35.4480787Z /work/torchaudio/datasets/voxceleb1.py 109 78 28% 2023-08-09T12:14:35.4481091Z /work/torchaudio/datasets/yesno.py 37 22 41% 2023-08-09T12:14:35.4481393Z /work/torchaudio/functional/__init__.py 4 0 100% 2023-08-09T12:14:35.4481696Z /work/torchaudio/functional/_alignment.py 53 7 87% 2023-08-09T12:14:35.4482072Z /work/torchaudio/functional/filtering.py 592 81 86% 2023-08-09T12:14:35.4482388Z /work/torchaudio/functional/functional.py 730 64 91% 2023-08-09T12:14:35.4482690Z /work/torchaudio/io/__init__.py 5 0 100% 2023-08-09T12:14:35.4482979Z /work/torchaudio/io/_effector.py 105 84 20% 2023-08-09T12:14:35.4483273Z /work/torchaudio/io/_playback.py 29 21 28% 2023-08-09T12:14:35.4483642Z /work/torchaudio/io/_stream_reader.py 220 62 72% 2023-08-09T12:14:35.4483948Z /work/torchaudio/io/_stream_writer.py 73 25 66% 2023-08-09T12:14:35.4484242Z /work/torchaudio/kaldi_io.py 32 14 56% 2023-08-09T12:14:35.4484533Z /work/torchaudio/models/__init__.py 13 0 100% 2023-08-09T12:14:35.4484830Z /work/torchaudio/models/_hdemucs.py 480 20 96% 2023-08-09T12:14:35.4485136Z /work/torchaudio/models/conformer.py 72 1 99% 2023-08-09T12:14:35.4485438Z /work/torchaudio/models/conv_tasnet.py 85 72 15% 2023-08-09T12:14:35.4485735Z /work/torchaudio/models/decoder/__init__.py 23 5 78% 2023-08-09T12:14:35.4486048Z /work/torchaudio/models/decoder/_ctc_decoder.py 146 101 31% 2023-08-09T12:14:35.4486428Z /work/torchaudio/models/decoder/_cuda_ctc_decoder.py 66 8 88% 2023-08-09T12:14:35.4486738Z /work/torchaudio/models/deepspeech.py 38 30 21% 2023-08-09T12:14:35.4487049Z /work/torchaudio/models/emformer.py 281 18 94% 2023-08-09T12:14:35.4487352Z /work/torchaudio/models/rnnt.py 151 6 96% 2023-08-09T12:14:35.4487782Z /work/torchaudio/models/rnnt_decoder.py 151 8 95% 2023-08-09T12:14:35.4488081Z /work/torchaudio/models/squim/__init__.py 3 0 100% 2023-08-09T12:14:35.4488385Z /work/torchaudio/models/squim/objective.py 139 1 99% 2023-08-09T12:14:35.4488694Z /work/torchaudio/models/squim/subjective.py 54 2 96% 2023-08-09T12:14:35.4488993Z /work/torchaudio/models/tacotron2.py 256 10 96% 2023-08-09T12:14:35.4489301Z /work/torchaudio/models/wav2letter.py 16 11 31% 2023-08-09T12:14:35.4489603Z /work/torchaudio/models/wav2vec2/__init__.py 3 0 100% 2023-08-09T12:14:35.4489913Z /work/torchaudio/models/wav2vec2/components.py 381 65 83% 2023-08-09T12:14:35.4490225Z /work/torchaudio/models/wav2vec2/model.py 125 16 87% 2023-08-09T12:14:35.4490531Z /work/torchaudio/models/wav2vec2/utils/__init__.py 3 0 100% 2023-08-09T12:14:35.4490852Z /work/torchaudio/models/wav2vec2/utils/import_fairseq.py 104 93 11% 2023-08-09T12:14:35.4491185Z /work/torchaudio/models/wav2vec2/utils/import_huggingface.py 56 45 20% 2023-08-09T12:14:35.4491507Z /work/torchaudio/models/wav2vec2/wavlm_attention.py 81 4 95% 2023-08-09T12:14:35.4491817Z /work/torchaudio/models/wavernn.py 144 121 16% 2023-08-09T12:14:35.4492121Z /work/torchaudio/pipelines/__init__.py 6 0 100% 2023-08-09T12:14:35.4492432Z /work/torchaudio/pipelines/_source_separation_pipeline.py 27 7 74% 2023-08-09T12:14:35.4492758Z /work/torchaudio/pipelines/_squim_pipeline.py 41 18 56% 2023-08-09T12:14:35.4493198Z /work/torchaudio/pipelines/_tts/__init__.py 3 0 100% 2023-08-09T12:14:35.4493506Z /work/torchaudio/pipelines/_tts/impl.py 136 66 51% 2023-08-09T12:14:35.4493812Z /work/torchaudio/pipelines/_tts/interface.py 25 0 100% 2023-08-09T12:14:35.4494128Z /work/torchaudio/pipelines/_tts/utils.py 38 25 34% 2023-08-09T12:14:35.4494483Z /work/torchaudio/pipelines/_wav2vec2/__init__.py 0 0 100% 2023-08-09T12:14:35.4494796Z /work/torchaudio/pipelines/_wav2vec2/aligner.py 44 23 48% 2023-08-09T12:14:35.4495122Z /work/torchaudio/pipelines/_wav2vec2/impl.py 113 22 81% 2023-08-09T12:14:35.4495435Z /work/torchaudio/pipelines/_wav2vec2/utils.py 61 33 46% 2023-08-09T12:14:35.4495754Z /work/torchaudio/pipelines/rnnt_pipeline.py 114 47 59% 2023-08-09T12:14:35.4496062Z /work/torchaudio/prototype/__init__.py 0 0 100% 2023-08-09T12:14:35.4496372Z /work/torchaudio/prototype/datasets/__init__.py 2 0 100% 2023-08-09T12:14:35.4496692Z /work/torchaudio/prototype/datasets/musan.py 22 10 55% 2023-08-09T12:14:35.4497002Z /work/torchaudio/prototype/functional/__init__.py 4 0 100% 2023-08-09T12:14:35.4497321Z /work/torchaudio/prototype/functional/_dsp.py 123 11 91% 2023-08-09T12:14:35.4497642Z /work/torchaudio/prototype/functional/_rir.py 82 72 12% 2023-08-09T12:14:35.4498032Z /work/torchaudio/prototype/functional/functional.py 61 10 84% 2023-08-09T12:14:35.4498344Z /work/torchaudio/prototype/models/__init__.py 7 0 100% 2023-08-09T12:14:35.4498669Z /work/torchaudio/prototype/models/_conformer_wav2vec2.py 149 84 44% 2023-08-09T12:14:35.4499059Z /work/torchaudio/prototype/models/_emformer_hubert.py 69 26 62% 2023-08-09T12:14:35.4499384Z /work/torchaudio/prototype/models/conv_emformer.py 162 17 90% 2023-08-09T12:14:35.4499708Z /work/torchaudio/prototype/models/hifi_gan.py 75 1 99% 2023-08-09T12:14:35.4500022Z /work/torchaudio/prototype/models/rnnt.py 203 161 21% 2023-08-09T12:14:35.4500343Z /work/torchaudio/prototype/models/rnnt_decoder.py 190 158 17% 2023-08-09T12:14:35.4500659Z /work/torchaudio/prototype/pipelines/__init__.py 4 0 100% 2023-08-09T12:14:35.4500989Z /work/torchaudio/prototype/pipelines/_vggish/__init__.py 2 0 100% 2023-08-09T12:14:35.4501325Z /work/torchaudio/prototype/pipelines/_vggish/_vggish_impl.py 83 57 31% 2023-08-09T12:14:35.4501678Z /work/torchaudio/prototype/pipelines/_vggish/_vggish_pipeline.py 28 9 68% 2023-08-09T12:14:35.4502021Z /work/torchaudio/prototype/pipelines/hifigan_pipeline.py 50 9 82% 2023-08-09T12:14:35.4502365Z /work/torchaudio/prototype/pipelines/rnnt_pipeline.py 7 0 100% 2023-08-09T12:14:35.4502690Z /work/torchaudio/prototype/transforms/__init__.py 2 0 100% 2023-08-09T12:14:35.4503010Z /work/torchaudio/prototype/transforms/_transforms.py 98 3 97% 2023-08-09T12:14:35.4503326Z /work/torchaudio/sox_effects/__init__.py 2 0 100% 2023-08-09T12:14:35.4503632Z /work/torchaudio/sox_effects/sox_effects.py 25 9 64% 2023-08-09T12:14:35.4503938Z /work/torchaudio/transforms/__init__.py 3 0 100% 2023-08-09T12:14:35.4504235Z /work/torchaudio/transforms/_multi_channel.py 103 22 79% 2023-08-09T12:14:35.4504591Z /work/torchaudio/transforms/_transforms.py 510 21 96% 2023-08-09T12:14:35.4504894Z /work/torchaudio/utils/__init__.py 3 0 100% 2023-08-09T12:14:35.4505179Z /work/torchaudio/utils/download.py 36 24 33% 2023-08-09T12:14:35.4505481Z /work/torchaudio/utils/ffmpeg_utils.py 47 13 72% 2023-08-09T12:14:35.4505779Z /work/torchaudio/utils/sox_utils.py 26 6 77% 2023-08-09T12:14:35.4506065Z /work/torchaudio/version.py 2 0 100% 2023-08-09T12:14:35.4506457Z -------------------------------------------------------------------------------------- 2023-08-09T12:14:35.4506766Z TOTAL 9782 3452 65% 2023-08-09T12:14:35.4506910Z 2023-08-09T12:14:35.4507040Z ============================ slowest 100 durations ============================= 2023-08-09T12:14:35.4507414Z 179.22s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_mvdr_0_ref_channel 2023-08-09T12:14:35.4507839Z 114.39s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_rtf_mvdr 2023-08-09T12:14:35.4508263Z 99.62s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_souden_mvdr 2023-08-09T12:14:35.4508713Z 74.75s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_apply_beamforming 2023-08-09T12:14:35.4509161Z 51.33s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_psd_with_mask_0 2023-08-09T12:14:35.4509656Z 43.36s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_flanger 2023-08-09T12:14:35.4510087Z 40.73s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_psd_with_mask_1 2023-08-09T12:14:35.4510525Z 34.31s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_phaser_1 2023-08-09T12:14:35.4510956Z 34.14s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_phaser_0 2023-08-09T12:14:35.4511397Z 23.36s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_masking_iid_1 2023-08-09T12:14:35.4511820Z 22.85s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_masking_iid_0 2023-08-09T12:14:35.4512254Z 22.15s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_inverse_spectrogram 2023-08-09T12:14:35.4512677Z 21.70s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_psd 2023-08-09T12:14:35.4513104Z 20.74s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_add_noise 2023-08-09T12:14:35.4513581Z 15.77s call test/torchaudio_unittest/prototype/functional/autograd_cuda_test.py::TestAutogradCUDAFloat64::test_oscillator_bank_1 2023-08-09T12:14:35.4514067Z 13.48s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_mvdr_weights_rtf_with_tensor 2023-08-09T12:14:35.4514534Z 11.69s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_mvdr_weights_rtf 2023-08-09T12:14:35.4514997Z 10.96s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_timestretch_non_zero_0_7 2023-08-09T12:14:35.4515471Z 10.13s call test/torchaudio_unittest/prototype/rnnt_gpu_test.py::ConformerRNNTFloat64GPUTest::test_torchscript_consistency_forward 2023-08-09T12:14:35.4515971Z 9.81s call test/torchaudio_unittest/prototype/rnnt_gpu_test.py::ConformerRNNTFloat32GPUTest::test_torchscript_consistency_forward 2023-08-09T12:14:35.4516503Z 9.73s call test/torchaudio_unittest/prototype/rnnt_gpu_test.py::ConformerRNNTFloat64GPUTest::test_torchscript_consistency_predict 2023-08-09T12:14:35.4516978Z 9.71s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_griffinlim_0_99_True 2023-08-09T12:14:35.4517428Z 9.68s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_timestretch_non_zero_0_8 2023-08-09T12:14:35.4517881Z 9.64s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_griffinlim_0_99_False 2023-08-09T12:14:35.4518346Z 9.34s call test/torchaudio_unittest/prototype/rnnt_gpu_test.py::ConformerRNNTFloat32GPUTest::test_torchscript_consistency_predict 2023-08-09T12:14:35.4518819Z 9.34s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_griffinlim_0_True 2023-08-09T12:14:35.4519257Z 9.34s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_griffinlim_0_False 2023-08-09T12:14:35.4519711Z 9.25s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_timestretch_non_zero_0_9 2023-08-09T12:14:35.4520151Z 9.04s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_07 2023-08-09T12:14:35.4520576Z 9.00s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_03 2023-08-09T12:14:35.4521021Z 8.76s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_convolve_FFTConvolve_full 2023-08-09T12:14:35.4521469Z 8.36s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_02 2023-08-09T12:14:35.4521967Z 8.31s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_convolve_fftconvolve_full 2023-08-09T12:14:35.4522423Z 8.31s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_06 2023-08-09T12:14:35.4522873Z 8.31s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_lfilter_filterbanks 2023-08-09T12:14:35.4523326Z 8.13s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_timestretch_non_zero_1_3 2023-08-09T12:14:35.4523786Z 7.40s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_filtfilt_all_inputs 2023-08-09T12:14:35.4524234Z 7.34s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_05 2023-08-09T12:14:35.4524658Z 7.30s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_01 2023-08-09T12:14:35.4525092Z 7.28s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_speed 2023-08-09T12:14:35.4525535Z 7.27s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_filtfilt_batching 2023-08-09T12:14:35.4525982Z 7.16s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_masking_1 2023-08-09T12:14:35.4526398Z 7.16s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_masking_0 2023-08-09T12:14:35.4526828Z 7.13s call test/torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat64GPUTest::test_torchscript_consistency_forward 2023-08-09T12:14:35.4527272Z 7.07s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_lfcc_0 2023-08-09T12:14:35.4527806Z 7.04s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_15 2023-08-09T12:14:35.4528234Z 6.97s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_mfcc_0 2023-08-09T12:14:35.4528665Z 6.95s call test/torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_phaser 2023-08-09T12:14:35.4529221Z 6.90s call test/torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat64GPUTest::test_torchscript_consistency_predict 2023-08-09T12:14:35.4529688Z 6.88s call test/torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat32GPUTest::test_torchscript_consistency_forward 2023-08-09T12:14:35.4530155Z 6.69s call test/torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_phaser 2023-08-09T12:14:35.4530592Z 6.68s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_14 2023-08-09T12:14:35.4531039Z 6.66s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_convolve_FFTConvolve_same 2023-08-09T12:14:35.4531486Z 6.65s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_00 2023-08-09T12:14:35.4531914Z 6.65s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_04 2023-08-09T12:14:35.4532365Z 6.64s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_convolve_convolve_full 2023-08-09T12:14:35.4532833Z 6.59s call test/torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat32GPUTest::test_torchscript_consistency_predict 2023-08-09T12:14:35.4533294Z 6.51s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_convolve_Convolve_full 2023-08-09T12:14:35.4533733Z 6.43s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_11 2023-08-09T12:14:35.4534167Z 6.35s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_convolve_FFTConvolve_valid 2023-08-09T12:14:35.4534762Z 6.18s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_convolve_fftconvolve_same 2023-08-09T12:14:35.4535218Z 6.09s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_10 2023-08-09T12:14:35.4535649Z 5.93s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_melspectrogram 2023-08-09T12:14:35.4536069Z 5.88s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_13 2023-08-09T12:14:35.4536519Z 5.87s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_convolve_fftconvolve_valid 2023-08-09T12:14:35.4536993Z 5.87s call test/torchaudio_unittest/prototype/transforms/autograd_cuda_test.py::AutogradCUDATest::test_barkspectrogram 2023-08-09T12:14:35.4537439Z 5.81s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_speed_perturbation 2023-08-09T12:14:35.4537887Z 5.59s call test/torchaudio_unittest/prototype/transforms/autograd_cuda_test.py::AutogradCUDATest::test_barkscale 2023-08-09T12:14:35.4538326Z 5.47s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_12 2023-08-09T12:14:35.4538753Z 5.34s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_09 2023-08-09T12:14:35.4539183Z 5.30s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_convolve_Convolve_same 2023-08-09T12:14:35.4539614Z 5.15s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_resample_2 2023-08-09T12:14:35.4540049Z 5.13s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_convolve_Convolve_valid 2023-08-09T12:14:35.4540475Z 5.10s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_speed 2023-08-09T12:14:35.4540882Z 5.03s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_mfcc_1 2023-08-09T12:14:35.4541289Z 4.97s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_lfcc_1 2023-08-09T12:14:35.4541704Z 4.95s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_08 2023-08-09T12:14:35.4542200Z 4.92s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_convolve_convolve_same 2023-08-09T12:14:35.4542643Z 4.78s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_melscale 2023-08-09T12:14:35.4543086Z 4.71s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_convolve_convolve_valid 2023-08-09T12:14:35.4543550Z 4.63s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_bass_biquad_1 2023-08-09T12:14:35.4544005Z 4.63s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_bass_biquad_0 2023-08-09T12:14:35.4544453Z 4.42s call test/torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_griffinlim_0 2023-08-09T12:14:35.4544944Z 4.24s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_mvdr_weights_souden_with_tensor 2023-08-09T12:14:35.4545416Z 4.17s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_treble_biquad_0 2023-08-09T12:14:35.4545872Z 4.16s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_treble_biquad_1 2023-08-09T12:14:40.7218929Z 4.14s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_psd_0 2023-08-09T12:14:40.7219535Z 4.00s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_band_biquad_0 2023-08-09T12:14:40.7220537Z 3.92s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_rtf_power_with_tensor_0 2023-08-09T12:14:40.7221066Z 3.78s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_lfilter_all_inputs 2023-08-09T12:14:40.7221540Z 3.71s call test/torchaudio_unittest/prototype/transforms/autograd_cuda_test.py::AutogradCUDATest::test_chroma_spectrogram 2023-08-09T12:14:40.7222007Z 3.64s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_lfilter_batching 2023-08-09T12:14:40.7222458Z 3.53s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_rtf_power_with_tensor_1 2023-08-09T12:14:40.7222902Z 3.50s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_time_masking_p 2023-08-09T12:14:40.7223326Z 3.48s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectral_centroid 2023-08-09T12:14:40.7223775Z 3.43s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_mvdr_weights_souden 2023-08-09T12:14:40.7224242Z 3.41s call test/torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::CompareHDemucsOriginal::test_import_recreate_high_model_0 2023-08-09T12:14:40.7224709Z 3.36s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_band_biquad_1 2023-08-09T12:14:40.7225160Z 3.32s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_equalizer_biquad_0 2023-08-09T12:14:40.7225605Z 3.32s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_equalizer_biquad_1 2023-08-09T12:14:40.7226284Z = 2010 passed, 689 skipped, 8860 deselected, 2 xfailed, 4210 warnings in 1561.61s (0:26:01) = 2023-08-09T12:14:40.7226581Z + coverage html 2023-08-09T12:14:40.7226953Z Wrote HTML report to ]8;;file:///work/test/htmlcov/index.htmlhtmlcov/index.html]8;; 2023-08-09T12:14:40.7292741Z ##[group]Run pmeier/pytest-results-action@v0.3.0 2023-08-09T12:14:40.7292999Z with: 2023-08-09T12:14:40.7293244Z path: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-08-09T12:14:40.7293493Z fail-on-empty: false 2023-08-09T12:14:40.7293684Z env: 2023-08-09T12:14:40.7293901Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T12:14:40.7294144Z REPOSITORY: pytorch/audio 2023-08-09T12:14:40.7294340Z PR_NUMBER: 2023-08-09T12:14:40.7297355Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_APPLY_CMVN_SLIDING=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_FBANK_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_KALDI_PITCH_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_MFCC_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_SPECTROGRAM_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_CUDA_SMALL_MEMORY=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_ON_PYTHON_310=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_TEMPORARY_DISABLED=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_DECODER=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_ENCODER=true # Set CHANNEL if [[(${GITHUB_EVENT_NAME} = 'pull_request' && (${GITHUB_BASE_REF} = 'release'*)) || (${GITHUB_REF} = 'refs/heads/release'*) ]]; then export CHANNEL=test else export CHANNEL=nightly fi echo "::group::Create conda env" # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env echo "::endgroup::" echo "::group::Install PyTorch" conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" echo "::endgroup::" echo "::group::Install TorchAudio" conda install --quiet --yes 'cmake>=3.18.0' ninja pip3 install --progress-bar off -v -e . --no-use-pep517 echo "::endgroup::" echo "::group::Build FFmpeg" .github/scripts/ffmpeg/build_gpu.sh echo "::endgroup::" echo "::group::Install other Dependencies" conda install \ --quiet --yes \ -c conda-forge \ -c numba/label/dev \ sox libvorbis 'librosa==0.10.0' parameterized 'requests>=2.20' pip3 install --progress-bar off \ kaldi-io \ SoundFile \ coverage \ pytest \ pytest-cov \ 'scipy==1.7.3' \ transformers \ expecttest \ unidecode \ inflect \ Pillow \ sentencepiece \ pytorch-lightning \ 'protobuf<4.21.0' \ demucs \ tinytag \ flashlight-text \ git+https://github.com/kpu/kenlm/ \ git+https://github.com/pytorch/fairseq.git@e47a4c8 echo "::endgroup::" echo "::group::Run tests" export PATH="${PWD}/third_party/install/bin/:${PATH}" declare -a args=( '-v' '--cov=torchaudio' "--junitxml=${RUNNER_TEST_RESULTS_DIR}/junit.xml" '--durations' '100' '-k' 'cuda or gpu' ) cd test python3 -m torch.utils.collect_env env | grep TORCHAUDIO || true pytest "${args[@]}" torchaudio_unittest coverage html 2023-08-09T12:14:40.7300615Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-08-09T12:14:40.7300967Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-08-09T12:14:40.7301309Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-08-09T12:14:40.7301611Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-08-09T12:14:40.7301853Z ##[endgroup] 2023-08-09T12:14:40.8471124Z Prepare all required actions 2023-08-09T12:14:40.8489991Z ##[group]Run ./test-infra/.github/actions/chown-directory 2023-08-09T12:14:40.8490236Z with: 2023-08-09T12:14:40.8490475Z directory: /home/ec2-user/actions-runner/_work/audio/audio/ 2023-08-09T12:14:40.8490808Z ALPINE_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2023-08-09T12:14:40.8491080Z env: 2023-08-09T12:14:40.8491304Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T12:14:40.8491555Z REPOSITORY: pytorch/audio 2023-08-09T12:14:40.8491772Z PR_NUMBER: 2023-08-09T12:14:40.8494761Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_APPLY_CMVN_SLIDING=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_FBANK_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_KALDI_PITCH_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_MFCC_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_SPECTROGRAM_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_CUDA_SMALL_MEMORY=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_ON_PYTHON_310=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_TEMPORARY_DISABLED=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_DECODER=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_ENCODER=true # Set CHANNEL if [[(${GITHUB_EVENT_NAME} = 'pull_request' && (${GITHUB_BASE_REF} = 'release'*)) || (${GITHUB_REF} = 'refs/heads/release'*) ]]; then export CHANNEL=test else export CHANNEL=nightly fi echo "::group::Create conda env" # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env echo "::endgroup::" echo "::group::Install PyTorch" conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" echo "::endgroup::" echo "::group::Install TorchAudio" conda install --quiet --yes 'cmake>=3.18.0' ninja pip3 install --progress-bar off -v -e . --no-use-pep517 echo "::endgroup::" echo "::group::Build FFmpeg" .github/scripts/ffmpeg/build_gpu.sh echo "::endgroup::" echo "::group::Install other Dependencies" conda install \ --quiet --yes \ -c conda-forge \ -c numba/label/dev \ sox libvorbis 'librosa==0.10.0' parameterized 'requests>=2.20' pip3 install --progress-bar off \ kaldi-io \ SoundFile \ coverage \ pytest \ pytest-cov \ 'scipy==1.7.3' \ transformers \ expecttest \ unidecode \ inflect \ Pillow \ sentencepiece \ pytorch-lightning \ 'protobuf<4.21.0' \ demucs \ tinytag \ flashlight-text \ git+https://github.com/kpu/kenlm/ \ git+https://github.com/pytorch/fairseq.git@e47a4c8 echo "::endgroup::" echo "::group::Run tests" export PATH="${PWD}/third_party/install/bin/:${PATH}" declare -a args=( '-v' '--cov=torchaudio' "--junitxml=${RUNNER_TEST_RESULTS_DIR}/junit.xml" '--durations' '100' '-k' 'cuda or gpu' ) cd test python3 -m torch.utils.collect_env env | grep TORCHAUDIO || true pytest "${args[@]}" torchaudio_unittest coverage html 2023-08-09T12:14:40.8497976Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-08-09T12:14:40.8498332Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-08-09T12:14:40.8498675Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-08-09T12:14:40.8498983Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-08-09T12:14:40.8499231Z ##[endgroup] 2023-08-09T12:14:40.8511277Z ##[group]Run docker run --rm -v "${DIRECTORY}":/v -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" . 2023-08-09T12:14:40.8511675Z docker run --rm -v "${DIRECTORY}":/v -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" . 2023-08-09T12:14:40.8522847Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2023-08-09T12:14:40.8523092Z env: 2023-08-09T12:14:40.8523422Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T12:14:40.8523686Z REPOSITORY: pytorch/audio 2023-08-09T12:14:40.8523900Z PR_NUMBER: 2023-08-09T12:14:40.8526739Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_APPLY_CMVN_SLIDING=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_FBANK_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_KALDI_PITCH_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_MFCC_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_SPECTROGRAM_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_CUDA_SMALL_MEMORY=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_ON_PYTHON_310=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_TEMPORARY_DISABLED=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_DECODER=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_ENCODER=true # Set CHANNEL if [[(${GITHUB_EVENT_NAME} = 'pull_request' && (${GITHUB_BASE_REF} = 'release'*)) || (${GITHUB_REF} = 'refs/heads/release'*) ]]; then export CHANNEL=test else export CHANNEL=nightly fi echo "::group::Create conda env" # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env echo "::endgroup::" echo "::group::Install PyTorch" conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" echo "::endgroup::" echo "::group::Install TorchAudio" conda install --quiet --yes 'cmake>=3.18.0' ninja pip3 install --progress-bar off -v -e . --no-use-pep517 echo "::endgroup::" echo "::group::Build FFmpeg" .github/scripts/ffmpeg/build_gpu.sh echo "::endgroup::" echo "::group::Install other Dependencies" conda install \ --quiet --yes \ -c conda-forge \ -c numba/label/dev \ sox libvorbis 'librosa==0.10.0' parameterized 'requests>=2.20' pip3 install --progress-bar off \ kaldi-io \ SoundFile \ coverage \ pytest \ pytest-cov \ 'scipy==1.7.3' \ transformers \ expecttest \ unidecode \ inflect \ Pillow \ sentencepiece \ pytorch-lightning \ 'protobuf<4.21.0' \ demucs \ tinytag \ flashlight-text \ git+https://github.com/kpu/kenlm/ \ git+https://github.com/pytorch/fairseq.git@e47a4c8 echo "::endgroup::" echo "::group::Run tests" export PATH="${PWD}/third_party/install/bin/:${PATH}" declare -a args=( '-v' '--cov=torchaudio' "--junitxml=${RUNNER_TEST_RESULTS_DIR}/junit.xml" '--durations' '100' '-k' 'cuda or gpu' ) cd test python3 -m torch.utils.collect_env env | grep TORCHAUDIO || true pytest "${args[@]}" torchaudio_unittest coverage html 2023-08-09T12:14:40.8529990Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-08-09T12:14:40.8530346Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-08-09T12:14:40.8530679Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-08-09T12:14:40.8530987Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-08-09T12:14:40.8531310Z ALPINE_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2023-08-09T12:14:40.8531643Z DIRECTORY: /home/ec2-user/actions-runner/_work/audio/audio/ 2023-08-09T12:14:40.8531887Z ##[endgroup] 2023-08-09T12:14:40.8718162Z Unable to find image '308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine:latest' locally 2023-08-09T12:14:41.1580799Z latest: Pulling from tool/alpine 2023-08-09T12:14:41.1581314Z 540db60ca938: Pulling fs layer 2023-08-09T12:14:41.3245998Z 540db60ca938: Verifying Checksum 2023-08-09T12:14:41.3246287Z 540db60ca938: Download complete 2023-08-09T12:14:41.4476218Z 540db60ca938: Pull complete 2023-08-09T12:14:41.4555305Z Digest: sha256:def822f9851ca422481ec6fee59a9966f12b351c62ccb9aca841526ffaa9f748 2023-08-09T12:14:41.4581878Z Status: Downloaded newer image for 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine:latest 2023-08-09T12:14:42.7935389Z Prepare all required actions 2023-08-09T12:14:42.7953310Z ##[group]Run ./test-infra/.github/actions/chown-directory 2023-08-09T12:14:42.7953553Z with: 2023-08-09T12:14:42.7953805Z ALPINE_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2023-08-09T12:14:42.7954060Z env: 2023-08-09T12:14:42.7954280Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T12:14:42.7954538Z REPOSITORY: pytorch/audio 2023-08-09T12:14:42.7954752Z PR_NUMBER: 2023-08-09T12:14:42.7957656Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_APPLY_CMVN_SLIDING=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_FBANK_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_KALDI_PITCH_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_MFCC_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_SPECTROGRAM_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_CUDA_SMALL_MEMORY=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_ON_PYTHON_310=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_TEMPORARY_DISABLED=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_DECODER=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_ENCODER=true # Set CHANNEL if [[(${GITHUB_EVENT_NAME} = 'pull_request' && (${GITHUB_BASE_REF} = 'release'*)) || (${GITHUB_REF} = 'refs/heads/release'*) ]]; then export CHANNEL=test else export CHANNEL=nightly fi echo "::group::Create conda env" # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env echo "::endgroup::" echo "::group::Install PyTorch" conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" echo "::endgroup::" echo "::group::Install TorchAudio" conda install --quiet --yes 'cmake>=3.18.0' ninja pip3 install --progress-bar off -v -e . --no-use-pep517 echo "::endgroup::" echo "::group::Build FFmpeg" .github/scripts/ffmpeg/build_gpu.sh echo "::endgroup::" echo "::group::Install other Dependencies" conda install \ --quiet --yes \ -c conda-forge \ -c numba/label/dev \ sox libvorbis 'librosa==0.10.0' parameterized 'requests>=2.20' pip3 install --progress-bar off \ kaldi-io \ SoundFile \ coverage \ pytest \ pytest-cov \ 'scipy==1.7.3' \ transformers \ expecttest \ unidecode \ inflect \ Pillow \ sentencepiece \ pytorch-lightning \ 'protobuf<4.21.0' \ demucs \ tinytag \ flashlight-text \ git+https://github.com/kpu/kenlm/ \ git+https://github.com/pytorch/fairseq.git@e47a4c8 echo "::endgroup::" echo "::group::Run tests" export PATH="${PWD}/third_party/install/bin/:${PATH}" declare -a args=( '-v' '--cov=torchaudio' "--junitxml=${RUNNER_TEST_RESULTS_DIR}/junit.xml" '--durations' '100' '-k' 'cuda or gpu' ) cd test python3 -m torch.utils.collect_env env | grep TORCHAUDIO || true pytest "${args[@]}" torchaudio_unittest coverage html 2023-08-09T12:14:42.7960773Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-08-09T12:14:42.7961128Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-08-09T12:14:42.7961459Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-08-09T12:14:42.7961769Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-08-09T12:14:42.7962018Z ##[endgroup] 2023-08-09T12:14:42.7973710Z ##[group]Run docker run --rm -v "${DIRECTORY}":/v -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" . 2023-08-09T12:14:42.7974117Z docker run --rm -v "${DIRECTORY}":/v -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" . 2023-08-09T12:14:42.7985255Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2023-08-09T12:14:42.7985501Z env: 2023-08-09T12:14:42.7985715Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T12:14:42.7986053Z REPOSITORY: pytorch/audio 2023-08-09T12:14:42.7986262Z PR_NUMBER: 2023-08-09T12:14:42.7989094Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_APPLY_CMVN_SLIDING=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_FBANK_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_KALDI_PITCH_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_MFCC_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_SPECTROGRAM_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_CUDA_SMALL_MEMORY=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_ON_PYTHON_310=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_TEMPORARY_DISABLED=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_DECODER=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_ENCODER=true # Set CHANNEL if [[(${GITHUB_EVENT_NAME} = 'pull_request' && (${GITHUB_BASE_REF} = 'release'*)) || (${GITHUB_REF} = 'refs/heads/release'*) ]]; then export CHANNEL=test else export CHANNEL=nightly fi echo "::group::Create conda env" # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env echo "::endgroup::" echo "::group::Install PyTorch" conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" echo "::endgroup::" echo "::group::Install TorchAudio" conda install --quiet --yes 'cmake>=3.18.0' ninja pip3 install --progress-bar off -v -e . --no-use-pep517 echo "::endgroup::" echo "::group::Build FFmpeg" .github/scripts/ffmpeg/build_gpu.sh echo "::endgroup::" echo "::group::Install other Dependencies" conda install \ --quiet --yes \ -c conda-forge \ -c numba/label/dev \ sox libvorbis 'librosa==0.10.0' parameterized 'requests>=2.20' pip3 install --progress-bar off \ kaldi-io \ SoundFile \ coverage \ pytest \ pytest-cov \ 'scipy==1.7.3' \ transformers \ expecttest \ unidecode \ inflect \ Pillow \ sentencepiece \ pytorch-lightning \ 'protobuf<4.21.0' \ demucs \ tinytag \ flashlight-text \ git+https://github.com/kpu/kenlm/ \ git+https://github.com/pytorch/fairseq.git@e47a4c8 echo "::endgroup::" echo "::group::Run tests" export PATH="${PWD}/third_party/install/bin/:${PATH}" declare -a args=( '-v' '--cov=torchaudio' "--junitxml=${RUNNER_TEST_RESULTS_DIR}/junit.xml" '--durations' '100' '-k' 'cuda or gpu' ) cd test python3 -m torch.utils.collect_env env | grep TORCHAUDIO || true pytest "${args[@]}" torchaudio_unittest coverage html 2023-08-09T12:14:42.7992132Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-08-09T12:14:42.7992485Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-08-09T12:14:42.7992812Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-08-09T12:14:42.7993129Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-08-09T12:14:42.7993455Z ALPINE_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2023-08-09T12:14:42.7993712Z DIRECTORY: 2023-08-09T12:14:42.7993899Z ##[endgroup] 2023-08-09T12:14:43.6277965Z ##[group]Run # Only do these steps if we actually want to upload an artifact 2023-08-09T12:14:43.6278362Z # Only do these steps if we actually want to upload an artifact 2023-08-09T12:14:43.6278660Z if [[ -n "${UPLOAD_ARTIFACT_NAME}" ]]; then 2023-08-09T12:14:43.6278993Z  # If the default execution path is followed then we should get a wheel in the dist/ folder 2023-08-09T12:14:43.6279347Z  # attempt to just grab whatever is in there and scoop it all up 2023-08-09T12:14:43.6279657Z  if find "dist/" -name "*.whl" >/dev/null 2>/dev/null; then 2023-08-09T12:14:43.6279947Z  mv -v dist/*.whl "${RUNNER_ARTIFACT_DIR}/" 2023-08-09T12:14:43.6280177Z  fi 2023-08-09T12:14:43.6280458Z  # Set to fail upload step if there are no files for upload and expected files for upload 2023-08-09T12:14:43.6280804Z  echo 'if-no-files-found=error' >> "${GITHUB_OUTPUT}" 2023-08-09T12:14:43.6281083Z fi 2023-08-09T12:14:43.6281254Z  2023-08-09T12:14:43.6281439Z upload_docs=0 2023-08-09T12:14:43.6281719Z # Check if there are things in the documentation folder to uplaod 2023-08-09T12:14:43.6282044Z if find "${RUNNER_DOCS_DIR}" -mindepth 1 -maxdepth 1 | read -r; then 2023-08-09T12:14:43.6282383Z  # TODO: Add a check here to test if on ec2 because if we're not on ec2 then this 2023-08-09T12:14:43.6282694Z  # upload will probably not work correctly 2023-08-09T12:14:43.6282938Z  upload_docs=1 2023-08-09T12:14:43.6283122Z fi 2023-08-09T12:14:43.6283367Z echo "upload-docs=${upload_docs}" >> "${GITHUB_OUTPUT}" 2023-08-09T12:14:43.6294965Z shell: /usr/bin/bash -e {0} 2023-08-09T12:14:43.6295163Z env: 2023-08-09T12:14:43.6295392Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T12:14:43.6295642Z REPOSITORY: pytorch/audio 2023-08-09T12:14:43.6295842Z PR_NUMBER: 2023-08-09T12:14:43.6298792Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_APPLY_CMVN_SLIDING=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_FBANK_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_KALDI_PITCH_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_MFCC_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_SPECTROGRAM_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_CUDA_SMALL_MEMORY=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_ON_PYTHON_310=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_TEMPORARY_DISABLED=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_DECODER=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_ENCODER=true # Set CHANNEL if [[(${GITHUB_EVENT_NAME} = 'pull_request' && (${GITHUB_BASE_REF} = 'release'*)) || (${GITHUB_REF} = 'refs/heads/release'*) ]]; then export CHANNEL=test else export CHANNEL=nightly fi echo "::group::Create conda env" # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env echo "::endgroup::" echo "::group::Install PyTorch" conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" echo "::endgroup::" echo "::group::Install TorchAudio" conda install --quiet --yes 'cmake>=3.18.0' ninja pip3 install --progress-bar off -v -e . --no-use-pep517 echo "::endgroup::" echo "::group::Build FFmpeg" .github/scripts/ffmpeg/build_gpu.sh echo "::endgroup::" echo "::group::Install other Dependencies" conda install \ --quiet --yes \ -c conda-forge \ -c numba/label/dev \ sox libvorbis 'librosa==0.10.0' parameterized 'requests>=2.20' pip3 install --progress-bar off \ kaldi-io \ SoundFile \ coverage \ pytest \ pytest-cov \ 'scipy==1.7.3' \ transformers \ expecttest \ unidecode \ inflect \ Pillow \ sentencepiece \ pytorch-lightning \ 'protobuf<4.21.0' \ demucs \ tinytag \ flashlight-text \ git+https://github.com/kpu/kenlm/ \ git+https://github.com/pytorch/fairseq.git@e47a4c8 echo "::endgroup::" echo "::group::Run tests" export PATH="${PWD}/third_party/install/bin/:${PATH}" declare -a args=( '-v' '--cov=torchaudio' "--junitxml=${RUNNER_TEST_RESULTS_DIR}/junit.xml" '--durations' '100' '-k' 'cuda or gpu' ) cd test python3 -m torch.utils.collect_env env | grep TORCHAUDIO || true pytest "${args[@]}" torchaudio_unittest coverage html 2023-08-09T12:14:43.6301888Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-08-09T12:14:43.6302234Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-08-09T12:14:43.6302568Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-08-09T12:14:43.6302883Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-08-09T12:14:43.6303137Z UPLOAD_ARTIFACT_NAME: 2023-08-09T12:14:43.6303340Z ##[endgroup] 2023-08-09T12:14:43.6361632Z Prepare all required actions 2023-08-09T12:14:43.6380297Z ##[group]Run ./test-infra/.github/actions/teardown-linux 2023-08-09T12:14:43.6380537Z with: 2023-08-09T12:14:43.6397710Z env: 2023-08-09T12:14:43.6397971Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T12:14:43.6398252Z REPOSITORY: pytorch/audio 2023-08-09T12:14:43.6398485Z PR_NUMBER: 2023-08-09T12:14:43.6401438Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_APPLY_CMVN_SLIDING=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_FBANK_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_KALDI_PITCH_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_MFCC_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_SPECTROGRAM_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_CUDA_SMALL_MEMORY=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_ON_PYTHON_310=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_TEMPORARY_DISABLED=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_DECODER=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_ENCODER=true # Set CHANNEL if [[(${GITHUB_EVENT_NAME} = 'pull_request' && (${GITHUB_BASE_REF} = 'release'*)) || (${GITHUB_REF} = 'refs/heads/release'*) ]]; then export CHANNEL=test else export CHANNEL=nightly fi echo "::group::Create conda env" # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env echo "::endgroup::" echo "::group::Install PyTorch" conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" echo "::endgroup::" echo "::group::Install TorchAudio" conda install --quiet --yes 'cmake>=3.18.0' ninja pip3 install --progress-bar off -v -e . --no-use-pep517 echo "::endgroup::" echo "::group::Build FFmpeg" .github/scripts/ffmpeg/build_gpu.sh echo "::endgroup::" echo "::group::Install other Dependencies" conda install \ --quiet --yes \ -c conda-forge \ -c numba/label/dev \ sox libvorbis 'librosa==0.10.0' parameterized 'requests>=2.20' pip3 install --progress-bar off \ kaldi-io \ SoundFile \ coverage \ pytest \ pytest-cov \ 'scipy==1.7.3' \ transformers \ expecttest \ unidecode \ inflect \ Pillow \ sentencepiece \ pytorch-lightning \ 'protobuf<4.21.0' \ demucs \ tinytag \ flashlight-text \ git+https://github.com/kpu/kenlm/ \ git+https://github.com/pytorch/fairseq.git@e47a4c8 echo "::endgroup::" echo "::group::Run tests" export PATH="${PWD}/third_party/install/bin/:${PATH}" declare -a args=( '-v' '--cov=torchaudio' "--junitxml=${RUNNER_TEST_RESULTS_DIR}/junit.xml" '--durations' '100' '-k' 'cuda or gpu' ) cd test python3 -m torch.utils.collect_env env | grep TORCHAUDIO || true pytest "${args[@]}" torchaudio_unittest coverage html 2023-08-09T12:14:43.6404680Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-08-09T12:14:43.6405048Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-08-09T12:14:43.6405387Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-08-09T12:14:43.6405694Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-08-09T12:14:43.6405940Z ##[endgroup] 2023-08-09T12:14:43.6419734Z ##[group]Run set -eou pipefail 2023-08-09T12:14:43.6419976Z set -eou pipefail 2023-08-09T12:14:43.6420177Z  2023-08-09T12:14:43.6420437Z echo "Holding runner for 2 hours until all ssh sessions have logged out" 2023-08-09T12:14:43.6420708Z for _ in $(seq 1440); do 2023-08-09T12:14:43.6420956Z  # Break if no ssh session exists anymore 2023-08-09T12:14:43.6421205Z  if [ "$(who)" = "" ]; then 2023-08-09T12:14:43.6421410Z  break 2023-08-09T12:14:43.6421587Z  fi 2023-08-09T12:14:43.6421867Z  echo "." 2023-08-09T12:14:43.6422075Z  sleep 5 2023-08-09T12:14:43.6422253Z done 2023-08-09T12:14:43.6433046Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2023-08-09T12:14:43.6433290Z env: 2023-08-09T12:14:43.6433502Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T12:14:43.6433755Z REPOSITORY: pytorch/audio 2023-08-09T12:14:43.6433962Z PR_NUMBER: 2023-08-09T12:14:43.6436815Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_APPLY_CMVN_SLIDING=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_FBANK_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_KALDI_PITCH_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_MFCC_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_SPECTROGRAM_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_CUDA_SMALL_MEMORY=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_ON_PYTHON_310=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_TEMPORARY_DISABLED=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_DECODER=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_ENCODER=true # Set CHANNEL if [[(${GITHUB_EVENT_NAME} = 'pull_request' && (${GITHUB_BASE_REF} = 'release'*)) || (${GITHUB_REF} = 'refs/heads/release'*) ]]; then export CHANNEL=test else export CHANNEL=nightly fi echo "::group::Create conda env" # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env echo "::endgroup::" echo "::group::Install PyTorch" conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" echo "::endgroup::" echo "::group::Install TorchAudio" conda install --quiet --yes 'cmake>=3.18.0' ninja pip3 install --progress-bar off -v -e . --no-use-pep517 echo "::endgroup::" echo "::group::Build FFmpeg" .github/scripts/ffmpeg/build_gpu.sh echo "::endgroup::" echo "::group::Install other Dependencies" conda install \ --quiet --yes \ -c conda-forge \ -c numba/label/dev \ sox libvorbis 'librosa==0.10.0' parameterized 'requests>=2.20' pip3 install --progress-bar off \ kaldi-io \ SoundFile \ coverage \ pytest \ pytest-cov \ 'scipy==1.7.3' \ transformers \ expecttest \ unidecode \ inflect \ Pillow \ sentencepiece \ pytorch-lightning \ 'protobuf<4.21.0' \ demucs \ tinytag \ flashlight-text \ git+https://github.com/kpu/kenlm/ \ git+https://github.com/pytorch/fairseq.git@e47a4c8 echo "::endgroup::" echo "::group::Run tests" export PATH="${PWD}/third_party/install/bin/:${PATH}" declare -a args=( '-v' '--cov=torchaudio' "--junitxml=${RUNNER_TEST_RESULTS_DIR}/junit.xml" '--durations' '100' '-k' 'cuda or gpu' ) cd test python3 -m torch.utils.collect_env env | grep TORCHAUDIO || true pytest "${args[@]}" torchaudio_unittest coverage html 2023-08-09T12:14:43.6439876Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-08-09T12:14:43.6440224Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-08-09T12:14:43.6440549Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-08-09T12:14:43.6440893Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-08-09T12:14:43.6441159Z ##[endgroup] 2023-08-09T12:14:43.6461694Z Holding runner for 2 hours until all ssh sessions have logged out 2023-08-09T12:14:43.6497798Z ##[group]Run # ignore expansion of "docker ps -q" since it could be empty 2023-08-09T12:14:43.6498153Z # ignore expansion of "docker ps -q" since it could be empty 2023-08-09T12:14:43.6498434Z # shellcheck disable=SC2046 2023-08-09T12:14:43.6498687Z docker stop $(docker ps -q) || true 2023-08-09T12:14:43.6498934Z # Prune all of the docker images 2023-08-09T12:14:43.6499302Z docker system prune -af 2023-08-09T12:14:43.6508896Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2023-08-09T12:14:43.6509133Z env: 2023-08-09T12:14:43.6509359Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T12:14:43.6509610Z REPOSITORY: pytorch/audio 2023-08-09T12:14:43.6509812Z PR_NUMBER: 2023-08-09T12:14:43.6512681Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_APPLY_CMVN_SLIDING=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_FBANK_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_KALDI_PITCH_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_MFCC_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_SPECTROGRAM_FEATS=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_CUDA_SMALL_MEMORY=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_ON_PYTHON_310=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_TEMPORARY_DISABLED=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_DECODER=true export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_ENCODER=true # Set CHANNEL if [[(${GITHUB_EVENT_NAME} = 'pull_request' && (${GITHUB_BASE_REF} = 'release'*)) || (${GITHUB_REF} = 'refs/heads/release'*) ]]; then export CHANNEL=test else export CHANNEL=nightly fi echo "::group::Create conda env" # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env echo "::endgroup::" echo "::group::Install PyTorch" conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" echo "::endgroup::" echo "::group::Install TorchAudio" conda install --quiet --yes 'cmake>=3.18.0' ninja pip3 install --progress-bar off -v -e . --no-use-pep517 echo "::endgroup::" echo "::group::Build FFmpeg" .github/scripts/ffmpeg/build_gpu.sh echo "::endgroup::" echo "::group::Install other Dependencies" conda install \ --quiet --yes \ -c conda-forge \ -c numba/label/dev \ sox libvorbis 'librosa==0.10.0' parameterized 'requests>=2.20' pip3 install --progress-bar off \ kaldi-io \ SoundFile \ coverage \ pytest \ pytest-cov \ 'scipy==1.7.3' \ transformers \ expecttest \ unidecode \ inflect \ Pillow \ sentencepiece \ pytorch-lightning \ 'protobuf<4.21.0' \ demucs \ tinytag \ flashlight-text \ git+https://github.com/kpu/kenlm/ \ git+https://github.com/pytorch/fairseq.git@e47a4c8 echo "::endgroup::" echo "::group::Run tests" export PATH="${PWD}/third_party/install/bin/:${PATH}" declare -a args=( '-v' '--cov=torchaudio' "--junitxml=${RUNNER_TEST_RESULTS_DIR}/junit.xml" '--durations' '100' '-k' 'cuda or gpu' ) cd test python3 -m torch.utils.collect_env env | grep TORCHAUDIO || true pytest "${args[@]}" torchaudio_unittest coverage html 2023-08-09T12:14:43.6515793Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-08-09T12:14:43.6516151Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-08-09T12:14:43.6516486Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-08-09T12:14:43.6516801Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-08-09T12:14:43.6517046Z ##[endgroup] 2023-08-09T12:14:53.9826934Z 22e6a775e605 2023-08-09T12:14:55.7077485Z Deleted Containers: 2023-08-09T12:14:55.7077838Z 22e6a775e605fd218e015c5dcc86a807399d882d567185392dc9e740cfb074f6 2023-08-09T12:14:55.7078021Z 2023-08-09T12:14:58.1620013Z Deleted Images: 2023-08-09T12:14:58.1620571Z untagged: pytorch/conda-builder:cuda11.8 2023-08-09T12:14:58.1621173Z untagged: pytorch/conda-builder@sha256:5fee47bc124a0ed44d8d74af710d4825c9f96a5454399b86028e45592dbc8c3f 2023-08-09T12:14:58.1621660Z deleted: sha256:0803663685900d71dc6eedbb2aebc10e845b93f3154f6f1c95b5f32cfa40a452 2023-08-09T12:14:58.1622375Z deleted: sha256:0fb4203b62a572c05612c2a50c85da3ad4720fcb5ec17fde82b88ed2dfdab956 2023-08-09T12:14:58.1622843Z deleted: sha256:6445c6f6f89631e951f3c94206ecc2214ee011c670c22e74b57e285eeb55a68d 2023-08-09T12:14:58.1623357Z deleted: sha256:54959cf4a4cfafc419fa02a4e8d12ab154f5d82a337ddc61a127657c5487364e 2023-08-09T12:14:58.1623836Z deleted: sha256:839b1e46bcacbd72a976f7d9cdb62a425c3b0c186d52b510198da2243258319c 2023-08-09T12:14:58.1624292Z deleted: sha256:2b0c8de7c2abf284dc9de45a5e170dc8fbf8943998767cf44146ae1277e04db6 2023-08-09T12:14:58.1624705Z deleted: sha256:fcf23081db516fd88a9ff3cd47ddd31bc7fe19894642c0cc9eb1a1745dc5ae6a 2023-08-09T12:14:58.1625219Z deleted: sha256:03bb51ef2389e190c138a23b93ed1a394e24c136cbd018adb0bbde6511319d5b 2023-08-09T12:14:58.1625726Z deleted: sha256:c8926ad2398010e39eb990df332ab8eb6010cac3ac70b11f123957c6d994533c 2023-08-09T12:14:58.1626223Z deleted: sha256:844c416bbe739ec4fd800cc5d8065a52a345d9dd4f7c8b6820cf38f30fb8e925 2023-08-09T12:14:58.1626737Z deleted: sha256:6528d2d84f5899bf8fec5ccc3848942f3d132b6a5bc9f5fd97e34d413dd56149 2023-08-09T12:14:58.1627258Z deleted: sha256:41ab98c841092d917439cefabf46c0d688ac80958ae99b268ff008cb7616d0b9 2023-08-09T12:14:58.1627797Z deleted: sha256:1088639d3f053fc9d55f3ef6f41dbc29466d2bb46d8aa80378145fdeb421b037 2023-08-09T12:14:58.1628278Z deleted: sha256:48291a42ab986da9103f064d8a2ae1290b1b3be97baede9351ac7ee44f9713ed 2023-08-09T12:14:58.1628673Z deleted: sha256:d60fc98270a40439f44025e75ebca7860dc1641c70eac7a6fb7f44c7775e8bc1 2023-08-09T12:14:58.1629023Z deleted: sha256:621caabbbb5679e6f469a027ea8a8db1fa8729ab5c944eb1d3000f42eb53aede 2023-08-09T12:14:58.1629370Z deleted: sha256:62530fc546e75b1b3f71135012a24fa3f4203975bc7e28a38b7254dfaf3d9079 2023-08-09T12:14:58.1629712Z deleted: sha256:051c101eb3cb2d61b8eea3ad5aac843a83f9239a4babc2a1d9c98391c182805c 2023-08-09T12:14:58.1630067Z deleted: sha256:16e7770e5d221bed660fe7d8c77e14ab566675de45a6e15313f0e94f56fd66fe 2023-08-09T12:14:58.1630396Z deleted: sha256:7786634cbc71898b12c27aa6ca5a2e35c91353c660234c6c8272c8de94bbeea6 2023-08-09T12:14:58.1630738Z deleted: sha256:2c764404cda355f281887f6fd7f7cf04f42e240dfb2e0c05e9534493ea4e9c5a 2023-08-09T12:14:58.1631220Z deleted: sha256:174f5685490326fc0a1c0f5570b8663732189b327007e47ff13d2ca59673db02 2023-08-09T12:14:58.1631644Z untagged: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine:latest 2023-08-09T12:14:58.1632230Z untagged: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine@sha256:def822f9851ca422481ec6fee59a9966f12b351c62ccb9aca841526ffaa9f748 2023-08-09T12:14:58.1632686Z deleted: sha256:6dbb9cc54074106d46d4ccb330f2a40a682d49dda5f4844962b7dce9fe44aaec 2023-08-09T12:14:58.1633074Z deleted: sha256:b2d5eeeaba3a22b9b8aa97261957974a6bd65274ebd43e1d81d0a7b8b752b116 2023-08-09T12:14:58.1633290Z 2023-08-09T12:14:58.1635871Z Total reclaimed space: 22.87GB 2023-08-09T12:14:58.1688377Z Post job cleanup. 2023-08-09T12:14:58.2474371Z [command]/usr/bin/git version 2023-08-09T12:14:58.2508038Z git version 2.40.1 2023-08-09T12:14:58.2543707Z Temporarily overriding HOME='/home/ec2-user/actions-runner/_work/_temp/e6fa59ef-b5eb-4c13-9906-bf1e824f5d85' before making global git config changes 2023-08-09T12:14:58.2544496Z Adding repository directory to the temporary git global config as a safe directory 2023-08-09T12:14:58.2549187Z [command]/usr/bin/git config --global --add safe.directory /home/ec2-user/actions-runner/_work/audio/audio/pytorch/audio 2023-08-09T12:14:58.2572134Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2023-08-09T12:14:58.2600342Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" 2023-08-09T12:14:58.2810124Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2023-08-09T12:14:58.2830216Z http.https://github.com/.extraheader 2023-08-09T12:14:58.2838422Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader 2023-08-09T12:14:58.2865097Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" 2023-08-09T12:14:58.3154638Z Post job cleanup. 2023-08-09T12:14:58.3944829Z [command]/usr/bin/git version 2023-08-09T12:14:58.3978451Z git version 2.40.1 2023-08-09T12:14:58.4013928Z Temporarily overriding HOME='/home/ec2-user/actions-runner/_work/_temp/64847070-a653-4556-a628-764aeec95208' before making global git config changes 2023-08-09T12:14:58.4014654Z Adding repository directory to the temporary git global config as a safe directory 2023-08-09T12:14:58.4019401Z [command]/usr/bin/git config --global --add safe.directory /home/ec2-user/actions-runner/_work/audio/audio/test-infra 2023-08-09T12:14:58.4050246Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2023-08-09T12:14:58.4077183Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" 2023-08-09T12:14:58.4282039Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2023-08-09T12:14:58.4299385Z http.https://github.com/.extraheader 2023-08-09T12:14:58.4307906Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader 2023-08-09T12:14:58.4331902Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" 2023-08-09T12:14:58.4736205Z Cleaning up orphan processes