2023-08-09T11:34:20.0964888Z Requested labels: linux.g5.4xlarge.nvidia.gpu 2023-08-09T11:34:20.0965094Z Job defined at: pytorch/test-infra/.github/workflows/linux_job.yml@refs/heads/main 2023-08-09T11:34:20.0965348Z Reusable workflow chain: 2023-08-09T11:34:20.0965494Z pytorch/audio/.github/workflows/unittest-linux-gpu.yml@refs/heads/nightly (fe9b9ff75edebf1e0e326f64577d64df3b5858db) 2023-08-09T11:34:20.0965648Z -> pytorch/test-infra/.github/workflows/linux_job.yml@refs/heads/main (264b8afc6d56140163c6b64f4088a17c4cd59bfd) 2023-08-09T11:34:20.0965805Z Waiting for a runner to pick up this job... 2023-08-09T11:38:07.5437500Z Job is about to start running on the runner: i-094aa4952032342b8 (organization) 2023-08-09T11:38:23.4134263Z Current runner version: '2.307.1' 2023-08-09T11:38:23.4139261Z Runner name: 'i-094aa4952032342b8' 2023-08-09T11:38:23.4139783Z Runner group name: 'Default' 2023-08-09T11:38:23.4140439Z Machine name: 'ip-10-0-3-100' 2023-08-09T11:38:23.4142616Z ##[group]GITHUB_TOKEN Permissions 2023-08-09T11:38:23.4143339Z Actions: write 2023-08-09T11:38:23.4143696Z Checks: write 2023-08-09T11:38:23.4144032Z Contents: write 2023-08-09T11:38:23.4144389Z Deployments: write 2023-08-09T11:38:23.4144730Z Discussions: write 2023-08-09T11:38:23.4145071Z Issues: write 2023-08-09T11:38:23.4145432Z Metadata: read 2023-08-09T11:38:23.4145772Z Packages: write 2023-08-09T11:38:23.4146115Z Pages: write 2023-08-09T11:38:23.4146464Z PullRequests: write 2023-08-09T11:38:23.4146841Z RepositoryProjects: write 2023-08-09T11:38:23.4147251Z SecurityEvents: write 2023-08-09T11:38:23.4147607Z Statuses: write 2023-08-09T11:38:23.4147928Z ##[endgroup] 2023-08-09T11:38:23.4150834Z Secret source: Actions 2023-08-09T11:38:23.4151492Z Prepare workflow directory 2023-08-09T11:38:23.5206115Z Prepare all required actions 2023-08-09T11:38:23.5372143Z Getting action download info 2023-08-09T11:38:23.8150377Z Download action repository 'actions/checkout@v3' (SHA:c85c95e3d7251135ab7dc9ce3241c5835cc595a9) 2023-08-09T11:38:24.0504962Z Download action repository 'actions/download-artifact@v3' (SHA:9bc31d5ccc31df68ecc42ccf4149144866c47d8a) 2023-08-09T11:38:24.1829706Z Download action repository 'pmeier/pytest-results-action@v0.3.0' (SHA:a2c1430e2bddadbad9f49a6f9b879f062c6b19b1) 2023-08-09T11:38:24.3518334Z Download action repository 'actions/upload-artifact@v3' (SHA:0b7f8abb1508181956e8e162db84b466c27e18ce) 2023-08-09T11:38:24.4786517Z Download action repository 'seemethere/upload-artifact-s3@v5' (SHA:baba72d0712b404f646cebe0730933554ebce96a) 2023-08-09T11:38:24.8170392Z Uses: pytorch/test-infra/.github/workflows/linux_job.yml@refs/heads/main (264b8afc6d56140163c6b64f4088a17c4cd59bfd) 2023-08-09T11:38:24.8171793Z ##[group] Inputs 2023-08-09T11:38:24.8174681Z script: set -ex # Set up Environment Variables export PYTHON_VERSION="3.9" 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:38:24.8178000Z timeout: 120 2023-08-09T11:38:24.8178239Z runner: linux.g5.4xlarge.nvidia.gpu 2023-08-09T11:38:24.8178479Z upload-artifact: 2023-08-09T11:38:24.8178691Z download-artifact: 2023-08-09T11:38:24.8178920Z repository: pytorch/audio 2023-08-09T11:38:24.8179144Z fetch-depth: 1 2023-08-09T11:38:24.8179334Z submodules: 2023-08-09T11:38:24.8179524Z ref: 2023-08-09T11:38:24.8179753Z test-infra-repository: pytorch/test-infra 2023-08-09T11:38:24.8179990Z test-infra-ref: 2023-08-09T11:38:24.8180217Z docker-image: pytorch/conda-builder 2023-08-09T11:38:24.8180465Z docker-build-dir: .ci/docker 2023-08-09T11:38:24.8180679Z gpu-arch-type: cuda 2023-08-09T11:38:24.8180898Z gpu-arch-version: 11.8 2023-08-09T11:38:24.8181139Z job-name: linux-job 2023-08-09T11:38:24.8181655Z continue-on-error: false 2023-08-09T11:38:24.8181877Z binary-matrix: 2023-08-09T11:38:24.8182103Z run-with-docker: true 2023-08-09T11:38:24.8182306Z secrets-env: 2023-08-09T11:38:24.8182503Z no-sudo: false 2023-08-09T11:38:24.8182706Z ##[endgroup] 2023-08-09T11:38:24.8183110Z Complete job name: tests (3.9, 11.8) / linux-job 2023-08-09T11:38:24.8871423Z ##[group]Run if [[ "${NO_SUDO}" == "false" ]]; then 2023-08-09T11:38:24.8871813Z if [[ "${NO_SUDO}" == "false" ]]; then 2023-08-09T11:38:24.8872081Z  echo "::group::Cleanup with-sudo debug output" 2023-08-09T11:38:24.8872351Z  sudo rm -rfv "${GITHUB_WORKSPACE}" 2023-08-09T11:38:24.8872583Z else 2023-08-09T11:38:24.8872816Z  echo "::group::Cleanup no-sudo debug output" 2023-08-09T11:38:24.8873064Z  rm -rfv "${GITHUB_WORKSPACE}" 2023-08-09T11:38:24.8873274Z fi 2023-08-09T11:38:24.8873455Z  2023-08-09T11:38:24.8873665Z mkdir -p "${GITHUB_WORKSPACE}" 2023-08-09T11:38:24.8873901Z echo "::endgroup::" 2023-08-09T11:38:24.8887738Z shell: /usr/bin/bash -e {0} 2023-08-09T11:38:24.8887962Z env: 2023-08-09T11:38:24.8888208Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T11:38:24.8888468Z REPOSITORY: pytorch/audio 2023-08-09T11:38:24.8888680Z PR_NUMBER: 2023-08-09T11:38:24.8891353Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.9" 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:38:24.8894140Z NO_SUDO: false 2023-08-09T11:38:24.8894340Z ##[endgroup] 2023-08-09T11:38:24.9085369Z ##[group]Cleanup with-sudo debug output 2023-08-09T11:38:24.9109632Z removed directory: ‘/home/ec2-user/actions-runner/_work/audio/audio’ 2023-08-09T11:38:24.9129883Z ##[endgroup] 2023-08-09T11:38:24.9343127Z ##[group]Run actions/checkout@v3 2023-08-09T11:38:24.9343394Z with: 2023-08-09T11:38:24.9343668Z repository: pytorch/test-infra 2023-08-09T11:38:24.9343962Z path: test-infra 2023-08-09T11:38:24.9344195Z submodules: recursive 2023-08-09T11:38:24.9344540Z token: *** 2023-08-09T11:38:24.9344786Z ssh-strict: true 2023-08-09T11:38:24.9345029Z persist-credentials: true 2023-08-09T11:38:24.9345291Z clean: true 2023-08-09T11:38:24.9345544Z sparse-checkout-cone-mode: true 2023-08-09T11:38:24.9345803Z fetch-depth: 1 2023-08-09T11:38:24.9346148Z lfs: false 2023-08-09T11:38:24.9346362Z set-safe-directory: true 2023-08-09T11:38:24.9346619Z env: 2023-08-09T11:38:24.9346877Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T11:38:24.9347128Z REPOSITORY: pytorch/audio 2023-08-09T11:38:24.9347388Z PR_NUMBER: 2023-08-09T11:38:24.9350226Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.9" 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:38:24.9353189Z ##[endgroup] 2023-08-09T11:38:25.0291413Z Syncing repository: pytorch/test-infra 2023-08-09T11:38:25.0292053Z ##[group]Getting Git version info 2023-08-09T11:38:25.0292485Z Working directory is '/home/ec2-user/actions-runner/_work/audio/audio/test-infra' 2023-08-09T11:38:25.0293052Z [command]/usr/bin/git version 2023-08-09T11:38:25.0293277Z git version 2.40.1 2023-08-09T11:38:25.0294281Z ##[endgroup] 2023-08-09T11:38:25.0306121Z Temporarily overriding HOME='/home/ec2-user/actions-runner/_work/_temp/12e083ce-44f2-49b7-a60d-335fb1853d44' before making global git config changes 2023-08-09T11:38:25.0306790Z Adding repository directory to the temporary git global config as a safe directory 2023-08-09T11:38:25.0307520Z [command]/usr/bin/git config --global --add safe.directory /home/ec2-user/actions-runner/_work/audio/audio/test-infra 2023-08-09T11:38:25.0321413Z ##[group]Initializing the repository 2023-08-09T11:38:25.0324493Z [command]/usr/bin/git init /home/ec2-user/actions-runner/_work/audio/audio/test-infra 2023-08-09T11:38:25.0341482Z hint: Using 'master' as the name for the initial branch. This default branch name 2023-08-09T11:38:25.0342136Z hint: is subject to change. To configure the initial branch name to use in all 2023-08-09T11:38:25.0342666Z hint: of your new repositories, which will suppress this warning, call: 2023-08-09T11:38:25.0343050Z hint: 2023-08-09T11:38:25.0343488Z hint: git config --global init.defaultBranch 2023-08-09T11:38:25.0343843Z hint: 2023-08-09T11:38:25.0344361Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and 2023-08-09T11:38:25.0344775Z hint: 'development'. The just-created branch can be renamed via this command: 2023-08-09T11:38:25.0345048Z hint: 2023-08-09T11:38:25.0345288Z hint: git branch -m 2023-08-09T11:38:25.0345769Z Initialized empty Git repository in /home/ec2-user/actions-runner/_work/audio/audio/test-infra/.git/ 2023-08-09T11:38:25.0350498Z [command]/usr/bin/git remote add origin https://github.com/pytorch/test-infra 2023-08-09T11:38:25.0372875Z ##[endgroup] 2023-08-09T11:38:25.0373322Z ##[group]Disabling automatic garbage collection 2023-08-09T11:38:25.0375716Z [command]/usr/bin/git config --local gc.auto 0 2023-08-09T11:38:25.0396317Z ##[endgroup] 2023-08-09T11:38:25.0396733Z ##[group]Setting up auth 2023-08-09T11:38:25.0401288Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2023-08-09T11:38:25.0420241Z [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:38:25.0632330Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2023-08-09T11:38:25.0652437Z [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:38:25.0847511Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** 2023-08-09T11:38:25.0880235Z ##[endgroup] 2023-08-09T11:38:25.0880667Z ##[group]Determining the default branch 2023-08-09T11:38:25.0884133Z Retrieving the default branch name 2023-08-09T11:38:25.3216981Z Default branch 'main' 2023-08-09T11:38:25.3217552Z ##[endgroup] 2023-08-09T11:38:25.3218007Z ##[group]Fetching the repository 2023-08-09T11:38:25.3222369Z [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:38:25.5382884Z remote: Enumerating objects: 1076, done. 2023-08-09T11:38:25.5383825Z remote: Counting objects: 0% (1/1076) 2023-08-09T11:38:25.5384292Z remote: Counting objects: 1% (11/1076) 2023-08-09T11:38:25.5384588Z remote: Counting objects: 2% (22/1076) 2023-08-09T11:38:25.5384921Z remote: Counting objects: 3% (33/1076) 2023-08-09T11:38:25.5385223Z remote: Counting objects: 4% (44/1076) 2023-08-09T11:38:25.5385592Z remote: Counting objects: 5% (54/1076) 2023-08-09T11:38:25.5385976Z remote: Counting objects: 6% (65/1076) 2023-08-09T11:38:25.5386371Z remote: Counting objects: 7% (76/1076) 2023-08-09T11:38:25.5386754Z remote: Counting objects: 8% (87/1076) 2023-08-09T11:38:25.5387055Z remote: Counting objects: 9% (97/1076) 2023-08-09T11:38:25.5387439Z remote: Counting objects: 10% (108/1076) 2023-08-09T11:38:25.5388030Z remote: Counting objects: 11% (119/1076) 2023-08-09T11:38:25.5388437Z remote: Counting objects: 12% (130/1076) 2023-08-09T11:38:25.5388911Z remote: Counting objects: 13% (140/1076) 2023-08-09T11:38:25.5389273Z remote: Counting objects: 14% (151/1076) 2023-08-09T11:38:25.5389553Z remote: Counting objects: 15% (162/1076) 2023-08-09T11:38:25.5389827Z remote: Counting objects: 16% (173/1076) 2023-08-09T11:38:25.5390112Z remote: Counting objects: 17% (183/1076) 2023-08-09T11:38:25.5390411Z remote: Counting objects: 18% (194/1076) 2023-08-09T11:38:25.5390825Z remote: Counting objects: 19% (205/1076) 2023-08-09T11:38:25.5391217Z remote: Counting objects: 20% (216/1076) 2023-08-09T11:38:25.5391546Z remote: Counting objects: 21% (226/1076) 2023-08-09T11:38:25.5391877Z remote: Counting objects: 22% (237/1076) 2023-08-09T11:38:25.5392305Z remote: Counting objects: 23% (248/1076) 2023-08-09T11:38:25.5392683Z remote: Counting objects: 24% (259/1076) 2023-08-09T11:38:25.5393055Z remote: Counting objects: 25% (269/1076) 2023-08-09T11:38:25.5393461Z remote: Counting objects: 26% (280/1076) 2023-08-09T11:38:25.5393739Z remote: Counting objects: 27% (291/1076) 2023-08-09T11:38:25.5394031Z remote: Counting objects: 28% (302/1076) 2023-08-09T11:38:25.5493945Z remote: Counting objects: 29% (313/1076) 2023-08-09T11:38:25.5494284Z remote: Counting objects: 30% (323/1076) 2023-08-09T11:38:25.5494545Z remote: Counting objects: 31% (334/1076) 2023-08-09T11:38:25.5494798Z remote: Counting objects: 32% (345/1076) 2023-08-09T11:38:25.5495048Z remote: Counting objects: 33% (356/1076) 2023-08-09T11:38:25.5495296Z remote: Counting objects: 34% (366/1076) 2023-08-09T11:38:25.5495535Z remote: Counting objects: 35% (377/1076) 2023-08-09T11:38:25.5495778Z remote: Counting objects: 36% (388/1076) 2023-08-09T11:38:25.5496025Z remote: Counting objects: 37% (399/1076) 2023-08-09T11:38:25.5496272Z remote: Counting objects: 38% (409/1076) 2023-08-09T11:38:25.5496512Z remote: Counting objects: 39% (420/1076) 2023-08-09T11:38:25.5496759Z remote: Counting objects: 40% (431/1076) 2023-08-09T11:38:25.5497008Z remote: Counting objects: 41% (442/1076) 2023-08-09T11:38:25.5497247Z remote: Counting objects: 42% (452/1076) 2023-08-09T11:38:25.5497724Z remote: Counting objects: 43% (463/1076) 2023-08-09T11:38:25.5497974Z remote: Counting objects: 44% (474/1076) 2023-08-09T11:38:25.5498214Z remote: Counting objects: 45% (485/1076) 2023-08-09T11:38:25.5498462Z remote: Counting objects: 46% (495/1076) 2023-08-09T11:38:25.5498708Z remote: Counting objects: 47% (506/1076) 2023-08-09T11:38:25.5499017Z remote: Counting objects: 48% (517/1076) 2023-08-09T11:38:25.5499265Z remote: Counting objects: 49% (528/1076) 2023-08-09T11:38:25.5499550Z remote: Counting objects: 50% (538/1076) 2023-08-09T11:38:25.5499881Z remote: Counting objects: 51% (549/1076) 2023-08-09T11:38:25.5500176Z remote: Counting objects: 52% (560/1076) 2023-08-09T11:38:25.5500429Z remote: Counting objects: 53% (571/1076) 2023-08-09T11:38:25.5500665Z remote: Counting objects: 54% (582/1076) 2023-08-09T11:38:25.5500915Z remote: Counting objects: 55% (592/1076) 2023-08-09T11:38:25.5501156Z remote: Counting objects: 56% (603/1076) 2023-08-09T11:38:25.5501390Z remote: Counting objects: 57% (614/1076) 2023-08-09T11:38:25.5501630Z remote: Counting objects: 58% (625/1076) 2023-08-09T11:38:25.5501869Z remote: Counting objects: 59% (635/1076) 2023-08-09T11:38:25.5502104Z remote: Counting objects: 60% (646/1076) 2023-08-09T11:38:25.5502343Z remote: Counting objects: 61% (657/1076) 2023-08-09T11:38:25.5502712Z remote: Counting objects: 62% (668/1076) 2023-08-09T11:38:25.5502957Z remote: Counting objects: 63% (678/1076) 2023-08-09T11:38:25.5503273Z remote: Counting objects: 64% (689/1076) 2023-08-09T11:38:25.5503515Z remote: Counting objects: 65% (700/1076) 2023-08-09T11:38:25.5503755Z remote: Counting objects: 66% (711/1076) 2023-08-09T11:38:25.5503996Z remote: Counting objects: 67% (721/1076) 2023-08-09T11:38:25.5504238Z remote: Counting objects: 68% (732/1076) 2023-08-09T11:38:25.5504481Z remote: Counting objects: 69% (743/1076) 2023-08-09T11:38:25.5504721Z remote: Counting objects: 70% (754/1076) 2023-08-09T11:38:25.5504955Z remote: Counting objects: 71% (764/1076) 2023-08-09T11:38:25.5505195Z remote: Counting objects: 72% (775/1076) 2023-08-09T11:38:25.5505436Z remote: Counting objects: 73% (786/1076) 2023-08-09T11:38:25.5505672Z remote: Counting objects: 74% (797/1076) 2023-08-09T11:38:25.5505918Z remote: Counting objects: 75% (807/1076) 2023-08-09T11:38:25.5506161Z remote: Counting objects: 76% (818/1076) 2023-08-09T11:38:25.5506400Z remote: Counting objects: 77% (829/1076) 2023-08-09T11:38:25.5506635Z remote: Counting objects: 78% (840/1076) 2023-08-09T11:38:25.5506877Z remote: Counting objects: 79% (851/1076) 2023-08-09T11:38:25.5507117Z remote: Counting objects: 80% (861/1076) 2023-08-09T11:38:25.5507351Z remote: Counting objects: 81% (872/1076) 2023-08-09T11:38:25.5507583Z remote: Counting objects: 82% (883/1076) 2023-08-09T11:38:25.5507823Z remote: Counting objects: 83% (894/1076) 2023-08-09T11:38:25.5508056Z remote: Counting objects: 84% (904/1076) 2023-08-09T11:38:25.5508294Z remote: Counting objects: 85% (915/1076) 2023-08-09T11:38:25.5508532Z remote: Counting objects: 86% (926/1076) 2023-08-09T11:38:25.5508887Z remote: Counting objects: 87% (937/1076) 2023-08-09T11:38:25.5509132Z remote: Counting objects: 88% (947/1076) 2023-08-09T11:38:25.5509388Z remote: Counting objects: 89% (958/1076) 2023-08-09T11:38:25.5509687Z remote: Counting objects: 90% (969/1076) 2023-08-09T11:38:25.5509962Z remote: Counting objects: 91% (980/1076) 2023-08-09T11:38:25.5510272Z remote: Counting objects: 92% (990/1076) 2023-08-09T11:38:25.5510519Z remote: Counting objects: 93% (1001/1076) 2023-08-09T11:38:25.5510845Z remote: Counting objects: 94% (1012/1076) 2023-08-09T11:38:25.5511095Z remote: Counting objects: 95% (1023/1076) 2023-08-09T11:38:25.5511343Z remote: Counting objects: 96% (1033/1076) 2023-08-09T11:38:25.5511581Z remote: Counting objects: 97% (1044/1076) 2023-08-09T11:38:25.5511825Z remote: Counting objects: 98% (1055/1076) 2023-08-09T11:38:25.5512069Z remote: Counting objects: 99% (1066/1076) 2023-08-09T11:38:25.5512318Z remote: Counting objects: 100% (1076/1076) 2023-08-09T11:38:25.5512576Z remote: Counting objects: 100% (1076/1076), done. 2023-08-09T11:38:25.5512848Z remote: Compressing objects: 0% (1/864) 2023-08-09T11:38:25.5513110Z remote: Compressing objects: 1% (9/864) 2023-08-09T11:38:25.5513361Z remote: Compressing objects: 2% (18/864) 2023-08-09T11:38:25.5513630Z remote: Compressing objects: 3% (26/864) 2023-08-09T11:38:25.5513883Z remote: Compressing objects: 4% (35/864) 2023-08-09T11:38:25.5514139Z remote: Compressing objects: 5% (44/864) 2023-08-09T11:38:25.5514391Z remote: Compressing objects: 6% (52/864) 2023-08-09T11:38:25.5514638Z remote: Compressing objects: 7% (61/864) 2023-08-09T11:38:25.5514886Z remote: Compressing objects: 8% (70/864) 2023-08-09T11:38:25.5515133Z remote: Compressing objects: 9% (78/864) 2023-08-09T11:38:25.5515383Z remote: Compressing objects: 10% (87/864) 2023-08-09T11:38:25.5515631Z remote: Compressing objects: 11% (96/864) 2023-08-09T11:38:25.5515931Z remote: Compressing objects: 12% (104/864) 2023-08-09T11:38:25.5516193Z remote: Compressing objects: 13% (113/864) 2023-08-09T11:38:25.5516450Z remote: Compressing objects: 14% (121/864) 2023-08-09T11:38:25.5516696Z remote: Compressing objects: 15% (130/864) 2023-08-09T11:38:25.5516950Z remote: Compressing objects: 16% (139/864) 2023-08-09T11:38:25.5517204Z remote: Compressing objects: 17% (147/864) 2023-08-09T11:38:25.5517456Z remote: Compressing objects: 18% (156/864) 2023-08-09T11:38:25.5517713Z remote: Compressing objects: 19% (165/864) 2023-08-09T11:38:25.5517969Z remote: Compressing objects: 20% (173/864) 2023-08-09T11:38:25.5518221Z remote: Compressing objects: 21% (182/864) 2023-08-09T11:38:25.5518463Z remote: Compressing objects: 22% (191/864) 2023-08-09T11:38:25.5518718Z remote: Compressing objects: 23% (199/864) 2023-08-09T11:38:25.5518970Z remote: Compressing objects: 24% (208/864) 2023-08-09T11:38:25.5519238Z remote: Compressing objects: 25% (216/864) 2023-08-09T11:38:25.5519564Z remote: Compressing objects: 26% (225/864) 2023-08-09T11:38:25.5519878Z remote: Compressing objects: 27% (234/864) 2023-08-09T11:38:25.5520163Z remote: Compressing objects: 28% (242/864) 2023-08-09T11:38:25.5520417Z remote: Compressing objects: 29% (251/864) 2023-08-09T11:38:25.5520674Z remote: Compressing objects: 30% (260/864) 2023-08-09T11:38:25.5520919Z remote: Compressing objects: 31% (268/864) 2023-08-09T11:38:25.5521160Z remote: Compressing objects: 32% (277/864) 2023-08-09T11:38:25.5521409Z remote: Compressing objects: 33% (286/864) 2023-08-09T11:38:25.5521657Z remote: Compressing objects: 34% (294/864) 2023-08-09T11:38:25.5521901Z remote: Compressing objects: 35% (303/864) 2023-08-09T11:38:25.5522156Z remote: Compressing objects: 36% (312/864) 2023-08-09T11:38:25.5522412Z remote: Compressing objects: 37% (320/864) 2023-08-09T11:38:25.5522651Z remote: Compressing objects: 38% (329/864) 2023-08-09T11:38:25.5522896Z remote: Compressing objects: 39% (337/864) 2023-08-09T11:38:25.5523140Z remote: Compressing objects: 40% (346/864) 2023-08-09T11:38:25.5523525Z remote: Compressing objects: 41% (355/864) 2023-08-09T11:38:25.5523775Z remote: Compressing objects: 42% (363/864) 2023-08-09T11:38:25.5524142Z remote: Compressing objects: 43% (372/864) 2023-08-09T11:38:25.5524393Z remote: Compressing objects: 44% (381/864) 2023-08-09T11:38:25.5524638Z remote: Compressing objects: 45% (389/864) 2023-08-09T11:38:25.5524888Z remote: Compressing objects: 46% (398/864) 2023-08-09T11:38:25.5525140Z remote: Compressing objects: 47% (407/864) 2023-08-09T11:38:25.5525383Z remote: Compressing objects: 48% (415/864) 2023-08-09T11:38:25.5525633Z remote: Compressing objects: 49% (424/864) 2023-08-09T11:38:25.5525892Z remote: Compressing objects: 50% (432/864) 2023-08-09T11:38:25.5526138Z remote: Compressing objects: 51% (441/864) 2023-08-09T11:38:25.5526395Z remote: Compressing objects: 52% (450/864) 2023-08-09T11:38:25.5526646Z remote: Compressing objects: 53% (458/864) 2023-08-09T11:38:25.5526890Z remote: Compressing objects: 54% (467/864) 2023-08-09T11:38:25.5527132Z remote: Compressing objects: 55% (476/864) 2023-08-09T11:38:25.5527390Z remote: Compressing objects: 56% (484/864) 2023-08-09T11:38:25.5527639Z remote: Compressing objects: 57% (493/864) 2023-08-09T11:38:25.5527884Z remote: Compressing objects: 58% (502/864) 2023-08-09T11:38:25.5528136Z remote: Compressing objects: 59% (510/864) 2023-08-09T11:38:25.5528392Z remote: Compressing objects: 60% (519/864) 2023-08-09T11:38:25.5528638Z remote: Compressing objects: 61% (528/864) 2023-08-09T11:38:25.5528889Z remote: Compressing objects: 62% (536/864) 2023-08-09T11:38:25.5529199Z remote: Compressing objects: 63% (545/864) 2023-08-09T11:38:25.5529442Z remote: Compressing objects: 64% (553/864) 2023-08-09T11:38:25.5529756Z remote: Compressing objects: 65% (562/864) 2023-08-09T11:38:25.5530094Z remote: Compressing objects: 66% (571/864) 2023-08-09T11:38:25.5530416Z remote: Compressing objects: 67% (579/864) 2023-08-09T11:38:25.5530670Z remote: Compressing objects: 68% (588/864) 2023-08-09T11:38:25.5530924Z remote: Compressing objects: 69% (597/864) 2023-08-09T11:38:25.5531176Z remote: Compressing objects: 70% (605/864) 2023-08-09T11:38:25.5531419Z remote: Compressing objects: 71% (614/864) 2023-08-09T11:38:25.5531671Z remote: Compressing objects: 72% (623/864) 2023-08-09T11:38:25.5531921Z remote: Compressing objects: 73% (631/864) 2023-08-09T11:38:25.5532164Z remote: Compressing objects: 74% (640/864) 2023-08-09T11:38:25.5532422Z remote: Compressing objects: 75% (648/864) 2023-08-09T11:38:25.5532672Z remote: Compressing objects: 76% (657/864) 2023-08-09T11:38:25.5532923Z remote: Compressing objects: 77% (666/864) 2023-08-09T11:38:25.5533164Z remote: Compressing objects: 78% (674/864) 2023-08-09T11:38:25.5533406Z remote: Compressing objects: 79% (683/864) 2023-08-09T11:38:25.5533649Z remote: Compressing objects: 80% (692/864) 2023-08-09T11:38:25.5533897Z remote: Compressing objects: 81% (700/864) 2023-08-09T11:38:25.5534150Z remote: Compressing objects: 82% (709/864) 2023-08-09T11:38:25.5534399Z remote: Compressing objects: 83% (718/864) 2023-08-09T11:38:25.5534641Z remote: Compressing objects: 84% (726/864) 2023-08-09T11:38:25.5534887Z remote: Compressing objects: 85% (735/864) 2023-08-09T11:38:25.5535134Z remote: Compressing objects: 86% (744/864) 2023-08-09T11:38:25.5535379Z remote: Compressing objects: 87% (752/864) 2023-08-09T11:38:25.5535626Z remote: Compressing objects: 88% (761/864) 2023-08-09T11:38:25.5535871Z remote: Compressing objects: 89% (769/864) 2023-08-09T11:38:25.5536125Z remote: Compressing objects: 90% (778/864) 2023-08-09T11:38:25.5536376Z remote: Compressing objects: 91% (787/864) 2023-08-09T11:38:25.5536626Z remote: Compressing objects: 92% (795/864) 2023-08-09T11:38:25.5536870Z remote: Compressing objects: 93% (804/864) 2023-08-09T11:38:25.5537196Z remote: Compressing objects: 94% (813/864) 2023-08-09T11:38:25.5537443Z remote: Compressing objects: 95% (821/864) 2023-08-09T11:38:25.5537684Z remote: Compressing objects: 96% (830/864) 2023-08-09T11:38:25.5537930Z remote: Compressing objects: 97% (839/864) 2023-08-09T11:38:25.5538182Z remote: Compressing objects: 98% (847/864) 2023-08-09T11:38:25.5538429Z remote: Compressing objects: 99% (856/864) 2023-08-09T11:38:25.5538682Z remote: Compressing objects: 100% (864/864) 2023-08-09T11:38:25.5538952Z remote: Compressing objects: 100% (864/864), done. 2023-08-09T11:38:25.5539238Z Receiving objects: 0% (1/1076) 2023-08-09T11:38:25.5539507Z Receiving objects: 1% (11/1076) 2023-08-09T11:38:25.5539774Z Receiving objects: 2% (22/1076) 2023-08-09T11:38:25.5540060Z Receiving objects: 3% (33/1076) 2023-08-09T11:38:25.5540272Z Receiving objects: 4% (44/1076) 2023-08-09T11:38:25.5540495Z Receiving objects: 5% (54/1076) 2023-08-09T11:38:25.5540713Z Receiving objects: 6% (65/1076) 2023-08-09T11:38:25.5540926Z Receiving objects: 7% (76/1076) 2023-08-09T11:38:25.5541177Z Receiving objects: 8% (87/1076) 2023-08-09T11:38:25.5541405Z Receiving objects: 9% (97/1076) 2023-08-09T11:38:25.5541616Z Receiving objects: 10% (108/1076) 2023-08-09T11:38:25.5541839Z Receiving objects: 11% (119/1076) 2023-08-09T11:38:25.5542061Z Receiving objects: 12% (130/1076) 2023-08-09T11:38:25.5542274Z Receiving objects: 13% (140/1076) 2023-08-09T11:38:25.5542569Z Receiving objects: 14% (151/1076) 2023-08-09T11:38:25.5542791Z Receiving objects: 15% (162/1076) 2023-08-09T11:38:25.5543002Z Receiving objects: 16% (173/1076) 2023-08-09T11:38:25.5543235Z Receiving objects: 17% (183/1076) 2023-08-09T11:38:25.5543452Z Receiving objects: 18% (194/1076) 2023-08-09T11:38:25.5543669Z Receiving objects: 19% (205/1076) 2023-08-09T11:38:25.5543877Z Receiving objects: 20% (216/1076) 2023-08-09T11:38:25.5544100Z Receiving objects: 21% (226/1076) 2023-08-09T11:38:25.5544317Z Receiving objects: 22% (237/1076) 2023-08-09T11:38:25.5544526Z Receiving objects: 23% (248/1076) 2023-08-09T11:38:25.5544744Z Receiving objects: 24% (259/1076) 2023-08-09T11:38:25.5544961Z Receiving objects: 25% (269/1076) 2023-08-09T11:38:25.5546238Z Receiving objects: 26% (280/1076) 2023-08-09T11:38:25.5548004Z Receiving objects: 27% (291/1076) 2023-08-09T11:38:25.5550488Z Receiving objects: 28% (302/1076) 2023-08-09T11:38:25.5551167Z Receiving objects: 29% (313/1076) 2023-08-09T11:38:25.5553155Z Receiving objects: 30% (323/1076) 2023-08-09T11:38:25.5559230Z Receiving objects: 31% (334/1076) 2023-08-09T11:38:25.5572022Z Receiving objects: 32% (345/1076) 2023-08-09T11:38:25.5577122Z Receiving objects: 33% (356/1076) 2023-08-09T11:38:25.5598766Z Receiving objects: 34% (366/1076) 2023-08-09T11:38:25.5600208Z Receiving objects: 35% (377/1076) 2023-08-09T11:38:25.5600784Z Receiving objects: 36% (388/1076) 2023-08-09T11:38:25.5605084Z Receiving objects: 37% (399/1076) 2023-08-09T11:38:25.5605629Z Receiving objects: 38% (409/1076) 2023-08-09T11:38:25.5608209Z Receiving objects: 39% (420/1076) 2023-08-09T11:38:25.5615606Z Receiving objects: 40% (431/1076) 2023-08-09T11:38:25.5619094Z Receiving objects: 41% (442/1076) 2023-08-09T11:38:25.5622680Z Receiving objects: 42% (452/1076) 2023-08-09T11:38:25.5627304Z Receiving objects: 43% (463/1076) 2023-08-09T11:38:25.5631152Z Receiving objects: 44% (474/1076) 2023-08-09T11:38:25.5636062Z Receiving objects: 45% (485/1076) 2023-08-09T11:38:25.5637149Z Receiving objects: 46% (495/1076) 2023-08-09T11:38:25.5640078Z Receiving objects: 47% (506/1076) 2023-08-09T11:38:25.5643274Z Receiving objects: 48% (517/1076) 2023-08-09T11:38:25.5644601Z Receiving objects: 49% (528/1076) 2023-08-09T11:38:25.5646980Z Receiving objects: 50% (538/1076) 2023-08-09T11:38:25.5647278Z Receiving objects: 51% (549/1076) 2023-08-09T11:38:25.5648415Z Receiving objects: 52% (560/1076) 2023-08-09T11:38:25.5648823Z Receiving objects: 53% (571/1076) 2023-08-09T11:38:25.5649488Z Receiving objects: 54% (582/1076) 2023-08-09T11:38:25.5652383Z Receiving objects: 55% (592/1076) 2023-08-09T11:38:25.5654491Z Receiving objects: 56% (603/1076) 2023-08-09T11:38:25.5657103Z Receiving objects: 57% (614/1076) 2023-08-09T11:38:25.5659943Z Receiving objects: 58% (625/1076) 2023-08-09T11:38:25.5661915Z Receiving objects: 59% (635/1076) 2023-08-09T11:38:25.5664070Z Receiving objects: 60% (646/1076) 2023-08-09T11:38:25.5671968Z Receiving objects: 61% (657/1076) 2023-08-09T11:38:25.5676811Z Receiving objects: 62% (668/1076) 2023-08-09T11:38:25.5712854Z Receiving objects: 63% (678/1076) 2023-08-09T11:38:25.5716094Z Receiving objects: 64% (689/1076) 2023-08-09T11:38:25.5719030Z Receiving objects: 65% (700/1076) 2023-08-09T11:38:25.5800878Z Receiving objects: 66% (711/1076) 2023-08-09T11:38:25.5803949Z Receiving objects: 67% (721/1076) 2023-08-09T11:38:25.5806042Z Receiving objects: 68% (732/1076) 2023-08-09T11:38:25.5808292Z Receiving objects: 69% (743/1076) 2023-08-09T11:38:25.5808813Z Receiving objects: 70% (754/1076) 2023-08-09T11:38:25.5810188Z Receiving objects: 71% (764/1076) 2023-08-09T11:38:25.5817922Z Receiving objects: 72% (775/1076) 2023-08-09T11:38:25.5822193Z Receiving objects: 73% (786/1076) 2023-08-09T11:38:25.5826216Z Receiving objects: 74% (797/1076) 2023-08-09T11:38:25.5828937Z Receiving objects: 75% (807/1076) 2023-08-09T11:38:25.5831199Z Receiving objects: 76% (818/1076) 2023-08-09T11:38:25.5833555Z Receiving objects: 77% (829/1076) 2023-08-09T11:38:25.5835534Z Receiving objects: 78% (840/1076) 2023-08-09T11:38:25.5837161Z Receiving objects: 79% (851/1076) 2023-08-09T11:38:25.5837497Z Receiving objects: 80% (861/1076) 2023-08-09T11:38:25.5837938Z Receiving objects: 81% (872/1076) 2023-08-09T11:38:25.5838303Z Receiving objects: 82% (883/1076) 2023-08-09T11:38:25.5839472Z Receiving objects: 83% (894/1076) 2023-08-09T11:38:25.5841317Z Receiving objects: 84% (904/1076) 2023-08-09T11:38:25.5842521Z Receiving objects: 85% (915/1076) 2023-08-09T11:38:25.5843956Z Receiving objects: 86% (926/1076) 2023-08-09T11:38:25.5844951Z Receiving objects: 87% (937/1076) 2023-08-09T11:38:25.5845491Z Receiving objects: 88% (947/1076) 2023-08-09T11:38:25.5845740Z Receiving objects: 89% (958/1076) 2023-08-09T11:38:25.5845960Z Receiving objects: 90% (969/1076) 2023-08-09T11:38:25.5847361Z Receiving objects: 91% (980/1076) 2023-08-09T11:38:25.5849839Z Receiving objects: 92% (990/1076) 2023-08-09T11:38:25.5850216Z Receiving objects: 93% (1001/1076) 2023-08-09T11:38:25.5857481Z Receiving objects: 94% (1012/1076) 2023-08-09T11:38:25.5860226Z Receiving objects: 95% (1023/1076) 2023-08-09T11:38:25.5868184Z Receiving objects: 96% (1033/1076) 2023-08-09T11:38:25.5877540Z Receiving objects: 97% (1044/1076) 2023-08-09T11:38:25.5882694Z Receiving objects: 98% (1055/1076) 2023-08-09T11:38:25.5905533Z Receiving objects: 99% (1066/1076) 2023-08-09T11:38:25.5906193Z remote: Total 1076 (delta 184), reused 637 (delta 101), pack-reused 0 2023-08-09T11:38:25.5921262Z Receiving objects: 100% (1076/1076) 2023-08-09T11:38:25.5921620Z Receiving objects: 100% (1076/1076), 1.50 MiB | 29.57 MiB/s, done. 2023-08-09T11:38:25.5928057Z Resolving deltas: 0% (0/184) 2023-08-09T11:38:25.5928547Z Resolving deltas: 1% (2/184) 2023-08-09T11:38:25.5929664Z Resolving deltas: 2% (4/184) 2023-08-09T11:38:25.5930162Z Resolving deltas: 3% (6/184) 2023-08-09T11:38:25.5930512Z Resolving deltas: 4% (8/184) 2023-08-09T11:38:25.5930808Z Resolving deltas: 5% (10/184) 2023-08-09T11:38:25.5931144Z Resolving deltas: 6% (12/184) 2023-08-09T11:38:25.5931392Z Resolving deltas: 7% (13/184) 2023-08-09T11:38:25.5931969Z Resolving deltas: 8% (15/184) 2023-08-09T11:38:25.5932465Z Resolving deltas: 9% (17/184) 2023-08-09T11:38:25.5932751Z Resolving deltas: 10% (20/184) 2023-08-09T11:38:25.5932969Z Resolving deltas: 11% (22/184) 2023-08-09T11:38:25.5933227Z Resolving deltas: 12% (23/184) 2023-08-09T11:38:25.5933526Z Resolving deltas: 13% (24/184) 2023-08-09T11:38:25.5934200Z Resolving deltas: 14% (26/184) 2023-08-09T11:38:25.5934420Z Resolving deltas: 15% (29/184) 2023-08-09T11:38:25.5934753Z Resolving deltas: 16% (30/184) 2023-08-09T11:38:25.5935487Z Resolving deltas: 17% (32/184) 2023-08-09T11:38:25.5935900Z Resolving deltas: 18% (34/184) 2023-08-09T11:38:25.5937223Z Resolving deltas: 19% (35/184) 2023-08-09T11:38:25.5937681Z Resolving deltas: 20% (37/184) 2023-08-09T11:38:25.5938004Z Resolving deltas: 21% (40/184) 2023-08-09T11:38:25.5938564Z Resolving deltas: 22% (41/184) 2023-08-09T11:38:25.5939046Z Resolving deltas: 23% (43/184) 2023-08-09T11:38:25.5939426Z Resolving deltas: 24% (45/184) 2023-08-09T11:38:25.5941633Z Resolving deltas: 25% (46/184) 2023-08-09T11:38:25.5950058Z Resolving deltas: 26% (48/184) 2023-08-09T11:38:25.5953304Z Resolving deltas: 27% (50/184) 2023-08-09T11:38:25.5953655Z Resolving deltas: 28% (53/184) 2023-08-09T11:38:25.5954323Z Resolving deltas: 29% (54/184) 2023-08-09T11:38:25.5954961Z Resolving deltas: 30% (56/184) 2023-08-09T11:38:25.5955763Z Resolving deltas: 32% (59/184) 2023-08-09T11:38:25.5957445Z Resolving deltas: 33% (61/184) 2023-08-09T11:38:25.5957896Z Resolving deltas: 34% (63/184) 2023-08-09T11:38:25.5959536Z Resolving deltas: 35% (65/184) 2023-08-09T11:38:25.5959919Z Resolving deltas: 36% (67/184) 2023-08-09T11:38:25.5960533Z Resolving deltas: 37% (69/184) 2023-08-09T11:38:25.5961204Z Resolving deltas: 38% (70/184) 2023-08-09T11:38:25.5961614Z Resolving deltas: 39% (72/184) 2023-08-09T11:38:25.5963538Z Resolving deltas: 41% (76/184) 2023-08-09T11:38:25.5964194Z Resolving deltas: 42% (78/184) 2023-08-09T11:38:25.5964553Z Resolving deltas: 43% (80/184) 2023-08-09T11:38:25.5964848Z Resolving deltas: 44% (81/184) 2023-08-09T11:38:25.5965100Z Resolving deltas: 45% (83/184) 2023-08-09T11:38:25.5965372Z Resolving deltas: 46% (85/184) 2023-08-09T11:38:25.5965656Z Resolving deltas: 47% (88/184) 2023-08-09T11:38:25.5965932Z Resolving deltas: 48% (89/184) 2023-08-09T11:38:25.5966209Z Resolving deltas: 49% (91/184) 2023-08-09T11:38:25.5966502Z Resolving deltas: 50% (92/184) 2023-08-09T11:38:25.5966794Z Resolving deltas: 51% (95/184) 2023-08-09T11:38:25.5967058Z Resolving deltas: 52% (96/184) 2023-08-09T11:38:25.5967337Z Resolving deltas: 53% (98/184) 2023-08-09T11:38:25.5967616Z Resolving deltas: 54% (100/184) 2023-08-09T11:38:25.5967903Z Resolving deltas: 55% (102/184) 2023-08-09T11:38:25.5968189Z Resolving deltas: 56% (104/184) 2023-08-09T11:38:25.5968458Z Resolving deltas: 57% (106/184) 2023-08-09T11:38:25.5968755Z Resolving deltas: 58% (107/184) 2023-08-09T11:38:25.5969044Z Resolving deltas: 59% (110/184) 2023-08-09T11:38:25.5969331Z Resolving deltas: 60% (111/184) 2023-08-09T11:38:25.5969612Z Resolving deltas: 61% (113/184) 2023-08-09T11:38:25.5969893Z Resolving deltas: 63% (117/184) 2023-08-09T11:38:25.5970184Z Resolving deltas: 64% (118/184) 2023-08-09T11:38:25.5970465Z Resolving deltas: 65% (121/184) 2023-08-09T11:38:25.5970731Z Resolving deltas: 66% (122/184) 2023-08-09T11:38:25.5971023Z Resolving deltas: 67% (125/184) 2023-08-09T11:38:25.5971296Z Resolving deltas: 69% (127/184) 2023-08-09T11:38:25.5971567Z Resolving deltas: 70% (130/184) 2023-08-09T11:38:25.5971848Z Resolving deltas: 71% (131/184) 2023-08-09T11:38:25.5972139Z Resolving deltas: 72% (133/184) 2023-08-09T11:38:25.5972406Z Resolving deltas: 73% (135/184) 2023-08-09T11:38:25.5972682Z Resolving deltas: 74% (137/184) 2023-08-09T11:38:25.5972958Z Resolving deltas: 75% (139/184) 2023-08-09T11:38:25.5973172Z Resolving deltas: 76% (140/184) 2023-08-09T11:38:25.5973387Z Resolving deltas: 77% (143/184) 2023-08-09T11:38:25.5973601Z Resolving deltas: 78% (144/184) 2023-08-09T11:38:25.5973812Z Resolving deltas: 79% (146/184) 2023-08-09T11:38:25.5974026Z Resolving deltas: 80% (148/184) 2023-08-09T11:38:25.5974313Z Resolving deltas: 81% (150/184) 2023-08-09T11:38:25.5974589Z Resolving deltas: 82% (151/184) 2023-08-09T11:38:25.5974834Z Resolving deltas: 83% (153/184) 2023-08-09T11:38:25.5975198Z Resolving deltas: 84% (155/184) 2023-08-09T11:38:25.5975443Z Resolving deltas: 85% (157/184) 2023-08-09T11:38:25.5975717Z Resolving deltas: 86% (159/184) 2023-08-09T11:38:25.5975991Z Resolving deltas: 87% (161/184) 2023-08-09T11:38:25.5976233Z Resolving deltas: 88% (162/184) 2023-08-09T11:38:25.5976444Z Resolving deltas: 89% (164/184) 2023-08-09T11:38:25.5976729Z Resolving deltas: 90% (166/184) 2023-08-09T11:38:25.5977012Z Resolving deltas: 91% (168/184) 2023-08-09T11:38:25.5977293Z Resolving deltas: 92% (170/184) 2023-08-09T11:38:25.5977505Z Resolving deltas: 93% (172/184) 2023-08-09T11:38:25.5978092Z Resolving deltas: 94% (173/184) 2023-08-09T11:38:25.5978558Z Resolving deltas: 95% (175/184) 2023-08-09T11:38:25.5980302Z Resolving deltas: 96% (177/184) 2023-08-09T11:38:25.5981487Z Resolving deltas: 97% (180/184) 2023-08-09T11:38:25.5982723Z Resolving deltas: 98% (182/184) 2023-08-09T11:38:25.5983014Z Resolving deltas: 99% (183/184) 2023-08-09T11:38:25.5984246Z Resolving deltas: 100% (184/184) 2023-08-09T11:38:25.5984565Z Resolving deltas: 100% (184/184), done. 2023-08-09T11:38:25.6101298Z From https://github.com/pytorch/test-infra 2023-08-09T11:38:25.6101750Z * [new branch] main -> origin/main 2023-08-09T11:38:25.6117686Z ##[endgroup] 2023-08-09T11:38:25.6118076Z ##[group]Determining the checkout info 2023-08-09T11:38:25.6120002Z ##[endgroup] 2023-08-09T11:38:25.6120441Z ##[group]Checking out the ref 2023-08-09T11:38:25.6123637Z [command]/usr/bin/git checkout --progress --force -B main refs/remotes/origin/main 2023-08-09T11:38:25.6549796Z Switched to a new branch 'main' 2023-08-09T11:38:25.6550234Z branch 'main' set up to track 'origin/main'. 2023-08-09T11:38:25.6554678Z ##[endgroup] 2023-08-09T11:38:25.6555133Z ##[group]Setting up auth for fetching submodules 2023-08-09T11:38:25.6558986Z [command]/usr/bin/git config --global http.https://github.com/.extraheader AUTHORIZATION: basic *** 2023-08-09T11:38:25.6598063Z [command]/usr/bin/git config --global --unset-all url.https://github.com/.insteadOf 2023-08-09T11:38:25.6620771Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf git@github.com: 2023-08-09T11:38:25.6642021Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf org-21003710@github.com: 2023-08-09T11:38:25.6663093Z ##[endgroup] 2023-08-09T11:38:25.6663567Z ##[group]Fetching submodules 2023-08-09T11:38:25.6665421Z [command]/usr/bin/git submodule sync --recursive 2023-08-09T11:38:25.6861108Z [command]/usr/bin/git -c protocol.version=2 submodule update --init --force --depth=1 --recursive 2023-08-09T11:38:25.7056846Z [command]/usr/bin/git submodule foreach --recursive git config --local gc.auto 0 2023-08-09T11:38:25.7245628Z ##[endgroup] 2023-08-09T11:38:25.7246132Z ##[group]Persisting credentials for submodules 2023-08-09T11:38:25.7250393Z [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:38:25.7442451Z [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:38:25.7637502Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'git@github.com:' 2023-08-09T11:38:25.7836559Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'org-21003710@github.com:' 2023-08-09T11:38:25.8036169Z ##[endgroup] 2023-08-09T11:38:25.8063366Z [command]/usr/bin/git log -1 --format='%H' 2023-08-09T11:38:25.8078845Z '264b8afc6d56140163c6b64f4088a17c4cd59bfd' 2023-08-09T11:38:25.8302071Z Prepare all required actions 2023-08-09T11:38:25.8302416Z Getting action download info 2023-08-09T11:38:25.9576009Z Download action repository 'pytorch/test-infra@main' (SHA:264b8afc6d56140163c6b64f4088a17c4cd59bfd) 2023-08-09T11:38:26.3561044Z Getting action download info 2023-08-09T11:38:26.4644740Z Download action repository 'nick-fields/retry@3e91a01664abd3c5cd539100d10d33b9c5b68482' (SHA:3e91a01664abd3c5cd539100d10d33b9c5b68482) 2023-08-09T11:38:26.5875828Z ##[group]Run ./test-infra/.github/actions/setup-linux 2023-08-09T11:38:26.5876109Z env: 2023-08-09T11:38:26.5876347Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T11:38:26.5876606Z REPOSITORY: pytorch/audio 2023-08-09T11:38:26.5876809Z PR_NUMBER: 2023-08-09T11:38:26.5879463Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.9" 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:38:26.5882286Z ##[endgroup] 2023-08-09T11:38:26.6090139Z ##[group]Run set -euo pipefail 2023-08-09T11:38:26.6090388Z set -euo pipefail 2023-08-09T11:38:26.6090616Z function get_ec2_metadata() { 2023-08-09T11:38:26.6090884Z  # Pulled from instance metadata endpoint for EC2 2023-08-09T11:38:26.6091264Z  # see https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-data-retrieval.html 2023-08-09T11:38:26.6091620Z  category=$1 2023-08-09T11:38:26.6091884Z  curl -fsSL "http://169.254.169.254/latest/meta-data/${category}" 2023-08-09T11:38:26.6092127Z } 2023-08-09T11:38:26.6092445Z echo "ami-id: $(get_ec2_metadata ami-id)" 2023-08-09T11:38:26.6092734Z echo "instance-id: $(get_ec2_metadata instance-id)" 2023-08-09T11:38:26.6093037Z echo "instance-type: $(get_ec2_metadata instance-type)" 2023-08-09T11:38:26.6093394Z echo "system info $(uname -a)" 2023-08-09T11:38:26.6105751Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2023-08-09T11:38:26.6105989Z env: 2023-08-09T11:38:26.6106208Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T11:38:26.6106448Z REPOSITORY: pytorch/audio 2023-08-09T11:38:26.6106659Z PR_NUMBER: 2023-08-09T11:38:26.6109398Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.9" 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:38:26.6112053Z ##[endgroup] 2023-08-09T11:38:26.6179634Z ami-id: ami-096198a0bccc6bad4 2023-08-09T11:38:26.6225407Z instance-id: i-094aa4952032342b8 2023-08-09T11:38:26.6297428Z instance-type: g5.4xlarge 2023-08-09T11:38:26.6302458Z system info Linux ip-10-0-3-100.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:38:26.6324246Z ##[group]Run if systemctl is-active --quiet docker; then 2023-08-09T11:38:26.6324564Z if systemctl is-active --quiet docker; then 2023-08-09T11:38:26.6324846Z  echo "Docker daemon is running..."; 2023-08-09T11:38:26.6325069Z else 2023-08-09T11:38:26.6325316Z  echo "Starting docker deamon..." && sudo systemctl start docker; 2023-08-09T11:38:26.6325675Z fi 2023-08-09T11:38:26.6336376Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2023-08-09T11:38:26.6336611Z env: 2023-08-09T11:38:26.6336839Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T11:38:26.6337197Z REPOSITORY: pytorch/audio 2023-08-09T11:38:26.6337405Z PR_NUMBER: 2023-08-09T11:38:26.6340022Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.9" 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:38:26.6342745Z ##[endgroup] 2023-08-09T11:38:26.6378943Z Docker daemon is running... 2023-08-09T11:38:26.6395192Z ##[group]Run AWS_ACCOUNT_ID=$(aws sts get-caller-identity|grep Account|cut -f4 -d\") 2023-08-09T11:38:26.6395639Z AWS_ACCOUNT_ID=$(aws sts get-caller-identity|grep Account|cut -f4 -d\") 2023-08-09T11:38:26.6396128Z retry () { "$@" || (sleep 1 && "$@") || (sleep 2 && "$@") } 2023-08-09T11:38:26.6396687Z retry aws ecr get-login*** "$AWS_DEFAULT_REGION" | docker login --username AWS \ 2023-08-09T11:38:26.6397115Z  --password-stdin "$AWS_ACCOUNT_ID.dkr.ecr.$AWS_DEFAULT_REGION.amazonaws.com" 2023-08-09T11:38:26.6407858Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2023-08-09T11:38:26.6408155Z env: 2023-08-09T11:38:26.6408437Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T11:38:26.6408734Z REPOSITORY: pytorch/audio 2023-08-09T11:38:26.6409006Z PR_NUMBER: 2023-08-09T11:38:26.6411780Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.9" 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:38:26.6414683Z AWS_RETRY_MODE: standard 2023-08-09T11:38:26.6414950Z AWS_MAX_ATTEMPTS: 5 2023-08-09T11:38:26.6415221Z AWS_DEFAULT_REGION: us-east-1 2023-08-09T11:38:26.6415476Z ##[endgroup] 2023-08-09T11:38:27.4157661Z WARNING! Your password will be stored unencrypted in /home/ec2-user/.docker/config.json. 2023-08-09T11:38:27.4158069Z Configure a credential helper to remove this warning. See 2023-08-09T11:38:27.4158496Z https://docs.docker.com/engine/reference/commandline/login/#credentials-store 2023-08-09T11:38:27.4158736Z 2023-08-09T11:38:27.4161120Z Login Succeeded 2023-08-09T11:38:27.4191585Z ##[group]Run env | grep '^GITHUB' >> "${RUNNER_TEMP}/github_env_${GITHUB_RUN_ID}" 2023-08-09T11:38:27.4191941Z env | grep '^GITHUB' >> "${RUNNER_TEMP}/github_env_${GITHUB_RUN_ID}" 2023-08-09T11:38:27.4192274Z env | grep '^CI' >> "${RUNNER_TEMP}/github_env_${GITHUB_RUN_ID}" 2023-08-09T11:38:27.4203076Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2023-08-09T11:38:27.4203542Z env: 2023-08-09T11:38:27.4203806Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T11:38:27.4204055Z REPOSITORY: pytorch/audio 2023-08-09T11:38:27.4204259Z PR_NUMBER: 2023-08-09T11:38:27.4207000Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.9" 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:38:27.4209753Z ##[endgroup] 2023-08-09T11:38:27.4326161Z ##[group]Run RUNNER_ARTIFACT_DIR="${RUNNER_TEMP}/artifacts" 2023-08-09T11:38:27.4326476Z RUNNER_ARTIFACT_DIR="${RUNNER_TEMP}/artifacts" 2023-08-09T11:38:27.4326753Z mkdir -p "${RUNNER_ARTIFACT_DIR}" 2023-08-09T11:38:27.4327046Z echo "RUNNER_ARTIFACT_DIR=${RUNNER_ARTIFACT_DIR}" >> "${GITHUB_ENV}" 2023-08-09T11:38:27.4327296Z  2023-08-09T11:38:27.4327534Z RUNNER_TEST_RESULTS_DIR="${RUNNER_TEMP}/test-results" 2023-08-09T11:38:27.4327821Z mkdir -p "${RUNNER_TEST_RESULTS_DIR}" 2023-08-09T11:38:27.4328120Z echo "RUNNER_TEST_RESULTS_DIR=${RUNNER_TEST_RESULTS_DIR}" >> "${GITHUB_ENV}" 2023-08-09T11:38:27.4328377Z  2023-08-09T11:38:27.4328598Z RUNNER_DOCS_DIR="${RUNNER_TEMP}/docs" 2023-08-09T11:38:27.4328850Z mkdir -p "${RUNNER_DOCS_DIR}" 2023-08-09T11:38:27.4329123Z echo "RUNNER_DOCS_DIR=${RUNNER_DOCS_DIR}" >> "${GITHUB_ENV}" 2023-08-09T11:38:27.4338556Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2023-08-09T11:38:27.4338801Z env: 2023-08-09T11:38:27.4339036Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T11:38:27.4339285Z REPOSITORY: pytorch/audio 2023-08-09T11:38:27.4339504Z PR_NUMBER: 2023-08-09T11:38:27.4342230Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.9" 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:38:27.4344984Z ##[endgroup] 2023-08-09T11:38:27.4401301Z ##[group]Run needs=0 2023-08-09T11:38:27.4401520Z needs=0 2023-08-09T11:38:27.4401793Z if lspci -v | grep -e 'controller.*NVIDIA' >/dev/null 2>/dev/null; then 2023-08-09T11:38:27.4402054Z  needs=1 2023-08-09T11:38:27.4402245Z fi 2023-08-09T11:38:27.4402464Z echo "does=${needs}" >> $GITHUB_OUTPUT 2023-08-09T11:38:27.4413538Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2023-08-09T11:38:27.4413776Z env: 2023-08-09T11:38:27.4414004Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T11:38:27.4414261Z REPOSITORY: pytorch/audio 2023-08-09T11:38:27.4414467Z PR_NUMBER: 2023-08-09T11:38:27.4417200Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.9" 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:38:27.4420032Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-08-09T11:38:27.4420372Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-08-09T11:38:27.4420693Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-08-09T11:38:27.4420943Z ##[endgroup] 2023-08-09T11:38:27.4655323Z ##[group]Run pytorch/test-infra/.github/actions/setup-nvidia@main 2023-08-09T11:38:27.4655580Z with: 2023-08-09T11:38:27.4655782Z driver-version: 535.54.03 2023-08-09T11:38:27.4655975Z env: 2023-08-09T11:38:27.4656198Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T11:38:27.4656445Z REPOSITORY: pytorch/audio 2023-08-09T11:38:27.4656649Z PR_NUMBER: 2023-08-09T11:38:27.4659358Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.9" 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:38:27.4662159Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-08-09T11:38:27.4662499Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-08-09T11:38:27.4662824Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-08-09T11:38:27.4663069Z ##[endgroup] 2023-08-09T11:38:27.4687959Z ##[group]Run nick-fields/retry@3e91a01664abd3c5cd539100d10d33b9c5b68482 2023-08-09T11:38:27.4688215Z with: 2023-08-09T11:38:27.4688402Z timeout_minutes: 10 2023-08-09T11:38:27.4688599Z max_attempts: 3 2023-08-09T11:38:27.4695359Z 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:38:27.4702064Z retry_wait_seconds: 10 2023-08-09T11:38:27.4702285Z polling_interval_seconds: 1 2023-08-09T11:38:27.4702505Z warning_on_retry: true 2023-08-09T11:38:27.4702705Z continue_on_error: false 2023-08-09T11:38:27.4702900Z env: 2023-08-09T11:38:27.4703117Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T11:38:27.4703359Z REPOSITORY: pytorch/audio 2023-08-09T11:38:27.4703560Z PR_NUMBER: 2023-08-09T11:38:27.4706188Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.9" 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:38:27.4709069Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-08-09T11:38:27.4709411Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-08-09T11:38:27.4709729Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-08-09T11:38:27.4709982Z DRIVER_VERSION: 535.54.03 2023-08-09T11:38:27.4710175Z ##[endgroup] 2023-08-09T11:38:27.5172058Z == Installing nvidia driver NVIDIA-Linux-x86_64-535.54.03.run == 2023-08-09T11:38:27.5172703Z + pre_install_nvidia_driver_amzn2 2023-08-09T11:38:27.5173021Z + sudo yum remove -y nvidia-driver-latest-dkms 2023-08-09T11:38:27.7852813Z Loaded plugins: extras_suggestions, langpacks, priorities, update-motd 2023-08-09T11:38:27.8233639Z No Match for argument: nvidia-driver-latest-dkms 2023-08-09T11:38:27.8468011Z No Packages marked for removal 2023-08-09T11:38:27.8587685Z + install_nvidia_driver_common 2023-08-09T11:38:27.8589679Z + echo 'Before installing NVIDIA driver' 2023-08-09T11:38:27.8590005Z + lspci 2023-08-09T11:38:27.8591188Z Before installing NVIDIA driver 2023-08-09T11:38:27.8671751Z 00:00.0 Host bridge: Intel Corporation 440FX - 82441FX PMC [Natoma] 2023-08-09T11:38:27.8672077Z 00:01.0 ISA bridge: Intel Corporation 82371SB PIIX3 ISA [Natoma/Triton II] 2023-08-09T11:38:27.8672484Z 00:01.3 Non-VGA unclassified device: Intel Corporation 82371AB/EB/MB PIIX4 ACPI (rev 08) 2023-08-09T11:38:27.8672807Z 00:03.0 VGA compatible controller: Amazon.com, Inc. Device 1111 2023-08-09T11:38:27.8673189Z 00:04.0 Non-Volatile memory controller: Amazon.com, Inc. Device 8061 2023-08-09T11:38:27.8673497Z 00:05.0 Ethernet controller: Amazon.com, Inc. Elastic Network Adapter (ENA) 2023-08-09T11:38:27.8673801Z 00:1e.0 3D controller: NVIDIA Corporation Device 2237 (rev a1) 2023-08-09T11:38:27.8674164Z 00:1f.0 Non-Volatile memory controller: Amazon.com, Inc. NVMe SSD Controller 2023-08-09T11:38:27.8674412Z + lsmod 2023-08-09T11:38:27.8684382Z Module Size Used by 2023-08-09T11:38:27.8684607Z backlight 16384 0 2023-08-09T11:38:27.8684815Z xt_conntrack 16384 1 2023-08-09T11:38:27.8685047Z ipt_MASQUERADE 16384 1 2023-08-09T11:38:27.8685355Z nf_nat_masquerade_ipv4 16384 1 ipt_MASQUERADE 2023-08-09T11:38:27.8685633Z nf_conntrack_netlink 49152 0 2023-08-09T11:38:27.8685927Z nfnetlink 16384 2 nf_conntrack_netlink 2023-08-09T11:38:27.8686151Z xfrm_user 45056 1 2023-08-09T11:38:27.8686419Z xfrm_algo 16384 1 xfrm_user 2023-08-09T11:38:27.8686647Z iptable_nat 16384 1 2023-08-09T11:38:27.8686852Z nf_conntrack_ipv4 16384 3 2023-08-09T11:38:27.8687083Z nf_defrag_ipv4 16384 1 nf_conntrack_ipv4 2023-08-09T11:38:27.8687313Z nf_nat_ipv4 16384 1 iptable_nat 2023-08-09T11:38:27.8687565Z nf_nat 36864 2 nf_nat_masquerade_ipv4,nf_nat_ipv4 2023-08-09T11:38:27.8688104Z 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:38:27.8688424Z xt_addrtype 16384 2 2023-08-09T11:38:27.8688726Z iptable_filter 16384 1 2023-08-09T11:38:27.8688931Z br_netfilter 24576 0 2023-08-09T11:38:27.8689160Z bridge 172032 1 br_netfilter 2023-08-09T11:38:27.8689372Z stp 16384 1 bridge 2023-08-09T11:38:27.8689585Z llc 16384 2 bridge,stp 2023-08-09T11:38:27.8689795Z overlay 86016 0 2023-08-09T11:38:27.8690004Z sunrpc 393216 1 2023-08-09T11:38:27.8690202Z dm_mirror 28672 0 2023-08-09T11:38:27.8690412Z dm_region_hash 20480 1 dm_mirror 2023-08-09T11:38:27.8690647Z dm_log 20480 2 dm_region_hash,dm_mirror 2023-08-09T11:38:27.8690890Z dm_mod 143360 2 dm_log,dm_mirror 2023-08-09T11:38:27.8691112Z dax 69632 1 dm_mod 2023-08-09T11:38:27.8691308Z crc32_pclmul 16384 0 2023-08-09T11:38:27.8691514Z ghash_clmulni_intel 16384 0 2023-08-09T11:38:27.8691722Z pcbc 16384 0 2023-08-09T11:38:27.8691926Z aesni_intel 188416 0 2023-08-09T11:38:27.8692131Z aes_x86_64 20480 1 aesni_intel 2023-08-09T11:38:27.8692359Z crypto_simd 16384 1 aesni_intel 2023-08-09T11:38:27.8692585Z glue_helper 16384 1 aesni_intel 2023-08-09T11:38:27.8692849Z cryptd 28672 3 crypto_simd,ghash_clmulni_intel,aesni_intel 2023-08-09T11:38:27.8693102Z mousedev 24576 0 2023-08-09T11:38:27.8693325Z psmouse 32768 0 2023-08-09T11:38:27.8693576Z evdev 20480 3 2023-08-09T11:38:27.8693799Z button 16384 0 2023-08-09T11:38:27.8694020Z ena 114688 0 2023-08-09T11:38:27.8694207Z crc32c_intel 24576 0 2023-08-09T11:38:27.8694402Z autofs4 49152 2 2023-08-09T11:38:27.8694598Z + modinfo nvidia 2023-08-09T11:38:27.8695018Z filename: /lib/modules/4.14.252-195.483.amzn2.x86_64/kernel/drivers/video/nvidia.ko 2023-08-09T11:38:27.8695297Z firmware: nvidia/535.54.03/gsp_tu10x.bin 2023-08-09T11:38:27.8695583Z firmware: nvidia/535.54.03/gsp_ga10x.bin 2023-08-09T11:38:27.8695877Z alias: char-major-195-* 2023-08-09T11:38:27.8696079Z version: 535.54.03 2023-08-09T11:38:27.8696277Z supported: external 2023-08-09T11:38:27.8696473Z license: NVIDIA 2023-08-09T11:38:27.8696681Z srcversion: EA9C7EF32617E104C8240C4 2023-08-09T11:38:27.8696930Z alias: pci:v000010DEd*sv*sd*bc06sc80i00* 2023-08-09T11:38:27.8697175Z alias: pci:v000010DEd*sv*sd*bc03sc02i00* 2023-08-09T11:38:27.8697408Z alias: pci:v000010DEd*sv*sd*bc03sc00i00* 2023-08-09T11:38:27.8697664Z depends: i2c-core,drm 2023-08-09T11:38:27.8697864Z retpoline: Y 2023-08-09T11:38:27.8698047Z name: nvidia 2023-08-09T11:38:27.8698366Z vermagic: 4.14.252-195.483.amzn2.x86_64 SMP mod_unload modversions 2023-08-09T11:38:27.8698663Z parm: NvSwitchRegDwords:NvSwitch regkey (charp) 2023-08-09T11:38:27.8698976Z parm: NvSwitchBlacklist:NvSwitchBlacklist=uuid[,uuid...] (charp) 2023-08-09T11:38:27.8699261Z parm: NVreg_ResmanDebugLevel:int 2023-08-09T11:38:27.8699496Z parm: NVreg_RmLogonRC:int 2023-08-09T11:38:27.8699737Z parm: NVreg_ModifyDeviceFiles:int 2023-08-09T11:38:27.8699974Z parm: NVreg_DeviceFileUID:int 2023-08-09T11:38:27.8700207Z parm: NVreg_DeviceFileGID:int 2023-08-09T11:38:27.8700444Z parm: NVreg_DeviceFileMode:int 2023-08-09T11:38:27.8700722Z parm: NVreg_InitializeSystemMemoryAllocations:int 2023-08-09T11:38:27.8701014Z parm: NVreg_UsePageAttributeTable:int 2023-08-09T11:38:27.8701268Z parm: NVreg_EnablePCIeGen3:int 2023-08-09T11:38:27.8701493Z parm: NVreg_EnableMSI:int 2023-08-09T11:38:27.8701802Z parm: NVreg_TCEBypassMode:int 2023-08-09T11:38:27.8702057Z parm: NVreg_EnableStreamMemOPs:int 2023-08-09T11:38:27.8702333Z parm: NVreg_RestrictProfilingToAdminUsers:int 2023-08-09T11:38:27.8702640Z parm: NVreg_PreserveVideoMemoryAllocations:int 2023-08-09T11:38:27.8702976Z parm: NVreg_EnableS0ixPowerManagement:int 2023-08-09T11:38:27.8703293Z parm: NVreg_S0ixPowerManagementVideoMemoryThreshold:int 2023-08-09T11:38:27.8703599Z parm: NVreg_DynamicPowerManagement:int 2023-08-09T11:38:27.8703925Z parm: NVreg_DynamicPowerManagementVideoMemoryThreshold:int 2023-08-09T11:38:27.8704235Z parm: NVreg_EnableGpuFirmware:int 2023-08-09T11:38:27.8704490Z parm: NVreg_EnableGpuFirmwareLogs:int 2023-08-09T11:38:27.8704775Z parm: NVreg_OpenRmEnableUnsupportedGpus:int 2023-08-09T11:38:27.8705062Z parm: NVreg_EnableUserNUMAManagement:int 2023-08-09T11:38:27.8705422Z parm: NVreg_MemoryPoolSize:int 2023-08-09T11:38:27.8705678Z parm: NVreg_KMallocHeapMaxSize:int 2023-08-09T11:38:27.8705952Z parm: NVreg_VMallocHeapMaxSize:int 2023-08-09T11:38:27.8706219Z parm: NVreg_IgnoreMMIOCheck:int 2023-08-09T11:38:27.8706463Z parm: NVreg_NvLinkDisable:int 2023-08-09T11:38:27.8706742Z parm: NVreg_EnablePCIERelaxedOrderingMode:int 2023-08-09T11:38:27.8707023Z parm: NVreg_RegisterPCIDriver:int 2023-08-09T11:38:27.8707269Z parm: NVreg_EnableResizableBar:int 2023-08-09T11:38:27.8707527Z parm: NVreg_EnableDbgBreakpoint:int 2023-08-09T11:38:27.8707779Z parm: NVreg_RegistryDwords:charp 2023-08-09T11:38:27.8708040Z parm: NVreg_RegistryDwordsPerDevice:charp 2023-08-09T11:38:27.8708288Z parm: NVreg_RmMsg:charp 2023-08-09T11:38:27.8708538Z parm: NVreg_GpuBlacklist:charp 2023-08-09T11:38:27.8708906Z parm: NVreg_TemporaryFilePath:charp 2023-08-09T11:38:27.8709158Z parm: NVreg_ExcludedGpus:charp 2023-08-09T11:38:27.8709405Z parm: NVreg_DmaRemapPeerMmio:int 2023-08-09T11:38:27.8709654Z parm: NVreg_RmNvlinkBandwidth:charp 2023-08-09T11:38:27.8709898Z parm: rm_firmware_active:charp 2023-08-09T11:38:27.8710120Z + HAS_NVIDIA_DRIVER=0 2023-08-09T11:38:27.8710365Z ++ command -v nvidia-smi 2023-08-09T11:38:27.8710612Z + '[' -x /usr/bin/nvidia-smi ']' 2023-08-09T11:38:27.8710813Z + set +e 2023-08-09T11:38:27.8711124Z ++ nvidia-smi --query-gpu=driver_version --format=csv,noheader --id=0 2023-08-09T11:38:30.3629426Z + INSTALLED_DRIVER_VERSION=535.54.03 2023-08-09T11:38:30.3629843Z + NVIDIA_SMI_STATUS=0 2023-08-09T11:38:30.3630290Z + '[' 0 -ne 0 ']' 2023-08-09T11:38:30.3630639Z + '[' 535.54.03 '!=' 535.54.03 ']' 2023-08-09T11:38:30.3630901Z + HAS_NVIDIA_DRIVER=1 2023-08-09T11:38:30.3631296Z + echo 'NVIDIA driver (535.54.03) has already been installed. Skipping NVIDIA driver installation' 2023-08-09T11:38:30.3631584Z + set -e 2023-08-09T11:38:30.3631787Z + '[' 1 -eq 0 ']' 2023-08-09T11:38:30.3632088Z NVIDIA driver (535.54.03) has already been installed. Skipping NVIDIA driver installation 2023-08-09T11:38:30.3632393Z + post_install_nvidia_driver_common 2023-08-09T11:38:30.3632612Z + sudo modprobe nvidia 2023-08-09T11:38:30.3732715Z + echo 'After installing NVIDIA driver' 2023-08-09T11:38:30.3733037Z + lspci 2023-08-09T11:38:30.3734449Z After installing NVIDIA driver 2023-08-09T11:38:30.3813462Z 00:00.0 Host bridge: Intel Corporation 440FX - 82441FX PMC [Natoma] 2023-08-09T11:38:30.3813908Z 00:01.0 ISA bridge: Intel Corporation 82371SB PIIX3 ISA [Natoma/Triton II] 2023-08-09T11:38:30.3814468Z 00:01.3 Non-VGA unclassified device: Intel Corporation 82371AB/EB/MB PIIX4 ACPI (rev 08) 2023-08-09T11:38:30.3814891Z 00:03.0 VGA compatible controller: Amazon.com, Inc. Device 1111 2023-08-09T11:38:30.3815316Z 00:04.0 Non-Volatile memory controller: Amazon.com, Inc. Device 8061 2023-08-09T11:38:30.3815627Z 00:05.0 Ethernet controller: Amazon.com, Inc. Elastic Network Adapter (ENA) 2023-08-09T11:38:30.3816109Z 00:1e.0 3D controller: NVIDIA Corporation Device 2237 (rev a1) 2023-08-09T11:38:30.3816498Z 00:1f.0 Non-Volatile memory controller: Amazon.com, Inc. NVMe SSD Controller 2023-08-09T11:38:30.3816744Z + lsmod 2023-08-09T11:38:30.3825672Z Module Size Used by 2023-08-09T11:38:30.3825957Z nvidia_uvm 1466368 0 2023-08-09T11:38:30.3826264Z nvidia 56422400 1 nvidia_uvm 2023-08-09T11:38:30.3826548Z drm 425984 1 nvidia 2023-08-09T11:38:30.3826809Z i2c_core 77824 2 nvidia,drm 2023-08-09T11:38:30.3827095Z backlight 16384 0 2023-08-09T11:38:30.3827365Z xt_conntrack 16384 1 2023-08-09T11:38:30.3827653Z ipt_MASQUERADE 16384 1 2023-08-09T11:38:30.3827991Z nf_nat_masquerade_ipv4 16384 1 ipt_MASQUERADE 2023-08-09T11:38:30.3828307Z nf_conntrack_netlink 49152 0 2023-08-09T11:38:30.3828571Z nfnetlink 16384 2 nf_conntrack_netlink 2023-08-09T11:38:30.3828901Z xfrm_user 45056 1 2023-08-09T11:38:30.3829123Z xfrm_algo 16384 1 xfrm_user 2023-08-09T11:38:30.3829335Z iptable_nat 16384 1 2023-08-09T11:38:30.3829534Z nf_conntrack_ipv4 16384 3 2023-08-09T11:38:30.3829761Z nf_defrag_ipv4 16384 1 nf_conntrack_ipv4 2023-08-09T11:38:30.3830003Z nf_nat_ipv4 16384 1 iptable_nat 2023-08-09T11:38:30.3830249Z nf_nat 36864 2 nf_nat_masquerade_ipv4,nf_nat_ipv4 2023-08-09T11:38:30.3830609Z 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:38:30.3830920Z xt_addrtype 16384 2 2023-08-09T11:38:30.3831124Z iptable_filter 16384 1 2023-08-09T11:38:30.3831325Z br_netfilter 24576 0 2023-08-09T11:38:30.3831539Z bridge 172032 1 br_netfilter 2023-08-09T11:38:30.3831750Z stp 16384 1 bridge 2023-08-09T11:38:30.3831953Z llc 16384 2 bridge,stp 2023-08-09T11:38:30.3832161Z overlay 86016 0 2023-08-09T11:38:30.3832355Z sunrpc 393216 1 2023-08-09T11:38:30.3832544Z dm_mirror 28672 0 2023-08-09T11:38:30.3832786Z dm_region_hash 20480 1 dm_mirror 2023-08-09T11:38:30.3833068Z dm_log 20480 2 dm_region_hash,dm_mirror 2023-08-09T11:38:30.3833367Z dm_mod 143360 2 dm_log,dm_mirror 2023-08-09T11:38:30.3833643Z dax 69632 1 dm_mod 2023-08-09T11:38:30.3833910Z crc32_pclmul 16384 0 2023-08-09T11:38:30.3834172Z ghash_clmulni_intel 16384 0 2023-08-09T11:38:30.3834411Z pcbc 16384 0 2023-08-09T11:38:30.3834607Z aesni_intel 188416 0 2023-08-09T11:38:30.3834817Z aes_x86_64 20480 1 aesni_intel 2023-08-09T11:38:30.3835031Z crypto_simd 16384 1 aesni_intel 2023-08-09T11:38:30.3835259Z glue_helper 16384 1 aesni_intel 2023-08-09T11:38:30.3835524Z cryptd 28672 3 crypto_simd,ghash_clmulni_intel,aesni_intel 2023-08-09T11:38:30.3835768Z mousedev 24576 0 2023-08-09T11:38:30.3835966Z psmouse 32768 0 2023-08-09T11:38:30.3836162Z evdev 20480 3 2023-08-09T11:38:30.3836347Z button 16384 0 2023-08-09T11:38:30.3836572Z ena 114688 0 2023-08-09T11:38:30.3836764Z crc32c_intel 24576 0 2023-08-09T11:38:30.3836957Z autofs4 49152 2 2023-08-09T11:38:30.3837138Z + modinfo nvidia 2023-08-09T11:38:30.3837498Z filename: /lib/modules/4.14.252-195.483.amzn2.x86_64/kernel/drivers/video/nvidia.ko 2023-08-09T11:38:30.3837781Z firmware: nvidia/535.54.03/gsp_tu10x.bin 2023-08-09T11:38:30.3838013Z firmware: nvidia/535.54.03/gsp_ga10x.bin 2023-08-09T11:38:30.3838275Z alias: char-major-195-* 2023-08-09T11:38:30.3838482Z version: 535.54.03 2023-08-09T11:38:30.3838675Z supported: external 2023-08-09T11:38:30.3838874Z license: NVIDIA 2023-08-09T11:38:30.3839182Z srcversion: EA9C7EF32617E104C8240C4 2023-08-09T11:38:30.3839421Z alias: pci:v000010DEd*sv*sd*bc06sc80i00* 2023-08-09T11:38:30.3839662Z alias: pci:v000010DEd*sv*sd*bc03sc02i00* 2023-08-09T11:38:30.3839900Z alias: pci:v000010DEd*sv*sd*bc03sc00i00* 2023-08-09T11:38:30.3840194Z depends: i2c-core,drm 2023-08-09T11:38:30.3840396Z retpoline: Y 2023-08-09T11:38:30.3840586Z name: nvidia 2023-08-09T11:38:30.3840908Z vermagic: 4.14.252-195.483.amzn2.x86_64 SMP mod_unload modversions 2023-08-09T11:38:30.3841228Z parm: NvSwitchRegDwords:NvSwitch regkey (charp) 2023-08-09T11:38:30.3841537Z parm: NvSwitchBlacklist:NvSwitchBlacklist=uuid[,uuid...] (charp) 2023-08-09T11:38:30.3841905Z parm: NVreg_ResmanDebugLevel:int 2023-08-09T11:38:30.3842128Z parm: NVreg_RmLogonRC:int 2023-08-09T11:38:30.3842368Z parm: NVreg_ModifyDeviceFiles:int 2023-08-09T11:38:30.3842609Z parm: NVreg_DeviceFileUID:int 2023-08-09T11:38:30.3842838Z parm: NVreg_DeviceFileGID:int 2023-08-09T11:38:30.3843075Z parm: NVreg_DeviceFileMode:int 2023-08-09T11:38:30.3843598Z parm: NVreg_InitializeSystemMemoryAllocations:int 2023-08-09T11:38:30.3843899Z parm: NVreg_UsePageAttributeTable:int 2023-08-09T11:38:30.3844157Z parm: NVreg_EnablePCIeGen3:int 2023-08-09T11:38:30.3844389Z parm: NVreg_EnableMSI:int 2023-08-09T11:38:30.3844610Z parm: NVreg_TCEBypassMode:int 2023-08-09T11:38:30.3844855Z parm: NVreg_EnableStreamMemOPs:int 2023-08-09T11:38:30.3845135Z parm: NVreg_RestrictProfilingToAdminUsers:int 2023-08-09T11:38:30.3845433Z parm: NVreg_PreserveVideoMemoryAllocations:int 2023-08-09T11:38:30.3845725Z parm: NVreg_EnableS0ixPowerManagement:int 2023-08-09T11:38:30.3846041Z parm: NVreg_S0ixPowerManagementVideoMemoryThreshold:int 2023-08-09T11:38:30.3846348Z parm: NVreg_DynamicPowerManagement:int 2023-08-09T11:38:30.3846665Z parm: NVreg_DynamicPowerManagementVideoMemoryThreshold:int 2023-08-09T11:38:30.3846973Z parm: NVreg_EnableGpuFirmware:int 2023-08-09T11:38:30.3847230Z parm: NVreg_EnableGpuFirmwareLogs:int 2023-08-09T11:38:30.3847505Z parm: NVreg_OpenRmEnableUnsupportedGpus:int 2023-08-09T11:38:30.3847795Z parm: NVreg_EnableUserNUMAManagement:int 2023-08-09T11:38:30.3848051Z parm: NVreg_MemoryPoolSize:int 2023-08-09T11:38:30.3848290Z parm: NVreg_KMallocHeapMaxSize:int 2023-08-09T11:38:30.3848545Z parm: NVreg_VMallocHeapMaxSize:int 2023-08-09T11:38:30.3848795Z parm: NVreg_IgnoreMMIOCheck:int 2023-08-09T11:38:30.3849023Z parm: NVreg_NvLinkDisable:int 2023-08-09T11:38:30.3849291Z parm: NVreg_EnablePCIERelaxedOrderingMode:int 2023-08-09T11:38:30.3849563Z parm: NVreg_RegisterPCIDriver:int 2023-08-09T11:38:30.3849812Z parm: NVreg_EnableResizableBar:int 2023-08-09T11:38:30.3850060Z parm: NVreg_EnableDbgBreakpoint:int 2023-08-09T11:38:30.3851169Z parm: NVreg_RegistryDwords:charp 2023-08-09T11:38:30.3851496Z parm: NVreg_RegistryDwordsPerDevice:charp 2023-08-09T11:38:30.3851746Z parm: NVreg_RmMsg:charp 2023-08-09T11:38:30.3851979Z parm: NVreg_GpuBlacklist:charp 2023-08-09T11:38:30.3852229Z parm: NVreg_TemporaryFilePath:charp 2023-08-09T11:38:30.3852498Z parm: NVreg_ExcludedGpus:charp 2023-08-09T11:38:30.3852754Z parm: NVreg_DmaRemapPeerMmio:int 2023-08-09T11:38:30.3853004Z parm: NVreg_RmNvlinkBandwidth:charp 2023-08-09T11:38:30.3853236Z parm: rm_firmware_active:charp 2023-08-09T11:38:30.3853437Z + set +e 2023-08-09T11:38:30.3853649Z + nvidia-smi 2023-08-09T11:38:32.5085749Z Wed Aug 9 11:38:32 2023 2023-08-09T11:38:32.5086222Z +---------------------------------------------------------------------------------------+ 2023-08-09T11:38:32.5086743Z | NVIDIA-SMI 535.54.03 Driver Version: 535.54.03 CUDA Version: 12.2 | 2023-08-09T11:38:32.5087329Z |-----------------------------------------+----------------------+----------------------+ 2023-08-09T11:38:32.5087773Z | GPU Name Persistence-M | Bus-Id Disp.A | Volatile Uncorr. ECC | 2023-08-09T11:38:32.5088252Z | Fan Temp Perf Pwr:Usage/Cap | Memory-Usage | GPU-Util Compute M. | 2023-08-09T11:38:32.5088551Z | | | MIG M. | 2023-08-09T11:38:32.5088791Z |=========================================+======================+======================| 2023-08-09T11:38:32.5152782Z | 0 NVIDIA A10G Off | 00000000:00:1E.0 Off | 0 | 2023-08-09T11:38:32.5153122Z | 0% 30C P0 56W / 300W | 4MiB / 23028MiB | 4% Default | 2023-08-09T11:38:32.5153948Z | | | N/A | 2023-08-09T11:38:32.5155364Z +-----------------------------------------+----------------------+----------------------+ 2023-08-09T11:38:32.5155699Z 2023-08-09T11:38:32.5156063Z +---------------------------------------------------------------------------------------+ 2023-08-09T11:38:32.5156381Z | Processes: | 2023-08-09T11:38:32.5156668Z | GPU GI CI PID Type Process name GPU Memory | 2023-08-09T11:38:32.5156946Z | ID ID Usage | 2023-08-09T11:38:32.5157192Z |=======================================================================================| 2023-08-09T11:38:32.5157459Z | No running processes found | 2023-08-09T11:38:32.5157845Z +---------------------------------------------------------------------------------------+ 2023-08-09T11:38:33.0240800Z + nvidia-smi --query-gpu=gpu_name --format=csv,noheader --id=0 2023-08-09T11:38:35.1693700Z NVIDIA A10G 2023-08-09T11:38:35.4844791Z + NVIDIA_SMI_STATUS=0 2023-08-09T11:38:35.4845264Z + '[' 0 -eq 0 ']' 2023-08-09T11:38:35.4845597Z + echo 'INFO: Ignoring allowed status 0' 2023-08-09T11:38:35.4845859Z + set -e 2023-08-09T11:38:35.4846061Z INFO: Ignoring allowed status 0 2023-08-09T11:38:35.4849253Z == Installing nvidia container toolkit for amzn2 == 2023-08-09T11:38:35.4851448Z + sudo yum install -y yum-utils 2023-08-09T11:38:35.7547048Z Loaded plugins: extras_suggestions, langpacks, priorities, update-motd 2023-08-09T11:38:37.0717399Z Package yum-utils-1.1.31-46.amzn2.0.1.noarch already installed and latest version 2023-08-09T11:38:37.0717790Z Nothing to do 2023-08-09T11:38:37.2162019Z + sudo yum-config-manager --add-repo https://nvidia.github.io/nvidia-docker/amzn2/nvidia-docker.repo 2023-08-09T11:38:37.5013411Z Loaded plugins: extras_suggestions, langpacks, priorities, update-motd 2023-08-09T11:38:37.5250463Z adding repo from: https://nvidia.github.io/nvidia-docker/amzn2/nvidia-docker.repo 2023-08-09T11:38:37.5250990Z grabbing file https://nvidia.github.io/nvidia-docker/amzn2/nvidia-docker.repo to /etc/yum.repos.d/nvidia-docker.repo 2023-08-09T11:38:37.5251413Z repo saved to /etc/yum.repos.d/nvidia-docker.repo 2023-08-09T11:38:37.5356554Z + sudo yum install -y nvidia-docker2 2023-08-09T11:38:37.8025320Z Loaded plugins: extras_suggestions, langpacks, priorities, update-motd 2023-08-09T11:38:39.1259414Z Package nvidia-docker2-2.13.0-1.noarch already installed and latest version 2023-08-09T11:38:39.1259714Z Nothing to do 2023-08-09T11:38:39.2691237Z + sudo systemctl restart docker 2023-08-09T11:38:48.5353237Z Command completed after 1 attempt(s). 2023-08-09T11:38:48.5409619Z ##[group]Run # ignore expansion of "docker ps -q" since it could be empty 2023-08-09T11:38:48.5410002Z # ignore expansion of "docker ps -q" since it could be empty 2023-08-09T11:38:48.5410328Z # shellcheck disable=SC2046 2023-08-09T11:38:48.5410700Z docker stop $(docker ps -q) || true 2023-08-09T11:38:48.5410999Z # Prune all of the docker images 2023-08-09T11:38:48.5411288Z docker system prune -af 2023-08-09T11:38:48.5422113Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2023-08-09T11:38:48.5422379Z env: 2023-08-09T11:38:48.5422628Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T11:38:48.5422883Z REPOSITORY: pytorch/audio 2023-08-09T11:38:48.5423146Z PR_NUMBER: 2023-08-09T11:38:48.5425810Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.9" 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:38:48.5428795Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-08-09T11:38:48.5429189Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-08-09T11:38:48.5429536Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-08-09T11:38:48.5429843Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-08-09T11:38:48.5430114Z ##[endgroup] 2023-08-09T11:38:48.5738294Z "docker stop" requires at least 1 argument. 2023-08-09T11:38:48.5738792Z See 'docker stop --help'. 2023-08-09T11:38:48.5739006Z 2023-08-09T11:38:48.5739165Z Usage: docker stop [OPTIONS] CONTAINER [CONTAINER...] 2023-08-09T11:38:48.5739338Z 2023-08-09T11:38:48.5739533Z Stop one or more running containers 2023-08-09T11:38:48.5924823Z Total reclaimed space: 0B 2023-08-09T11:38:48.5985720Z ##[group]Run ./test-infra/.github/actions/setup-ssh 2023-08-09T11:38:48.5985960Z with: 2023-08-09T11:38:48.5986489Z github-secret: *** 2023-08-09T11:38:48.5986711Z activate-with-label: false 2023-08-09T11:38:48.5986922Z label: with-ssh 2023-08-09T11:38:48.5987127Z remove-existing-keys: true 2023-08-09T11:38:48.5987436Z env: 2023-08-09T11:38:48.5987652Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T11:38:48.5987896Z REPOSITORY: pytorch/audio 2023-08-09T11:38:48.5988206Z PR_NUMBER: 2023-08-09T11:38:48.5990845Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.9" 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:38:48.5993643Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-08-09T11:38:48.5993979Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-08-09T11:38:48.5994302Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-08-09T11:38:48.5994592Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-08-09T11:38:48.5994828Z ##[endgroup] 2023-08-09T11:38:48.6604869Z Please see https://github.com/pytorch/pytorch/wiki/Debugging-using-with-ssh-for-Github-Actions for more info. 2023-08-09T11:38:48.6608065Z Not on pull request and ciflow reference could not be extracted, skipping adding ssh keys 2023-08-09T11:38:48.6680842Z ##[group]Run actions/checkout@v3 2023-08-09T11:38:48.6681063Z with: 2023-08-09T11:38:48.6681257Z repository: pytorch/audio 2023-08-09T11:38:48.6681468Z ref: refs/heads/nightly 2023-08-09T11:38:48.6681677Z path: pytorch/audio 2023-08-09T11:38:48.6681879Z fetch-depth: 1 2023-08-09T11:38:48.6682157Z token: *** 2023-08-09T11:38:48.6682346Z ssh-strict: true 2023-08-09T11:38:48.6682562Z persist-credentials: true 2023-08-09T11:38:48.6682779Z clean: true 2023-08-09T11:38:48.6683100Z sparse-checkout-cone-mode: true 2023-08-09T11:38:48.6683473Z lfs: false 2023-08-09T11:38:48.6683681Z set-safe-directory: true 2023-08-09T11:38:48.6683879Z env: 2023-08-09T11:38:48.6684099Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T11:38:48.6684349Z REPOSITORY: pytorch/audio 2023-08-09T11:38:48.6684554Z PR_NUMBER: 2023-08-09T11:38:48.6687182Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.9" 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:38:48.6690023Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-08-09T11:38:48.6690363Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-08-09T11:38:48.6690682Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-08-09T11:38:48.6690975Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-08-09T11:38:48.6691214Z ##[endgroup] 2023-08-09T11:38:48.7476438Z Syncing repository: pytorch/audio 2023-08-09T11:38:48.7485477Z ##[group]Getting Git version info 2023-08-09T11:38:48.7486098Z Working directory is '/home/ec2-user/actions-runner/_work/audio/audio/pytorch/audio' 2023-08-09T11:38:48.7507492Z [command]/usr/bin/git version 2023-08-09T11:38:48.7536204Z git version 2.40.1 2023-08-09T11:38:48.7555809Z ##[endgroup] 2023-08-09T11:38:48.7567102Z Temporarily overriding HOME='/home/ec2-user/actions-runner/_work/_temp/05b89a1d-6f3e-4059-83c7-98cceb018c30' before making global git config changes 2023-08-09T11:38:48.7567545Z Adding repository directory to the temporary git global config as a safe directory 2023-08-09T11:38:48.7572167Z [command]/usr/bin/git config --global --add safe.directory /home/ec2-user/actions-runner/_work/audio/audio/pytorch/audio 2023-08-09T11:38:48.7592525Z ##[group]Initializing the repository 2023-08-09T11:38:48.7595271Z [command]/usr/bin/git init /home/ec2-user/actions-runner/_work/audio/audio/pytorch/audio 2023-08-09T11:38:48.7612345Z hint: Using 'master' as the name for the initial branch. This default branch name 2023-08-09T11:38:48.7612841Z hint: is subject to change. To configure the initial branch name to use in all 2023-08-09T11:38:48.7613206Z hint: of your new repositories, which will suppress this warning, call: 2023-08-09T11:38:48.7613460Z hint: 2023-08-09T11:38:48.7613774Z hint: git config --global init.defaultBranch 2023-08-09T11:38:48.7614069Z hint: 2023-08-09T11:38:48.7614385Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and 2023-08-09T11:38:48.7614777Z hint: 'development'. The just-created branch can be renamed via this command: 2023-08-09T11:38:48.7615043Z hint: 2023-08-09T11:38:48.7615265Z hint: git branch -m 2023-08-09T11:38:48.7615654Z Initialized empty Git repository in /home/ec2-user/actions-runner/_work/audio/audio/pytorch/audio/.git/ 2023-08-09T11:38:48.7620257Z [command]/usr/bin/git remote add origin https://github.com/pytorch/audio 2023-08-09T11:38:48.7644671Z ##[endgroup] 2023-08-09T11:38:48.7645047Z ##[group]Disabling automatic garbage collection 2023-08-09T11:38:48.7648433Z [command]/usr/bin/git config --local gc.auto 0 2023-08-09T11:38:48.7670407Z ##[endgroup] 2023-08-09T11:38:48.7670771Z ##[group]Setting up auth 2023-08-09T11:38:48.7675855Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2023-08-09T11:38:48.7698364Z [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:38:48.7891221Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2023-08-09T11:38:48.7915515Z [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:38:48.8114115Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** 2023-08-09T11:38:48.8149940Z ##[endgroup] 2023-08-09T11:38:48.8150315Z ##[group]Fetching the repository 2023-08-09T11:38:48.8156565Z [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:38:49.0534272Z remote: Enumerating objects: 987, done. 2023-08-09T11:38:49.0534572Z remote: Counting objects: 0% (1/987) 2023-08-09T11:38:49.0534824Z remote: Counting objects: 1% (10/987) 2023-08-09T11:38:49.0535097Z remote: Counting objects: 2% (20/987) 2023-08-09T11:38:49.0535342Z remote: Counting objects: 3% (30/987) 2023-08-09T11:38:49.0535599Z remote: Counting objects: 4% (40/987) 2023-08-09T11:38:49.0535830Z remote: Counting objects: 5% (50/987) 2023-08-09T11:38:49.0536070Z remote: Counting objects: 6% (60/987) 2023-08-09T11:38:49.0536310Z remote: Counting objects: 7% (70/987) 2023-08-09T11:38:49.0536801Z remote: Counting objects: 8% (79/987) 2023-08-09T11:38:49.0537042Z remote: Counting objects: 9% (89/987) 2023-08-09T11:38:49.0537305Z remote: Counting objects: 10% (99/987) 2023-08-09T11:38:49.0537561Z remote: Counting objects: 11% (109/987) 2023-08-09T11:38:49.0537809Z remote: Counting objects: 12% (119/987) 2023-08-09T11:38:49.0538063Z remote: Counting objects: 13% (129/987) 2023-08-09T11:38:49.0538305Z remote: Counting objects: 14% (139/987) 2023-08-09T11:38:49.0538535Z remote: Counting objects: 15% (149/987) 2023-08-09T11:38:49.0538886Z remote: Counting objects: 16% (158/987) 2023-08-09T11:38:49.0539129Z remote: Counting objects: 17% (168/987) 2023-08-09T11:38:49.0539361Z remote: Counting objects: 18% (178/987) 2023-08-09T11:38:49.0539598Z remote: Counting objects: 19% (188/987) 2023-08-09T11:38:49.0539837Z remote: Counting objects: 20% (198/987) 2023-08-09T11:38:49.0540072Z remote: Counting objects: 21% (208/987) 2023-08-09T11:38:49.0540316Z remote: Counting objects: 22% (218/987) 2023-08-09T11:38:49.0540606Z remote: Counting objects: 23% (228/987) 2023-08-09T11:38:49.0540926Z remote: Counting objects: 24% (237/987) 2023-08-09T11:38:49.0541239Z remote: Counting objects: 25% (247/987) 2023-08-09T11:38:49.0541520Z remote: Counting objects: 26% (257/987) 2023-08-09T11:38:49.0541838Z remote: Counting objects: 27% (267/987) 2023-08-09T11:38:49.0542141Z remote: Counting objects: 28% (277/987) 2023-08-09T11:38:49.0542459Z remote: Counting objects: 29% (287/987) 2023-08-09T11:38:49.0542765Z remote: Counting objects: 30% (297/987) 2023-08-09T11:38:49.0543037Z remote: Counting objects: 31% (306/987) 2023-08-09T11:38:49.0543279Z remote: Counting objects: 32% (316/987) 2023-08-09T11:38:49.0543531Z remote: Counting objects: 33% (326/987) 2023-08-09T11:38:49.0543844Z remote: Counting objects: 34% (336/987) 2023-08-09T11:38:49.0544167Z remote: Counting objects: 35% (346/987) 2023-08-09T11:38:49.0544476Z remote: Counting objects: 36% (356/987) 2023-08-09T11:38:49.0544790Z remote: Counting objects: 37% (366/987) 2023-08-09T11:38:49.0545089Z remote: Counting objects: 38% (376/987) 2023-08-09T11:38:49.0545399Z remote: Counting objects: 39% (385/987) 2023-08-09T11:38:49.0545714Z remote: Counting objects: 40% (395/987) 2023-08-09T11:38:49.0546029Z remote: Counting objects: 41% (405/987) 2023-08-09T11:38:49.0546342Z remote: Counting objects: 42% (415/987) 2023-08-09T11:38:49.0546659Z remote: Counting objects: 43% (425/987) 2023-08-09T11:38:49.0546941Z remote: Counting objects: 44% (435/987) 2023-08-09T11:38:49.0547275Z remote: Counting objects: 45% (445/987) 2023-08-09T11:38:49.0547615Z remote: Counting objects: 46% (455/987) 2023-08-09T11:38:49.0547930Z remote: Counting objects: 47% (464/987) 2023-08-09T11:38:49.0548296Z remote: Counting objects: 48% (474/987) 2023-08-09T11:38:49.0548531Z remote: Counting objects: 49% (484/987) 2023-08-09T11:38:49.0548765Z remote: Counting objects: 50% (494/987) 2023-08-09T11:38:49.0549000Z remote: Counting objects: 51% (504/987) 2023-08-09T11:38:49.0549227Z remote: Counting objects: 52% (514/987) 2023-08-09T11:38:49.0549460Z remote: Counting objects: 53% (524/987) 2023-08-09T11:38:49.0549694Z remote: Counting objects: 54% (533/987) 2023-08-09T11:38:49.0549925Z remote: Counting objects: 55% (543/987) 2023-08-09T11:38:49.0550159Z remote: Counting objects: 56% (553/987) 2023-08-09T11:38:49.0550392Z remote: Counting objects: 57% (563/987) 2023-08-09T11:38:49.0550668Z remote: Counting objects: 58% (573/987) 2023-08-09T11:38:49.0550974Z remote: Counting objects: 59% (583/987) 2023-08-09T11:38:49.0551278Z remote: Counting objects: 60% (593/987) 2023-08-09T11:38:49.0551647Z remote: Counting objects: 61% (603/987) 2023-08-09T11:38:49.0551885Z remote: Counting objects: 62% (612/987) 2023-08-09T11:38:49.0552119Z remote: Counting objects: 63% (622/987) 2023-08-09T11:38:49.0552353Z remote: Counting objects: 64% (632/987) 2023-08-09T11:38:49.0552578Z remote: Counting objects: 65% (642/987) 2023-08-09T11:38:49.0552811Z remote: Counting objects: 66% (652/987) 2023-08-09T11:38:49.0553046Z remote: Counting objects: 67% (662/987) 2023-08-09T11:38:49.0553329Z remote: Counting objects: 68% (672/987) 2023-08-09T11:38:49.0553562Z remote: Counting objects: 69% (682/987) 2023-08-09T11:38:49.0553799Z remote: Counting objects: 70% (691/987) 2023-08-09T11:38:49.0554025Z remote: Counting objects: 71% (701/987) 2023-08-09T11:38:49.0554256Z remote: Counting objects: 72% (711/987) 2023-08-09T11:38:49.0554491Z remote: Counting objects: 73% (721/987) 2023-08-09T11:38:49.0554722Z remote: Counting objects: 74% (731/987) 2023-08-09T11:38:49.0554960Z remote: Counting objects: 75% (741/987) 2023-08-09T11:38:49.0555234Z remote: Counting objects: 76% (751/987) 2023-08-09T11:38:49.0555545Z remote: Counting objects: 77% (760/987) 2023-08-09T11:38:49.0555839Z remote: Counting objects: 78% (770/987) 2023-08-09T11:38:49.0556141Z remote: Counting objects: 79% (780/987) 2023-08-09T11:38:49.0556445Z remote: Counting objects: 80% (790/987) 2023-08-09T11:38:49.0556750Z remote: Counting objects: 81% (800/987) 2023-08-09T11:38:49.0557056Z remote: Counting objects: 82% (810/987) 2023-08-09T11:38:49.0557358Z remote: Counting objects: 83% (820/987) 2023-08-09T11:38:49.0557597Z remote: Counting objects: 84% (830/987) 2023-08-09T11:38:49.0557829Z remote: Counting objects: 85% (839/987) 2023-08-09T11:38:49.0558063Z remote: Counting objects: 86% (849/987) 2023-08-09T11:38:49.0558317Z remote: Counting objects: 87% (859/987) 2023-08-09T11:38:49.0558543Z remote: Counting objects: 88% (869/987) 2023-08-09T11:38:49.0558775Z remote: Counting objects: 89% (879/987) 2023-08-09T11:38:49.0559012Z remote: Counting objects: 90% (889/987) 2023-08-09T11:38:49.0559238Z remote: Counting objects: 91% (899/987) 2023-08-09T11:38:49.0559472Z remote: Counting objects: 92% (909/987) 2023-08-09T11:38:49.0559707Z remote: Counting objects: 93% (918/987) 2023-08-09T11:38:49.0559937Z remote: Counting objects: 94% (928/987) 2023-08-09T11:38:49.0560170Z remote: Counting objects: 95% (938/987) 2023-08-09T11:38:49.0560404Z remote: Counting objects: 96% (948/987) 2023-08-09T11:38:49.0560633Z remote: Counting objects: 97% (958/987) 2023-08-09T11:38:49.0560868Z remote: Counting objects: 98% (968/987) 2023-08-09T11:38:49.0561102Z remote: Counting objects: 99% (978/987) 2023-08-09T11:38:49.0561342Z remote: Counting objects: 100% (987/987) 2023-08-09T11:38:49.0561581Z remote: Counting objects: 100% (987/987), done. 2023-08-09T11:38:49.0564685Z remote: Compressing objects: 0% (1/865) 2023-08-09T11:38:49.0565032Z remote: Compressing objects: 1% (9/865) 2023-08-09T11:38:49.0576013Z remote: Compressing objects: 2% (18/865) 2023-08-09T11:38:49.0584909Z remote: Compressing objects: 3% (26/865) 2023-08-09T11:38:49.0586822Z remote: Compressing objects: 4% (35/865) 2023-08-09T11:38:49.0593945Z remote: Compressing objects: 5% (44/865) 2023-08-09T11:38:49.0613838Z remote: Compressing objects: 6% (52/865) 2023-08-09T11:38:49.0614187Z remote: Compressing objects: 7% (61/865) 2023-08-09T11:38:49.0633271Z remote: Compressing objects: 8% (70/865) 2023-08-09T11:38:49.0673562Z remote: Compressing objects: 9% (78/865) 2023-08-09T11:38:49.0686640Z remote: Compressing objects: 10% (87/865) 2023-08-09T11:38:49.0704044Z remote: Compressing objects: 11% (96/865) 2023-08-09T11:38:49.0709519Z remote: Compressing objects: 12% (104/865) 2023-08-09T11:38:49.0717960Z remote: Compressing objects: 13% (113/865) 2023-08-09T11:38:49.0722468Z remote: Compressing objects: 14% (122/865) 2023-08-09T11:38:49.0726245Z remote: Compressing objects: 15% (130/865) 2023-08-09T11:38:49.0738320Z remote: Compressing objects: 16% (139/865) 2023-08-09T11:38:49.0751199Z remote: Compressing objects: 17% (148/865) 2023-08-09T11:38:49.0783863Z remote: Compressing objects: 18% (156/865) 2023-08-09T11:38:49.0806353Z remote: Compressing objects: 19% (165/865) 2023-08-09T11:38:49.0828073Z remote: Compressing objects: 20% (173/865) 2023-08-09T11:38:49.0847883Z remote: Compressing objects: 21% (182/865) 2023-08-09T11:38:49.0850872Z remote: Compressing objects: 22% (191/865) 2023-08-09T11:38:49.0870469Z remote: Compressing objects: 23% (199/865) 2023-08-09T11:38:49.0885725Z remote: Compressing objects: 24% (208/865) 2023-08-09T11:38:49.0908619Z remote: Compressing objects: 25% (217/865) 2023-08-09T11:38:49.0932549Z remote: Compressing objects: 26% (225/865) 2023-08-09T11:38:49.0988546Z remote: Compressing objects: 27% (234/865) 2023-08-09T11:38:49.1009511Z remote: Compressing objects: 28% (243/865) 2023-08-09T11:38:49.1037670Z remote: Compressing objects: 29% (251/865) 2023-08-09T11:38:49.1049173Z remote: Compressing objects: 30% (260/865) 2023-08-09T11:38:49.1066225Z remote: Compressing objects: 31% (269/865) 2023-08-09T11:38:49.1109039Z remote: Compressing objects: 32% (277/865) 2023-08-09T11:38:49.1118613Z remote: Compressing objects: 33% (286/865) 2023-08-09T11:38:49.1160746Z remote: Compressing objects: 34% (295/865) 2023-08-09T11:38:49.1213563Z remote: Compressing objects: 35% (303/865) 2023-08-09T11:38:49.1244177Z remote: Compressing objects: 36% (312/865) 2023-08-09T11:38:49.1289700Z remote: Compressing objects: 37% (321/865) 2023-08-09T11:38:49.1371619Z remote: Compressing objects: 38% (329/865) 2023-08-09T11:38:49.1472089Z remote: Compressing objects: 39% (338/865) 2023-08-09T11:38:49.1532762Z remote: Compressing objects: 40% (346/865) 2023-08-09T11:38:49.1563516Z remote: Compressing objects: 41% (355/865) 2023-08-09T11:38:49.1576903Z remote: Compressing objects: 42% (364/865) 2023-08-09T11:38:49.1594681Z remote: Compressing objects: 43% (372/865) 2023-08-09T11:38:49.1620717Z remote: Compressing objects: 44% (381/865) 2023-08-09T11:38:49.1635677Z remote: Compressing objects: 45% (390/865) 2023-08-09T11:38:49.1658534Z remote: Compressing objects: 46% (398/865) 2023-08-09T11:38:49.1674371Z remote: Compressing objects: 47% (407/865) 2023-08-09T11:38:49.1674817Z remote: Compressing objects: 48% (416/865) 2023-08-09T11:38:49.1675179Z remote: Compressing objects: 49% (424/865) 2023-08-09T11:38:49.1675517Z remote: Compressing objects: 50% (433/865) 2023-08-09T11:38:49.1675771Z remote: Compressing objects: 51% (442/865) 2023-08-09T11:38:49.1684126Z remote: Compressing objects: 52% (450/865) 2023-08-09T11:38:49.1687572Z remote: Compressing objects: 53% (459/865) 2023-08-09T11:38:49.1693380Z remote: Compressing objects: 54% (468/865) 2023-08-09T11:38:49.1699454Z remote: Compressing objects: 55% (476/865) 2023-08-09T11:38:49.1707719Z remote: Compressing objects: 56% (485/865) 2023-08-09T11:38:49.1708121Z remote: Compressing objects: 57% (494/865) 2023-08-09T11:38:49.1732705Z remote: Compressing objects: 58% (502/865) 2023-08-09T11:38:49.1739200Z remote: Compressing objects: 59% (511/865) 2023-08-09T11:38:49.1767703Z remote: Compressing objects: 60% (519/865) 2023-08-09T11:38:49.1782556Z remote: Compressing objects: 61% (528/865) 2023-08-09T11:38:49.1799239Z remote: Compressing objects: 62% (537/865) 2023-08-09T11:38:49.1812145Z remote: Compressing objects: 63% (545/865) 2023-08-09T11:38:49.1814841Z remote: Compressing objects: 64% (554/865) 2023-08-09T11:38:49.1831781Z remote: Compressing objects: 65% (563/865) 2023-08-09T11:38:49.1884932Z remote: Compressing objects: 66% (571/865) 2023-08-09T11:38:49.1890746Z remote: Compressing objects: 67% (580/865) 2023-08-09T11:38:49.1891242Z remote: Compressing objects: 68% (589/865) 2023-08-09T11:38:49.1891792Z remote: Compressing objects: 69% (597/865) 2023-08-09T11:38:49.1892129Z remote: Compressing objects: 70% (606/865) 2023-08-09T11:38:49.1892460Z remote: Compressing objects: 71% (615/865) 2023-08-09T11:38:49.1892720Z remote: Compressing objects: 72% (623/865) 2023-08-09T11:38:49.1903081Z remote: Compressing objects: 73% (632/865) 2023-08-09T11:38:49.1911673Z remote: Compressing objects: 74% (641/865) 2023-08-09T11:38:49.1918057Z remote: Compressing objects: 75% (649/865) 2023-08-09T11:38:49.1927562Z remote: Compressing objects: 76% (658/865) 2023-08-09T11:38:49.1935652Z remote: Compressing objects: 77% (667/865) 2023-08-09T11:38:49.1938046Z remote: Compressing objects: 78% (675/865) 2023-08-09T11:38:49.1946294Z remote: Compressing objects: 79% (684/865) 2023-08-09T11:38:49.1955152Z remote: Compressing objects: 80% (692/865) 2023-08-09T11:38:49.1956155Z remote: Compressing objects: 81% (701/865) 2023-08-09T11:38:49.1956494Z remote: Compressing objects: 82% (710/865) 2023-08-09T11:38:49.1957519Z remote: Compressing objects: 83% (718/865) 2023-08-09T11:38:49.1957869Z remote: Compressing objects: 84% (727/865) 2023-08-09T11:38:49.1958213Z remote: Compressing objects: 85% (736/865) 2023-08-09T11:38:49.1959761Z remote: Compressing objects: 86% (744/865) 2023-08-09T11:38:49.1960101Z remote: Compressing objects: 87% (753/865) 2023-08-09T11:38:49.1960441Z remote: Compressing objects: 88% (762/865) 2023-08-09T11:38:49.1960769Z remote: Compressing objects: 89% (770/865) 2023-08-09T11:38:49.1961286Z remote: Compressing objects: 90% (779/865) 2023-08-09T11:38:49.1961885Z remote: Compressing objects: 91% (788/865) 2023-08-09T11:38:49.1963474Z remote: Compressing objects: 92% (796/865) 2023-08-09T11:38:49.1964057Z remote: Compressing objects: 93% (805/865) 2023-08-09T11:38:49.1964386Z remote: Compressing objects: 94% (814/865) 2023-08-09T11:38:49.1965880Z remote: Compressing objects: 95% (822/865) 2023-08-09T11:38:49.1966225Z remote: Compressing objects: 96% (831/865) 2023-08-09T11:38:49.1966669Z remote: Compressing objects: 97% (840/865) 2023-08-09T11:38:49.1967020Z remote: Compressing objects: 98% (848/865) 2023-08-09T11:38:49.1967855Z remote: Compressing objects: 99% (857/865) 2023-08-09T11:38:49.1968215Z remote: Compressing objects: 100% (865/865) 2023-08-09T11:38:49.1968565Z remote: Compressing objects: 100% (865/865), done. 2023-08-09T11:38:49.1990701Z Receiving objects: 0% (1/987) 2023-08-09T11:38:49.1992953Z Receiving objects: 1% (10/987) 2023-08-09T11:38:49.1994417Z Receiving objects: 2% (20/987) 2023-08-09T11:38:49.1995176Z Receiving objects: 3% (30/987) 2023-08-09T11:38:49.1996997Z Receiving objects: 4% (40/987) 2023-08-09T11:38:49.2001044Z Receiving objects: 5% (50/987) 2023-08-09T11:38:49.2029228Z Receiving objects: 6% (60/987) 2023-08-09T11:38:49.2033383Z Receiving objects: 7% (70/987) 2023-08-09T11:38:49.2035435Z Receiving objects: 8% (79/987) 2023-08-09T11:38:49.2042602Z Receiving objects: 9% (89/987) 2023-08-09T11:38:49.2045772Z Receiving objects: 10% (99/987) 2023-08-09T11:38:49.2047602Z Receiving objects: 11% (109/987) 2023-08-09T11:38:49.2052340Z Receiving objects: 12% (119/987) 2023-08-09T11:38:49.2055298Z Receiving objects: 13% (129/987) 2023-08-09T11:38:49.2057547Z Receiving objects: 14% (139/987) 2023-08-09T11:38:49.2060133Z Receiving objects: 15% (149/987) 2023-08-09T11:38:49.2062442Z Receiving objects: 16% (158/987) 2023-08-09T11:38:49.2064809Z Receiving objects: 17% (168/987) 2023-08-09T11:38:49.2067025Z Receiving objects: 18% (178/987) 2023-08-09T11:38:49.2069395Z Receiving objects: 19% (188/987) 2023-08-09T11:38:49.2072249Z Receiving objects: 20% (198/987) 2023-08-09T11:38:49.2091298Z Receiving objects: 21% (208/987) 2023-08-09T11:38:49.2097868Z Receiving objects: 22% (218/987) 2023-08-09T11:38:49.2100517Z Receiving objects: 23% (228/987) 2023-08-09T11:38:49.2101810Z Receiving objects: 24% (237/987) 2023-08-09T11:38:49.2124369Z Receiving objects: 25% (247/987) 2023-08-09T11:38:49.2128544Z Receiving objects: 26% (257/987) 2023-08-09T11:38:49.2134095Z Receiving objects: 27% (267/987) 2023-08-09T11:38:49.2137376Z Receiving objects: 28% (277/987) 2023-08-09T11:38:49.2138153Z Receiving objects: 29% (287/987) 2023-08-09T11:38:49.2139800Z Receiving objects: 30% (297/987) 2023-08-09T11:38:49.2162745Z Receiving objects: 31% (306/987) 2023-08-09T11:38:49.2169199Z Receiving objects: 32% (316/987) 2023-08-09T11:38:49.2180660Z Receiving objects: 33% (326/987) 2023-08-09T11:38:49.2220082Z Receiving objects: 34% (336/987) 2023-08-09T11:38:49.2227367Z Receiving objects: 35% (346/987) 2023-08-09T11:38:49.2228175Z Receiving objects: 36% (356/987) 2023-08-09T11:38:49.2230868Z Receiving objects: 37% (366/987) 2023-08-09T11:38:49.2232505Z Receiving objects: 38% (376/987) 2023-08-09T11:38:49.2272234Z Receiving objects: 39% (385/987) 2023-08-09T11:38:49.2272647Z Receiving objects: 40% (395/987) 2023-08-09T11:38:49.2279905Z Receiving objects: 41% (405/987) 2023-08-09T11:38:49.2377817Z Receiving objects: 42% (415/987) 2023-08-09T11:38:49.2736659Z Receiving objects: 43% (425/987) 2023-08-09T11:38:49.2761382Z Receiving objects: 44% (435/987) 2023-08-09T11:38:49.2762126Z Receiving objects: 45% (445/987) 2023-08-09T11:38:49.2762876Z Receiving objects: 46% (455/987) 2023-08-09T11:38:49.2763171Z Receiving objects: 47% (464/987) 2023-08-09T11:38:49.2768376Z Receiving objects: 48% (474/987) 2023-08-09T11:38:49.2771735Z Receiving objects: 49% (484/987) 2023-08-09T11:38:49.2772223Z Receiving objects: 50% (494/987) 2023-08-09T11:38:49.2776075Z Receiving objects: 51% (504/987) 2023-08-09T11:38:49.2779122Z Receiving objects: 52% (514/987) 2023-08-09T11:38:49.2782068Z Receiving objects: 53% (524/987) 2023-08-09T11:38:49.2785432Z Receiving objects: 54% (533/987) 2023-08-09T11:38:49.2789215Z Receiving objects: 55% (543/987) 2023-08-09T11:38:49.2789658Z Receiving objects: 56% (553/987) 2023-08-09T11:38:49.2792281Z Receiving objects: 57% (563/987) 2023-08-09T11:38:49.2799523Z Receiving objects: 58% (573/987) 2023-08-09T11:38:49.2803637Z Receiving objects: 59% (583/987) 2023-08-09T11:38:49.2810202Z Receiving objects: 60% (593/987) 2023-08-09T11:38:49.2812325Z Receiving objects: 61% (603/987) 2023-08-09T11:38:49.2813818Z Receiving objects: 62% (612/987) 2023-08-09T11:38:49.2814266Z Receiving objects: 63% (622/987) 2023-08-09T11:38:49.2819171Z Receiving objects: 64% (632/987) 2023-08-09T11:38:49.2822256Z Receiving objects: 65% (642/987) 2023-08-09T11:38:49.2823533Z Receiving objects: 66% (652/987) 2023-08-09T11:38:49.2826411Z Receiving objects: 67% (662/987) 2023-08-09T11:38:49.2829572Z Receiving objects: 68% (672/987) 2023-08-09T11:38:49.2831719Z Receiving objects: 69% (682/987) 2023-08-09T11:38:49.2834089Z Receiving objects: 70% (691/987) 2023-08-09T11:38:49.2835533Z Receiving objects: 71% (701/987) 2023-08-09T11:38:49.2838338Z Receiving objects: 72% (711/987) 2023-08-09T11:38:49.2842760Z Receiving objects: 73% (721/987) 2023-08-09T11:38:49.2847139Z Receiving objects: 74% (731/987) 2023-08-09T11:38:49.2851402Z Receiving objects: 75% (741/987) 2023-08-09T11:38:49.2857389Z Receiving objects: 76% (751/987) 2023-08-09T11:38:49.2863167Z Receiving objects: 77% (760/987) 2023-08-09T11:38:49.2866516Z Receiving objects: 78% (770/987) 2023-08-09T11:38:49.2872030Z Receiving objects: 79% (780/987) 2023-08-09T11:38:49.2878960Z Receiving objects: 80% (790/987) 2023-08-09T11:38:49.2883624Z Receiving objects: 81% (800/987) 2023-08-09T11:38:49.2887557Z Receiving objects: 82% (810/987) 2023-08-09T11:38:49.2889731Z Receiving objects: 83% (820/987) 2023-08-09T11:38:49.2891817Z Receiving objects: 84% (830/987) 2023-08-09T11:38:49.2893860Z Receiving objects: 85% (839/987) 2023-08-09T11:38:49.2896849Z Receiving objects: 86% (849/987) 2023-08-09T11:38:49.2900229Z Receiving objects: 87% (859/987) 2023-08-09T11:38:49.2906233Z Receiving objects: 88% (869/987) 2023-08-09T11:38:49.2911935Z Receiving objects: 89% (879/987) 2023-08-09T11:38:49.2929689Z Receiving objects: 90% (889/987) 2023-08-09T11:38:49.2937558Z Receiving objects: 91% (899/987) 2023-08-09T11:38:49.2946865Z Receiving objects: 92% (909/987) 2023-08-09T11:38:49.2959489Z Receiving objects: 93% (918/987) 2023-08-09T11:38:49.2964988Z Receiving objects: 94% (928/987) 2023-08-09T11:38:49.2973117Z Receiving objects: 95% (938/987) 2023-08-09T11:38:49.2973673Z Receiving objects: 96% (948/987) 2023-08-09T11:38:49.2974264Z remote: Total 987 (delta 162), reused 444 (delta 89), pack-reused 0 2023-08-09T11:38:49.2983816Z Receiving objects: 97% (958/987) 2023-08-09T11:38:49.2992580Z Receiving objects: 98% (968/987) 2023-08-09T11:38:49.2995584Z Receiving objects: 99% (978/987) 2023-08-09T11:38:49.2996121Z Receiving objects: 100% (987/987) 2023-08-09T11:38:49.2996466Z Receiving objects: 100% (987/987), 4.42 MiB | 43.98 MiB/s, done. 2023-08-09T11:38:49.3001849Z Resolving deltas: 0% (0/162) 2023-08-09T11:38:49.3002162Z Resolving deltas: 1% (2/162) 2023-08-09T11:38:49.3002463Z Resolving deltas: 2% (4/162) 2023-08-09T11:38:49.3002763Z Resolving deltas: 3% (5/162) 2023-08-09T11:38:49.3003063Z Resolving deltas: 4% (7/162) 2023-08-09T11:38:49.3003554Z Resolving deltas: 6% (11/162) 2023-08-09T11:38:49.3003859Z Resolving deltas: 7% (12/162) 2023-08-09T11:38:49.3005616Z Resolving deltas: 8% (13/162) 2023-08-09T11:38:49.3005885Z Resolving deltas: 9% (15/162) 2023-08-09T11:38:49.3006106Z Resolving deltas: 10% (17/162) 2023-08-09T11:38:49.3006472Z Resolving deltas: 11% (18/162) 2023-08-09T11:38:49.3007042Z Resolving deltas: 12% (20/162) 2023-08-09T11:38:49.3007293Z Resolving deltas: 13% (22/162) 2023-08-09T11:38:49.3007534Z Resolving deltas: 14% (23/162) 2023-08-09T11:38:49.3007758Z Resolving deltas: 15% (25/162) 2023-08-09T11:38:49.3008647Z Resolving deltas: 16% (26/162) 2023-08-09T11:38:49.3009760Z Resolving deltas: 17% (28/162) 2023-08-09T11:38:49.3011041Z Resolving deltas: 18% (30/162) 2023-08-09T11:38:49.3012433Z Resolving deltas: 19% (31/162) 2023-08-09T11:38:49.3013038Z Resolving deltas: 20% (33/162) 2023-08-09T11:38:49.3013926Z Resolving deltas: 21% (35/162) 2023-08-09T11:38:49.3014166Z Resolving deltas: 22% (37/162) 2023-08-09T11:38:49.3014517Z Resolving deltas: 23% (38/162) 2023-08-09T11:38:49.3016998Z Resolving deltas: 24% (39/162) 2023-08-09T11:38:49.3018467Z Resolving deltas: 25% (41/162) 2023-08-09T11:38:49.3018967Z Resolving deltas: 26% (43/162) 2023-08-09T11:38:49.3021223Z Resolving deltas: 27% (44/162) 2023-08-09T11:38:49.3021664Z Resolving deltas: 28% (46/162) 2023-08-09T11:38:49.3023213Z Resolving deltas: 29% (47/162) 2023-08-09T11:38:49.3024829Z Resolving deltas: 30% (50/162) 2023-08-09T11:38:49.3025155Z Resolving deltas: 31% (51/162) 2023-08-09T11:38:49.3025460Z Resolving deltas: 32% (52/162) 2023-08-09T11:38:49.3025737Z Resolving deltas: 33% (55/162) 2023-08-09T11:38:49.3026360Z Resolving deltas: 35% (57/162) 2023-08-09T11:38:49.3026812Z Resolving deltas: 37% (60/162) 2023-08-09T11:38:49.3027041Z Resolving deltas: 38% (62/162) 2023-08-09T11:38:49.3027249Z Resolving deltas: 40% (66/162) 2023-08-09T11:38:49.3027461Z Resolving deltas: 41% (67/162) 2023-08-09T11:38:49.3028328Z Resolving deltas: 43% (70/162) 2023-08-09T11:38:49.3028624Z Resolving deltas: 45% (73/162) 2023-08-09T11:38:49.3029217Z Resolving deltas: 46% (75/162) 2023-08-09T11:38:49.3029594Z Resolving deltas: 47% (77/162) 2023-08-09T11:38:49.3030542Z Resolving deltas: 48% (78/162) 2023-08-09T11:38:49.3033453Z Resolving deltas: 49% (80/162) 2023-08-09T11:38:49.3033876Z Resolving deltas: 52% (85/162) 2023-08-09T11:38:49.3034153Z Resolving deltas: 53% (86/162) 2023-08-09T11:38:49.3034639Z Resolving deltas: 54% (88/162) 2023-08-09T11:38:49.3034931Z Resolving deltas: 56% (91/162) 2023-08-09T11:38:49.3035190Z Resolving deltas: 57% (93/162) 2023-08-09T11:38:49.3035695Z Resolving deltas: 58% (94/162) 2023-08-09T11:38:49.3036991Z Resolving deltas: 59% (96/162) 2023-08-09T11:38:49.3037276Z Resolving deltas: 60% (98/162) 2023-08-09T11:38:49.3037548Z Resolving deltas: 61% (99/162) 2023-08-09T11:38:49.3037799Z Resolving deltas: 62% (101/162) 2023-08-09T11:38:49.3038882Z Resolving deltas: 63% (103/162) 2023-08-09T11:38:49.3039178Z Resolving deltas: 64% (104/162) 2023-08-09T11:38:49.3039451Z Resolving deltas: 65% (106/162) 2023-08-09T11:38:49.3039675Z Resolving deltas: 66% (107/162) 2023-08-09T11:38:49.3040590Z Resolving deltas: 67% (110/162) 2023-08-09T11:38:49.3040824Z Resolving deltas: 68% (111/162) 2023-08-09T11:38:49.3041072Z Resolving deltas: 69% (112/162) 2023-08-09T11:38:49.3041407Z Resolving deltas: 70% (114/162) 2023-08-09T11:38:49.3042007Z Resolving deltas: 72% (117/162) 2023-08-09T11:38:49.3042452Z Resolving deltas: 73% (119/162) 2023-08-09T11:38:49.3042819Z Resolving deltas: 74% (121/162) 2023-08-09T11:38:49.3043140Z Resolving deltas: 76% (124/162) 2023-08-09T11:38:49.3043674Z Resolving deltas: 77% (126/162) 2023-08-09T11:38:49.3043972Z Resolving deltas: 78% (127/162) 2023-08-09T11:38:49.3044269Z Resolving deltas: 79% (128/162) 2023-08-09T11:38:49.3044562Z Resolving deltas: 80% (130/162) 2023-08-09T11:38:49.3046262Z Resolving deltas: 81% (132/162) 2023-08-09T11:38:49.3046564Z Resolving deltas: 82% (133/162) 2023-08-09T11:38:49.3046875Z Resolving deltas: 83% (135/162) 2023-08-09T11:38:49.3047823Z Resolving deltas: 85% (138/162) 2023-08-09T11:38:49.3049295Z Resolving deltas: 87% (141/162) 2023-08-09T11:38:49.3050201Z Resolving deltas: 88% (143/162) 2023-08-09T11:38:49.3050846Z Resolving deltas: 89% (145/162) 2023-08-09T11:38:49.3051668Z Resolving deltas: 90% (146/162) 2023-08-09T11:38:49.3052158Z Resolving deltas: 91% (148/162) 2023-08-09T11:38:49.3052952Z Resolving deltas: 92% (150/162) 2023-08-09T11:38:49.3053388Z Resolving deltas: 93% (151/162) 2023-08-09T11:38:49.3053681Z Resolving deltas: 94% (153/162) 2023-08-09T11:38:49.3056181Z Resolving deltas: 95% (154/162) 2023-08-09T11:38:49.3057476Z Resolving deltas: 96% (156/162) 2023-08-09T11:38:49.3058183Z Resolving deltas: 97% (158/162) 2023-08-09T11:38:49.3059706Z Resolving deltas: 98% (159/162) 2023-08-09T11:38:49.3063718Z Resolving deltas: 99% (161/162) 2023-08-09T11:38:49.3064333Z Resolving deltas: 100% (162/162) 2023-08-09T11:38:49.3064733Z Resolving deltas: 100% (162/162), done. 2023-08-09T11:38:49.3267082Z From https://github.com/pytorch/audio 2023-08-09T11:38:49.3267589Z * [new branch] nightly -> origin/nightly 2023-08-09T11:38:49.3281334Z ##[endgroup] 2023-08-09T11:38:49.3281782Z ##[group]Determining the checkout info 2023-08-09T11:38:49.3284092Z ##[endgroup] 2023-08-09T11:38:49.3284575Z ##[group]Checking out the ref 2023-08-09T11:38:49.3287539Z [command]/usr/bin/git checkout --progress --force -B nightly refs/remotes/origin/nightly 2023-08-09T11:38:49.3845001Z Switched to a new branch 'nightly' 2023-08-09T11:38:49.3845510Z branch 'nightly' set up to track 'origin/nightly'. 2023-08-09T11:38:49.3850661Z ##[endgroup] 2023-08-09T11:38:49.3882273Z [command]/usr/bin/git log -1 --format='%H' 2023-08-09T11:38:49.3898412Z 'fe9b9ff75edebf1e0e326f64577d64df3b5858db' 2023-08-09T11:38:49.3990908Z Prepare all required actions 2023-08-09T11:38:49.4037476Z ##[group]Run ./test-infra/.github/actions/calculate-docker-image 2023-08-09T11:38:49.4037731Z with: 2023-08-09T11:38:49.4037954Z docker-image-name: pytorch/conda-builder:cuda11.8 2023-08-09T11:38:49.4038220Z docker-build-dir: .ci/docker 2023-08-09T11:38:49.4038457Z working-directory: pytorch/audio 2023-08-09T11:38:49.4038732Z docker-registry: 308535385114.dkr.ecr.us-east-1.amazonaws.com 2023-08-09T11:38:49.4038971Z env: 2023-08-09T11:38:49.4039191Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T11:38:49.4039422Z REPOSITORY: pytorch/audio 2023-08-09T11:38:49.4039632Z PR_NUMBER: 2023-08-09T11:38:49.4042274Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.9" 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:38:49.4045438Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-08-09T11:38:49.4045778Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-08-09T11:38:49.4046095Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-08-09T11:38:49.4046386Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-08-09T11:38:49.4046630Z ##[endgroup] 2023-08-09T11:38:49.4059715Z ##[group]Run set -ex 2023-08-09T11:38:49.4060019Z set -ex 2023-08-09T11:38:49.4060227Z  2023-08-09T11:38:49.4060496Z # If the docker build directory or the build script doesn't exist, the action will 2023-08-09T11:38:49.4060948Z # gracefully return the docker image name as it is. Pulling docker image in Linux 2023-08-09T11:38:49.4061282Z # job could then download the pre-built image as usual 2023-08-09T11:38:49.4061595Z if [[ ! -d "${DOCKER_BUILD_DIR}" ]] || [[ ! -f "${DOCKER_BUILD_DIR}/build.sh" ]]; then 2023-08-09T11:38:49.4061889Z  echo "skip=true" >> "${GITHUB_OUTPUT}" 2023-08-09T11:38:49.4062182Z  echo "docker-image=${DOCKER_IMAGE_NAME}" >> "${GITHUB_OUTPUT}" 2023-08-09T11:38:49.4062428Z  2023-08-09T11:38:49.4062687Z  echo "There is no Docker build script in ${REPO_NAME} repo, skipping..." 2023-08-09T11:38:49.4062949Z  exit 0 2023-08-09T11:38:49.4063135Z else 2023-08-09T11:38:49.4063352Z  echo "skip=false" >> "${GITHUB_OUTPUT}" 2023-08-09T11:38:49.4063655Z fi 2023-08-09T11:38:49.4063835Z  2023-08-09T11:38:49.4064085Z if [[ "${DOCKER_IMAGE_NAME}" == *"${DOCKER_REGISTRY}/${REPO_NAME}"* ]]; then 2023-08-09T11:38:49.4064417Z  # The docker image name already includes the ECR prefix and tag, so we can just 2023-08-09T11:38:49.4064738Z  # use it as it is, but first let's extract the tag 2023-08-09T11:38:49.4065037Z  DOCKER_TAG=$(echo "${DOCKER_IMAGE_NAME}" | awk -F '[:,]' '{print $2}') 2023-08-09T11:38:49.4065335Z  echo "docker-tag=${DOCKER_TAG}" >> "${GITHUB_OUTPUT}" 2023-08-09T11:38:49.4065640Z  echo "docker-image=${DOCKER_IMAGE_NAME}" >> "${GITHUB_OUTPUT}" 2023-08-09T11:38:49.4065890Z else 2023-08-09T11:38:49.4066130Z  DOCKER_TAG=$(git rev-parse HEAD:"${DOCKER_BUILD_DIR}") 2023-08-09T11:38:49.4066426Z  echo "docker-tag=${DOCKER_TAG}" >> "${GITHUB_OUTPUT}" 2023-08-09T11:38:49.4066781Z  echo "docker-image=${DOCKER_REGISTRY}/${REPO_NAME}/${DOCKER_IMAGE_NAME}:${DOCKER_TAG}" >> "${GITHUB_OUTPUT}" 2023-08-09T11:38:49.4067080Z fi 2023-08-09T11:38:49.4078056Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2023-08-09T11:38:49.4078287Z env: 2023-08-09T11:38:49.4078499Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T11:38:49.4078730Z REPOSITORY: pytorch/audio 2023-08-09T11:38:49.4078936Z PR_NUMBER: 2023-08-09T11:38:49.4081583Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.9" 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:38:49.4084621Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-08-09T11:38:49.4084968Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-08-09T11:38:49.4085286Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-08-09T11:38:49.4085576Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-08-09T11:38:49.4085819Z REPO_NAME: audio 2023-08-09T11:38:49.4086057Z DOCKER_IMAGE_NAME: pytorch/conda-builder:cuda11.8 2023-08-09T11:38:49.4086302Z DOCKER_BUILD_DIR: .ci/docker 2023-08-09T11:38:49.4086562Z DOCKER_REGISTRY: 308535385114.dkr.ecr.us-east-1.amazonaws.com 2023-08-09T11:38:49.4086803Z ##[endgroup] 2023-08-09T11:38:49.4108375Z + [[ ! -d .ci/docker ]] 2023-08-09T11:38:49.4108747Z + echo skip=true 2023-08-09T11:38:49.4109138Z + echo docker-image=pytorch/conda-builder:cuda11.8 2023-08-09T11:38:49.4109576Z + echo 'There is no Docker build script in audio repo, skipping...' 2023-08-09T11:38:49.4109861Z + exit 0 2023-08-09T11:38:49.4110095Z There is no Docker build script in audio repo, skipping... 2023-08-09T11:38:49.4199523Z Prepare all required actions 2023-08-09T11:38:49.4232930Z ##[group]Run ./test-infra/.github/actions/pull-docker-image 2023-08-09T11:38:49.4233187Z with: 2023-08-09T11:38:49.4233411Z docker-image: pytorch/conda-builder:cuda11.8 2023-08-09T11:38:49.4233636Z env: 2023-08-09T11:38:49.4233860Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T11:38:49.4234103Z REPOSITORY: pytorch/audio 2023-08-09T11:38:49.4234316Z PR_NUMBER: 2023-08-09T11:38:49.4236970Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.9" 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:38:49.4239821Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-08-09T11:38:49.4240158Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-08-09T11:38:49.4240480Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-08-09T11:38:49.4240773Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-08-09T11:38:49.4241016Z ##[endgroup] 2023-08-09T11:38:49.4252885Z ##[group]Run retry () { "$@" || (sleep 1 && "$@") || (sleep 2 && "$@") } 2023-08-09T11:38:49.4253174Z retry () { "$@" || (sleep 1 && "$@") || (sleep 2 && "$@") } 2023-08-09T11:38:49.4253461Z # ignore output since only exit code is used for conditional 2023-08-09T11:38:49.4253760Z # only pull docker image if it's not available locally 2023-08-09T11:38:49.4254088Z if ! docker inspect --type=image "${DOCKER_IMAGE}" >/dev/null 2>/dev/null; then 2023-08-09T11:38:49.4254456Z  retry docker pull "${DOCKER_IMAGE}" 2023-08-09T11:38:49.4254689Z fi 2023-08-09T11:38:49.4265310Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2023-08-09T11:38:49.4265538Z env: 2023-08-09T11:38:49.4265761Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T11:38:49.4266007Z REPOSITORY: pytorch/audio 2023-08-09T11:38:49.4266205Z PR_NUMBER: 2023-08-09T11:38:49.4268896Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.9" 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:38:49.4271695Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-08-09T11:38:49.4272022Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-08-09T11:38:49.4272340Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-08-09T11:38:49.4272636Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-08-09T11:38:49.4272875Z ##[endgroup] 2023-08-09T11:38:49.7860429Z cuda11.8: Pulling from pytorch/conda-builder 2023-08-09T11:38:49.7860710Z 2d473b07cdd5: Pulling fs layer 2023-08-09T11:38:49.7860989Z c465e63dcd7b: Pulling fs layer 2023-08-09T11:38:49.7861270Z a7f6430c8a00: Pulling fs layer 2023-08-09T11:38:49.7861547Z 06ba10ca5c81: Pulling fs layer 2023-08-09T11:38:49.7861838Z 2388e8dd226d: Pulling fs layer 2023-08-09T11:38:49.7862108Z 62ba1c2b4591: Pulling fs layer 2023-08-09T11:38:49.7862411Z b09cb1ee2eff: Pulling fs layer 2023-08-09T11:38:49.7862674Z 63ff7b8d20e2: Pulling fs layer 2023-08-09T11:38:49.7863048Z 06ba10ca5c81: Waiting 2023-08-09T11:38:49.7863264Z 270053ceedab: Pulling fs layer 2023-08-09T11:38:49.7863464Z 2388e8dd226d: Waiting 2023-08-09T11:38:49.7863671Z 4f4fb700ef54: Pulling fs layer 2023-08-09T11:38:49.7863878Z 62ba1c2b4591: Waiting 2023-08-09T11:38:49.7864076Z 83391fa0c49e: Pulling fs layer 2023-08-09T11:38:49.7864277Z 270053ceedab: Waiting 2023-08-09T11:38:49.7864479Z 9337207c4d02: Pulling fs layer 2023-08-09T11:38:49.7864701Z 93aaaef2fa05: Pulling fs layer 2023-08-09T11:38:49.7864922Z 8aca3975db6d: Pulling fs layer 2023-08-09T11:38:49.7865129Z 63ff7b8d20e2: Waiting 2023-08-09T11:38:49.7865318Z 4f4fb700ef54: Waiting 2023-08-09T11:38:49.7865526Z 6c98ad6aee13: Pulling fs layer 2023-08-09T11:38:49.7865738Z 2e33826627e5: Pulling fs layer 2023-08-09T11:38:49.7865946Z 843a9af61985: Pulling fs layer 2023-08-09T11:38:49.7866138Z 83391fa0c49e: Waiting 2023-08-09T11:38:49.7866345Z bdb161d9acc8: Pulling fs layer 2023-08-09T11:38:49.7866572Z fe807f8a9f46: Pulling fs layer 2023-08-09T11:38:49.7866773Z b09cb1ee2eff: Waiting 2023-08-09T11:38:49.7866975Z a393777e5737: Pulling fs layer 2023-08-09T11:38:49.7867171Z 8aca3975db6d: Waiting 2023-08-09T11:38:49.7867358Z 6c98ad6aee13: Waiting 2023-08-09T11:38:49.7867581Z 843a9af61985: Waiting 2023-08-09T11:38:49.7867788Z bdb161d9acc8: Waiting 2023-08-09T11:38:49.7868077Z 93aaaef2fa05: Waiting 2023-08-09T11:38:49.7868275Z fe807f8a9f46: Waiting 2023-08-09T11:38:49.7868460Z 2e33826627e5: Waiting 2023-08-09T11:38:49.7868706Z a393777e5737: Waiting 2023-08-09T11:38:49.8495053Z a7f6430c8a00: Verifying Checksum 2023-08-09T11:38:49.8495562Z a7f6430c8a00: Download complete 2023-08-09T11:38:49.9721831Z 06ba10ca5c81: Verifying Checksum 2023-08-09T11:38:49.9722081Z 06ba10ca5c81: Download complete 2023-08-09T11:38:50.0436190Z 2388e8dd226d: Verifying Checksum 2023-08-09T11:38:50.0436473Z 2388e8dd226d: Download complete 2023-08-09T11:38:50.5814861Z 2d473b07cdd5: Download complete 2023-08-09T11:38:50.7370457Z b09cb1ee2eff: Verifying Checksum 2023-08-09T11:38:50.7370830Z b09cb1ee2eff: Download complete 2023-08-09T11:38:50.7889562Z c465e63dcd7b: Verifying Checksum 2023-08-09T11:38:50.7889930Z c465e63dcd7b: Download complete 2023-08-09T11:38:50.9531287Z 270053ceedab: Verifying Checksum 2023-08-09T11:38:50.9531573Z 270053ceedab: Download complete 2023-08-09T11:38:51.0096574Z 4f4fb700ef54: Verifying Checksum 2023-08-09T11:38:51.0096985Z 4f4fb700ef54: Download complete 2023-08-09T11:38:51.0705285Z 83391fa0c49e: Verifying Checksum 2023-08-09T11:38:51.0705562Z 83391fa0c49e: Download complete 2023-08-09T11:38:51.1036212Z 62ba1c2b4591: Verifying Checksum 2023-08-09T11:38:51.1036596Z 62ba1c2b4591: Download complete 2023-08-09T11:38:51.2479927Z 93aaaef2fa05: Verifying Checksum 2023-08-09T11:38:51.2480335Z 93aaaef2fa05: Download complete 2023-08-09T11:38:51.3049724Z 63ff7b8d20e2: Verifying Checksum 2023-08-09T11:38:51.3050078Z 63ff7b8d20e2: Download complete 2023-08-09T11:38:51.3089064Z 8aca3975db6d: Verifying Checksum 2023-08-09T11:38:51.3089379Z 8aca3975db6d: Download complete 2023-08-09T11:38:51.3715614Z 2e33826627e5: Download complete 2023-08-09T11:38:51.5330261Z 843a9af61985: Verifying Checksum 2023-08-09T11:38:51.5330541Z 843a9af61985: Download complete 2023-08-09T11:38:51.5888871Z bdb161d9acc8: Download complete 2023-08-09T11:38:51.6260934Z fe807f8a9f46: Verifying Checksum 2023-08-09T11:38:51.6261267Z fe807f8a9f46: Download complete 2023-08-09T11:38:52.3272206Z 2d473b07cdd5: Pull complete 2023-08-09T11:38:53.9636374Z c465e63dcd7b: Pull complete 2023-08-09T11:38:54.0637488Z a7f6430c8a00: Pull complete 2023-08-09T11:38:54.2806311Z 06ba10ca5c81: Pull complete 2023-08-09T11:38:54.3996610Z 2388e8dd226d: Pull complete 2023-08-09T11:38:55.1296839Z 6c98ad6aee13: Verifying Checksum 2023-08-09T11:38:55.1297129Z 6c98ad6aee13: Download complete 2023-08-09T11:38:56.1729650Z 62ba1c2b4591: Pull complete 2023-08-09T11:38:56.4010712Z b09cb1ee2eff: Pull complete 2023-08-09T11:38:56.9135541Z a393777e5737: Verifying Checksum 2023-08-09T11:38:56.9135849Z a393777e5737: Download complete 2023-08-09T11:38:57.6638765Z 63ff7b8d20e2: Pull complete 2023-08-09T11:38:57.9594105Z 270053ceedab: Pull complete 2023-08-09T11:38:58.0635734Z 4f4fb700ef54: Pull complete 2023-08-09T11:38:58.2434920Z 83391fa0c49e: Pull complete 2023-08-09T11:39:35.2560186Z 9337207c4d02: Verifying Checksum 2023-08-09T11:39:35.2560526Z 9337207c4d02: Download complete 2023-08-09T11:40:21.3122569Z 9337207c4d02: Pull complete 2023-08-09T11:40:21.6272934Z 93aaaef2fa05: Pull complete 2023-08-09T11:40:21.7309886Z 8aca3975db6d: Pull complete 2023-08-09T11:40:29.1920237Z 6c98ad6aee13: Pull complete 2023-08-09T11:40:29.4181651Z 2e33826627e5: Pull complete 2023-08-09T11:40:29.9061166Z 843a9af61985: Pull complete 2023-08-09T11:40:30.1301151Z bdb161d9acc8: Pull complete 2023-08-09T11:40:30.3617024Z fe807f8a9f46: Pull complete 2023-08-09T11:40:40.2701115Z a393777e5737: Pull complete 2023-08-09T11:40:40.3786767Z Digest: sha256:5fee47bc124a0ed44d8d74af710d4825c9f96a5454399b86028e45592dbc8c3f 2023-08-09T11:40:40.4201833Z Status: Downloaded newer image for pytorch/conda-builder:cuda11.8 2023-08-09T11:40:40.4432782Z docker.io/pytorch/conda-builder:cuda11.8 2023-08-09T11:40:40.4516738Z ##[group]Run set -ex 2023-08-09T11:40:40.4516984Z set -ex 2023-08-09T11:40:40.4517162Z { 2023-08-09T11:40:40.4517378Z  echo "#!/usr/bin/env bash"; 2023-08-09T11:40:40.4517613Z  echo "set -eou pipefail"; 2023-08-09T11:40:40.4517844Z  # shellcheck disable=SC2016 2023-08-09T11:40:40.4518097Z  echo 'eval "$(conda shell.bash hook)"'; 2023-08-09T11:40:40.4518330Z  echo "set -x"; 2023-08-09T11:40:40.4518537Z  echo "${SCRIPT}"; 2023-08-09T11:40:40.4518770Z } > "${RUNNER_TEMP}/exec_script" 2023-08-09T11:40:40.4519021Z chmod +x "${RUNNER_TEMP}/exec_script" 2023-08-09T11:40:40.4519376Z python3 "/home/ec2-user/actions-runner/_work/audio/audio/test-infra/.github/scripts/run_docker_with_env_secrets.py" "" 2023-08-09T11:40:40.4530353Z shell: /usr/bin/bash -e {0} 2023-08-09T11:40:40.4530560Z env: 2023-08-09T11:40:40.4530783Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T11:40:40.4531051Z REPOSITORY: pytorch/audio 2023-08-09T11:40:40.4531256Z PR_NUMBER: 2023-08-09T11:40:40.4533872Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.9" 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:40:40.4536738Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-08-09T11:40:40.4537074Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-08-09T11:40:40.4537458Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-08-09T11:40:40.4537760Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-08-09T11:40:40.4538158Z ALL_SECRETS: { "github_token": "***" } 2023-08-09T11:40:40.4538370Z ##[endgroup] 2023-08-09T11:40:40.4560730Z + echo '#!/usr/bin/env bash' 2023-08-09T11:40:40.4561100Z + echo 'set -eou pipefail' 2023-08-09T11:40:40.4561480Z + echo 'eval "$(conda shell.bash hook)"' 2023-08-09T11:40:40.4561737Z + echo 'set -x' 2023-08-09T11:40:40.4562036Z + echo 'set -ex 2023-08-09T11:40:40.4562333Z # Set up Environment Variables 2023-08-09T11:40:40.4562623Z export PYTHON_VERSION="3.9" 2023-08-09T11:40:40.4566519Z export CU_VERSION="11.8" 2023-08-09T11:40:40.4567016Z export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" 2023-08-09T11:40:40.4567425Z export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_APPLY_CMVN_SLIDING=true 2023-08-09T11:40:40.4567804Z export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_FBANK_FEATS=true 2023-08-09T11:40:40.4568129Z export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_KALDI_PITCH_FEATS=true 2023-08-09T11:40:40.4568572Z export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_MFCC_FEATS=true 2023-08-09T11:40:40.4568966Z export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_SPECTROGRAM_FEATS=true 2023-08-09T11:40:40.4569271Z export TORCHAUDIO_TEST_ALLOW_SKIP_IF_CUDA_SMALL_MEMORY=true 2023-08-09T11:40:40.4569557Z export TORCHAUDIO_TEST_ALLOW_SKIP_IF_ON_PYTHON_310=true 2023-08-09T11:40:40.4569847Z export TORCHAUDIO_TEST_ALLOW_SKIP_IF_TEMPORARY_DISABLED=true 2023-08-09T11:40:40.4570245Z export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_DECODER=true 2023-08-09T11:40:40.4570609Z export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_ENCODER=true 2023-08-09T11:40:40.4570865Z 2023-08-09T11:40:40.4570978Z # Set CHANNEL 2023-08-09T11:40:40.4571611Z if [[(${GITHUB_EVENT_NAME} = '\''pull_request'\'' && (${GITHUB_BASE_REF} = '\''release'\''*)) || (${GITHUB_REF} = '\''refs/heads/release'\''*) ]]; then 2023-08-09T11:40:40.4572314Z export CHANNEL=test 2023-08-09T11:40:40.4572559Z else 2023-08-09T11:40:40.4572807Z export CHANNEL=nightly 2023-08-09T11:40:40.4573005Z fi 2023-08-09T11:40:40.4573097Z 2023-08-09T11:40:40.4586857Z echo "::group::Create conda env" 2023-08-09T11:40:40.4587089Z # Mark Build Directory Safe 2023-08-09T11:40:40.4587425Z git config --global --add safe.directory /__w/audio/audio 2023-08-09T11:40:40.4587786Z conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" 2023-08-09T11:40:40.4588047Z conda activate ./ci_env 2023-08-09T11:40:40.4588173Z 2023-08-09T11:40:40.4588260Z echo "::endgroup::" 2023-08-09T11:40:40.4588592Z echo "::group::Install PyTorch" 2023-08-09T11:40:40.4588789Z conda install \ 2023-08-09T11:40:40.4588993Z --yes \ 2023-08-09T11:40:40.4589183Z --quiet \ 2023-08-09T11:40:40.4589397Z -c "pytorch-${CHANNEL}" \ 2023-08-09T11:40:40.4589920Z -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ 2023-08-09T11:40:40.4590177Z "${CUDATOOLKIT}" 2023-08-09T11:40:40.4590294Z 2023-08-09T11:40:40.4590379Z echo "::endgroup::" 2023-08-09T11:40:40.4590588Z echo "::group::Install TorchAudio" 2023-08-09T11:40:40.4590888Z conda install --quiet --yes '\''cmake>=3.18.0'\'' ninja 2023-08-09T11:40:40.4591221Z pip3 install --progress-bar off -v -e . --no-use-pep517 2023-08-09T11:40:40.4591382Z 2023-08-09T11:40:40.4591464Z echo "::endgroup::" 2023-08-09T11:40:40.4591665Z echo "::group::Build FFmpeg" 2023-08-09T11:40:40.4591887Z .github/scripts/ffmpeg/build_gpu.sh 2023-08-09T11:40:40.4592025Z 2023-08-09T11:40:40.4592099Z echo "::endgroup::" 2023-08-09T11:40:40.4592319Z echo "::group::Install other Dependencies" 2023-08-09T11:40:40.4592533Z conda install \ 2023-08-09T11:40:40.4592733Z --quiet --yes \ 2023-08-09T11:40:40.4592944Z -c conda-forge \ 2023-08-09T11:40:40.4593161Z -c numba/label/dev \ 2023-08-09T11:40:40.4593475Z sox libvorbis '\''librosa==0.10.0'\'' parameterized '\''requests>=2.20'\'' 2023-08-09T11:40:40.4593794Z pip3 install --progress-bar off \ 2023-08-09T11:40:40.4594023Z kaldi-io \ 2023-08-09T11:40:40.4594194Z SoundFile \ 2023-08-09T11:40:40.4594369Z coverage \ 2023-08-09T11:40:40.4594684Z pytest \ 2023-08-09T11:40:40.4594884Z pytest-cov \ 2023-08-09T11:40:40.4595100Z '\''scipy==1.7.3'\'' \ 2023-08-09T11:40:40.4595295Z transformers \ 2023-08-09T11:40:40.4595469Z expecttest \ 2023-08-09T11:40:40.4595646Z unidecode \ 2023-08-09T11:40:40.4595823Z inflect \ 2023-08-09T11:40:40.4595988Z Pillow \ 2023-08-09T11:40:40.4596165Z sentencepiece \ 2023-08-09T11:40:40.4596388Z pytorch-lightning \ 2023-08-09T11:40:40.4596622Z '\''protobuf<4.21.0'\'' \ 2023-08-09T11:40:40.4596810Z demucs \ 2023-08-09T11:40:40.4596977Z tinytag \ 2023-08-09T11:40:40.4597176Z flashlight-text \ 2023-08-09T11:40:40.4597412Z git+https://github.com/kpu/kenlm/ \ 2023-08-09T11:40:40.4597698Z git+https://github.com/pytorch/fairseq.git@e47a4c8 2023-08-09T11:40:40.4597866Z 2023-08-09T11:40:40.4597954Z echo "::endgroup::" 2023-08-09T11:40:40.4598143Z echo "::group::Run tests" 2023-08-09T11:40:40.4598391Z export PATH="${PWD}/third_party/install/bin/:${PATH}" 2023-08-09T11:40:40.4598554Z 2023-08-09T11:40:40.4598655Z declare -a args=( 2023-08-09T11:40:40.4598853Z '\''-v'\'' 2023-08-09T11:40:40.4599071Z '\''--cov=torchaudio'\'' 2023-08-09T11:40:40.4599357Z "--junitxml=${RUNNER_TEST_RESULTS_DIR}/junit.xml" 2023-08-09T11:40:40.4599622Z '\''--durations'\'' '\''100'\'' 2023-08-09T11:40:40.4599870Z '\''-k'\'' '\''cuda or gpu'\'' 2023-08-09T11:40:40.4600068Z ) 2023-08-09T11:40:40.4600165Z 2023-08-09T11:40:40.4600226Z cd test 2023-08-09T11:40:40.4600456Z python3 -m torch.utils.collect_env 2023-08-09T11:40:40.4600684Z env | grep TORCHAUDIO || true 2023-08-09T11:40:40.4600901Z pytest "${args[@]}" torchaudio_unittest 2023-08-09T11:40:40.4601109Z coverage html 2023-08-09T11:40:40.4601296Z ' 2023-08-09T11:40:40.4601568Z + chmod +x /home/ec2-user/actions-runner/_work/_temp/exec_script 2023-08-09T11:40:40.4602095Z + python3 /home/ec2-user/actions-runner/_work/audio/audio/test-infra/.github/scripts/run_docker_with_env_secrets.py '' 2023-08-09T11:41:43.5943718Z Running command: 2023-08-09T11:41:43.5947621Z 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_2c54bca0-5d89-49f2-92bc-7e8c277d64c8":"/home/ec2-user/actions-runner/_work/_temp/_runner_file_commands/step_summary_2c54bca0-5d89-49f2-92bc-7e8c277d64c8" -w /work "pytorch/conda-builder:cuda11.8" 2023-08-09T11:41:43.5949388Z 2023-08-09T11:41:43.5949663Z e8f4676321b0d971ecd6815b340373ff3c12aad5a369aea39362481d6166228d 2023-08-09T11:41:43.5950311Z Running command: docker exec -t e8f4676321b0d971ecd6815b340373ff3c12aad5a369aea39362481d6166228d /exec 2023-08-09T11:41:43.5950761Z + set -ex 2023-08-09T11:41:43.5951046Z + export PYTHON_VERSION=3.9 2023-08-09T11:41:43.5951317Z + PYTHON_VERSION=3.9 2023-08-09T11:41:43.5951594Z + export CU_VERSION=11.8 2023-08-09T11:41:43.5951885Z + CU_VERSION=11.8 2023-08-09T11:41:43.5952236Z + export CUDATOOLKIT=pytorch-cuda=11.8 2023-08-09T11:41:43.5952547Z + CUDATOOLKIT=pytorch-cuda=11.8 2023-08-09T11:41:43.5953025Z + export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_APPLY_CMVN_SLIDING=true 2023-08-09T11:41:43.5953333Z + TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_APPLY_CMVN_SLIDING=true 2023-08-09T11:41:43.5953644Z + export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_FBANK_FEATS=true 2023-08-09T11:41:43.5954060Z + TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_FBANK_FEATS=true 2023-08-09T11:41:43.5954479Z + export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_KALDI_PITCH_FEATS=true 2023-08-09T11:41:43.5954884Z + TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_KALDI_PITCH_FEATS=true 2023-08-09T11:41:43.5955292Z + export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_MFCC_FEATS=true 2023-08-09T11:41:43.5955704Z + TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_MFCC_FEATS=true 2023-08-09T11:41:43.5956091Z + export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_SPECTROGRAM_FEATS=true 2023-08-09T11:41:43.5956536Z + TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_SPECTROGRAM_FEATS=true 2023-08-09T11:41:43.5956962Z + export TORCHAUDIO_TEST_ALLOW_SKIP_IF_CUDA_SMALL_MEMORY=true 2023-08-09T11:41:43.5957354Z + TORCHAUDIO_TEST_ALLOW_SKIP_IF_CUDA_SMALL_MEMORY=true 2023-08-09T11:41:43.5957728Z + export TORCHAUDIO_TEST_ALLOW_SKIP_IF_ON_PYTHON_310=true 2023-08-09T11:41:43.5958081Z + TORCHAUDIO_TEST_ALLOW_SKIP_IF_ON_PYTHON_310=true 2023-08-09T11:41:43.5958454Z + export TORCHAUDIO_TEST_ALLOW_SKIP_IF_TEMPORARY_DISABLED=true 2023-08-09T11:41:43.5958820Z + TORCHAUDIO_TEST_ALLOW_SKIP_IF_TEMPORARY_DISABLED=true 2023-08-09T11:41:43.5959135Z + export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_DECODER=true 2023-08-09T11:41:43.5959412Z + TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_DECODER=true 2023-08-09T11:41:43.5959685Z + export TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_ENCODER=true 2023-08-09T11:41:43.5959960Z + TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_ENCODER=true 2023-08-09T11:41:43.5960344Z + [[ push = \p\u\l\l\_\r\e\q\u\e\s\t ]] 2023-08-09T11:41:43.5960614Z + [[ refs/heads/nightly = \r\e\f\s\/\h\e\a\d\s\/\r\e\l\e\a\s\e* ]] 2023-08-09T11:41:43.5960871Z + export CHANNEL=nightly 2023-08-09T11:41:43.5961073Z + CHANNEL=nightly 2023-08-09T11:41:43.5961406Z + echo '::group::Create conda env' 2023-08-09T11:41:43.5961990Z ##[group]Create conda env 2023-08-09T11:41:43.5962314Z + git config --global --add safe.directory /__w/audio/audio 2023-08-09T11:41:43.5962649Z + conda create --quiet -y --prefix ci_env python=3.9 2023-08-09T11:41:43.5962876Z + local cmd=create 2023-08-09T11:41:43.5963062Z + case "$cmd" in 2023-08-09T11:41:43.5963748Z + __conda_exe create --quiet -y --prefix ci_env python=3.9 2023-08-09T11:41:43.5964116Z + /opt/conda/bin/conda create --quiet -y --prefix ci_env python=3.9 2023-08-09T11:41:43.5964447Z Collecting package metadata (current_repodata.json): ...working... done 2023-08-09T11:41:43.5964731Z Solving environment: ...working... done 2023-08-09T11:41:43.5964887Z 2023-08-09T11:41:43.5964970Z ## Package Plan ## 2023-08-09T11:41:43.5965082Z 2023-08-09T11:41:43.5965186Z environment location: /work/ci_env 2023-08-09T11:41:43.5965329Z 2023-08-09T11:41:43.5965423Z added / updated specs: 2023-08-09T11:41:43.5965679Z - python=3.9 2023-08-09T11:41:43.5965811Z 2023-08-09T11:41:43.5965816Z 2023-08-09T11:41:43.5965922Z The following packages will be downloaded: 2023-08-09T11:41:43.5966072Z 2023-08-09T11:41:43.5966172Z package | build 2023-08-09T11:41:43.5966458Z ---------------------------|----------------- 2023-08-09T11:41:43.5966772Z libffi-3.4.4 | h6a678d5_0 142 KB 2023-08-09T11:41:43.5967074Z openssl-3.0.10 | h7f8727e_0 5.2 MB 2023-08-09T11:41:43.5967375Z pip-23.2.1 | py39h06a4308_0 2.6 MB 2023-08-09T11:41:43.5967683Z python-3.9.17 | h955ad1f_0 25.0 MB 2023-08-09T11:41:43.5967990Z setuptools-68.0.0 | py39h06a4308_0 928 KB 2023-08-09T11:41:43.5968299Z sqlite-3.41.2 | h5eee18b_0 1.2 MB 2023-08-09T11:41:43.5968710Z wheel-0.38.4 | py39h06a4308_0 64 KB 2023-08-09T11:41:43.5969002Z xz-5.4.2 | h5eee18b_0 642 KB 2023-08-09T11:41:43.5969316Z ------------------------------------------------------------ 2023-08-09T11:41:43.5969574Z Total: 35.7 MB 2023-08-09T11:41:43.5969705Z 2023-08-09T11:41:43.5969824Z The following NEW packages will be INSTALLED: 2023-08-09T11:41:43.5969969Z 2023-08-09T11:41:43.5970194Z _libgcc_mutex pkgs/main/linux-64::_libgcc_mutex-0.1-main 2023-08-09T11:41:43.5970566Z _openmp_mutex pkgs/main/linux-64::_openmp_mutex-5.1-1_gnu 2023-08-09T11:41:43.5970985Z ca-certificates pkgs/main/linux-64::ca-certificates-2023.05.30-h06a4308_0 2023-08-09T11:41:43.5971411Z ld_impl_linux-64 pkgs/main/linux-64::ld_impl_linux-64-2.38-h1181459_1 2023-08-09T11:41:43.5971795Z libffi pkgs/main/linux-64::libffi-3.4.4-h6a678d5_0 2023-08-09T11:41:43.5972186Z libgcc-ng pkgs/main/linux-64::libgcc-ng-11.2.0-h1234567_1 2023-08-09T11:41:43.5972570Z libgomp pkgs/main/linux-64::libgomp-11.2.0-h1234567_1 2023-08-09T11:41:43.5972956Z libstdcxx-ng pkgs/main/linux-64::libstdcxx-ng-11.2.0-h1234567_1 2023-08-09T11:41:43.5973340Z ncurses pkgs/main/linux-64::ncurses-6.4-h6a678d5_0 2023-08-09T11:41:43.5973711Z openssl pkgs/main/linux-64::openssl-3.0.10-h7f8727e_0 2023-08-09T11:41:43.5974083Z pip pkgs/main/linux-64::pip-23.2.1-py39h06a4308_0 2023-08-09T11:41:43.5974447Z python pkgs/main/linux-64::python-3.9.17-h955ad1f_0 2023-08-09T11:41:43.5974819Z readline pkgs/main/linux-64::readline-8.2-h5eee18b_0 2023-08-09T11:41:43.5975215Z setuptools pkgs/main/linux-64::setuptools-68.0.0-py39h06a4308_0 2023-08-09T11:41:43.5975683Z sqlite pkgs/main/linux-64::sqlite-3.41.2-h5eee18b_0 2023-08-09T11:41:43.5976031Z tk pkgs/main/linux-64::tk-8.6.12-h1ccaba5_0 2023-08-09T11:41:43.5976370Z tzdata pkgs/main/noarch::tzdata-2023c-h04d1e81_0 2023-08-09T11:41:43.5976747Z wheel pkgs/main/linux-64::wheel-0.38.4-py39h06a4308_0 2023-08-09T11:41:43.5977099Z xz pkgs/main/linux-64::xz-5.4.2-h5eee18b_0 2023-08-09T11:41:43.5977449Z zlib pkgs/main/linux-64::zlib-1.2.13-h5eee18b_0 2023-08-09T11:41:43.5977604Z 2023-08-09T11:41:43.5977610Z 2023-08-09T11:41:43.5977726Z Preparing transaction: ...working... done 2023-08-09T11:41:43.5977978Z Verifying transaction: ...working... done 2023-08-09T11:41:43.5978216Z Executing transaction: ...working... done 2023-08-09T11:41:43.5978441Z + conda activate ./ci_env 2023-08-09T11:41:43.5978646Z + local cmd=activate 2023-08-09T11:41:43.5978826Z + case "$cmd" in 2023-08-09T11:41:43.5979030Z + __conda_activate activate ./ci_env 2023-08-09T11:41:43.5979273Z + '[' -n '' ']' 2023-08-09T11:41:43.5979446Z + local ask_conda 2023-08-09T11:41:43.5979656Z ++ PS1='(base) ' 2023-08-09T11:41:43.5979884Z ++ __conda_exe shell.posix activate ./ci_env 2023-08-09T11:41:43.5980144Z ++ /opt/conda/bin/conda shell.posix activate ./ci_env 2023-08-09T11:41:43.5980434Z + ask_conda='PS1='\''(/work/ci_env) '\'' 2023-08-09T11:41:43.5980944Z 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:41:43.5981351Z export CONDA_PREFIX='\''/work/ci_env'\'' 2023-08-09T11:41:43.5981610Z export CONDA_SHLVL='\''2'\'' 2023-08-09T11:41:43.5981882Z export CONDA_DEFAULT_ENV='\''/work/ci_env'\'' 2023-08-09T11:41:43.5982186Z export CONDA_PROMPT_MODIFIER='\''(/work/ci_env) '\'' 2023-08-09T11:41:43.5982470Z export CONDA_PREFIX_1='\''/opt/conda'\'' 2023-08-09T11:41:43.5982758Z export CONDA_EXE='\''/opt/conda/bin/conda'\'' 2023-08-09T11:41:43.5983017Z export _CE_M='\'''\'' 2023-08-09T11:41:43.5983239Z export _CE_CONDA='\'''\'' 2023-08-09T11:41:43.5983536Z export CONDA_PYTHON_EXE='\''/opt/conda/bin/python'\''' 2023-08-09T11:41:43.5983881Z + eval 'PS1='\''(/work/ci_env) '\'' 2023-08-09T11:41:43.5984374Z 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:41:43.5984787Z export CONDA_PREFIX='\''/work/ci_env'\'' 2023-08-09T11:41:43.5985046Z export CONDA_SHLVL='\''2'\'' 2023-08-09T11:41:43.5985314Z export CONDA_DEFAULT_ENV='\''/work/ci_env'\'' 2023-08-09T11:41:43.5985619Z export CONDA_PROMPT_MODIFIER='\''(/work/ci_env) '\'' 2023-08-09T11:41:43.5985915Z export CONDA_PREFIX_1='\''/opt/conda'\'' 2023-08-09T11:41:43.5986217Z export CONDA_EXE='\''/opt/conda/bin/conda'\'' 2023-08-09T11:41:43.5986490Z export _CE_M='\'''\'' 2023-08-09T11:41:43.5986721Z export _CE_CONDA='\'''\'' 2023-08-09T11:41:43.5987015Z export CONDA_PYTHON_EXE='\''/opt/conda/bin/python'\''' 2023-08-09T11:41:43.5987272Z ++ PS1='(/work/ci_env) ' 2023-08-09T11:41:43.5987757Z ++ 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:41:43.5988365Z ++ 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:41:43.5988841Z ++ export CONDA_PREFIX=/work/ci_env 2023-08-09T11:41:43.5989061Z ++ CONDA_PREFIX=/work/ci_env 2023-08-09T11:41:43.5989271Z ++ export CONDA_SHLVL=2 2023-08-09T11:41:43.5989463Z ++ CONDA_SHLVL=2 2023-08-09T11:41:43.5989670Z ++ export CONDA_DEFAULT_ENV=/work/ci_env 2023-08-09T11:41:43.5989899Z ++ CONDA_DEFAULT_ENV=/work/ci_env 2023-08-09T11:41:43.5990187Z ++ export 'CONDA_PROMPT_MODIFIER=(/work/ci_env) ' 2023-08-09T11:41:43.5990474Z ++ CONDA_PROMPT_MODIFIER='(/work/ci_env) ' 2023-08-09T11:41:43.5990785Z ++ export CONDA_PREFIX_1=/opt/conda 2023-08-09T11:41:43.5991006Z ++ CONDA_PREFIX_1=/opt/conda 2023-08-09T11:45:27.2221099Z ++ export CONDA_EXE=/opt/conda/bin/conda 2023-08-09T11:45:27.2221473Z ++ CONDA_EXE=/opt/conda/bin/conda 2023-08-09T11:45:27.2221740Z ++ export _CE_M= 2023-08-09T11:45:27.2221976Z ++ _CE_M= 2023-08-09T11:45:27.2222594Z ++ export _CE_CONDA= 2023-08-09T11:45:27.2222855Z ++ _CE_CONDA= 2023-08-09T11:45:27.2223114Z ++ export CONDA_PYTHON_EXE=/opt/conda/bin/python 2023-08-09T11:45:27.2223464Z ++ CONDA_PYTHON_EXE=/opt/conda/bin/python 2023-08-09T11:45:27.2223754Z + __conda_hashr 2023-08-09T11:45:27.2224130Z + '[' -n '' ']' 2023-08-09T11:45:27.2224353Z + '[' -n '' ']' 2023-08-09T11:45:27.2224651Z + hash -r 2023-08-09T11:45:27.2224992Z + echo ::endgroup:: 2023-08-09T11:45:27.2230909Z ##[endgroup] 2023-08-09T11:45:27.2231357Z + echo '::group::Install PyTorch' 2023-08-09T11:45:27.2231930Z ##[group]Install PyTorch 2023-08-09T11:45:27.2232511Z + conda install --yes --quiet -c pytorch-nightly -c nvidia 'pytorch-nightly::pytorch[build=*11.8*]' pytorch-cuda=11.8 2023-08-09T11:45:27.2232846Z + local cmd=install 2023-08-09T11:45:27.2233077Z + case "$cmd" in 2023-08-09T11:45:27.2233785Z + __conda_exe install --yes --quiet -c pytorch-nightly -c nvidia 'pytorch-nightly::pytorch[build=*11.8*]' pytorch-cuda=11.8 2023-08-09T11:45:27.2234696Z + /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:45:27.2235101Z Collecting package metadata (current_repodata.json): ...working... done 2023-08-09T11:45:27.2235477Z Solving environment: ...working... unsuccessful initial attempt using frozen solve. Retrying with flexible solve. 2023-08-09T11:45:27.2236041Z Solving environment: ...working... unsuccessful attempt using repodata from current_repodata.json, retrying with next repodata source. 2023-08-09T11:45:27.2236492Z Collecting package metadata (repodata.json): ...working... done 2023-08-09T11:45:27.2236870Z Solving environment: ...working... done 2023-08-09T11:45:27.2237056Z 2023-08-09T11:45:27.2237171Z ## Package Plan ## 2023-08-09T11:45:27.2237344Z 2023-08-09T11:45:27.2237718Z environment location: /work/ci_env 2023-08-09T11:45:27.2237870Z 2023-08-09T11:45:27.2237952Z added / updated specs: 2023-08-09T11:45:27.2238210Z - pytorch-cuda=11.8 2023-08-09T11:45:27.2238537Z - pytorch-nightly::pytorch[build=*11.8*] 2023-08-09T11:45:27.2238700Z 2023-08-09T11:45:27.2238705Z 2023-08-09T11:45:27.2238819Z The following packages will be downloaded: 2023-08-09T11:45:27.2238973Z 2023-08-09T11:45:27.2239080Z package | build 2023-08-09T11:45:27.2239461Z ---------------------------|----------------- 2023-08-09T11:45:27.2239861Z blas-1.0 | mkl 6 KB 2023-08-09T11:45:27.2240316Z cuda-cudart-11.8.89 | 0 197 KB nvidia 2023-08-09T11:45:27.2240646Z cuda-cupti-11.8.87 | 0 25.3 MB nvidia 2023-08-09T11:45:27.2240988Z cuda-libraries-11.8.0 | 0 1 KB nvidia 2023-08-09T11:45:27.2241322Z cuda-nvrtc-11.8.89 | 0 19.1 MB nvidia 2023-08-09T11:45:27.2241633Z cuda-nvtx-11.8.86 | 0 57 KB nvidia 2023-08-09T11:45:27.2241955Z cuda-runtime-11.8.0 | 0 1 KB nvidia 2023-08-09T11:45:27.2242283Z filelock-3.9.0 | py39h06a4308_0 18 KB 2023-08-09T11:45:27.2242577Z gmp-6.2.1 | h295c915_3 544 KB 2023-08-09T11:45:27.2242883Z gmpy2-2.1.2 | py39heeb90bb_0 191 KB 2023-08-09T11:45:27.2243199Z intel-openmp-2023.1.0 | hdb19cb5_46305 17.1 MB 2023-08-09T11:45:27.2243889Z jinja2-3.1.2 | py39h06a4308_0 211 KB 2023-08-09T11:45:27.2244296Z libcublas-11.11.3.6 | 0 364.0 MB nvidia 2023-08-09T11:45:27.2244997Z libcufft-10.9.0.58 | 0 142.8 MB nvidia 2023-08-09T11:45:27.2245452Z libcufile-1.7.1.12 | 0 1021 KB nvidia 2023-08-09T11:45:27.2245995Z libcurand-10.3.3.129 | 0 51.6 MB nvidia 2023-08-09T11:45:27.2246410Z libcusolver-11.4.1.48 | 0 96.5 MB nvidia 2023-08-09T11:45:27.2246840Z libcusparse-11.7.5.86 | 0 176.3 MB nvidia 2023-08-09T11:45:27.2247258Z libnpp-11.8.0.86 | 0 147.8 MB nvidia 2023-08-09T11:45:27.2247664Z libnvjpeg-11.9.0.86 | 0 2.4 MB nvidia 2023-08-09T11:45:27.2248040Z markupsafe-2.1.1 | py39h7f8727e_0 21 KB 2023-08-09T11:45:27.2248354Z mkl-2023.1.0 | h213fc3f_46343 171.6 MB 2023-08-09T11:45:27.2248642Z mpc-1.1.0 | h10f8cd9_1 90 KB 2023-08-09T11:45:27.2248953Z mpfr-4.0.2 | hb69a4c5_1 487 KB 2023-08-09T11:45:27.2249251Z mpmath-1.3.0 | py39h06a4308_0 829 KB 2023-08-09T11:45:27.2249566Z networkx-3.1 | py39h06a4308_0 2.7 MB 2023-08-09T11:45:27.2249927Z pytorch-2.1.0.dev20230808 |py3.9_cuda11.8_cudnn8.7.0_0 1.45 GB pytorch-nightly 2023-08-09T11:45:27.2250313Z pytorch-cuda-11.8 | h7e8668a_5 3 KB pytorch-nightly 2023-08-09T11:45:27.2250717Z pytorch-mutex-1.0 | cuda 3 KB pytorch-nightly 2023-08-09T11:45:27.2251208Z pyyaml-6.0 | py39h5eee18b_1 185 KB 2023-08-09T11:45:27.2251525Z sympy-1.11.1 | py39h06a4308_0 11.7 MB 2023-08-09T11:45:27.2251826Z tbb-2021.8.0 | hdb19cb5_0 1.6 MB 2023-08-09T11:45:27.2252173Z torchtriton-2.1.0+e6216047b8| py39 90.9 MB pytorch-nightly 2023-08-09T11:45:27.2252535Z typing_extensions-4.7.1 | py39h06a4308_0 55 KB 2023-08-09T11:45:27.2252860Z ------------------------------------------------------------ 2023-08-09T11:45:27.2253259Z Total: 2.75 GB 2023-08-09T11:45:27.2253403Z 2023-08-09T11:45:27.2253526Z The following NEW packages will be INSTALLED: 2023-08-09T11:45:27.2253679Z 2023-08-09T11:45:27.2253880Z blas pkgs/main/linux-64::blas-1.0-mkl 2023-08-09T11:45:27.2254240Z cuda-cudart nvidia/linux-64::cuda-cudart-11.8.89-0 2023-08-09T11:45:27.2254610Z cuda-cupti nvidia/linux-64::cuda-cupti-11.8.87-0 2023-08-09T11:45:27.2254987Z cuda-libraries nvidia/linux-64::cuda-libraries-11.8.0-0 2023-08-09T11:45:27.2255352Z cuda-nvrtc nvidia/linux-64::cuda-nvrtc-11.8.89-0 2023-08-09T11:45:27.2255707Z cuda-nvtx nvidia/linux-64::cuda-nvtx-11.8.86-0 2023-08-09T11:45:27.2256068Z cuda-runtime nvidia/linux-64::cuda-runtime-11.8.0-0 2023-08-09T11:45:27.2256465Z filelock pkgs/main/linux-64::filelock-3.9.0-py39h06a4308_0 2023-08-09T11:45:27.2256842Z gmp pkgs/main/linux-64::gmp-6.2.1-h295c915_3 2023-08-09T11:45:27.2257216Z gmpy2 pkgs/main/linux-64::gmpy2-2.1.2-py39heeb90bb_0 2023-08-09T11:45:27.2257630Z intel-openmp pkgs/main/linux-64::intel-openmp-2023.1.0-hdb19cb5_46305 2023-08-09T11:45:27.2258033Z jinja2 pkgs/main/linux-64::jinja2-3.1.2-py39h06a4308_0 2023-08-09T11:45:27.2258403Z libcublas nvidia/linux-64::libcublas-11.11.3.6-0 2023-08-09T11:45:27.2258765Z libcufft nvidia/linux-64::libcufft-10.9.0.58-0 2023-08-09T11:45:27.2259115Z libcufile nvidia/linux-64::libcufile-1.7.1.12-0 2023-08-09T11:45:27.2259481Z libcurand nvidia/linux-64::libcurand-10.3.3.129-0 2023-08-09T11:45:27.2259849Z libcusolver nvidia/linux-64::libcusolver-11.4.1.48-0 2023-08-09T11:45:27.2260218Z libcusparse nvidia/linux-64::libcusparse-11.7.5.86-0 2023-08-09T11:45:27.2260625Z libnpp nvidia/linux-64::libnpp-11.8.0.86-0 2023-08-09T11:45:27.2260982Z libnvjpeg nvidia/linux-64::libnvjpeg-11.9.0.86-0 2023-08-09T11:45:27.2261380Z markupsafe pkgs/main/linux-64::markupsafe-2.1.1-py39h7f8727e_0 2023-08-09T11:45:27.2261775Z mkl pkgs/main/linux-64::mkl-2023.1.0-h213fc3f_46343 2023-08-09T11:45:27.2262123Z mpc pkgs/main/linux-64::mpc-1.1.0-h10f8cd9_1 2023-08-09T11:45:27.2262475Z mpfr pkgs/main/linux-64::mpfr-4.0.2-hb69a4c5_1 2023-08-09T11:45:27.2262849Z mpmath pkgs/main/linux-64::mpmath-1.3.0-py39h06a4308_0 2023-08-09T11:45:27.2263229Z networkx pkgs/main/linux-64::networkx-3.1-py39h06a4308_0 2023-08-09T11:45:27.2263680Z pytorch pytorch-nightly/linux-64::pytorch-2.1.0.dev20230808-py3.9_cuda11.8_cudnn8.7.0_0 2023-08-09T11:45:27.2264133Z pytorch-cuda pytorch-nightly/linux-64::pytorch-cuda-11.8-h7e8668a_5 2023-08-09T11:45:27.2264569Z pytorch-mutex pytorch-nightly/noarch::pytorch-mutex-1.0-cuda 2023-08-09T11:45:27.2264989Z pyyaml pkgs/main/linux-64::pyyaml-6.0-py39h5eee18b_1 2023-08-09T11:45:27.2265378Z sympy pkgs/main/linux-64::sympy-1.11.1-py39h06a4308_0 2023-08-09T11:45:27.2265746Z tbb pkgs/main/linux-64::tbb-2021.8.0-hdb19cb5_0 2023-08-09T11:45:27.2266157Z torchtriton pytorch-nightly/linux-64::torchtriton-2.1.0+e6216047b8-py39 2023-08-09T11:45:27.2266591Z typing_extensions pkgs/main/linux-64::typing_extensions-4.7.1-py39h06a4308_0 2023-08-09T11:45:27.2266981Z yaml pkgs/main/linux-64::yaml-0.2.5-h7b6447c_0 2023-08-09T11:45:27.2267137Z 2023-08-09T11:45:27.2267142Z 2023-08-09T11:45:27.2267255Z Preparing transaction: ...working... done 2023-08-09T11:45:27.2267501Z Verifying transaction: ...working... done 2023-08-09T11:45:27.2267747Z Executing transaction: ...working... done 2023-08-09T11:45:27.2267962Z + __conda_reactivate 2023-08-09T11:45:27.2268163Z + local ask_conda 2023-08-09T11:45:27.2268524Z ++ PS1='(/work/ci_env) ' 2023-08-09T11:45:27.2268752Z ++ __conda_exe shell.posix reactivate 2023-08-09T11:45:27.2269078Z ++ /opt/conda/bin/conda shell.posix reactivate 2023-08-09T11:45:27.2269359Z + ask_conda='PS1='\''(/work/ci_env) '\'' 2023-08-09T11:45:27.2269872Z 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:45:27.2270265Z export CONDA_SHLVL='\''2'\'' 2023-08-09T11:45:27.2270553Z export CONDA_PROMPT_MODIFIER='\''(/work/ci_env) '\''' 2023-08-09T11:45:27.2270861Z + eval 'PS1='\''(/work/ci_env) '\'' 2023-08-09T11:45:27.2271397Z 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:45:27.2271815Z export CONDA_SHLVL='\''2'\'' 2023-08-09T11:45:27.2272123Z export CONDA_PROMPT_MODIFIER='\''(/work/ci_env) '\''' 2023-08-09T11:45:27.2272483Z ++ PS1='(/work/ci_env) ' 2023-08-09T11:45:27.2273001Z ++ 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:45:27.2273624Z ++ 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:45:27.2273988Z ++ export CONDA_SHLVL=2 2023-08-09T11:45:27.2274237Z ++ CONDA_SHLVL=2 2023-08-09T11:45:27.2274591Z ++ export 'CONDA_PROMPT_MODIFIER=(/work/ci_env) ' 2023-08-09T11:45:27.2274901Z ++ CONDA_PROMPT_MODIFIER='(/work/ci_env) ' 2023-08-09T11:45:27.2275144Z + __conda_hashr 2023-08-09T11:45:27.2275384Z + '[' -n '' ']' 2023-08-09T11:45:27.2275587Z + '[' -n '' ']' 2023-08-09T11:45:27.2275809Z + hash -r 2023-08-09T11:45:27.2276014Z + echo ::endgroup:: 2023-08-09T11:45:27.2276554Z ##[endgroup] 2023-08-09T11:45:27.2276860Z + echo '::group::Install TorchAudio' 2023-08-09T11:45:27.2277279Z ##[group]Install TorchAudio 2023-08-09T11:45:27.2277617Z + conda install --quiet --yes 'cmake>=3.18.0' ninja 2023-08-09T11:45:27.2277878Z + local cmd=install 2023-08-09T11:45:27.2278075Z + case "$cmd" in 2023-08-09T11:45:27.2278403Z + __conda_exe install --quiet --yes 'cmake>=3.18.0' ninja 2023-08-09T11:45:27.2278794Z + /opt/conda/bin/conda install --quiet --yes 'cmake>=3.18.0' ninja 2023-08-09T11:45:44.5488203Z Collecting package metadata (current_repodata.json): ...working... done 2023-08-09T11:45:44.5488619Z Solving environment: ...working... done 2023-08-09T11:45:44.5488838Z 2023-08-09T11:45:44.5488944Z ## Package Plan ## 2023-08-09T11:45:44.5489112Z 2023-08-09T11:45:44.5489244Z environment location: /work/ci_env 2023-08-09T11:45:44.5489433Z 2023-08-09T11:45:44.5489561Z added / updated specs: 2023-08-09T11:45:44.5490026Z - cmake[version='>=3.18.0'] 2023-08-09T11:45:44.5490405Z - ninja 2023-08-09T11:45:44.5490541Z 2023-08-09T11:45:44.5490548Z 2023-08-09T11:45:44.5490707Z The following packages will be downloaded: 2023-08-09T11:45:44.5490906Z 2023-08-09T11:45:44.5491051Z package | build 2023-08-09T11:45:44.5491403Z ---------------------------|----------------- 2023-08-09T11:45:44.5491829Z cmake-3.26.4 | h96355d8_0 16.7 MB 2023-08-09T11:45:44.5492238Z krb5-1.20.1 | h143b758_1 1.3 MB 2023-08-09T11:45:44.5492648Z libcurl-8.1.1 | h251f7ec_2 397 KB 2023-08-09T11:45:44.5493076Z libnghttp2-1.52.0 | h2d74bed_1 672 KB 2023-08-09T11:45:44.5493500Z libssh2-1.10.0 | hdbd6064_2 292 KB 2023-08-09T11:45:44.5493864Z rhash-1.4.3 | hdbd6064_0 220 KB 2023-08-09T11:45:44.5494163Z zstd-1.5.5 | hc292b87_0 647 KB 2023-08-09T11:45:44.5494478Z ------------------------------------------------------------ 2023-08-09T11:45:44.5494738Z Total: 20.2 MB 2023-08-09T11:45:44.5494872Z 2023-08-09T11:45:44.5495199Z The following NEW packages will be INSTALLED: 2023-08-09T11:45:44.5495357Z 2023-08-09T11:45:44.5495629Z bzip2 pkgs/main/linux-64::bzip2-1.0.8-h7b6447c_0 2023-08-09T11:45:44.5495992Z c-ares pkgs/main/linux-64::c-ares-1.19.0-h5eee18b_0 2023-08-09T11:45:44.5496361Z cmake pkgs/main/linux-64::cmake-3.26.4-h96355d8_0 2023-08-09T11:45:44.5496723Z expat pkgs/main/linux-64::expat-2.4.9-h6a678d5_0 2023-08-09T11:45:44.5497068Z krb5 pkgs/main/linux-64::krb5-1.20.1-h143b758_1 2023-08-09T11:45:44.5497428Z libcurl pkgs/main/linux-64::libcurl-8.1.1-h251f7ec_2 2023-08-09T11:45:44.5497818Z libedit pkgs/main/linux-64::libedit-3.1.20221030-h5eee18b_0 2023-08-09T11:45:44.5498189Z libev pkgs/main/linux-64::libev-4.33-h7f8727e_1 2023-08-09T11:45:44.5498571Z libnghttp2 pkgs/main/linux-64::libnghttp2-1.52.0-h2d74bed_1 2023-08-09T11:45:44.5498964Z libssh2 pkgs/main/linux-64::libssh2-1.10.0-hdbd6064_2 2023-08-09T11:45:44.5499361Z libuv pkgs/main/linux-64::libuv-1.44.2-h5eee18b_0 2023-08-09T11:45:44.5499743Z lz4-c pkgs/main/linux-64::lz4-c-1.9.4-h6a678d5_0 2023-08-09T11:45:44.5500093Z ninja pkgs/main/linux-64::ninja-1.10.2-h06a4308_5 2023-08-09T11:45:44.5500477Z ninja-base pkgs/main/linux-64::ninja-base-1.10.2-hd09550d_5 2023-08-09T11:45:44.5500854Z rhash pkgs/main/linux-64::rhash-1.4.3-hdbd6064_0 2023-08-09T11:45:44.5501203Z zstd pkgs/main/linux-64::zstd-1.5.5-hc292b87_0 2023-08-09T11:45:44.5501395Z 2023-08-09T11:45:44.5501400Z 2023-08-09T11:45:44.5501507Z Preparing transaction: ...working... done 2023-08-09T11:45:44.5501759Z Verifying transaction: ...working... done 2023-08-09T11:45:44.5502082Z Executing transaction: ...working... done 2023-08-09T11:45:44.5502301Z + __conda_reactivate 2023-08-09T11:45:44.5502487Z + local ask_conda 2023-08-09T11:45:44.5502718Z ++ PS1='(/work/ci_env) ' 2023-08-09T11:45:44.5502939Z ++ __conda_exe shell.posix reactivate 2023-08-09T11:45:44.5503182Z ++ /opt/conda/bin/conda shell.posix reactivate 2023-08-09T11:45:44.5503465Z + ask_conda='PS1='\''(/work/ci_env) '\'' 2023-08-09T11:45:44.5503971Z 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:45:44.5504358Z export CONDA_SHLVL='\''2'\'' 2023-08-09T11:45:44.5504653Z export CONDA_PROMPT_MODIFIER='\''(/work/ci_env) '\''' 2023-08-09T11:45:44.5504936Z + eval 'PS1='\''(/work/ci_env) '\'' 2023-08-09T11:45:44.5505424Z 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:45:44.5505819Z export CONDA_SHLVL='\''2'\'' 2023-08-09T11:45:44.5506112Z export CONDA_PROMPT_MODIFIER='\''(/work/ci_env) '\''' 2023-08-09T11:45:44.5506381Z ++ PS1='(/work/ci_env) ' 2023-08-09T11:45:44.5506848Z ++ 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:45:44.5507463Z ++ 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:45:44.5507923Z ++ export CONDA_SHLVL=2 2023-08-09T11:45:44.5508165Z ++ CONDA_SHLVL=2 2023-08-09T11:45:44.5508519Z ++ export 'CONDA_PROMPT_MODIFIER=(/work/ci_env) ' 2023-08-09T11:45:44.5508817Z ++ CONDA_PROMPT_MODIFIER='(/work/ci_env) ' 2023-08-09T11:45:44.5509033Z + __conda_hashr 2023-08-09T11:45:44.5509230Z + '[' -n '' ']' 2023-08-09T11:45:44.5509437Z + '[' -n '' ']' 2023-08-09T11:45:44.5509623Z + hash -r 2023-08-09T11:45:44.5509908Z + pip3 install --progress-bar off -v -e . --no-use-pep517 2023-08-09T11:45:44.5510362Z Using pip 23.2.1 from /work/ci_env/lib/python3.9/site-packages/pip (python 3.9) 2023-08-09T11:45:44.5510642Z Obtaining file:///work 2023-08-09T11:45:44.5510872Z Running command python setup.py egg_info 2023-08-09T11:45:44.5511496Z /work/ci_env/lib/python3.9/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_1691480502664/work/torch/csrc/utils/tensor_numpy.cpp:84.) 2023-08-09T11:45:44.5512082Z device: torch.device = torch.device(torch._C._get_default_device()), # torch.device('cpu'), 2023-08-09T11:45:44.5512392Z -- Git branch: nightly 2023-08-09T11:45:44.5512690Z -- Git SHA: fe9b9ff75edebf1e0e326f64577d64df3b5858db 2023-08-09T11:45:44.5512953Z -- Git tag: None 2023-08-09T11:45:44.5513195Z -- PyTorch dependency: torch 2023-08-09T11:45:44.5513457Z -- Building version 2.1.0a0+fe9b9ff 2023-08-09T11:45:44.5513668Z running egg_info 2023-08-09T11:45:44.5513987Z creating /tmp/pip-pip-egg-info-393w_1rv/torchaudio.egg-info 2023-08-09T11:45:44.5514370Z writing /tmp/pip-pip-egg-info-393w_1rv/torchaudio.egg-info/PKG-INFO 2023-08-09T11:45:44.5514829Z writing dependency_links to /tmp/pip-pip-egg-info-393w_1rv/torchaudio.egg-info/dependency_links.txt 2023-08-09T11:45:44.5515291Z writing requirements to /tmp/pip-pip-egg-info-393w_1rv/torchaudio.egg-info/requires.txt 2023-08-09T11:45:44.5515745Z writing top-level names to /tmp/pip-pip-egg-info-393w_1rv/torchaudio.egg-info/top_level.txt 2023-08-09T11:45:44.5516187Z writing manifest file '/tmp/pip-pip-egg-info-393w_1rv/torchaudio.egg-info/SOURCES.txt' 2023-08-09T11:45:44.5516629Z reading manifest file '/tmp/pip-pip-egg-info-393w_1rv/torchaudio.egg-info/SOURCES.txt' 2023-08-09T11:45:44.5516960Z adding license file 'LICENSE' 2023-08-09T11:45:44.5517384Z writing manifest file '/tmp/pip-pip-egg-info-393w_1rv/torchaudio.egg-info/SOURCES.txt' 2023-08-09T11:45:44.5517895Z Preparing metadata (setup.py) ... [?25l[?25hdone 2023-08-09T11:45:44.5518361Z Requirement already satisfied: torch in ./ci_env/lib/python3.9/site-packages (from torchaudio==2.1.0a0+fe9b9ff) (2.1.0.dev20230808) 2023-08-09T11:45:44.5518922Z Requirement already satisfied: filelock in ./ci_env/lib/python3.9/site-packages (from torch->torchaudio==2.1.0a0+fe9b9ff) (3.9.0) 2023-08-09T11:45:44.5519463Z Requirement already satisfied: typing-extensions in ./ci_env/lib/python3.9/site-packages (from torch->torchaudio==2.1.0a0+fe9b9ff) (4.7.1) 2023-08-09T11:45:44.5519986Z Requirement already satisfied: sympy in ./ci_env/lib/python3.9/site-packages (from torch->torchaudio==2.1.0a0+fe9b9ff) (1.11.1) 2023-08-09T11:45:44.5520486Z Requirement already satisfied: networkx in ./ci_env/lib/python3.9/site-packages (from torch->torchaudio==2.1.0a0+fe9b9ff) (3.1) 2023-08-09T11:45:44.5520992Z Requirement already satisfied: jinja2 in ./ci_env/lib/python3.9/site-packages (from torch->torchaudio==2.1.0a0+fe9b9ff) (3.1.2) 2023-08-09T11:45:44.5521397Z Collecting fsspec (from torch->torchaudio==2.1.0a0+fe9b9ff) 2023-08-09T11:45:44.5522006Z 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:45:44.5522532Z Downloading fsspec-2023.6.0-py3-none-any.whl.metadata (6.7 kB) 2023-08-09T11:45:44.5523023Z Requirement already satisfied: MarkupSafe>=2.0 in ./ci_env/lib/python3.9/site-packages (from jinja2->torch->torchaudio==2.1.0a0+fe9b9ff) (2.1.1) 2023-08-09T11:45:44.5523807Z Requirement already satisfied: mpmath>=0.19 in ./ci_env/lib/python3.9/site-packages (from sympy->torch->torchaudio==2.1.0a0+fe9b9ff) (1.3.0) 2023-08-09T11:45:44.5524224Z Downloading fsspec-2023.6.0-py3-none-any.whl (163 kB) 2023-08-09T11:45:44.5524511Z Installing collected packages: fsspec, torchaudio 2023-08-09T11:45:44.5524772Z Running setup.py develop for torchaudio 2023-08-09T11:45:44.5525025Z Running command python setup.py develop 2023-08-09T11:45:44.5525753Z /work/ci_env/lib/python3.9/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_1691480502664/work/torch/csrc/utils/tensor_numpy.cpp:84.) 2023-08-09T11:45:44.5526341Z device: torch.device = torch.device(torch._C._get_default_device()), # torch.device('cpu'), 2023-08-09T11:45:44.5526644Z -- Git branch: nightly 2023-08-09T11:45:44.5526956Z -- Git SHA: fe9b9ff75edebf1e0e326f64577d64df3b5858db 2023-08-09T11:45:44.5527223Z -- Git tag: None 2023-08-09T11:45:44.5527461Z -- PyTorch dependency: torch 2023-08-09T11:45:44.5527732Z -- Building version 2.1.0a0+fe9b9ff 2023-08-09T11:45:44.5527948Z running develop 2023-08-09T11:45:44.5528390Z /work/ci_env/lib/python3.9/site-packages/setuptools/command/develop.py:40: EasyInstallDeprecationWarning: easy_install command is deprecated. 2023-08-09T11:45:44.5528721Z !! 2023-08-09T11:45:44.5528826Z 2023-08-09T11:45:44.5528947Z ******************************************************************************** 2023-08-09T11:45:44.5529221Z Please avoid running ``setup.py`` and ``easy_install``. 2023-08-09T11:45:44.5529509Z Instead, use pypa/build, pypa/installer or other 2023-08-09T11:45:44.5529795Z standards-based tools. 2023-08-09T11:45:44.5529929Z 2023-08-09T11:45:44.5530083Z See https://github.com/pypa/setuptools/issues/917 for details. 2023-08-09T11:45:44.5530361Z ******************************************************************************** 2023-08-09T11:45:44.5530504Z 2023-08-09T11:45:44.5530574Z !! 2023-08-09T11:45:44.5530786Z easy_install.initialize_options(self) 2023-08-09T11:45:44.5531254Z /work/ci_env/lib/python3.9/site-packages/setuptools/_distutils/cmd.py:66: SetuptoolsDeprecationWarning: setup.py install is deprecated. 2023-08-09T11:45:44.5531635Z !! 2023-08-09T11:45:44.5531737Z 2023-08-09T11:45:44.5531859Z ******************************************************************************** 2023-08-09T11:45:44.5532119Z Please avoid running ``setup.py`` directly. 2023-08-09T11:45:44.5532390Z Instead, use pypa/build, pypa/installer or other 2023-08-09T11:46:05.3800483Z standards-based tools. 2023-08-09T11:46:05.3800738Z 2023-08-09T11:46:05.3801171Z See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details. 2023-08-09T11:46:05.3801630Z ******************************************************************************** 2023-08-09T11:46:05.3801836Z 2023-08-09T11:46:05.3801938Z !! 2023-08-09T11:46:05.3802218Z self.initialize_options() 2023-08-09T11:46:05.3802509Z running egg_info 2023-08-09T11:46:05.3802868Z creating torchaudio.egg-info 2023-08-09T11:46:05.3909114Z writing torchaudio.egg-info/PKG-INFO 2023-08-09T11:46:05.4330340Z writing dependency_links to torchaudio.egg-info/dependency_links.txt 2023-08-09T11:46:05.4330960Z writing requirements to torchaudio.egg-info/requires.txt 2023-08-09T11:46:05.4331507Z writing top-level names to torchaudio.egg-info/top_level.txt 2023-08-09T11:46:05.4332059Z writing manifest file 'torchaudio.egg-info/SOURCES.txt' 2023-08-09T11:46:05.4332579Z reading manifest file 'torchaudio.egg-info/SOURCES.txt' 2023-08-09T11:46:05.4333007Z adding license file 'LICENSE' 2023-08-09T11:46:05.4333493Z writing manifest file 'torchaudio.egg-info/SOURCES.txt' 2023-08-09T11:46:05.4333866Z running build_ext 2023-08-09T11:46:05.4334291Z -- The C compiler identification is GNU 9.3.1 2023-08-09T11:46:05.4334750Z -- The CXX compiler identification is GNU 9.3.1 2023-08-09T11:46:05.4335191Z -- Detecting C compiler ABI info 2023-08-09T11:46:05.4335591Z -- Detecting C compiler ABI info - done 2023-08-09T11:46:05.4336145Z -- Check for working C compiler: /opt/rh/devtoolset-9/root/usr/bin/cc - skipped 2023-08-09T11:46:05.4336642Z -- Detecting C compile features 2023-08-09T11:46:05.4337553Z -- Detecting C compile features - done 2023-08-09T11:46:05.4337997Z -- Detecting CXX compiler ABI info 2023-08-09T11:46:05.4338405Z -- Detecting CXX compiler ABI info - done 2023-08-09T11:46:05.4338963Z -- Check for working CXX compiler: /opt/rh/devtoolset-9/root/usr/bin/c++ - skipped 2023-08-09T11:46:05.4339463Z -- Detecting CXX compile features 2023-08-09T11:46:05.4339879Z -- Detecting CXX compile features - done 2023-08-09T11:46:05.4340325Z -- The CUDA compiler identification is NVIDIA 11.8.89 2023-08-09T11:46:05.4340720Z -- Detecting CUDA compiler ABI info 2023-08-09T11:46:05.4341124Z -- Detecting CUDA compiler ABI info - done 2023-08-09T11:46:05.4341593Z -- Check for working CUDA compiler: /usr/local/cuda-11.8/bin/nvcc - skipped 2023-08-09T11:46:05.4342008Z -- Detecting CUDA compile features 2023-08-09T11:46:05.4342434Z -- Detecting CUDA compile features - done 2023-08-09T11:46:05.4342899Z -- Found CUDA: /usr/local/cuda-11.8 (found version "11.8") 2023-08-09T11:46:05.4343424Z -- Found CUDAToolkit: /usr/local/cuda-11.8/include (found version "11.8.89") 2023-08-09T11:46:05.4343926Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD 2023-08-09T11:46:05.4344390Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Failed 2023-08-09T11:46:05.4344840Z -- Looking for pthread_create in pthreads 2023-08-09T11:46:05.4345309Z -- Looking for pthread_create in pthreads - not found 2023-08-09T11:46:05.4345773Z -- Looking for pthread_create in pthread 2023-08-09T11:46:05.4346215Z -- Looking for pthread_create in pthread - found 2023-08-09T11:46:05.4346603Z -- Found Threads: TRUE 2023-08-09T11:46:05.4346987Z -- Caffe2: CUDA detected: 11.8 2023-08-09T11:46:05.4347438Z -- Caffe2: CUDA nvcc is: /usr/local/cuda-11.8/bin/nvcc 2023-08-09T11:46:05.4347922Z -- Caffe2: CUDA toolkit directory: /usr/local/cuda-11.8 2023-08-09T11:46:05.4349052Z -- Caffe2: Header version is: 11.8 2023-08-09T11:46:05.4349558Z -- /usr/local/cuda-11.8/lib64/libnvrtc.so shorthash is 672ee683 2023-08-09T11:46:05.4350084Z -- USE_CUDNN is set to 0. Compiling without cuDNN support 2023-08-09T11:46:05.4350627Z -- USE_CUSPARSELT is set to 0. Compiling without cuSPARSELt support 2023-08-09T11:46:05.4351111Z -- Autodetected CUDA architecture(s): 8.6 2023-08-09T11:46:05.4351618Z -- Added CUDA NVCC flags for: -gencode;arch=compute_86,code=sm_86 2023-08-09T11:46:05.4352493Z CMake Warning at ci_env/lib/python3.9/site-packages/torch/share/cmake/Torch/TorchConfig.cmake:22 (message): 2023-08-09T11:46:05.4353103Z static library kineto_LIBRARY-NOTFOUND not found. 2023-08-09T11:46:05.4353484Z Call Stack (most recent call first): 2023-08-09T11:46:05.4354084Z ci_env/lib/python3.9/site-packages/torch/share/cmake/Torch/TorchConfig.cmake:127 (append_torchlib_if_found) 2023-08-09T11:46:05.4354613Z cmake/TorchAudioHelper.cmake:1 (find_package) 2023-08-09T11:46:05.4354992Z CMakeLists.txt:93 (include) 2023-08-09T11:46:05.4355187Z 2023-08-09T11:46:05.4355206Z 2023-08-09T11:46:05.4355545Z -- Found Torch: /work/ci_env/lib/python3.9/site-packages/torch/lib/libtorch.so 2023-08-09T11:46:05.4356063Z -- Found OpenMP_C: -fopenmp (found version "4.5") 2023-08-09T11:46:05.4356531Z -- Found OpenMP_CXX: -fopenmp (found version "4.5") 2023-08-09T11:46:05.4356999Z -- Found OpenMP: TRUE (found version "4.5") 2023-08-09T11:46:05.4357535Z -- Could not find ccache. Consider installing ccache to speed up compilation. 2023-08-09T11:46:05.4358089Z -- Building FFmpeg integration with multi version support 2023-08-09T11:46:05.4358495Z -- Configuring done (4.4s) 2023-08-09T11:46:05.4358850Z -- Generating done (0.0s) 2023-08-09T11:46:05.4359360Z -- Build files have been written to: /work/build/temp.linux-x86_64-cpython-39 2023-08-09T11:46:05.4361726Z [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.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:05.4365302Z [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.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:05.4368492Z [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.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:05.4370935Z [4/94] /opt/rh/devtoolset-9/root/usr/bin/cc -Dsox_EXPORTS -I/work/build/temp.linux-x86_64-cpython-39/_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:46:05.4372126Z [5/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:46:05.4374369Z [6/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.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:05.4377705Z [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.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:05.4380896Z [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.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:16.2237622Z [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.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:16.2240743Z [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.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:16.2445875Z [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.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:16.2449477Z [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.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:16.2452523Z [13/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-39/_deps/sox_src-src/src -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:16.2455758Z [14/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-39/_deps/f6-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:16.2458240Z /work/torchaudio/csrc/ffmpeg/filter_graph.cpp: In member function ‘torchaudio::io::FilterGraphOutputInfo torchaudio::io::FilterGraph::get_output_info() const’: 2023-08-09T11:46:16.3245254Z /work/torchaudio/csrc/ffmpeg/filter_graph.cpp:193:63: warning: ‘AVFilterLink::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:16.3246380Z 193 | ret.num_channels = av_get_channel_layout_nb_channels(l->channel_layout); 2023-08-09T11:46:16.3246808Z | ^~~~~~~~~~~~~~ 2023-08-09T11:46:16.3247222Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:12, 2023-08-09T11:46:16.3247652Z from /work/torchaudio/csrc/ffmpeg/filter_graph.h:3, 2023-08-09T11:46:16.3248086Z from /work/torchaudio/csrc/ffmpeg/filter_graph.cpp:1: 2023-08-09T11:46:16.3248755Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavfilter/avfilter.h:542:14: note: declared here 2023-08-09T11:46:16.3249192Z 542 | uint64_t channel_layout; 2023-08-09T11:46:16.3249567Z | ^~~~~~~~~~~~~~ 2023-08-09T11:46:16.3250387Z /work/torchaudio/csrc/ffmpeg/filter_graph.cpp:193:63: warning: ‘AVFilterLink::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:16.3251081Z 193 | ret.num_channels = av_get_channel_layout_nb_channels(l->channel_layout); 2023-08-09T11:46:16.3251492Z | ^~~~~~~~~~~~~~ 2023-08-09T11:46:16.3251874Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:12, 2023-08-09T11:46:16.3252270Z from /work/torchaudio/csrc/ffmpeg/filter_graph.h:3, 2023-08-09T11:46:16.3252685Z from /work/torchaudio/csrc/ffmpeg/filter_graph.cpp:1: 2023-08-09T11:46:16.3253352Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavfilter/avfilter.h:542:14: note: declared here 2023-08-09T11:46:16.3253768Z 542 | uint64_t channel_layout; 2023-08-09T11:46:16.3254043Z | ^~~~~~~~~~~~~~ 2023-08-09T11:46:16.3254772Z /work/torchaudio/csrc/ffmpeg/filter_graph.cpp:193:63: warning: ‘AVFilterLink::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:16.3255913Z 193 | ret.num_channels = av_get_channel_layout_nb_channels(l->channel_layout); 2023-08-09T11:46:16.3256339Z | ^~~~~~~~~~~~~~ 2023-08-09T11:46:16.3256704Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:12, 2023-08-09T11:46:16.3257166Z from /work/torchaudio/csrc/ffmpeg/filter_graph.h:3, 2023-08-09T11:46:16.3257569Z from /work/torchaudio/csrc/ffmpeg/filter_graph.cpp:1: 2023-08-09T11:46:16.3258228Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavfilter/avfilter.h:542:14: note: declared here 2023-08-09T11:46:16.3258670Z 542 | uint64_t channel_layout; 2023-08-09T11:46:16.3258957Z | ^~~~~~~~~~~~~~ 2023-08-09T11:46:16.3259624Z /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:46:16.3260302Z 193 | ret.num_channels = av_get_channel_layout_nb_channels(l->channel_layout); 2023-08-09T11:46:16.3260696Z | ^ 2023-08-09T11:46:16.3261281Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:33, 2023-08-09T11:46:16.3261992Z from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:46:16.3262495Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:16.3262917Z from /work/torchaudio/csrc/ffmpeg/filter_graph.h:3, 2023-08-09T11:46:16.3263333Z from /work/torchaudio/csrc/ffmpeg/filter_graph.cpp:1: 2023-08-09T11:46:16.3263990Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/channel_layout.h:474:5: note: declared here 2023-08-09T11:46:16.3264855Z 474 | int av_get_channel_layout_nb_channels(uint64_t channel_layout); 2023-08-09T11:46:16.3265246Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:46:16.3265956Z /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:46:21.6557629Z 193 | ret.num_channels = av_get_channel_layout_nb_channels(l->channel_layout); 2023-08-09T11:46:21.6558084Z | ^ 2023-08-09T11:46:21.6558715Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:33, 2023-08-09T11:46:21.6559499Z from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:46:21.6559988Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:21.6560460Z from /work/torchaudio/csrc/ffmpeg/filter_graph.h:3, 2023-08-09T11:46:21.6560919Z from /work/torchaudio/csrc/ffmpeg/filter_graph.cpp:1: 2023-08-09T11:46:21.6561569Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/channel_layout.h:474:5: note: declared here 2023-08-09T11:46:21.6562092Z 474 | int av_get_channel_layout_nb_channels(uint64_t channel_layout); 2023-08-09T11:46:21.6562475Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:46:21.6565234Z [15/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-39/_deps/f4-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:21.6568470Z [16/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-39/_deps/sox_src-src/src -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:21.6571439Z [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.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:21.6574551Z [18/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.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:21.6578053Z [19/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-39/_deps/sox_src-src/src -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:21.6581040Z [20/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.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:21.6584158Z [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-39/_deps/sox_src-src/src -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:21.6587272Z [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-39/_deps/sox_src-src/src -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:21.6591822Z [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.9/site-packages/torch/lib:/work/build/temp.linux-x86_64-cpython-39/third_party/sox:/usr/local/cuda-11.8/lib64: /work/ci_env/lib/python3.9/site-packages/torch/lib/libtorch.so third_party/sox/libsox.so -Wl,--no-as-needed,"/work/ci_env/lib/python3.9/site-packages/torch/lib/libtorch_cpu.so" -Wl,--as-needed -Wl,--no-as-needed,"/work/ci_env/lib/python3.9/site-packages/torch/lib/libtorch_cuda.so" -Wl,--as-needed /work/ci_env/lib/python3.9/site-packages/torch/lib/libc10_cuda.so /work/ci_env/lib/python3.9/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:46:28.4975209Z [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-39/_deps/f4-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:28.4978998Z [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-39/_deps/f4-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:28.4982520Z [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-39/_deps/f4-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:28.4986060Z [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-39/_deps/f4-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:28.4988449Z /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:46:28.4991630Z /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:46:28.4992402Z 97 | if (num_chunks > 0 && chunks.size() > num_chunks) { 2023-08-09T11:46:28.4992789Z | ~~~~~~~~~~~~~~^~~~~~~~~~~~ 2023-08-09T11:46:28.4995287Z [28/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-39/_deps/f4-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:28.4998943Z [29/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-39/_deps/f4-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:28.5002019Z [30/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.9 -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:28.5005873Z [31/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-39/_deps/f4-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:28.5008289Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_reader.cpp: In constructor ‘torchaudio::io::StreamReader::StreamReader(AVFormatContext*)’: 2023-08-09T11:46:28.5009221Z /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:46:28.5009933Z 61 | for (int i = 0; i < format_ctx->nb_streams; ++i) { 2023-08-09T11:46:28.5010308Z | ~~^~~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:46:28.5014019Z [32/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.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:34.2539738Z [33/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.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:34.2545418Z [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.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:34.2550784Z [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-39/_deps/f4-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:34.2554787Z [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-39/_deps/f4-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:34.2558415Z [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-39/_deps/f4-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:34.2561994Z [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-39/_deps/f4-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:34.2566459Z [39/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-39/_deps/f4-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:34.2568348Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/util/Exception.h:4, 2023-08-09T11:46:34.2569010Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Generator.h:11, 2023-08-09T11:46:34.2569693Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/CPUGeneratorImpl.h:3, 2023-08-09T11:46:34.2570364Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Context.h:3, 2023-08-09T11:46:34.2571231Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/ATen.h:7, 2023-08-09T11:46:34.2571958Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/types.h:3, 2023-08-09T11:46:34.2572501Z from /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.h:3, 2023-08-09T11:46:34.2573037Z from /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp:1: 2023-08-09T11:46:34.2574663Z /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:46:38.0936676Z /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:46:38.0937379Z 69 | format_ctx->nb_streams == num_output_streams(), 2023-08-09T11:46:38.0937738Z | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:46:38.0939311Z /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:46:38.0941076Z /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:46:38.0941724Z 105 | format_ctx->nb_streams == num_output_streams(), 2023-08-09T11:46:38.0942067Z | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:46:38.0943435Z /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:46:38.0944767Z /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:46:38.0945419Z 149 | format_ctx->nb_streams == num_output_streams(), 2023-08-09T11:46:38.0945769Z | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:46:38.0947310Z /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:46:38.0949106Z /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:46:38.0949758Z 186 | format_ctx->nb_streams == num_output_streams(), 2023-08-09T11:46:38.0950095Z | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:46:38.0950939Z /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:46:38.0951865Z /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:46:38.0952513Z 223 | format_ctx->nb_streams == num_output_streams(), 2023-08-09T11:46:38.0952868Z | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:46:38.0955026Z [40/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.9 -I/work/build/temp.linux-x86_64-cpython-39/_deps/sox_src-src/src -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:38.0959113Z [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-39/torchaudio/csrc/sox:/work/ci_env/lib/python3.9/site-packages/torch/lib:/usr/local/cuda-11.8/lib64:/work/build/temp.linux-x86_64-cpython-39/third_party/sox: torchaudio/csrc/sox/libtorchaudio_sox.so /work/ci_env/lib/python3.9/site-packages/torch/lib/libtorch_python.so /work/ci_env/lib/python3.9/site-packages/torch/lib/libtorch.so -Wl,--no-as-needed,"/work/ci_env/lib/python3.9/site-packages/torch/lib/libtorch_cpu.so" -Wl,--as-needed -Wl,--no-as-needed,"/work/ci_env/lib/python3.9/site-packages/torch/lib/libtorch_cuda.so" -Wl,--as-needed /work/ci_env/lib/python3.9/site-packages/torch/lib/libc10_cuda.so /work/ci_env/lib/python3.9/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:46:38.0963101Z [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-39/_deps/f5-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:38.0966777Z [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_ffmpeg5_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-39/_deps/f5-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:38.0970093Z [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-39/_deps/f5-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:38.0972020Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_reader.cpp: In constructor ‘torchaudio::io::StreamReader::StreamReader(AVFormatContext*)’: 2023-08-09T11:46:44.0340859Z /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:46:44.0342041Z 61 | for (int i = 0; i < format_ctx->nb_streams; ++i) { 2023-08-09T11:46:44.0342417Z | ~~^~~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:46:44.0344749Z [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_ffmpeg4_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-39/_deps/f4-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:44.0348271Z [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-39/_deps/f5-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:44.0352486Z [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-39/_deps/f5-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:44.0356232Z [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-39/_deps/f5-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:44.0358439Z /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:46:44.0359978Z /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:46:44.0360706Z 97 | if (num_chunks > 0 && chunks.size() > num_chunks) { 2023-08-09T11:46:44.0361083Z | ~~~~~~~~~~~~~~^~~~~~~~~~~~ 2023-08-09T11:46:44.0363951Z [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-39/_deps/f5-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:44.0367925Z [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_ffmpeg5_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-39/_deps/f5-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:44.0371365Z [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-39/_deps/f4-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:44.0374903Z [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_ffmpeg4_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-39/_deps/f4-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:44.0378769Z [53/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-39/_deps/f5-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:48.2067278Z [54/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.9/site-packages/torch/lib:/usr/local/cuda-11.8/lib64:/work/build/temp.linux-x86_64-cpython-39/_deps/f4-src/lib: /work/ci_env/lib/python3.9/site-packages/torch/lib/libtorch.so -Wl,--no-as-needed,"/work/ci_env/lib/python3.9/site-packages/torch/lib/libtorch_cpu.so" -Wl,--as-needed -Wl,--no-as-needed,"/work/ci_env/lib/python3.9/site-packages/torch/lib/libtorch_cuda.so" -Wl,--as-needed /work/ci_env/lib/python3.9/site-packages/torch/lib/libc10_cuda.so /work/ci_env/lib/python3.9/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.9/site-packages/torch/lib/libc10_cuda.so /usr/local/cuda-11.8/lib64/libcudart.so && : 2023-08-09T11:46:48.2074390Z [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-39/_deps/f5-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:48.2078271Z [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-39/_deps/f5-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:48.2082014Z [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-39/_deps/f5-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:48.2085796Z [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-39/_deps/f6-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:48.2088820Z [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-39/_deps/f5-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:48.2090634Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/util/Exception.h:4, 2023-08-09T11:46:48.2091261Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Generator.h:11, 2023-08-09T11:46:48.2091894Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/CPUGeneratorImpl.h:3, 2023-08-09T11:46:48.2092500Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Context.h:3, 2023-08-09T11:46:48.2093069Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/ATen.h:7, 2023-08-09T11:46:48.2093693Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/types.h:3, 2023-08-09T11:46:48.2094197Z from /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.h:3, 2023-08-09T11:46:48.2094642Z from /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp:1: 2023-08-09T11:46:48.2096168Z /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:46:51.4075743Z /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:46:51.4076395Z 69 | format_ctx->nb_streams == num_output_streams(), 2023-08-09T11:46:51.4076713Z | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:46:51.4078638Z /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:46:51.4079926Z /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:46:51.4080526Z 105 | format_ctx->nb_streams == num_output_streams(), 2023-08-09T11:46:51.4080853Z | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:46:51.4082132Z /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:46:51.4083649Z /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:46:51.4084233Z 149 | format_ctx->nb_streams == num_output_streams(), 2023-08-09T11:46:51.4084545Z | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:46:51.4085973Z /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:46:51.4087452Z /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:46:51.4088050Z 186 | format_ctx->nb_streams == num_output_streams(), 2023-08-09T11:46:51.4088357Z | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:46:51.4089121Z /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:46:51.4090019Z /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:46:51.4090602Z 223 | format_ctx->nb_streams == num_output_streams(), 2023-08-09T11:46:51.4090920Z | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:46:51.4092974Z [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-39/_deps/f6-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:51.4096075Z [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-39/_deps/f5-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:51.4099330Z [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-39/_deps/f6-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:51.4102603Z [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-39/_deps/f6-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:51.4105796Z [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-39/_deps/f6-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:51.4107664Z /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:46:51.4109184Z /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:46:54.0895088Z 97 | if (num_chunks > 0 && chunks.size() > num_chunks) { 2023-08-09T11:46:54.0895516Z | ~~~~~~~~~~~~~~^~~~~~~~~~~~ 2023-08-09T11:46:54.0897349Z [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:46:54.0900493Z [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-39/_deps/f6-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:54.0903243Z /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:46:54.0904308Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:141:19: warning: ‘AVCodecContext::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:54.0904965Z 141 | if (!codec_ctx->channel_layout) { 2023-08-09T11:46:54.0905290Z | ^~~~~~~~~~~~~~ 2023-08-09T11:46:54.0905660Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:54.0906067Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:54.0906501Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:1: 2023-08-09T11:46:54.0907172Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:1100:14: note: declared here 2023-08-09T11:46:54.0907632Z 1100 | uint64_t channel_layout; 2023-08-09T11:46:54.0907932Z | ^~~~~~~~~~~~~~ 2023-08-09T11:46:54.0908912Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:141:19: warning: ‘AVCodecContext::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:54.0909500Z 141 | if (!codec_ctx->channel_layout) { 2023-08-09T11:46:54.0909813Z | ^~~~~~~~~~~~~~ 2023-08-09T11:46:54.0910176Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:54.0910613Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:54.0911087Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:1: 2023-08-09T11:46:54.0911765Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:1100:14: note: declared here 2023-08-09T11:46:54.0912187Z 1100 | uint64_t channel_layout; 2023-08-09T11:46:54.0912903Z | ^~~~~~~~~~~~~~ 2023-08-09T11:46:54.0913707Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:141:19: warning: ‘AVCodecContext::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:54.0914347Z 141 | if (!codec_ctx->channel_layout) { 2023-08-09T11:46:54.0914653Z | ^~~~~~~~~~~~~~ 2023-08-09T11:46:54.0915016Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:54.0915447Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:54.0915906Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:1: 2023-08-09T11:46:54.0916577Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:1100:14: note: declared here 2023-08-09T11:46:54.0917022Z 1100 | uint64_t channel_layout; 2023-08-09T11:46:54.0917308Z | ^~~~~~~~~~~~~~ 2023-08-09T11:46:54.0918076Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:142:16: warning: ‘AVCodecContext::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:54.0918662Z 142 | codec_ctx->channel_layout = 2023-08-09T11:46:54.0918981Z | ^~~~~~~~~~~~~~ 2023-08-09T11:46:54.0919346Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:54.0919785Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:54.0920240Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:1: 2023-08-09T11:46:54.0920899Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:1100:14: note: declared here 2023-08-09T11:46:54.0921324Z 1100 | uint64_t channel_layout; 2023-08-09T11:46:54.0921603Z | ^~~~~~~~~~~~~~ 2023-08-09T11:46:54.0922747Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:142:16: warning: ‘AVCodecContext::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:54.0923690Z 142 | codec_ctx->channel_layout = 2023-08-09T11:46:54.0924007Z | ^~~~~~~~~~~~~~ 2023-08-09T11:46:54.0924362Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:54.0924761Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:54.0925190Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:1: 2023-08-09T11:46:54.0925828Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:1100:14: note: declared here 2023-08-09T11:46:54.0926276Z 1100 | uint64_t channel_layout; 2023-08-09T11:46:54.0926564Z | ^~~~~~~~~~~~~~ 2023-08-09T11:46:54.0927313Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:142:16: warning: ‘AVCodecContext::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:54.0927941Z 142 | codec_ctx->channel_layout = 2023-08-09T11:46:54.0928245Z | ^~~~~~~~~~~~~~ 2023-08-09T11:46:54.0928608Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:54.0929039Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:54.0929475Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:1: 2023-08-09T11:46:54.0930112Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:1100:14: note: declared here 2023-08-09T11:46:54.0930534Z 1100 | uint64_t channel_layout; 2023-08-09T11:46:54.0930822Z | ^~~~~~~~~~~~~~ 2023-08-09T11:46:54.0931590Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:143:50: warning: ‘AVCodecContext::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:54.0932282Z 143 | av_get_default_channel_layout(codec_ctx->channels); 2023-08-09T11:46:54.0932988Z | ^~~~~~~~ 2023-08-09T11:46:54.0933371Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:54.0933783Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:54.0934257Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:1: 2023-08-09T11:46:54.0934950Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:1042:9: note: declared here 2023-08-09T11:46:54.0935372Z 1042 | int channels; 2023-08-09T11:46:54.0935645Z | ^~~~~~~~ 2023-08-09T11:46:54.0936428Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:143:50: warning: ‘AVCodecContext::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:54.0937157Z 143 | av_get_default_channel_layout(codec_ctx->channels); 2023-08-09T11:46:54.0937528Z | ^~~~~~~~ 2023-08-09T11:46:54.0937942Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:54.0938374Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:54.0938853Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:1: 2023-08-09T11:46:54.0939554Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:1042:9: note: declared here 2023-08-09T11:46:54.0939979Z 1042 | int channels; 2023-08-09T11:46:54.0940254Z | ^~~~~~~~ 2023-08-09T11:46:54.0941006Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:143:50: warning: ‘AVCodecContext::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:54.0941634Z 143 | av_get_default_channel_layout(codec_ctx->channels); 2023-08-09T11:46:54.0942348Z | ^~~~~~~~ 2023-08-09T11:46:54.0942728Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:54.0943113Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:54.0943525Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:1: 2023-08-09T11:46:54.0944136Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:1042:9: note: declared here 2023-08-09T11:46:54.0944515Z 1042 | int channels; 2023-08-09T11:46:54.0944770Z | ^~~~~~~~ 2023-08-09T11:46:54.0945416Z /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:46:55.4557434Z 143 | av_get_default_channel_layout(codec_ctx->channels); 2023-08-09T11:46:55.4557876Z | ^ 2023-08-09T11:46:55.4558467Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:33, 2023-08-09T11:46:55.4559100Z from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:46:55.4559555Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:55.4559936Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:55.4560354Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:1: 2023-08-09T11:46:55.4560993Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/channel_layout.h:482:9: note: declared here 2023-08-09T11:46:55.4561452Z 482 | int64_t av_get_default_channel_layout(int nb_channels); 2023-08-09T11:46:55.4561779Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:46:55.4562477Z /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:46:55.4563978Z 143 | av_get_default_channel_layout(codec_ctx->channels); 2023-08-09T11:46:55.4564347Z | ^ 2023-08-09T11:46:55.4564885Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:33, 2023-08-09T11:46:55.4565516Z from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:46:55.4565956Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:55.4566334Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:55.4566747Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:1: 2023-08-09T11:46:55.4567351Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/channel_layout.h:482:9: note: declared here 2023-08-09T11:46:55.4567813Z 482 | int64_t av_get_default_channel_layout(int nb_channels); 2023-08-09T11:46:55.4568141Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:46:55.4568927Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp: In member function ‘int torchaudio::io::StreamProcessor::process_packet(AVPacket*)’: 2023-08-09T11:46:55.4569833Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:335:33: warning: ‘AVCodecContext::frame_number’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:55.4570426Z 335 | frame->pts = codec_ctx->frame_number + 1; 2023-08-09T11:46:55.4570746Z | ^~~~~~~~~~~~ 2023-08-09T11:46:55.4571085Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:55.4571472Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:55.4572158Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:1: 2023-08-09T11:46:55.4572769Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:1076:9: note: declared here 2023-08-09T11:46:55.4573154Z 1076 | int frame_number; 2023-08-09T11:46:55.4573409Z | ^~~~~~~~~~~~ 2023-08-09T11:46:55.4574118Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:335:33: warning: ‘AVCodecContext::frame_number’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:55.4574712Z 335 | frame->pts = codec_ctx->frame_number + 1; 2023-08-09T11:46:55.4575029Z | ^~~~~~~~~~~~ 2023-08-09T11:46:55.4575371Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:55.4575757Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:55.4576178Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:1: 2023-08-09T11:46:55.4576800Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:1076:9: note: declared here 2023-08-09T11:46:55.4577209Z 1076 | int frame_number; 2023-08-09T11:46:55.4577457Z | ^~~~~~~~~~~~ 2023-08-09T11:46:55.4578153Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:335:33: warning: ‘AVCodecContext::frame_number’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:55.4578736Z 335 | frame->pts = codec_ctx->frame_number + 1; 2023-08-09T11:46:55.4579043Z | ^~~~~~~~~~~~ 2023-08-09T11:46:55.4579381Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:55.4579784Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:55.4580203Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:1: 2023-08-09T11:46:55.4580823Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:1076:9: note: declared here 2023-08-09T11:46:55.4581212Z 1076 | int frame_number; 2023-08-09T11:46:55.4581706Z | ^~~~~~~~~~~~ 2023-08-09T11:46:55.4583698Z [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-39/_deps/f5-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:55.4586873Z [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_ffmpeg5_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-39/_deps/f5-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:55.4590380Z [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-39/_deps/f6-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:55.4593807Z [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-39/_deps/f6-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:55.4595669Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_reader.cpp: In constructor ‘torchaudio::io::StreamReader::StreamReader(AVFormatContext*)’: 2023-08-09T11:46:55.4596503Z /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:46:55.4597106Z 61 | for (int i = 0; i < format_ctx->nb_streams; ++i) { 2023-08-09T11:46:55.4597537Z | ~~^~~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:46:55.4598294Z /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:46:55.4599238Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_reader.cpp:163:36: warning: ‘AVCodecParameters::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:56.3576530Z 163 | ret.num_channels = codecpar->channels; 2023-08-09T11:46:56.3576917Z | ^~~~~~~~ 2023-08-09T11:46:56.3577500Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:42, 2023-08-09T11:46:56.3578032Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.3578507Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_reader.cpp:1: 2023-08-09T11:46:56.3579254Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/codec_par.h:173:14: note: declared here 2023-08-09T11:46:56.3579712Z 173 | int channels; 2023-08-09T11:46:56.3579987Z | ^~~~~~~~ 2023-08-09T11:46:56.3580895Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_reader.cpp:163:36: warning: ‘AVCodecParameters::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:56.3581562Z 163 | ret.num_channels = codecpar->channels; 2023-08-09T11:46:56.3581926Z | ^~~~~~~~ 2023-08-09T11:46:56.3585038Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:42, 2023-08-09T11:46:56.3585679Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.3586818Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_reader.cpp:1: 2023-08-09T11:46:56.3587539Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/codec_par.h:173:14: note: declared here 2023-08-09T11:46:56.3587948Z 173 | int channels; 2023-08-09T11:46:56.3588220Z | ^~~~~~~~ 2023-08-09T11:46:56.3589151Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_reader.cpp:163:36: warning: ‘AVCodecParameters::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:56.3589801Z 163 | ret.num_channels = codecpar->channels; 2023-08-09T11:46:56.3590148Z | ^~~~~~~~ 2023-08-09T11:46:56.3590730Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:42, 2023-08-09T11:46:56.3591229Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.3591680Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_reader.cpp:1: 2023-08-09T11:46:56.3592417Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/codec_par.h:173:14: note: declared here 2023-08-09T11:46:56.3592851Z 173 | int channels; 2023-08-09T11:46:56.3593113Z | ^~~~~~~~ 2023-08-09T11:46:56.3599914Z [71/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.9/site-packages/torch/lib:/usr/local/cuda-11.8/lib64:/work/build/temp.linux-x86_64-cpython-39/_deps/f5-src/lib: /work/ci_env/lib/python3.9/site-packages/torch/lib/libtorch.so -Wl,--no-as-needed,"/work/ci_env/lib/python3.9/site-packages/torch/lib/libtorch_cpu.so" -Wl,--as-needed -Wl,--no-as-needed,"/work/ci_env/lib/python3.9/site-packages/torch/lib/libtorch_cuda.so" -Wl,--as-needed /work/ci_env/lib/python3.9/site-packages/torch/lib/libc10_cuda.so /work/ci_env/lib/python3.9/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.9/site-packages/torch/lib/libc10_cuda.so /usr/local/cuda-11.8/lib64/libcudart.so && : 2023-08-09T11:46:56.3651733Z [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-39/_deps/f6-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:56.3654009Z /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:46:56.3655150Z /work/torchaudio/csrc/ffmpeg/stream_reader/post_process.cpp:22:39: warning: ‘AVCodecContext::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:56.3655814Z 22 | channel_layout = codec_ctx->channel_layout]( 2023-08-09T11:46:56.3656181Z | ^~~~~~~~~~~~~~ 2023-08-09T11:46:56.3656585Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.3657068Z from /work/torchaudio/csrc/ffmpeg/stream_reader/buffer/chunked_buffer.h:2, 2023-08-09T11:46:56.3657551Z from /work/torchaudio/csrc/ffmpeg/stream_reader/post_process.cpp:1: 2023-08-09T11:46:56.3658233Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:1100:14: note: declared here 2023-08-09T11:46:56.3658709Z 1100 | uint64_t channel_layout; 2023-08-09T11:46:56.3659084Z | ^~~~~~~~~~~~~~ 2023-08-09T11:46:56.3660260Z /work/torchaudio/csrc/ffmpeg/stream_reader/post_process.cpp:22:39: warning: ‘AVCodecContext::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:56.3660908Z 22 | channel_layout = codec_ctx->channel_layout]( 2023-08-09T11:46:56.3661241Z | ^~~~~~~~~~~~~~ 2023-08-09T11:46:56.3661605Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.3662098Z from /work/torchaudio/csrc/ffmpeg/stream_reader/buffer/chunked_buffer.h:2, 2023-08-09T11:46:56.3662573Z from /work/torchaudio/csrc/ffmpeg/stream_reader/post_process.cpp:1: 2023-08-09T11:46:56.3663246Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:1100:14: note: declared here 2023-08-09T11:46:56.3663697Z 1100 | uint64_t channel_layout; 2023-08-09T11:46:56.3663992Z | ^~~~~~~~~~~~~~ 2023-08-09T11:46:56.3664790Z /work/torchaudio/csrc/ffmpeg/stream_reader/post_process.cpp:22:39: warning: ‘AVCodecContext::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:56.3665474Z 22 | channel_layout = codec_ctx->channel_layout]( 2023-08-09T11:46:56.3665837Z | ^~~~~~~~~~~~~~ 2023-08-09T11:46:56.3666226Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.3666702Z from /work/torchaudio/csrc/ffmpeg/stream_reader/buffer/chunked_buffer.h:2, 2023-08-09T11:46:56.3667174Z from /work/torchaudio/csrc/ffmpeg/stream_reader/post_process.cpp:1: 2023-08-09T11:46:56.3667856Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:1100:14: note: declared here 2023-08-09T11:46:56.3668290Z 1100 | uint64_t channel_layout; 2023-08-09T11:46:56.3669009Z | ^~~~~~~~~~~~~~ 2023-08-09T11:46:56.3671152Z [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_ffmpeg6_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:56.3989935Z /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:46:56.3991006Z /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:46:56.3991594Z 318 | ss << av_get_channel_layout_nb_channels(*channel_layouts); 2023-08-09T11:46:56.3992036Z | ^ 2023-08-09T11:46:56.3992650Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:33, 2023-08-09T11:46:56.3993331Z from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:46:56.3993812Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.3994237Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:56.3994714Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:46:56.3995794Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/channel_layout.h:474:5: note: declared here 2023-08-09T11:46:56.3996330Z 474 | int av_get_channel_layout_nb_channels(uint64_t channel_layout); 2023-08-09T11:46:56.3996695Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:46:56.3997413Z /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:46:56.3998022Z 318 | ss << av_get_channel_layout_nb_channels(*channel_layouts); 2023-08-09T11:46:56.3998395Z | ^ 2023-08-09T11:46:56.3998972Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:33, 2023-08-09T11:46:56.3999682Z from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:46:56.4000485Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.4000902Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:56.4001344Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:46:56.4002044Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/channel_layout.h:474:5: note: declared here 2023-08-09T11:46:56.4002563Z 474 | int av_get_channel_layout_nb_channels(uint64_t channel_layout); 2023-08-09T11:46:56.4002940Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:46:56.4003987Z /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:46:56.4004858Z 319 | ss << " (" << av_get_channel_name(*channel_layouts) << ")"; 2023-08-09T11:46:56.4005236Z | ^ 2023-08-09T11:46:56.4005821Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:33, 2023-08-09T11:46:56.4006520Z from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:46:56.4006999Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.4007403Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:56.4007844Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:46:56.4008535Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/channel_layout.h:515:13: note: declared here 2023-08-09T11:46:56.4009050Z 515 | const char *av_get_channel_name(uint64_t channel); 2023-08-09T11:46:56.4009376Z | ^~~~~~~~~~~~~~~~~~~ 2023-08-09T11:46:56.4010081Z /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:46:56.4010647Z 319 | ss << " (" << av_get_channel_name(*channel_layouts) << ")"; 2023-08-09T11:46:56.4011009Z | ^ 2023-08-09T11:46:56.4011577Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:33, 2023-08-09T11:46:56.4012249Z from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:46:56.4012723Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.4013154Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:56.4013594Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:46:56.4014532Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/channel_layout.h:515:13: note: declared here 2023-08-09T11:46:56.4015034Z 515 | const char *av_get_channel_name(uint64_t channel); 2023-08-09T11:46:56.4127067Z | ^~~~~~~~~~~~~~~~~~~ 2023-08-09T11:46:56.4128812Z /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:46:56.4130058Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:335:17: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:56.4131256Z 335 | if (!codec->channel_layouts) { 2023-08-09T11:46:56.4131672Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:46:56.4132508Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-08-09T11:46:56.4133290Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.4133736Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:56.4134191Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:46:56.4134861Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-08-09T11:46:56.4135436Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-08-09T11:46:56.4135852Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:46:56.4136617Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:335:17: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:56.4137238Z 335 | if (!codec->channel_layouts) { 2023-08-09T11:46:56.4137982Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:46:56.4138555Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-08-09T11:46:56.4139039Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.4139444Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:56.4139913Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:46:56.4140576Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-08-09T11:46:56.4141163Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-08-09T11:46:56.4141602Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:46:56.4142412Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:335:17: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:56.4143040Z 335 | if (!codec->channel_layouts) { 2023-08-09T11:46:56.4143363Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:46:56.4143925Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-08-09T11:46:56.4144409Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.4144803Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:56.4145244Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:46:56.4145900Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-08-09T11:46:56.4146484Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-08-09T11:46:56.4146914Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:46:56.4147973Z /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:46:56.4148615Z 336 | return static_cast(av_get_default_channel_layout(val)); 2023-08-09T11:46:56.4149214Z | ^ 2023-08-09T11:46:56.4149814Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:33, 2023-08-09T11:46:56.4150514Z from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:46:56.4150994Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.4151405Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:56.4151849Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:46:56.4152536Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/channel_layout.h:482:9: note: declared here 2023-08-09T11:46:56.4153036Z 482 | int64_t av_get_default_channel_layout(int nb_channels); 2023-08-09T11:46:56.4153387Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:46:56.4154073Z /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:46:56.4352356Z 336 | return static_cast(av_get_default_channel_layout(val)); 2023-08-09T11:46:56.4352933Z | ^ 2023-08-09T11:46:56.4353891Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:33, 2023-08-09T11:46:56.4354850Z from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:46:56.4355755Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.4356183Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:56.4356638Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:46:56.4357327Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/channel_layout.h:482:9: note: declared here 2023-08-09T11:46:56.4358054Z 482 | int64_t av_get_default_channel_layout(int nb_channels); 2023-08-09T11:46:56.4358411Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:46:56.4359518Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:338:38: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:56.4360221Z 338 | for (const uint64_t* it = codec->channel_layouts; *it; ++it) { 2023-08-09T11:46:56.4360606Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:46:56.4361205Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-08-09T11:46:56.4361717Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.4362385Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:56.4363054Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:46:56.4363980Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-08-09T11:46:56.4364569Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-08-09T11:46:56.4365015Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:46:56.4365797Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:338:38: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:56.4366504Z 338 | for (const uint64_t* it = codec->channel_layouts; *it; ++it) { 2023-08-09T11:46:56.4367415Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:46:56.4368273Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-08-09T11:46:56.4368836Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.4369253Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:56.4369710Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:46:56.4370404Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-08-09T11:46:56.4371008Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-08-09T11:46:56.4371716Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:46:56.4372748Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:338:38: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:56.4373428Z 338 | for (const uint64_t* it = codec->channel_layouts; *it; ++it) { 2023-08-09T11:46:56.4373811Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:46:56.4374401Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-08-09T11:46:56.4374922Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.4375342Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:56.4376059Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:46:56.4376939Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-08-09T11:46:56.4377751Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-08-09T11:46:56.4378164Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:46:56.4378848Z /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:46:56.4379578Z 339 | if (av_get_channel_layout_nb_channels(*it) == val) { 2023-08-09T11:46:56.4379920Z | ^ 2023-08-09T11:46:56.4380641Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:33, 2023-08-09T11:46:56.4381245Z from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:46:56.4381668Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.4382054Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:56.4382476Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:46:56.4383127Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/channel_layout.h:474:5: note: declared here 2023-08-09T11:46:56.4383768Z 474 | int av_get_channel_layout_nb_channels(uint64_t channel_layout); 2023-08-09T11:46:56.4384164Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:46:56.4385128Z /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:46:56.4385740Z 339 | if (av_get_channel_layout_nb_channels(*it) == val) { 2023-08-09T11:46:56.4386102Z | ^ 2023-08-09T11:46:56.4386703Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:33, 2023-08-09T11:46:56.4387562Z from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:46:56.4388258Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.4388978Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:56.4389464Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:46:56.4390149Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/channel_layout.h:474:5: note: declared here 2023-08-09T11:46:56.4390654Z 474 | int av_get_channel_layout_nb_channels(uint64_t channel_layout); 2023-08-09T11:46:56.4390995Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:46:56.4391533Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Generator.h:11, 2023-08-09T11:46:56.4392372Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/CPUGeneratorImpl.h:3, 2023-08-09T11:46:56.4393180Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Context.h:3, 2023-08-09T11:46:56.4393740Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/ATen.h:7, 2023-08-09T11:46:56.4394316Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/types.h:3, 2023-08-09T11:46:56.4394745Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:3, 2023-08-09T11:46:56.4395124Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:56.4395558Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:46:56.4396669Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:350:39: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:56.4397791Z 350 | get_supported_channels(codec->channel_layouts)); 2023-08-09T11:46:56.4398188Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:46:56.4398819Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-08-09T11:46:56.4399304Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.4399694Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:56.4400127Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:46:56.4400969Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-08-09T11:46:56.4401757Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-08-09T11:46:56.4402225Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:46:56.4402829Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Generator.h:11, 2023-08-09T11:46:56.4403612Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/CPUGeneratorImpl.h:3, 2023-08-09T11:46:56.4404269Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Context.h:3, 2023-08-09T11:46:56.4404900Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/ATen.h:7, 2023-08-09T11:46:56.4405805Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/types.h:3, 2023-08-09T11:46:56.4406300Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:3, 2023-08-09T11:46:56.4406971Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:56.4407466Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:46:56.4408383Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:350:39: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:56.4680983Z 350 | get_supported_channels(codec->channel_layouts)); 2023-08-09T11:46:56.4681505Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:46:56.4685220Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-08-09T11:46:56.4685712Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.4686115Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:56.4686556Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:46:56.4687218Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-08-09T11:46:56.4687792Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-08-09T11:46:56.4688226Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:46:56.4688795Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Generator.h:11, 2023-08-09T11:46:56.4689456Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/CPUGeneratorImpl.h:3, 2023-08-09T11:46:56.4690055Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Context.h:3, 2023-08-09T11:46:56.4690633Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/ATen.h:7, 2023-08-09T11:46:56.4691269Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/types.h:3, 2023-08-09T11:46:56.4691737Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:3, 2023-08-09T11:46:56.4692132Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:56.4692913Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:46:56.4694114Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:350:39: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:56.4694994Z 350 | get_supported_channels(codec->channel_layouts)); 2023-08-09T11:46:56.4695371Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:46:56.4696238Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-08-09T11:46:56.4697019Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.4697450Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:56.4697917Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:46:56.4698639Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-08-09T11:46:56.4699663Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-08-09T11:46:56.4700129Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:46:56.4700955Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:354:15: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:56.4701556Z 354 | if (!codec->channel_layouts) { 2023-08-09T11:46:56.4701842Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:46:56.4702601Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-08-09T11:46:56.4703248Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.4703633Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:56.4742239Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:46:56.4743503Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-08-09T11:46:56.4744371Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-08-09T11:46:56.4745032Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:46:56.4745912Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:354:15: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:56.4746552Z 354 | if (!codec->channel_layouts) { 2023-08-09T11:46:56.4747123Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:46:56.4747966Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-08-09T11:46:56.4748491Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.4749127Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:56.4749588Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:46:56.4750728Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-08-09T11:46:56.4751337Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-08-09T11:46:56.4751792Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:46:56.4752876Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:354:15: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:56.4753745Z 354 | if (!codec->channel_layouts) { 2023-08-09T11:46:56.4754063Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:46:56.4754632Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-08-09T11:46:56.4755704Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.4756340Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:56.4756793Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:46:56.4757485Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-08-09T11:46:56.4758094Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-08-09T11:46:56.4758542Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:46:56.4759856Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:359:36: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:56.4760595Z 359 | for (const uint64_t* it = codec->channel_layouts; *it; ++it) { 2023-08-09T11:46:56.4761238Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:46:56.4762151Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-08-09T11:46:56.4762904Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.4763573Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:56.4766252Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:46:56.4766992Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-08-09T11:46:56.4768360Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-08-09T11:46:56.4768865Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:46:56.4769768Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:359:36: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:56.4771267Z 359 | for (const uint64_t* it = codec->channel_layouts; *it; ++it) { 2023-08-09T11:46:56.4771743Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:46:56.4772377Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-08-09T11:46:56.4773136Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.4773699Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:56.4774230Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:46:56.4774873Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-08-09T11:46:56.4775568Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-08-09T11:46:56.4776053Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:46:56.4777039Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:359:36: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:56.4777687Z 359 | for (const uint64_t* it = codec->channel_layouts; *it; ++it) { 2023-08-09T11:46:56.4778041Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:46:56.4778872Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-08-09T11:46:56.4779640Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.4844787Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:56.4845493Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:46:56.4847607Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-08-09T11:46:56.4848231Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-08-09T11:46:56.4848687Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:46:56.4849529Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:365:17: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:56.4850164Z 365 | return codec->channel_layouts[0]; 2023-08-09T11:46:56.4850488Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:46:56.4960327Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-08-09T11:46:56.4961111Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.4961536Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:56.4962270Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:46:56.4963029Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-08-09T11:46:56.4964298Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-08-09T11:46:56.4964754Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:46:56.4965665Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:365:17: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:56.4966556Z 365 | return codec->channel_layouts[0]; 2023-08-09T11:46:56.4967102Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:46:56.4967726Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-08-09T11:46:56.4968274Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.4968939Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:56.4970017Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:46:56.4970779Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-08-09T11:46:56.4971384Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-08-09T11:46:56.4972083Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:46:56.4973140Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:365:17: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:56.4973798Z 365 | return codec->channel_layouts[0]; 2023-08-09T11:46:56.4974358Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:46:56.4975199Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-08-09T11:46:56.4975764Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.4976203Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:56.4976885Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:46:56.4977803Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-08-09T11:46:56.4978446Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-08-09T11:46:56.4978961Z | ^~~~~~~~~~~~~~~ 2023-08-09T11:46:56.4979940Z /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:46:56.4981958Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:377:14: warning: ‘AVCodecContext::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:56.4982696Z 377 | codec_ctx->channels = av_get_channel_layout_nb_channels(channel_layout); 2023-08-09T11:46:56.4983087Z | ^~~~~~~~ 2023-08-09T11:46:56.4983647Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.4984103Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:56.4984798Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:46:56.4985518Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:1042:9: note: declared here 2023-08-09T11:46:56.4986169Z 1042 | int channels; 2023-08-09T11:46:56.4986453Z | ^~~~~~~~ 2023-08-09T11:46:56.4987504Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:377:14: warning: ‘AVCodecContext::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:56.4988275Z 377 | codec_ctx->channels = av_get_channel_layout_nb_channels(channel_layout); 2023-08-09T11:46:56.4988657Z | ^~~~~~~~ 2023-08-09T11:46:56.4989198Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.4989890Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:56.4990589Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:46:56.4991288Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:1042:9: note: declared here 2023-08-09T11:46:56.4991724Z 1042 | int channels; 2023-08-09T11:46:56.4991997Z | ^~~~~~~~ 2023-08-09T11:46:56.4993023Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:377:14: warning: ‘AVCodecContext::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:56.4994260Z 377 | codec_ctx->channels = av_get_channel_layout_nb_channels(channel_layout); 2023-08-09T11:46:56.4994660Z | ^~~~~~~~ 2023-08-09T11:46:56.4995046Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.4995727Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:56.4996409Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:46:56.4997116Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:1042:9: note: declared here 2023-08-09T11:46:56.4997519Z 1042 | int channels; 2023-08-09T11:46:56.4997800Z | ^~~~~~~~ 2023-08-09T11:46:56.4999567Z /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:46:56.5000341Z 377 | codec_ctx->channels = av_get_channel_layout_nb_channels(channel_layout); 2023-08-09T11:46:56.5000990Z | ^ 2023-08-09T11:46:56.5001830Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:33, 2023-08-09T11:46:56.5002542Z from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:46:56.5002990Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.5003788Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:56.5004449Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:46:56.5005329Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/channel_layout.h:474:5: note: declared here 2023-08-09T11:46:56.5006142Z 474 | int av_get_channel_layout_nb_channels(uint64_t channel_layout); 2023-08-09T11:46:56.5006727Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:46:56.5007691Z /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:46:56.5008454Z 377 | codec_ctx->channels = av_get_channel_layout_nb_channels(channel_layout); 2023-08-09T11:46:56.5009107Z | ^ 2023-08-09T11:46:56.5009929Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:33, 2023-08-09T11:46:56.5010655Z from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:46:56.5011130Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.5011574Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:56.5012277Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:46:56.5013195Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/channel_layout.h:474:5: note: declared here 2023-08-09T11:46:56.5013696Z 474 | int av_get_channel_layout_nb_channels(uint64_t channel_layout); 2023-08-09T11:46:56.5014065Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:46:56.5015174Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:378:14: warning: ‘AVCodecContext::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:56.5016094Z 378 | codec_ctx->channel_layout = channel_layout; 2023-08-09T11:46:56.5016417Z | ^~~~~~~~~~~~~~ 2023-08-09T11:46:56.5016788Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.5017478Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:56.5018136Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:46:56.5019142Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:1100:14: note: declared here 2023-08-09T11:46:56.5019609Z 1100 | uint64_t channel_layout; 2023-08-09T11:46:56.5020136Z | ^~~~~~~~~~~~~~ 2023-08-09T11:46:56.5021162Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:378:14: warning: ‘AVCodecContext::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:56.5021791Z 378 | codec_ctx->channel_layout = channel_layout; 2023-08-09T11:46:56.5022116Z | ^~~~~~~~~~~~~~ 2023-08-09T11:46:56.5022683Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.5023250Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:56.5023682Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:46:56.5024326Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:1100:14: note: declared here 2023-08-09T11:46:56.5024882Z 1100 | uint64_t channel_layout; 2023-08-09T11:46:56.5025185Z | ^~~~~~~~~~~~~~ 2023-08-09T11:46:56.5226600Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:378:14: warning: ‘AVCodecContext::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:56.5227641Z 378 | codec_ctx->channel_layout = channel_layout; 2023-08-09T11:46:56.5228003Z | ^~~~~~~~~~~~~~ 2023-08-09T11:46:56.5228579Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.5229415Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:56.5229970Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:46:56.5231517Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:1100:14: note: declared here 2023-08-09T11:46:56.5232150Z 1100 | uint64_t channel_layout; 2023-08-09T11:46:56.5232450Z | ^~~~~~~~~~~~~~ 2023-08-09T11:46:56.5233711Z /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:46:56.5234756Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:702:10: warning: ‘AVFrame::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:56.5235524Z 702 | frame->channel_layout = channel_layout; 2023-08-09T11:46:56.5236088Z | ^~~~~~~~~~~~~~ 2023-08-09T11:46:56.5236832Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:46:56.5237345Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.5237922Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:56.5238430Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:46:56.5239281Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:524:14: note: declared here 2023-08-09T11:46:56.5239939Z 524 | uint64_t channel_layout; 2023-08-09T11:46:56.5240262Z | ^~~~~~~~~~~~~~ 2023-08-09T11:46:56.5241014Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:702:10: warning: ‘AVFrame::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:56.5241792Z 702 | frame->channel_layout = channel_layout; 2023-08-09T11:46:56.5242165Z | ^~~~~~~~~~~~~~ 2023-08-09T11:46:56.5242869Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:46:56.5243731Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.5244174Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:56.5244968Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:46:56.5245643Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:524:14: note: declared here 2023-08-09T11:46:56.5246278Z 524 | uint64_t channel_layout; 2023-08-09T11:46:56.5246577Z | ^~~~~~~~~~~~~~ 2023-08-09T11:46:56.5247791Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:702:10: warning: ‘AVFrame::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:56.5248446Z 702 | frame->channel_layout = channel_layout; 2023-08-09T11:46:56.5248911Z | ^~~~~~~~~~~~~~ 2023-08-09T11:46:56.5249488Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:46:56.5250241Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.5250898Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:56.5251338Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:46:56.5252168Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:524:14: note: declared here 2023-08-09T11:46:56.5252615Z 524 | uint64_t channel_layout; 2023-08-09T11:46:56.5253116Z | ^~~~~~~~~~~~~~ 2023-08-09T11:46:56.5254085Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:711:10: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:56.5254677Z 711 | frame->channels = num_channels; 2023-08-09T11:46:56.5255148Z | ^~~~~~~~ 2023-08-09T11:46:56.5255748Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:46:56.5256807Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.5257427Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:56.5258041Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:46:56.5258982Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:46:56.5259597Z 662 | int channels; 2023-08-09T11:46:56.5259905Z | ^~~~~~~~ 2023-08-09T11:46:56.5260824Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:711:10: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:56.5261424Z 711 | frame->channels = num_channels; 2023-08-09T11:46:56.5261951Z | ^~~~~~~~ 2023-08-09T11:46:56.5262759Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:46:56.5263277Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.5263814Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:56.5264304Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:46:56.5265183Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:46:56.5265791Z 662 | int channels; 2023-08-09T11:46:56.5266066Z | ^~~~~~~~ 2023-08-09T11:46:56.5266998Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:711:10: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:56.5267795Z 711 | frame->channels = num_channels; 2023-08-09T11:46:56.5268101Z | ^~~~~~~~ 2023-08-09T11:46:56.5269002Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:46:56.5269557Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.5270354Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:56.5271063Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:46:56.5271935Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:46:56.5272348Z 662 | int channels; 2023-08-09T11:46:56.5272771Z | ^~~~~~~~ 2023-08-09T11:46:56.5274688Z /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:46:56.5276267Z /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:46:56.5277088Z 769 | static_cast(av_get_default_channel_layout(src_num_channels)); 2023-08-09T11:46:56.5277708Z | ^ 2023-08-09T11:46:56.5278295Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:33, 2023-08-09T11:46:56.5279148Z from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:46:56.5279840Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.5280475Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:56.5281111Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:46:56.5282147Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/channel_layout.h:482:9: note: declared here 2023-08-09T11:46:56.5282682Z 482 | int64_t av_get_default_channel_layout(int nb_channels); 2023-08-09T11:46:56.5283521Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:46:56.5284286Z /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:46:56.5284904Z 769 | static_cast(av_get_default_channel_layout(src_num_channels)); 2023-08-09T11:46:56.5285314Z | ^ 2023-08-09T11:46:56.5285894Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:33, 2023-08-09T11:46:56.5286607Z from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:46:56.5287077Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:56.5287494Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:56.5287914Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:46:56.5288542Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/channel_layout.h:482:9: note: declared here 2023-08-09T11:46:56.5288999Z 482 | int64_t av_get_default_channel_layout(int nb_channels); 2023-08-09T11:46:56.5289313Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:46:56.5289693Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp: In lambda function: 2023-08-09T11:46:56.5290437Z /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:46:57.4359457Z 789 | return static_cast(av_get_default_channel_layout(2)); 2023-08-09T11:46:57.4359930Z | ^ 2023-08-09T11:46:57.4360769Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:33, 2023-08-09T11:46:57.4361464Z from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:46:57.4361925Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:57.4362314Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:57.4362783Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:46:57.4363830Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/channel_layout.h:482:9: note: declared here 2023-08-09T11:46:57.4364377Z 482 | int64_t av_get_default_channel_layout(int nb_channels); 2023-08-09T11:46:57.4364732Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:46:57.4365510Z /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:46:57.4366087Z 789 | return static_cast(av_get_default_channel_layout(2)); 2023-08-09T11:46:57.4366466Z | ^ 2023-08-09T11:46:57.4367050Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:33, 2023-08-09T11:46:57.4367695Z from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:46:57.4368160Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:57.4368813Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-08-09T11:46:57.4369281Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-08-09T11:46:57.4369954Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/channel_layout.h:482:9: note: declared here 2023-08-09T11:46:57.4370466Z 482 | int64_t av_get_default_channel_layout(int nb_channels); 2023-08-09T11:46:57.4370829Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:46:57.4373202Z [74/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-39/_deps/f6-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:57.4377035Z [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-39/_deps/f6-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:57.4378838Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/util/Exception.h:4, 2023-08-09T11:46:57.4379583Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Generator.h:11, 2023-08-09T11:46:57.4380242Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/CPUGeneratorImpl.h:3, 2023-08-09T11:46:57.4380902Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Context.h:3, 2023-08-09T11:46:57.4381503Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/ATen.h:7, 2023-08-09T11:46:57.4382205Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/types.h:3, 2023-08-09T11:46:57.4382761Z from /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.h:3, 2023-08-09T11:46:57.4383256Z from /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp:1: 2023-08-09T11:46:57.4384783Z /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:46:57.4386155Z /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:46:57.4387042Z 69 | format_ctx->nb_streams == num_output_streams(), 2023-08-09T11:46:57.4387432Z | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:46:57.4389235Z /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:46:57.4390673Z /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:46:57.4391385Z 105 | format_ctx->nb_streams == num_output_streams(), 2023-08-09T11:46:57.4391809Z | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:46:57.4393349Z /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:46:57.4394671Z /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:46:57.4395392Z 149 | format_ctx->nb_streams == num_output_streams(), 2023-08-09T11:46:57.4395766Z | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:46:57.4397509Z /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:46:57.4398964Z /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:46:57.4399688Z 186 | format_ctx->nb_streams == num_output_streams(), 2023-08-09T11:46:57.4400033Z | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:46:57.4400895Z /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:46:57.4401944Z /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:46:58.3850259Z 223 | format_ctx->nb_streams == num_output_streams(), 2023-08-09T11:46:58.3850693Z | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ 2023-08-09T11:46:58.3853212Z [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-39/_deps/f6-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:46:58.3855560Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/util/Exception.h:4, 2023-08-09T11:46:58.3856223Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Generator.h:11, 2023-08-09T11:46:58.3856845Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/CPUGeneratorImpl.h:3, 2023-08-09T11:46:58.3857498Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Context.h:3, 2023-08-09T11:46:58.3858074Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/ATen.h:7, 2023-08-09T11:46:58.3858725Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/types.h:3, 2023-08-09T11:46:58.3859297Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:3, 2023-08-09T11:46:58.3859835Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-08-09T11:46:58.3860804Z /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:46:58.3861698Z /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:33:28: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:58.3862260Z 33 | t.size(1) == buffer->channels, 2023-08-09T11:46:58.3862732Z | ^~~~~~~~ 2023-08-09T11:46:58.3863272Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:46:58.3863729Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:58.3864141Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:4, 2023-08-09T11:46:58.3864603Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-08-09T11:46:58.3865198Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:46:58.3865589Z 662 | int channels; 2023-08-09T11:46:58.3865848Z | ^~~~~~~~ 2023-08-09T11:46:58.3866364Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/util/Exception.h:4, 2023-08-09T11:46:58.3866987Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Generator.h:11, 2023-08-09T11:46:58.3867606Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/CPUGeneratorImpl.h:3, 2023-08-09T11:46:58.3868192Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Context.h:3, 2023-08-09T11:46:58.3868741Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/ATen.h:7, 2023-08-09T11:46:58.3869510Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/types.h:3, 2023-08-09T11:46:58.3869983Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:3, 2023-08-09T11:46:58.3870431Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-08-09T11:46:58.3871318Z /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:33:28: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:58.3871881Z 33 | t.size(1) == buffer->channels, 2023-08-09T11:46:58.3872177Z | ^~~~~~~~ 2023-08-09T11:46:58.3872714Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:46:58.3873171Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:58.3873590Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:4, 2023-08-09T11:46:58.3874041Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-08-09T11:46:58.3874628Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:46:58.3875014Z 662 | int channels; 2023-08-09T11:46:58.3875284Z | ^~~~~~~~ 2023-08-09T11:46:58.3875782Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/util/Exception.h:4, 2023-08-09T11:46:58.3876407Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Generator.h:11, 2023-08-09T11:46:58.3877012Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/CPUGeneratorImpl.h:3, 2023-08-09T11:46:58.3877600Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Context.h:3, 2023-08-09T11:46:58.3878136Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/ATen.h:7, 2023-08-09T11:46:58.3878738Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/types.h:3, 2023-08-09T11:46:58.3879220Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:3, 2023-08-09T11:46:58.3879670Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-08-09T11:46:58.3880576Z /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:33:28: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:58.3881118Z 33 | t.size(1) == buffer->channels, 2023-08-09T11:46:58.3881407Z | ^~~~~~~~ 2023-08-09T11:46:58.3881924Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:46:58.3882369Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:58.3882780Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:4, 2023-08-09T11:46:58.3883225Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-08-09T11:46:58.3884214Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:46:58.3884604Z 662 | int channels; 2023-08-09T11:46:58.3884858Z | ^~~~~~~~ 2023-08-09T11:46:58.3885369Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Generator.h:11, 2023-08-09T11:46:58.3886011Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/CPUGeneratorImpl.h:3, 2023-08-09T11:46:58.3886596Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Context.h:3, 2023-08-09T11:46:58.3887145Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/ATen.h:7, 2023-08-09T11:46:58.3887733Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/types.h:3, 2023-08-09T11:46:58.3888210Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:3, 2023-08-09T11:46:58.3888647Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-08-09T11:46:58.3889728Z /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:35:15: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:46:58.3890251Z 35 | buffer->channels, 2023-08-09T11:46:58.3890526Z | ^~~~~~~~ 2023-08-09T11:46:58.3891050Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:46:58.3891488Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:46:58.3891899Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:4, 2023-08-09T11:46:58.3892349Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-08-09T11:46:58.3892943Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:46:58.3893324Z 662 | int channels; 2023-08-09T11:46:58.3893591Z | ^~~~~~~~ 2023-08-09T11:46:58.3894099Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Generator.h:11, 2023-08-09T11:46:58.3894725Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/CPUGeneratorImpl.h:3, 2023-08-09T11:46:58.3895300Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Context.h:3, 2023-08-09T11:46:58.3895847Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/ATen.h:7, 2023-08-09T11:46:58.3896429Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/types.h:3, 2023-08-09T11:46:58.3896892Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:3, 2023-08-09T11:46:58.3897336Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-08-09T11:47:01.1544683Z /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:35:15: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:47:01.1545359Z 35 | buffer->channels, 2023-08-09T11:47:01.1546048Z | ^~~~~~~~ 2023-08-09T11:47:01.1546668Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:47:01.1547198Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:47:01.1547678Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:4, 2023-08-09T11:47:01.1548178Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-08-09T11:47:01.1549101Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:47:01.1549555Z 662 | int channels; 2023-08-09T11:47:01.1549881Z | ^~~~~~~~ 2023-08-09T11:47:01.1550425Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Generator.h:11, 2023-08-09T11:47:01.1551188Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/CPUGeneratorImpl.h:3, 2023-08-09T11:47:01.1551815Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Context.h:3, 2023-08-09T11:47:01.1552447Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/ATen.h:7, 2023-08-09T11:47:01.1553104Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/types.h:3, 2023-08-09T11:47:01.1553629Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:3, 2023-08-09T11:47:01.1554114Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-08-09T11:47:01.1554980Z /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:35:15: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:47:01.1555775Z 35 | buffer->channels, 2023-08-09T11:47:01.1556078Z | ^~~~~~~~ 2023-08-09T11:47:01.1556674Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:47:01.1557203Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:47:01.1557675Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:4, 2023-08-09T11:47:01.1558186Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-08-09T11:47:01.1558853Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:47:01.1559258Z 662 | int channels; 2023-08-09T11:47:01.1559536Z | ^~~~~~~~ 2023-08-09T11:47:01.1560115Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Generator.h:11, 2023-08-09T11:47:01.1560849Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/CPUGeneratorImpl.h:3, 2023-08-09T11:47:01.1561503Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Context.h:3, 2023-08-09T11:47:01.1562124Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/ATen.h:7, 2023-08-09T11:47:01.1562799Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/types.h:3, 2023-08-09T11:47:01.1563653Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:3, 2023-08-09T11:47:01.1564162Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-08-09T11:47:01.1565052Z /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp: In function ‘void torchaudio::io::{anonymous}::convert_func_(const at::Tensor&, AVFrame*)’: 2023-08-09T11:47:01.1566019Z /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:43:61: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:47:01.1566959Z 43 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(chunk.size(1) == buffer->channels); 2023-08-09T11:47:01.1567396Z | ^~~~~~~~ 2023-08-09T11:47:01.1568000Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:47:01.1568503Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:47:01.1568944Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:4, 2023-08-09T11:47:01.1569423Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-08-09T11:47:01.1570137Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:47:01.1570558Z 662 | int channels; 2023-08-09T11:47:01.1570852Z | ^~~~~~~~ 2023-08-09T11:47:01.1571434Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Generator.h:11, 2023-08-09T11:47:01.1572146Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/CPUGeneratorImpl.h:3, 2023-08-09T11:47:01.1572770Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Context.h:3, 2023-08-09T11:47:01.1573377Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/ATen.h:7, 2023-08-09T11:47:01.1574055Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/types.h:3, 2023-08-09T11:47:01.1574577Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:3, 2023-08-09T11:47:01.1575066Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-08-09T11:47:01.1575920Z /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:43:61: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:47:01.1576820Z 43 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(chunk.size(1) == buffer->channels); 2023-08-09T11:47:01.1577231Z | ^~~~~~~~ 2023-08-09T11:47:01.1577861Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:47:01.1578385Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:47:01.1578845Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:4, 2023-08-09T11:47:01.1579327Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-08-09T11:47:01.1580022Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:47:01.1580458Z 662 | int channels; 2023-08-09T11:47:01.1580756Z | ^~~~~~~~ 2023-08-09T11:47:01.1581335Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Generator.h:11, 2023-08-09T11:47:01.1582025Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/CPUGeneratorImpl.h:3, 2023-08-09T11:47:01.1582665Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Context.h:3, 2023-08-09T11:47:01.1583263Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/ATen.h:7, 2023-08-09T11:47:01.1583925Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/types.h:3, 2023-08-09T11:47:01.1584450Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:3, 2023-08-09T11:47:01.1584927Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-08-09T11:47:01.1585808Z /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:43:61: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:47:01.1586603Z 43 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(chunk.size(1) == buffer->channels); 2023-08-09T11:47:01.1587032Z | ^~~~~~~~ 2023-08-09T11:47:01.1587655Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:47:01.1588166Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:47:01.1588637Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:4, 2023-08-09T11:47:01.1589389Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-08-09T11:47:01.1590107Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:47:01.1590553Z 662 | int channels; 2023-08-09T11:47:01.1590843Z | ^~~~~~~~ 2023-08-09T11:47:01.1592641Z [77/94] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_CUDA -Dpybind11_prefixctc_EXPORTS -I/work -I/work/ci_env/include/python3.9 -I/work/ci_env/lib/python3.9/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:47:01.1595700Z [78/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-39/_deps/f6-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:47:02.1409546Z [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-39/_deps/f6-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:47:02.1412427Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:47:02.1413377Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:47:02.1416845Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:47:02.1417474Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:47:02.1418137Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:47:02.1419178Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:47:02.1419883Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:47:02.1420563Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:47:02.1421255Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:47:02.1421938Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:47:02.1422622Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:47:02.1423138Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:47:02.1424131Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp: In member function ‘void torchaudio::io::AudioConverter::convert(const AVFrame*, at::Tensor&)’: 2023-08-09T11:47:02.1425082Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:47:02.1425768Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:47:02.1426165Z | ^~~~~~~~ 2023-08-09T11:47:02.1426754Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:47:02.1427247Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:47:02.1427696Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:47:02.1428352Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:47:02.1429151Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:47:02.1429578Z 662 | int channels; 2023-08-09T11:47:02.1429855Z | ^~~~~~~~ 2023-08-09T11:47:02.1430394Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:47:02.1431053Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:47:02.1431687Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:47:02.1432293Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:47:02.1432961Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:47:02.1433647Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:47:02.1434336Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:47:02.1435012Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:47:02.1435702Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:47:02.1436397Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:47:02.1437097Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:47:02.1437625Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:47:02.1438466Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:47:02.1439250Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:47:02.1439658Z | ^~~~~~~~ 2023-08-09T11:47:02.1440252Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:47:02.1440738Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:47:02.1441196Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:47:02.1441672Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:47:02.1442321Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:47:02.1442731Z 662 | int channels; 2023-08-09T11:47:02.1443022Z | ^~~~~~~~ 2023-08-09T11:47:02.1443862Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:47:02.1444535Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:47:02.1445229Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:47:02.1445847Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:47:02.1446508Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:47:02.1447183Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:47:02.1447861Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:47:02.1448703Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:47:02.1449403Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:47:02.1450092Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:47:02.1450841Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:47:02.1451372Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:47:02.1452206Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:47:02.1452880Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:47:02.1453260Z | ^~~~~~~~ 2023-08-09T11:47:02.1453824Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:47:02.1454268Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:47:02.1454642Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:47:02.1455060Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:47:02.1455636Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:47:02.1455996Z 662 | int channels; 2023-08-09T11:47:02.1456261Z | ^~~~~~~~ 2023-08-09T11:47:02.1456805Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:47:02.1457465Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:47:02.1458106Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:47:02.1458885Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:47:02.1459557Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:47:02.1460225Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:47:02.1460943Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:47:02.1530995Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:47:02.1531797Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:47:02.1532596Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:47:02.1533394Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:47:02.1533958Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:47:02.1535166Z /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:47:02.1535996Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:75:16: required from here 2023-08-09T11:47:02.1536914Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:47:02.1538040Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:47:02.1538485Z | ~~~~~^~~~~~~~ 2023-08-09T11:47:02.1539117Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:47:02.1539636Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:47:02.1540086Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:47:02.1540584Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:47:02.1541332Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:47:02.1541776Z 662 | int channels; 2023-08-09T11:47:02.1542054Z | ^~~~~~~~ 2023-08-09T11:47:02.1542603Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:47:02.1543304Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:47:02.1544002Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:47:02.1544630Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:47:02.1545326Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:47:02.1546035Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:47:02.1546735Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:47:02.1547436Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:47:02.1548139Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:47:02.1549229Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:47:02.1549978Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:47:02.1550521Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:47:02.1551402Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:47:02.1552096Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:47:02.1552509Z | ~~~~~^~~~~~~~ 2023-08-09T11:47:02.1553147Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:47:02.1553676Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:47:02.1554147Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:47:02.1554638Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:47:02.1555311Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:47:02.1555752Z 662 | int channels; 2023-08-09T11:47:02.1556038Z | ^~~~~~~~ 2023-08-09T11:47:02.1556607Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:47:02.1557312Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:47:02.1558001Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:47:02.1558798Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:47:02.1559483Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:47:02.1560223Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:47:02.1560969Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:47:02.1561664Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:47:02.1562393Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:47:02.1563102Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:47:02.1564170Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:47:02.1564753Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:47:02.1565655Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:47:02.1566371Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:47:02.1566793Z | ~~~~~^~~~~~~~ 2023-08-09T11:47:02.1567420Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:47:02.1567925Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:47:02.1568380Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:47:02.1568887Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:47:02.1569811Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:47:02.1570279Z 662 | int channels; 2023-08-09T11:47:02.1570588Z | ^~~~~~~~ 2023-08-09T11:47:02.1571120Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:47:02.1571819Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:47:02.1572508Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:47:02.1573146Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:47:02.1573834Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:47:02.1574560Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:47:02.1575284Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:47:02.1575971Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:47:02.1576685Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:47:02.1577381Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:47:02.1578101Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:47:02.1578627Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:47:02.1580005Z /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:47:02.1580815Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:76:16: required from here 2023-08-09T11:47:02.1581729Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:47:02.1582431Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:47:02.1582843Z | ~~~~~^~~~~~~~ 2023-08-09T11:47:02.1583471Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:47:02.1583990Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:47:02.1664143Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:47:02.1664622Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:47:02.1665372Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:47:02.1666117Z 662 | int channels; 2023-08-09T11:47:02.1666395Z | ^~~~~~~~ 2023-08-09T11:47:02.1666936Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:47:02.1667612Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:47:02.1668265Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:47:02.1668870Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:47:02.1669413Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:47:02.1670267Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:47:02.1670893Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:47:02.1671527Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:47:02.1672174Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:47:02.1672821Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:47:02.1673460Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:47:02.1673894Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:47:02.1674770Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:47:02.1675400Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:47:02.1675769Z | ~~~~~^~~~~~~~ 2023-08-09T11:47:02.1676323Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:47:02.1676776Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:47:02.1677189Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:47:02.1677630Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:47:02.1678211Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:47:02.1678810Z 662 | int channels; 2023-08-09T11:47:02.1679052Z | ^~~~~~~~ 2023-08-09T11:47:02.1679422Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:47:02.1679878Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:47:02.1680310Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:47:02.1680754Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:47:02.1681200Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:47:02.1681656Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:47:02.1682123Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:47:02.1682582Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:47:02.1683053Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:47:02.1683856Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:47:02.1684334Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:47:02.1684709Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:47:02.1685391Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:47:02.1685857Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:47:02.1686359Z | ~~~~~^~~~~~~~ 2023-08-09T11:47:02.1686789Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:47:02.1687181Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:47:02.1687554Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:47:02.1687886Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:47:02.1688335Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:47:02.1688626Z 662 | int channels; 2023-08-09T11:47:02.1688836Z | ^~~~~~~~ 2023-08-09T11:47:02.1689324Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:47:02.1689782Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:47:02.1690247Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:47:02.1690790Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:47:02.1691279Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:47:02.1691736Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:47:02.1692191Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:47:02.1692773Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:47:02.1693360Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:47:02.1693931Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:47:02.1694410Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:47:02.1694770Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:47:02.1695519Z /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:47:02.1696170Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:77:16: required from here 2023-08-09T11:47:02.1696742Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:47:02.1697242Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:47:02.1697605Z | ~~~~~^~~~~~~~ 2023-08-09T11:47:02.1698027Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:47:02.1698418Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:47:02.1698810Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:47:02.1699150Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:47:02.1699594Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:47:02.1699892Z 662 | int channels; 2023-08-09T11:47:02.1700107Z | ^~~~~~~~ 2023-08-09T11:47:02.1700558Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:47:02.1701139Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:47:02.1701584Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:47:02.1702019Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:47:02.1702586Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:47:02.1703059Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:47:02.1703633Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:47:02.1704101Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:47:02.1704579Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:47:02.1705056Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:47:02.1795041Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:47:02.1795625Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:47:02.1796534Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:47:02.1797161Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:47:02.1797550Z | ~~~~~^~~~~~~~ 2023-08-09T11:47:02.1798573Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:47:02.1799067Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:47:02.1799499Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:47:02.1799931Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:47:02.1800576Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:47:02.1801007Z 662 | int channels; 2023-08-09T11:47:02.1801287Z | ^~~~~~~~ 2023-08-09T11:47:02.1801798Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:47:02.1802483Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:47:02.1803121Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:47:02.1804065Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:47:02.1804696Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:47:02.1805411Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:47:02.1806176Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:47:02.1811090Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:47:02.1811934Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:47:02.1812667Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:47:02.1813660Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:47:02.1814216Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:47:02.1815117Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:47:02.1815814Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:47:02.1816218Z | ~~~~~^~~~~~~~ 2023-08-09T11:47:02.1816836Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:47:02.1817356Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:47:02.1817848Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:47:02.1818354Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:47:02.1819051Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:47:02.1819488Z 662 | int channels; 2023-08-09T11:47:02.1819769Z | ^~~~~~~~ 2023-08-09T11:47:02.1820358Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:47:02.1821084Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:47:02.1821770Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:47:02.1822407Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:47:02.1823306Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:47:02.1823960Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:47:02.1824629Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:47:02.1825311Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:47:02.1825998Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:47:02.1826651Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:47:02.1827300Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:47:02.1827806Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:47:02.1829099Z /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:47:02.1829884Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:78:16: required from here 2023-08-09T11:47:02.1830749Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:47:02.1831448Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:47:02.1831849Z | ~~~~~^~~~~~~~ 2023-08-09T11:47:02.1832460Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:47:02.1832997Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:47:02.1833579Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:47:02.1834064Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:47:02.1834715Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:47:02.1835138Z 662 | int channels; 2023-08-09T11:47:02.1835426Z | ^~~~~~~~ 2023-08-09T11:47:02.1835981Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:47:02.1836643Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:47:02.1837275Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:47:02.1837913Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:47:02.1838583Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:47:02.1839282Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:47:02.1839952Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:47:02.1840617Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:47:02.1841364Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:47:02.1842080Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:47:02.1842993Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:47:02.1843744Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:47:02.1844614Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:47:02.1845318Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:47:02.1845713Z | ~~~~~^~~~~~~~ 2023-08-09T11:47:02.1846309Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:47:02.1846814Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:47:02.1847262Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:47:02.1847741Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:47:02.1848413Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:47:02.1848813Z 662 | int channels; 2023-08-09T11:47:02.1849086Z | ^~~~~~~~ 2023-08-09T11:47:02.1849604Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:47:02.1850316Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:47:02.1851005Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:47:02.1851623Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:47:02.1943118Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:47:02.1945969Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:47:02.1947129Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:47:02.1947936Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:47:02.1948682Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:47:02.1949542Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:47:02.1950264Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:47:02.1950811Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:47:02.1951727Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:47:02.1952473Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:47:02.1952883Z | ~~~~~^~~~~~~~ 2023-08-09T11:47:02.1953497Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:47:02.1954020Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:47:02.1954468Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:47:02.1954935Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:47:02.1955633Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:47:02.1956073Z 662 | int channels; 2023-08-09T11:47:02.1956594Z | ^~~~~~~~ 2023-08-09T11:47:02.1957116Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:47:02.1957744Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:47:02.1958376Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:47:02.1958981Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:47:02.1959605Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:47:02.1960281Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:47:02.1960917Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:47:02.1961607Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:47:02.1962272Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:47:02.1962958Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:47:02.1964003Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:47:02.1964528Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:47:02.1965674Z /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:47:02.1966481Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:79:16: required from here 2023-08-09T11:47:02.1967507Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:47:02.1968192Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:47:02.1968579Z | ~~~~~^~~~~~~~ 2023-08-09T11:47:02.1969154Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:47:02.1969670Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:47:02.1970086Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:47:02.1970557Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:47:02.1971257Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:47:02.1971707Z 662 | int channels; 2023-08-09T11:47:02.1971975Z | ^~~~~~~~ 2023-08-09T11:47:02.1972537Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:47:02.1973222Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:47:02.1973883Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:47:02.1974512Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:47:02.1975197Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:47:02.1975866Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:47:02.1976735Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:47:02.1977410Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:47:02.1978150Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:47:02.1978884Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:47:02.1979621Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:47:02.1980186Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:47:02.1981111Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:47:02.1981804Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:47:02.1982199Z | ~~~~~^~~~~~~~ 2023-08-09T11:47:02.1982760Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:47:02.1983267Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:47:02.1983717Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:47:02.1984190Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:47:02.1984860Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:47:02.1985299Z 662 | int channels; 2023-08-09T11:47:02.1985584Z | ^~~~~~~~ 2023-08-09T11:47:02.1986110Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:47:02.1986764Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:47:02.1987544Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:47:02.1988175Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:47:02.1988946Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:47:02.1989642Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:47:02.1990313Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:47:02.1990981Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:47:02.1991674Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:47:02.1992348Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:47:02.1993025Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:47:02.1993538Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:47:02.1994372Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:47:02.1995077Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:47:02.1995508Z | ~~~~~^~~~~~~~ 2023-08-09T11:47:02.1996153Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:47:02.1996907Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:47:02.2067235Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:47:02.2067848Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:47:02.2068689Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:47:02.2069260Z 662 | int channels; 2023-08-09T11:47:02.2069541Z | ^~~~~~~~ 2023-08-09T11:47:02.2070132Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:47:02.2070871Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:47:02.2071540Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:47:02.2072217Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:47:02.2072923Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:47:02.2073607Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:47:02.2074319Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:47:02.2075015Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:47:02.2075706Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:47:02.2076424Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:47:02.2077149Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:47:02.2078077Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:47:02.2079304Z /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:47:02.2080113Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:80:16: required from here 2023-08-09T11:47:02.2081010Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:47:02.2081747Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:47:02.2082158Z | ~~~~~^~~~~~~~ 2023-08-09T11:47:02.2082770Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:47:02.2083572Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:47:02.2083983Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:47:02.2084437Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:47:02.2085100Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:47:02.2085519Z 662 | int channels; 2023-08-09T11:47:02.2085795Z | ^~~~~~~~ 2023-08-09T11:47:02.2086341Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:47:02.2087014Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:47:02.2087913Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:47:02.2088567Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:47:02.2089232Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:47:02.2089953Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:47:02.2090639Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:47:02.2091318Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:47:02.2092038Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:47:02.2092772Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:47:02.2093515Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:47:02.2094018Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:47:02.2094889Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:47:02.2095602Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:47:02.2096001Z | ~~~~~^~~~~~~~ 2023-08-09T11:47:02.2096616Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:47:02.2097128Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:47:02.2097591Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:47:02.2098261Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:47:02.2098951Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:47:02.2099370Z 662 | int channels; 2023-08-09T11:47:02.2099670Z | ^~~~~~~~ 2023-08-09T11:47:02.2100250Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:47:02.2100964Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:47:02.2101605Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:47:02.2102263Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:47:02.2102934Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:47:02.2103668Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:47:02.2104377Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:47:02.2105055Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:47:02.2105785Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:47:02.2106495Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:47:02.2107205Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:47:02.2107883Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:47:02.2108920Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:47:02.2109640Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:47:02.2110050Z | ~~~~~^~~~~~~~ 2023-08-09T11:47:02.2110635Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:47:02.2111143Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:47:02.2111594Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:47:02.2112068Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:47:02.2112730Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:47:02.2113190Z 662 | int channels; 2023-08-09T11:47:02.2113474Z | ^~~~~~~~ 2023-08-09T11:47:02.2114022Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:47:02.2114710Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:47:02.2115374Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:47:02.2115996Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:47:02.2116674Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:47:02.2117354Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:47:02.2118017Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:47:02.2118816Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:47:02.2119480Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:47:02.2120155Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:47:02.2186114Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:47:02.2196964Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:47:02.2198381Z /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:47:02.2199344Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:81:16: required from here 2023-08-09T11:47:02.2199934Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:47:02.2200398Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:47:02.2200681Z | ~~~~~^~~~~~~~ 2023-08-09T11:47:02.2201084Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:47:02.2201439Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:47:02.2201754Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:47:02.2202074Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:47:02.2202867Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:47:02.2203161Z 662 | int channels; 2023-08-09T11:47:02.2203606Z | ^~~~~~~~ 2023-08-09T11:47:02.2203974Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:47:02.2204425Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:47:02.2204853Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:47:02.2205253Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:47:02.2205698Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:47:02.2206161Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:47:02.2206620Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:47:02.2207058Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:47:02.2207521Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:47:02.2207983Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:47:02.2208445Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:47:02.2208792Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:47:02.2209336Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:47:02.2209962Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:47:02.2210244Z | ~~~~~^~~~~~~~ 2023-08-09T11:47:02.2210642Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:47:02.2211036Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:47:02.2211342Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:47:02.2211667Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:47:02.2212180Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:47:02.2212512Z 662 | int channels; 2023-08-09T11:47:02.2212719Z | ^~~~~~~~ 2023-08-09T11:47:02.2213078Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:47:02.2213528Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:47:02.2213956Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:47:02.2214369Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:47:02.2214806Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:47:02.2215262Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:47:02.2215714Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:47:02.2216249Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:47:02.2216714Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:47:02.2217181Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:47:02.2217641Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:47:02.2217991Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:47:02.2218544Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:47:02.2219000Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:47:02.2219277Z | ~~~~~^~~~~~~~ 2023-08-09T11:47:02.2219678Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:47:02.2220029Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:47:02.2220340Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:47:02.2220664Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:47:02.2221144Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:47:02.2221432Z 662 | int channels; 2023-08-09T11:47:02.2221630Z | ^~~~~~~~ 2023-08-09T11:47:02.2221980Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:47:02.2222421Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:47:02.2222855Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:47:02.2223327Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:47:02.2223765Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:47:02.2224215Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:47:02.2224668Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:47:02.2225108Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:47:02.2225569Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:47:02.2226036Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:47:02.2226499Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:47:02.2226847Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:47:02.2227560Z /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:47:02.2228077Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:82:16: required from here 2023-08-09T11:47:02.2228625Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:47:02.2229224Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:47:02.2229558Z | ~~~~~^~~~~~~~ 2023-08-09T11:47:02.2229976Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:47:02.2230325Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:47:02.2230626Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:47:02.2230951Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:47:02.2231389Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:47:02.2231678Z 662 | int channels; 2023-08-09T11:47:02.2231865Z | ^~~~~~~~ 2023-08-09T11:47:02.2318344Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:47:02.2319220Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:47:02.2320045Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:47:02.2320833Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:47:02.2321599Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:47:02.2322343Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:47:02.2322809Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:47:02.2323255Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:47:02.2323951Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:47:02.2325120Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:47:02.2325742Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:47:02.2326280Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:47:02.2326930Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:47:02.2327396Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:47:02.2327701Z | ~~~~~^~~~~~~~ 2023-08-09T11:47:02.2328353Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:47:02.2328714Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:47:02.2329028Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:47:02.2329355Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:47:02.2330076Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:47:02.2330373Z 662 | int channels; 2023-08-09T11:47:02.2330570Z | ^~~~~~~~ 2023-08-09T11:47:02.2331186Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:47:02.2331643Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:47:02.2332068Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:47:02.2332768Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:47:02.2333217Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:47:02.2333676Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:47:02.2334264Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:47:02.2334708Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:47:02.2335163Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:47:02.2335663Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:47:02.2336252Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:47:02.2336612Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:47:02.2337305Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:47:02.2337766Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:47:02.2338043Z | ~~~~~^~~~~~~~ 2023-08-09T11:47:02.2338482Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:47:02.2338917Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:47:02.2339227Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:47:02.2339555Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:47:02.2340264Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:47:02.2340603Z 662 | int channels; 2023-08-09T11:47:02.2340804Z | ^~~~~~~~ 2023-08-09T11:47:02.2341162Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:47:02.2341642Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:47:02.2342190Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:47:02.2342602Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:47:02.2343122Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:47:02.2343669Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:47:02.2344124Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:47:02.2344561Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:47:02.2345087Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:47:02.2345634Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:47:02.2346123Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:47:02.2346565Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:47:02.2347317Z /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:47:02.2348037Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:83:16: required from here 2023-08-09T11:47:02.2348635Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:47:02.2349232Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:47:02.2349573Z | ~~~~~^~~~~~~~ 2023-08-09T11:47:02.2350087Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:47:02.2350464Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:47:02.2350782Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:47:02.2351196Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:47:02.2351721Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:47:02.2352012Z 662 | int channels; 2023-08-09T11:47:02.2352197Z | ^~~~~~~~ 2023-08-09T11:47:02.2352672Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:47:02.2353161Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:47:02.2353572Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:47:02.2354069Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:47:02.2354588Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:47:02.2355135Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:47:02.2355583Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:47:02.2356196Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:47:02.2356661Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:47:02.2357258Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:47:02.2357711Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:47:02.2358069Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:47:02.2358697Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:47:02.2449492Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:47:02.2449954Z | ~~~~~^~~~~~~~ 2023-08-09T11:47:02.2451019Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:47:02.2451534Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:47:02.2451965Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:47:02.2452414Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:47:02.2453080Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:47:02.2453775Z 662 | int channels; 2023-08-09T11:47:02.2453969Z | ^~~~~~~~ 2023-08-09T11:47:02.2454362Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:47:02.2454964Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:47:02.2455399Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:47:02.2455802Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:47:02.2456389Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:47:02.2456871Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:47:02.2457334Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:47:02.2457969Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:47:02.2458457Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:47:02.2458939Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:47:02.2459616Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:47:02.2460047Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:47:02.2460758Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:47:02.2461443Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:47:02.2461725Z | ~~~~~^~~~~~~~ 2023-08-09T11:47:02.2462285Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:47:02.2462743Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:47:02.2463151Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:47:02.2463507Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:47:02.2464025Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:47:02.2464418Z 662 | int channels; 2023-08-09T11:47:02.2464628Z | ^~~~~~~~ 2023-08-09T11:47:02.2464988Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:47:02.2465433Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:47:02.2465895Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:47:02.2466429Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:47:02.2466881Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:47:02.2467508Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:47:02.2468033Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:47:02.2468543Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:47:02.2469420Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:47:02.2469897Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:47:02.2487828Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:47:02.2488333Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:47:02.2489357Z /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:47:02.2489940Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:84:16: required from here 2023-08-09T11:47:02.2490521Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:47:02.2491082Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:47:02.2491460Z | ~~~~~^~~~~~~~ 2023-08-09T11:47:02.2491935Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:47:02.2492312Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:47:02.2492719Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:47:02.2493096Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:47:02.2493551Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:47:02.2493847Z 662 | int channels; 2023-08-09T11:47:02.2494051Z | ^~~~~~~~ 2023-08-09T11:47:02.2494419Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:47:02.2495280Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:47:02.2495889Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:47:02.2496388Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:47:02.2496839Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:47:02.2497426Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:47:02.2497968Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:47:02.2498422Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:47:02.2499076Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:47:02.2499593Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:47:02.2500164Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:47:02.2500633Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:47:02.2501216Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:47:02.2501836Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:47:02.2502189Z | ~~~~~^~~~~~~~ 2023-08-09T11:47:02.2502777Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:47:02.2503243Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:47:02.2503641Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:47:02.2503971Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:47:02.2504512Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:47:02.2504907Z 662 | int channels; 2023-08-09T11:47:02.2505136Z | ^~~~~~~~ 2023-08-09T11:47:02.2505502Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:47:02.2506107Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:47:02.2506629Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:47:02.2507100Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:47:02.2507722Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:47:02.2508216Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:47:02.2508912Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:47:02.2574787Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:47:02.2575484Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:47:02.2576053Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:47:02.2577045Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:47:02.2577540Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:47:02.2578389Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:47:02.2578853Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:47:02.2579135Z | ~~~~~^~~~~~~~ 2023-08-09T11:47:02.2579536Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:47:02.2579964Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:47:02.2580367Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:47:02.2580825Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:47:02.2581475Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:47:02.2581784Z 662 | int channels; 2023-08-09T11:47:02.2581977Z | ^~~~~~~~ 2023-08-09T11:47:02.2582330Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:47:02.2582839Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:47:02.2583430Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:47:02.2606255Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:47:02.2607319Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:47:02.2608003Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:47:02.2608641Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:47:02.2609309Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:47:02.2609962Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:47:02.2610653Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:47:02.2611337Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:47:02.2611832Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:47:02.2612977Z /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:47:02.2613764Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:85:16: required from here 2023-08-09T11:47:02.2614570Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:47:02.2615190Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:47:02.2615570Z | ~~~~~^~~~~~~~ 2023-08-09T11:47:02.2616168Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:47:02.2616545Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:47:02.2617003Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:47:02.2617395Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:47:02.2617900Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:47:02.2618267Z 662 | int channels; 2023-08-09T11:47:02.2618565Z | ^~~~~~~~ 2023-08-09T11:47:02.2619031Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:47:02.2619486Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:47:02.2620093Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:47:02.2620615Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:47:02.2621066Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:47:02.2621714Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:47:02.2622325Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:47:02.2622936Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:47:02.2623496Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:47:02.2624026Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:47:02.2624534Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:47:02.2625128Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:47:02.2625801Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:47:02.2626408Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:47:02.2626738Z | ~~~~~^~~~~~~~ 2023-08-09T11:47:02.2627203Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:47:02.2627578Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:47:02.2627978Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:47:02.2628371Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:47:02.2629033Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:47:02.2629336Z 662 | int channels; 2023-08-09T11:47:02.2629590Z | ^~~~~~~~ 2023-08-09T11:47:02.2630083Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:47:02.2630689Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:47:02.2631129Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:47:02.2631696Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:47:02.2632233Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:47:02.2632754Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:47:02.2633401Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:47:02.2634010Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:47:02.2634501Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:47:02.2635065Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:47:02.2635643Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:47:02.2636071Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:47:02.2636802Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:47:02.2637362Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:47:02.2637692Z | ~~~~~^~~~~~~~ 2023-08-09T11:47:02.2638225Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:47:02.2638581Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:47:02.2638931Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:47:02.2639256Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:47:02.2639833Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:47:02.2640149Z 662 | int channels; 2023-08-09T11:47:02.2640506Z | ^~~~~~~~ 2023-08-09T11:47:02.8011889Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:47:02.8012650Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:47:02.8013401Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:47:02.8014060Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:47:02.8014767Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:47:02.8015489Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:47:02.8016167Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:47:02.8016914Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:47:02.8017610Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:47:02.8018323Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:47:02.8019053Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:47:02.8019589Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:47:02.8020824Z /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:47:02.8021717Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:86:16: required from here 2023-08-09T11:47:02.8022997Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:47:02.8023722Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:47:02.8024127Z | ~~~~~^~~~~~~~ 2023-08-09T11:47:02.8024737Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:47:02.8025243Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:47:02.8025695Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:47:02.8026188Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:47:02.8026896Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:47:02.8027339Z 662 | int channels; 2023-08-09T11:47:02.8027633Z | ^~~~~~~~ 2023-08-09T11:47:02.8028223Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:47:02.8029028Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:47:02.8029687Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:47:02.8030331Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:47:02.8030993Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:47:02.8031685Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:47:02.8032354Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:47:02.8033250Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:47:02.8033934Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:47:02.8034627Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:47:02.8035324Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:47:02.8035848Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:47:02.8036723Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:47:02.8037410Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:47:02.8037852Z | ~~~~~^~~~~~~~ 2023-08-09T11:47:02.8038445Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:47:02.8038935Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:47:02.8039382Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:47:02.8039854Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:47:02.8040498Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:47:02.8040930Z 662 | int channels; 2023-08-09T11:47:02.8041261Z | ^~~~~~~~ 2023-08-09T11:47:02.8041816Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:47:02.8042486Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:47:02.8043247Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:47:02.8044272Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:47:02.8044945Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:47:02.8045647Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:47:02.8046350Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:47:02.8047067Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:47:02.8047802Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:47:02.8048542Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:47:02.8049279Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-08-09T11:47:02.8049799Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-08-09T11:47:02.8050687Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-08-09T11:47:02.8051435Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-08-09T11:47:02.8051848Z | ~~~~~^~~~~~~~ 2023-08-09T11:47:02.8052458Z In file included from /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-08-09T11:47:02.8053184Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-08-09T11:47:02.8053982Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-08-09T11:47:02.8054477Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-08-09T11:47:02.8055173Z /work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-08-09T11:47:02.8055585Z 662 | int channels; 2023-08-09T11:47:02.8055869Z | ^~~~~~~~ 2023-08-09T11:47:02.8062696Z [80/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.9/site-packages/torch/lib:/usr/local/cuda-11.8/lib64:/work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/lib: /work/ci_env/lib/python3.9/site-packages/torch/lib/libtorch.so -Wl,--no-as-needed,"/work/ci_env/lib/python3.9/site-packages/torch/lib/libtorch_cpu.so" -Wl,--as-needed -Wl,--no-as-needed,"/work/ci_env/lib/python3.9/site-packages/torch/lib/libtorch_cuda.so" -Wl,--as-needed /work/ci_env/lib/python3.9/site-packages/torch/lib/libc10_cuda.so /work/ci_env/lib/python3.9/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.9/site-packages/torch/lib/libc10_cuda.so /usr/local/cuda-11.8/lib64/libcudart.so && : 2023-08-09T11:47:05.1912945Z [81/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.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:47:05.1915710Z /work/torchaudio/csrc/iir_cuda.cu: In lambda function: 2023-08-09T11:47:05.1917090Z /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:47:05.1918006Z 67 | AT_DISPATCH_FLOATING_TYPES( 2023-08-09T11:47:05.1918396Z | ^ 2023-08-09T11:47:05.1919000Z /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:256:1: note: declared here 2023-08-09T11:47:05.1919596Z 256 | GenericPackedTensorAccessor packed_accessor() const & { 2023-08-09T11:47:05.1919997Z | ^ ~~~~~~~~~~~~~ 2023-08-09T11:47:05.1921219Z /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:47:05.1922061Z 67 | AT_DISPATCH_FLOATING_TYPES( 2023-08-09T11:47:05.1922690Z | ^ 2023-08-09T11:47:05.1923253Z /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:256:1: note: declared here 2023-08-09T11:47:05.1924164Z 256 | GenericPackedTensorAccessor packed_accessor() const & { 2023-08-09T11:47:05.1924561Z | ^ ~~~~~~~~~~~~~ 2023-08-09T11:47:05.1925749Z /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:47:05.1926382Z 67 | AT_DISPATCH_FLOATING_TYPES( 2023-08-09T11:47:05.1926700Z | ^ 2023-08-09T11:47:05.1927214Z /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:256:1: note: declared here 2023-08-09T11:47:05.1927605Z 256 | GenericPackedTensorAccessor packed_accessor() const & { 2023-08-09T11:47:05.1927885Z | ^ ~~~~~~~~~~~~~ 2023-08-09T11:47:05.1928122Z /work/torchaudio/csrc/iir_cuda.cu: In lambda function: 2023-08-09T11:47:05.1928992Z /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:47:05.1929717Z 67 | AT_DISPATCH_FLOATING_TYPES( 2023-08-09T11:47:05.1929992Z | ^ 2023-08-09T11:47:05.1930413Z /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:256:1: note: declared here 2023-08-09T11:47:05.1930792Z 256 | GenericPackedTensorAccessor packed_accessor() const & { 2023-08-09T11:47:05.1931077Z | ^ ~~~~~~~~~~~~~ 2023-08-09T11:47:05.1931949Z /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:47:05.1932523Z 67 | AT_DISPATCH_FLOATING_TYPES( 2023-08-09T11:47:05.1932807Z | ^ 2023-08-09T11:47:05.1933233Z /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:256:1: note: declared here 2023-08-09T11:47:05.1933621Z 256 | GenericPackedTensorAccessor packed_accessor() const & { 2023-08-09T11:47:05.1933904Z | ^ ~~~~~~~~~~~~~ 2023-08-09T11:47:05.1934800Z /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:47:05.1935366Z 67 | AT_DISPATCH_FLOATING_TYPES( 2023-08-09T11:47:05.1935671Z | ^ 2023-08-09T11:47:05.1936105Z /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:256:1: note: declared here 2023-08-09T11:47:05.1936493Z 256 | GenericPackedTensorAccessor packed_accessor() const & { 2023-08-09T11:47:05.1936779Z | ^ ~~~~~~~~~~~~~ 2023-08-09T11:47:05.1938756Z [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:47:05.1940489Z /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:47:05.1940738Z 2023-08-09T11:47:05.1941959Z [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.9/site-packages/torch/lib:/usr/local/cuda-11.8/lib64: /work/ci_env/lib/python3.9/site-packages/torch/lib/libc10_cuda.so /usr/local/cuda-11.8/lib64/libcudart.so -lcudadevrt -lcudart_static -lrt -lpthread -ldl && : 2023-08-09T11:47:14.3916192Z [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-39/torchaudio/csrc/cuctc:/work/ci_env/lib/python3.9/site-packages/torch/lib:/usr/local/cuda-11.8/lib64: torchaudio/csrc/cuctc/libctc_prefix_decoder.so /work/ci_env/lib/python3.9/site-packages/torch/lib/libtorch_python.so /work/ci_env/lib/python3.9/site-packages/torch/lib/libc10_cuda.so /usr/local/cuda-11.8/lib64/libcudart.so && : 2023-08-09T11:47:14.3919316Z [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.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:47:14.3924950Z [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.9/site-packages/torch/lib:/usr/local/cuda-11.8/lib64: /work/ci_env/lib/python3.9/site-packages/torch/lib/libtorch.so -Wl,--no-as-needed,"/work/ci_env/lib/python3.9/site-packages/torch/lib/libtorch_cpu.so" -Wl,--as-needed -Wl,--no-as-needed,"/work/ci_env/lib/python3.9/site-packages/torch/lib/libtorch_cuda.so" -Wl,--as-needed /work/ci_env/lib/python3.9/site-packages/torch/lib/libc10_cuda.so /work/ci_env/lib/python3.9/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.9/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:47:14.3929574Z [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-39/torchaudio/csrc:/work/ci_env/lib/python3.9/site-packages/torch/lib:/usr/local/cuda-11.8/lib64: torchaudio/csrc/libtorchaudio.so /work/ci_env/lib/python3.9/site-packages/torch/lib/libtorch_python.so /work/ci_env/lib/python3.9/site-packages/torch/lib/libtorch.so -Wl,--no-as-needed,"/work/ci_env/lib/python3.9/site-packages/torch/lib/libtorch_cpu.so" -Wl,--as-needed -Wl,--no-as-needed,"/work/ci_env/lib/python3.9/site-packages/torch/lib/libtorch_cuda.so" -Wl,--as-needed /work/ci_env/lib/python3.9/site-packages/torch/lib/libc10_cuda.so /work/ci_env/lib/python3.9/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.9/site-packages/torch/lib/libc10_cuda.so /usr/local/cuda-11.8/lib64/libcudart.so -lgomp -lpthread && : 2023-08-09T11:47:14.3932409Z [88/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.9 -I/work/build/temp.linux-x86_64-cpython-39/_deps/f4-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:47:14.3933581Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/util/Exception.h:4, 2023-08-09T11:47:14.3934029Z from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:47:14.3934569Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:47:14.3935000Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:47:14.3935415Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:47:14.3935854Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:47:14.3936315Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:47:14.3936768Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:47:14.3937222Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:47:14.3937687Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:47:14.3938158Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:47:14.3938588Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/extension.h:4, 2023-08-09T11:47:14.3938909Z from /work/torchaudio/csrc/ffmpeg/pybind/pybind.cpp:1: 2023-08-09T11:47:14.3939500Z /work/torchaudio/csrc/ffmpeg/pybind/pybind.cpp: In function ‘int torchaudio::io::{anonymous}::{anonymous}::read_func(void*, uint8_t*, int)’: 2023-08-09T11:47:14.3940107Z /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:47:15.6831268Z 125 | chunk_len <= request, 2023-08-09T11:47:15.6831818Z | ~~~~~~~~~~^~~~~~~~~~ 2023-08-09T11:47:15.6834797Z [89/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.9 -I/work/build/temp.linux-x86_64-cpython-39/_deps/f5-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:47:15.6836578Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/util/Exception.h:4, 2023-08-09T11:47:15.6837115Z from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:47:15.6837592Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:47:15.6838024Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:47:15.6838442Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:47:15.6838882Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:47:15.6839344Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:47:15.6839800Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:47:15.6840371Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:47:15.6840842Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:47:15.6841316Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:47:15.6841756Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/extension.h:4, 2023-08-09T11:47:15.6842086Z from /work/torchaudio/csrc/ffmpeg/pybind/pybind.cpp:1: 2023-08-09T11:47:15.6842683Z /work/torchaudio/csrc/ffmpeg/pybind/pybind.cpp: In function ‘int torchaudio::io::{anonymous}::{anonymous}::read_func(void*, uint8_t*, int)’: 2023-08-09T11:47:15.6843595Z /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:47:15.6843986Z 125 | chunk_len <= request, 2023-08-09T11:47:15.6844206Z | ~~~~~~~~~~^~~~~~~~~~ 2023-08-09T11:47:15.6846757Z [90/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-39/torchaudio/csrc/ffmpeg:/work/ci_env/lib/python3.9/site-packages/torch/lib:/usr/local/cuda-11.8/lib64:/work/build/temp.linux-x86_64-cpython-39/_deps/f4-src/lib: torchaudio/csrc/ffmpeg/libtorchaudio_ffmpeg4.so /work/ci_env/lib/python3.9/site-packages/torch/lib/libtorch_python.so /work/ci_env/lib/python3.9/site-packages/torch/lib/libtorch.so -Wl,--no-as-needed,"/work/ci_env/lib/python3.9/site-packages/torch/lib/libtorch_cpu.so" -Wl,--as-needed -Wl,--no-as-needed,"/work/ci_env/lib/python3.9/site-packages/torch/lib/libtorch_cuda.so" -Wl,--as-needed /work/ci_env/lib/python3.9/site-packages/torch/lib/libc10_cuda.so /work/ci_env/lib/python3.9/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.9/site-packages/torch/lib/libc10_cuda.so /usr/local/cuda-11.8/lib64/libcudart.so && : 2023-08-09T11:47:15.6850727Z [91/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-39/torchaudio/csrc/ffmpeg:/work/ci_env/lib/python3.9/site-packages/torch/lib:/usr/local/cuda-11.8/lib64:/work/build/temp.linux-x86_64-cpython-39/_deps/f5-src/lib: torchaudio/csrc/ffmpeg/libtorchaudio_ffmpeg5.so /work/ci_env/lib/python3.9/site-packages/torch/lib/libtorch_python.so /work/ci_env/lib/python3.9/site-packages/torch/lib/libtorch.so -Wl,--no-as-needed,"/work/ci_env/lib/python3.9/site-packages/torch/lib/libtorch_cpu.so" -Wl,--as-needed -Wl,--no-as-needed,"/work/ci_env/lib/python3.9/site-packages/torch/lib/libtorch_cuda.so" -Wl,--as-needed /work/ci_env/lib/python3.9/site-packages/torch/lib/libc10_cuda.so /work/ci_env/lib/python3.9/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.9/site-packages/torch/lib/libc10_cuda.so /usr/local/cuda-11.8/lib64/libcudart.so && : 2023-08-09T11:47:15.6853791Z [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.9 -I/work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/include -isystem /work/ci_env/lib/python3.9/site-packages/torch/include -isystem /work/ci_env/lib/python3.9/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:47:15.6855047Z In file included from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/util/Exception.h:4, 2023-08-09T11:47:15.6855491Z from /work/ci_env/lib/python3.9/site-packages/torch/include/c10/core/Device.h:5, 2023-08-09T11:47:15.6855928Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-08-09T11:47:15.6856353Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-08-09T11:47:15.6856773Z from /work/ci_env/lib/python3.9/site-packages/torch/include/ATen/Tensor.h:3, 2023-08-09T11:47:15.6857223Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-08-09T11:47:15.6857692Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-08-09T11:47:15.6858190Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-08-09T11:47:15.6858648Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-08-09T11:47:15.6859115Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-08-09T11:47:15.6859575Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-08-09T11:47:15.6860010Z from /work/ci_env/lib/python3.9/site-packages/torch/include/torch/extension.h:4, 2023-08-09T11:47:15.6860347Z from /work/torchaudio/csrc/ffmpeg/pybind/pybind.cpp:1: 2023-08-09T11:47:50.8242321Z /work/torchaudio/csrc/ffmpeg/pybind/pybind.cpp: In function ‘int torchaudio::io::{anonymous}::{anonymous}::read_func(void*, uint8_t*, int)’: 2023-08-09T11:47:50.8243015Z /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:47:50.8243708Z 125 | chunk_len <= request, 2023-08-09T11:47:50.8243925Z | ~~~~~~~~~~^~~~~~~~~~ 2023-08-09T11:47:50.8246439Z [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-39/torchaudio/csrc/ffmpeg:/work/ci_env/lib/python3.9/site-packages/torch/lib:/usr/local/cuda-11.8/lib64:/work/build/temp.linux-x86_64-cpython-39/_deps/f6-src/lib: torchaudio/csrc/ffmpeg/libtorchaudio_ffmpeg6.so /work/ci_env/lib/python3.9/site-packages/torch/lib/libtorch_python.so /work/ci_env/lib/python3.9/site-packages/torch/lib/libtorch.so -Wl,--no-as-needed,"/work/ci_env/lib/python3.9/site-packages/torch/lib/libtorch_cpu.so" -Wl,--as-needed -Wl,--no-as-needed,"/work/ci_env/lib/python3.9/site-packages/torch/lib/libtorch_cuda.so" -Wl,--as-needed /work/ci_env/lib/python3.9/site-packages/torch/lib/libc10_cuda.so /work/ci_env/lib/python3.9/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.9/site-packages/torch/lib/libc10_cuda.so /usr/local/cuda-11.8/lib64/libcudart.so && : 2023-08-09T11:47:50.8248661Z [93/94] cd /work/build/temp.linux-x86_64-cpython-39 && /work/ci_env/bin/cmake -P cmake_install.cmake 2023-08-09T11:47:50.8249005Z -- Install configuration: "Release" 2023-08-09T11:47:50.8249379Z -- Installing: /work/build/lib.linux-x86_64-cpython-39/torchaudio/lib/libtorchaudio.so 2023-08-09T11:47:50.8249823Z -- Set runtime path of "/work/build/lib.linux-x86_64-cpython-39/torchaudio/lib/libtorchaudio.so" to "" 2023-08-09T11:47:50.8250263Z -- Installing: /work/build/lib.linux-x86_64-cpython-39/torchaudio/lib/_torchaudio.so 2023-08-09T11:47:50.8250711Z -- Set runtime path of "/work/build/lib.linux-x86_64-cpython-39/torchaudio/lib/_torchaudio.so" to "" 2023-08-09T11:47:50.8251151Z -- Installing: /work/build/lib.linux-x86_64-cpython-39/torchaudio/lib/libtorchaudio_sox.so 2023-08-09T11:47:50.8251598Z -- Set runtime path of "/work/build/lib.linux-x86_64-cpython-39/torchaudio/lib/libtorchaudio_sox.so" to "" 2023-08-09T11:47:50.8252045Z -- Installing: /work/build/lib.linux-x86_64-cpython-39/torchaudio/lib/_torchaudio_sox.so 2023-08-09T11:47:50.8252636Z -- Set runtime path of "/work/build/lib.linux-x86_64-cpython-39/torchaudio/lib/_torchaudio_sox.so" to "" 2023-08-09T11:47:50.8253254Z -- Installing: /work/build/lib.linux-x86_64-cpython-39/torchaudio/lib/libtorchaudio_ffmpeg4.so 2023-08-09T11:47:50.8253950Z -- Set runtime path of "/work/build/lib.linux-x86_64-cpython-39/torchaudio/lib/libtorchaudio_ffmpeg4.so" to "" 2023-08-09T11:47:50.8254570Z -- Installing: /work/build/lib.linux-x86_64-cpython-39/torchaudio/lib/libtorchaudio_ffmpeg5.so 2023-08-09T11:47:50.8255054Z -- Set runtime path of "/work/build/lib.linux-x86_64-cpython-39/torchaudio/lib/libtorchaudio_ffmpeg5.so" to "" 2023-08-09T11:47:50.8255508Z -- Installing: /work/build/lib.linux-x86_64-cpython-39/torchaudio/lib/libtorchaudio_ffmpeg6.so 2023-08-09T11:47:50.8255967Z -- Set runtime path of "/work/build/lib.linux-x86_64-cpython-39/torchaudio/lib/libtorchaudio_ffmpeg6.so" to "" 2023-08-09T11:47:50.8256421Z -- Installing: /work/build/lib.linux-x86_64-cpython-39/torchaudio/lib/_torchaudio_ffmpeg4.so 2023-08-09T11:47:50.8256896Z -- Set runtime path of "/work/build/lib.linux-x86_64-cpython-39/torchaudio/lib/_torchaudio_ffmpeg4.so" to "" 2023-08-09T11:47:50.8257340Z -- Installing: /work/build/lib.linux-x86_64-cpython-39/torchaudio/lib/_torchaudio_ffmpeg5.so 2023-08-09T11:47:50.8257789Z -- Set runtime path of "/work/build/lib.linux-x86_64-cpython-39/torchaudio/lib/_torchaudio_ffmpeg5.so" to "" 2023-08-09T11:47:50.8258237Z -- Installing: /work/build/lib.linux-x86_64-cpython-39/torchaudio/lib/_torchaudio_ffmpeg6.so 2023-08-09T11:47:50.8258696Z -- Set runtime path of "/work/build/lib.linux-x86_64-cpython-39/torchaudio/lib/_torchaudio_ffmpeg6.so" to "" 2023-08-09T11:47:50.8259150Z -- Installing: /work/build/lib.linux-x86_64-cpython-39/torchaudio/lib/libctc_prefix_decoder.so 2023-08-09T11:47:50.8259604Z -- Set runtime path of "/work/build/lib.linux-x86_64-cpython-39/torchaudio/lib/libctc_prefix_decoder.so" to "" 2023-08-09T11:47:50.8260137Z -- Installing: /work/build/lib.linux-x86_64-cpython-39/torchaudio/lib/pybind11_prefixctc.so 2023-08-09T11:47:50.8260600Z -- Set runtime path of "/work/build/lib.linux-x86_64-cpython-39/torchaudio/lib/pybind11_prefixctc.so" to "" 2023-08-09T11:47:50.8261055Z copying build/lib.linux-x86_64-cpython-39/torchaudio/lib/libtorchaudio.so -> torchaudio/lib 2023-08-09T11:47:50.8261484Z copying build/lib.linux-x86_64-cpython-39/torchaudio/lib/_torchaudio.so -> torchaudio/lib 2023-08-09T11:47:50.8261929Z copying build/lib.linux-x86_64-cpython-39/torchaudio/lib/libtorchaudio_sox.so -> torchaudio/lib 2023-08-09T11:47:50.8262371Z copying build/lib.linux-x86_64-cpython-39/torchaudio/lib/_torchaudio_sox.so -> torchaudio/lib 2023-08-09T11:47:50.8262816Z copying build/lib.linux-x86_64-cpython-39/torchaudio/lib/libctc_prefix_decoder.so -> torchaudio/lib 2023-08-09T11:47:50.8263279Z copying build/lib.linux-x86_64-cpython-39/torchaudio/lib/pybind11_prefixctc.so -> torchaudio/lib 2023-08-09T11:47:50.8263749Z copying build/lib.linux-x86_64-cpython-39/torchaudio/lib/libtorchaudio_ffmpeg4.so -> torchaudio/lib 2023-08-09T11:47:50.8264205Z copying build/lib.linux-x86_64-cpython-39/torchaudio/lib/_torchaudio_ffmpeg4.so -> torchaudio/lib 2023-08-09T11:47:50.8264657Z copying build/lib.linux-x86_64-cpython-39/torchaudio/lib/libtorchaudio_ffmpeg5.so -> torchaudio/lib 2023-08-09T11:47:50.8265114Z copying build/lib.linux-x86_64-cpython-39/torchaudio/lib/_torchaudio_ffmpeg5.so -> torchaudio/lib 2023-08-09T11:47:50.8265569Z copying build/lib.linux-x86_64-cpython-39/torchaudio/lib/libtorchaudio_ffmpeg6.so -> torchaudio/lib 2023-08-09T11:47:50.8266025Z copying build/lib.linux-x86_64-cpython-39/torchaudio/lib/_torchaudio_ffmpeg6.so -> torchaudio/lib 2023-08-09T11:47:50.8266450Z Creating /work/ci_env/lib/python3.9/site-packages/torchaudio.egg-link (link to .) 2023-08-09T11:47:50.8266841Z Adding torchaudio 2.1.0a0+fe9b9ff to easy-install.pth file 2023-08-09T11:47:50.8267012Z 2023-08-09T11:47:50.8267097Z Installed /work 2023-08-09T11:47:50.8267463Z Successfully installed fsspec-2023.6.0 torchaudio-2.1.0a0+fe9b9ff 2023-08-09T11:47:50.8268104Z 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:47:50.8268824Z + echo ::endgroup:: 2023-08-09T11:47:50.8269250Z ##[endgroup] 2023-08-09T11:47:50.8269498Z + echo '::group::Build FFmpeg' 2023-08-09T11:47:50.8269947Z ##[group]Build FFmpeg 2023-08-09T11:47:50.8270163Z + .github/scripts/ffmpeg/build_gpu.sh 2023-08-09T11:47:50.8270381Z + revision=6.0 2023-08-09T11:47:50.8270587Z + codec_header_version=n12.0.16.0 2023-08-09T11:47:50.8270796Z + prefix=/work/ci_env 2023-08-09T11:47:50.8270988Z + ccap=86 2023-08-09T11:47:50.8271323Z + git clone --quiet https://git.videolan.org/git/ffmpeg/nv-codec-headers.git 2023-08-09T11:47:50.8271637Z + cd nv-codec-headers 2023-08-09T11:47:50.8271845Z + git checkout n12.0.16.0 2023-08-09T11:47:50.8272108Z Note: switching to 'n12.0.16.0'. 2023-08-09T11:47:50.8272242Z 2023-08-09T11:47:50.8272448Z You are in 'detached HEAD' state. You can look around, make experimental 2023-08-09T11:47:50.8272769Z changes and commit them, and you can discard any commits you make in this 2023-08-09T11:47:50.8273090Z state without impacting any branches by switching back to a branch. 2023-08-09T11:47:50.8273268Z 2023-08-09T11:47:50.8273415Z If you want to create a new branch to retain commits you create, you may 2023-08-09T11:47:50.8273772Z do so (now or later) by using -c with the switch command. Example: 2023-08-09T11:47:50.8273941Z 2023-08-09T11:47:50.8274079Z git switch -c 2023-08-09T11:47:50.8274223Z 2023-08-09T11:47:50.8274318Z Or undo this operation with: 2023-08-09T11:47:50.8274453Z 2023-08-09T11:47:50.8274605Z git switch - 2023-08-09T11:47:50.8274713Z 2023-08-09T11:47:50.8274878Z Turn off this advice by setting config variable advice.detachedHead to false 2023-08-09T11:47:50.8275068Z 2023-08-09T11:47:50.8275182Z HEAD is now at c5e4af7 Add cuArrayCreate 2023-08-09T11:47:50.8275423Z + make PREFIX=/work/ci_env install 2023-08-09T11:47:50.8275740Z sed 's#@@PREFIX@@#/work/ci_env#' ffnvcodec.pc.in > ffnvcodec.pc 2023-08-09T11:47:50.8276076Z install -m 0755 -d '/work/ci_env/include/ffnvcodec' 2023-08-09T11:47:50.8276428Z install -m 0644 include/ffnvcodec/*.h '/work/ci_env/include/ffnvcodec' 2023-08-09T11:47:50.8276758Z install -m 0755 -d '/work/ci_env/lib/pkgconfig' 2023-08-09T11:47:50.8277076Z install -m 0644 ffnvcodec.pc '/work/ci_env/lib/pkgconfig' 2023-08-09T11:47:50.8277522Z + conda install --quiet --yes -c conda-forge yasm x264 gnutls pkg-config lame libopus libvpx openh264 openssl x264 2023-08-09T11:47:50.8277906Z Collecting package metadata (current_repodata.json): ...working... done 2023-08-09T11:47:50.8278195Z Solving environment: ...working... done 2023-08-09T11:47:50.8278337Z 2023-08-09T11:47:50.8278425Z ## Package Plan ## 2023-08-09T11:47:50.8278545Z 2023-08-09T11:47:50.8278657Z environment location: /work/ci_env 2023-08-09T11:47:50.8278801Z 2023-08-09T11:47:50.8278893Z added / updated specs: 2023-08-09T11:47:50.8279107Z - gnutls 2023-08-09T11:47:50.8279308Z - lame 2023-08-09T11:47:50.8279505Z - libopus 2023-08-09T11:47:50.8279709Z - libvpx 2023-08-09T11:47:50.8279917Z - openh264 2023-08-09T11:47:50.8280114Z - openssl 2023-08-09T11:47:50.8280322Z - pkg-config 2023-08-09T11:47:50.8280529Z - x264 2023-08-09T11:47:50.8280718Z - yasm 2023-08-09T11:47:50.8280830Z 2023-08-09T11:47:50.8280834Z 2023-08-09T11:47:50.8280949Z The following packages will be downloaded: 2023-08-09T11:47:50.8281105Z 2023-08-09T11:47:50.8281207Z package | build 2023-08-09T11:47:50.8281494Z ---------------------------|----------------- 2023-08-09T11:47:50.8281851Z ca-certificates-2023.7.22 | hbcca054_0 146 KB conda-forge 2023-08-09T11:48:05.3419656Z gnutls-3.6.13 | h85f3911_1 2.0 MB conda-forge 2023-08-09T11:48:05.3420965Z lame-3.100 | h7f98852_1001 496 KB conda-forge 2023-08-09T11:48:05.3421493Z libopus-1.3.1 | h7f98852_1 255 KB conda-forge 2023-08-09T11:48:05.3421952Z libvpx-1.11.0 | h9c3ff4c_3 1.1 MB conda-forge 2023-08-09T11:48:05.3422392Z nettle-3.6 | he412f7d_0 6.5 MB conda-forge 2023-08-09T11:48:05.3422827Z openh264-2.1.1 | h4ff587b_0 711 KB 2023-08-09T11:48:05.3423212Z pkg-config-0.29.2 | h36c2ea0_1008 120 KB conda-forge 2023-08-09T11:48:05.3423548Z x264-1!157.20191217 | h7b6447c_0 922 KB 2023-08-09T11:48:05.3423960Z yasm-1.3.0 | h7f98852_1003 1.4 MB conda-forge 2023-08-09T11:48:05.3424357Z ------------------------------------------------------------ 2023-08-09T11:48:05.3424697Z Total: 13.6 MB 2023-08-09T11:48:05.3424883Z 2023-08-09T11:48:05.3425043Z The following NEW packages will be INSTALLED: 2023-08-09T11:48:05.3425244Z 2023-08-09T11:48:05.3425599Z gnutls conda-forge/linux-64::gnutls-3.6.13-h85f3911_1 2023-08-09T11:48:05.3426082Z lame conda-forge/linux-64::lame-3.100-h7f98852_1001 2023-08-09T11:48:05.3426573Z libopus conda-forge/linux-64::libopus-1.3.1-h7f98852_1 2023-08-09T11:48:05.3427118Z libvpx conda-forge/linux-64::libvpx-1.11.0-h9c3ff4c_3 2023-08-09T11:48:05.3427626Z nettle conda-forge/linux-64::nettle-3.6-he412f7d_0 2023-08-09T11:48:05.3428077Z openh264 pkgs/main/linux-64::openh264-2.1.1-h4ff587b_0 2023-08-09T11:48:05.3428627Z pkg-config conda-forge/linux-64::pkg-config-0.29.2-h36c2ea0_1008 2023-08-09T11:48:05.3429193Z x264 pkgs/main/linux-64::x264-1!157.20191217-h7b6447c_0 2023-08-09T11:48:05.3429560Z yasm conda-forge/linux-64::yasm-1.3.0-h7f98852_1003 2023-08-09T11:48:05.3429730Z 2023-08-09T11:48:05.3429839Z The following packages will be UPDATED: 2023-08-09T11:48:05.3429997Z 2023-08-09T11:48:05.3430325Z ca-certificates pkgs/main::ca-certificates-2023.05.30~ --> conda-forge::ca-certificates-2023.7.22-hbcca054_0 2023-08-09T11:48:05.3430564Z 2023-08-09T11:48:05.3430569Z 2023-08-09T11:48:05.3430687Z Preparing transaction: ...working... done 2023-08-09T11:48:05.3430948Z Verifying transaction: ...working... done 2023-08-09T11:48:05.3431184Z Executing transaction: ...working... done 2023-08-09T11:48:05.3431654Z + wget -q https://github.com/FFmpeg/FFmpeg/archive/refs/tags/n6.0.tar.gz 2023-08-09T11:48:05.3432032Z + tar -xf n6.0.tar.gz 2023-08-09T11:48:05.3432333Z + cd ./FFmpeg-n6.0 2023-08-09T11:48:05.3432587Z + export revision=6.0 2023-08-09T11:48:05.3432838Z + revision=6.0 2023-08-09T11:48:05.3433982Z + ./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:48:05.3434647Z install prefix /work/ci_env 2023-08-09T11:48:05.3434941Z source path . 2023-08-09T11:48:05.3435147Z C compiler gcc 2023-08-09T11:48:05.3435365Z C library glibc 2023-08-09T11:48:05.3435583Z ARCH x86 (generic) 2023-08-09T11:48:05.3435829Z big-endian no 2023-08-09T11:48:05.3436039Z runtime cpu detection yes 2023-08-09T11:48:05.3436260Z standalone assembly yes 2023-08-09T11:48:05.3436476Z x86 assembler yasm 2023-08-09T11:48:05.3436675Z MMX enabled yes 2023-08-09T11:48:05.3436887Z MMXEXT enabled yes 2023-08-09T11:48:05.3437091Z 3DNow! enabled yes 2023-08-09T11:48:05.3437292Z 3DNow! extended enabled yes 2023-08-09T11:48:05.3437592Z SSE enabled yes 2023-08-09T11:48:05.3437803Z SSSE3 enabled yes 2023-08-09T11:48:05.3438011Z AESNI enabled yes 2023-08-09T11:48:05.3438216Z AVX enabled yes 2023-08-09T11:48:05.3438416Z AVX2 enabled yes 2023-08-09T11:48:05.3438646Z AVX-512 enabled yes 2023-08-09T11:48:05.3438887Z AVX-512ICL enabled yes 2023-08-09T11:48:05.3439097Z XOP enabled yes 2023-08-09T11:48:05.3439295Z FMA3 enabled yes 2023-08-09T11:48:05.3439498Z FMA4 enabled yes 2023-08-09T11:48:05.3439706Z i686 features enabled yes 2023-08-09T11:48:05.3439905Z CMOV is fast yes 2023-08-09T11:48:05.3440110Z EBX available yes 2023-08-09T11:48:05.3440318Z EBP available yes 2023-08-09T11:48:05.3440523Z debug symbols yes 2023-08-09T11:48:05.3440726Z strip symbols yes 2023-08-09T11:48:05.3440934Z optimize for size no 2023-08-09T11:48:05.3441144Z optimizations yes 2023-08-09T11:48:05.3441347Z static no 2023-08-09T11:48:05.3441547Z shared yes 2023-08-09T11:48:05.3441756Z postprocessing support yes 2023-08-09T11:48:05.3441978Z network support yes 2023-08-09T11:48:05.3442198Z threading support pthreads 2023-08-09T11:48:05.3442422Z safe bitstream reader yes 2023-08-09T11:48:05.3442626Z texi2html enabled no 2023-08-09T11:48:05.3442840Z perl enabled yes 2023-08-09T11:48:05.3443051Z pod2man enabled yes 2023-08-09T11:48:05.3443256Z makeinfo enabled no 2023-08-09T11:48:05.3443838Z makeinfo supports HTML no 2023-08-09T11:48:05.3444053Z xmllint enabled yes 2023-08-09T11:48:05.3444172Z 2023-08-09T11:48:05.3444256Z External libraries: 2023-08-09T11:48:05.3444591Z bzlib libmp3lame zlib 2023-08-09T11:48:05.3444814Z gnutls libx264 2023-08-09T11:48:05.3445006Z iconv lzma 2023-08-09T11:48:05.3445132Z 2023-08-09T11:48:05.3445262Z External libraries providing hardware acceleration: 2023-08-09T11:48:05.3445529Z cuda cuvid nvenc 2023-08-09T11:48:05.3445743Z cuda_llvm ffnvcodec 2023-08-09T11:48:05.3445949Z cuda_nvcc nvdec 2023-08-09T11:48:05.3446072Z 2023-08-09T11:48:05.3446148Z Libraries: 2023-08-09T11:48:05.3446367Z avcodec avformat swresample 2023-08-09T11:48:05.3446621Z avdevice avutil swscale 2023-08-09T11:48:05.3446847Z avfilter postproc 2023-08-09T11:48:05.3446976Z 2023-08-09T11:48:05.3447054Z Programs: 2023-08-09T11:48:05.3447237Z ffmpeg ffprobe 2023-08-09T11:48:05.3447361Z 2023-08-09T11:48:05.3447445Z Enabled decoders: 2023-08-09T11:48:05.3447677Z aac fits pgmyuv 2023-08-09T11:48:05.3447960Z aac_fixed flac pgssub 2023-08-09T11:48:05.3448213Z aac_latm flashsv pgx 2023-08-09T11:48:05.3448455Z aasc flashsv2 phm 2023-08-09T11:48:05.3448688Z ac3 flic photocd 2023-08-09T11:48:05.3448933Z ac3_fixed flv pictor 2023-08-09T11:48:05.3449181Z acelp_kelvin fmvc pixlet 2023-08-09T11:48:05.3449428Z adpcm_4xm fourxm pjs 2023-08-09T11:48:05.3449664Z adpcm_adx fraps png 2023-08-09T11:48:05.3449910Z adpcm_afc frwu ppm 2023-08-09T11:48:05.3450159Z adpcm_agm ftr prores 2023-08-09T11:48:05.3450399Z adpcm_aica g2m prosumer 2023-08-09T11:48:05.3450644Z adpcm_argo g723_1 psd 2023-08-09T11:48:05.3450891Z adpcm_ct g729 ptx 2023-08-09T11:48:05.3451244Z adpcm_dtk gdv qcelp 2023-08-09T11:48:05.3451488Z adpcm_ea gem qdm2 2023-08-09T11:48:05.3451733Z adpcm_ea_maxis_xa gif qdmc 2023-08-09T11:48:05.3451977Z adpcm_ea_r1 gremlin_dpcm qdraw 2023-08-09T11:48:05.3452223Z adpcm_ea_r2 gsm qoi 2023-08-09T11:48:05.3452462Z adpcm_ea_r3 gsm_ms qpeg 2023-08-09T11:48:05.3452707Z adpcm_ea_xas h261 qtrle 2023-08-09T11:48:05.3452937Z adpcm_g722 h263 r10k 2023-08-09T11:48:05.3453172Z adpcm_g726 h263i r210 2023-08-09T11:48:05.3453413Z adpcm_g726le h263p ra_144 2023-08-09T11:48:05.3453651Z adpcm_ima_acorn h264 ra_288 2023-08-09T11:48:05.3453906Z adpcm_ima_alp h264_cuvid ralf 2023-08-09T11:48:05.3454154Z adpcm_ima_amv hap rasc 2023-08-09T11:48:05.3454399Z adpcm_ima_apc hca rawvideo 2023-08-09T11:48:05.3454653Z adpcm_ima_apm hcom realtext 2023-08-09T11:48:05.3454901Z adpcm_ima_cunning hdr rka 2023-08-09T11:48:05.3455140Z adpcm_ima_dat4 hevc rl2 2023-08-09T11:48:05.3455386Z adpcm_ima_dk3 hevc_cuvid roq 2023-08-09T11:48:05.3455638Z adpcm_ima_dk4 hnm4_video roq_dpcm 2023-08-09T11:48:05.3455890Z adpcm_ima_ea_eacs hq_hqa rpza 2023-08-09T11:48:05.3456131Z adpcm_ima_ea_sead hqx rscc 2023-08-09T11:48:05.3456381Z adpcm_ima_iss huffyuv rv10 2023-08-09T11:48:05.3456630Z adpcm_ima_moflex hymt rv20 2023-08-09T11:48:05.3456929Z adpcm_ima_mtf iac rv30 2023-08-09T11:48:05.3457171Z adpcm_ima_oki idcin rv40 2023-08-09T11:48:05.3457421Z adpcm_ima_qt idf s302m 2023-08-09T11:48:05.3457662Z adpcm_ima_rad iff_ilbm sami 2023-08-09T11:48:05.3457931Z adpcm_ima_smjpeg ilbc sanm 2023-08-09T11:48:05.3458200Z adpcm_ima_ssi imc sbc 2023-08-09T11:48:05.3458433Z adpcm_ima_wav imm4 scpr 2023-08-09T11:48:05.3458686Z adpcm_ima_ws imm5 screenpresso 2023-08-09T11:48:05.3458948Z adpcm_ms indeo2 sdx2_dpcm 2023-08-09T11:48:05.3459196Z adpcm_mtaf indeo3 sga 2023-08-09T11:48:05.3459428Z adpcm_psx indeo4 sgi 2023-08-09T11:48:05.3459674Z adpcm_sbpro_2 indeo5 sgirle 2023-08-09T11:48:05.3459939Z adpcm_sbpro_3 interplay_acm sheervideo 2023-08-09T11:48:05.3460207Z adpcm_sbpro_4 interplay_dpcm shorten 2023-08-09T11:48:05.3460492Z adpcm_swf interplay_video simbiosis_imx 2023-08-09T11:48:05.3460751Z adpcm_thp ipu sipr 2023-08-09T11:48:05.3460990Z adpcm_thp_le jacosub siren 2023-08-09T11:48:05.3461245Z adpcm_vima jpeg2000 smackaud 2023-08-09T11:48:05.3461497Z adpcm_xa jpegls smacker 2023-08-09T11:48:05.3461741Z adpcm_xmd jv smc 2023-08-09T11:48:05.3461977Z adpcm_yamaha kgv1 smvjpeg 2023-08-09T11:48:05.3462218Z adpcm_zork kmvc snow 2023-08-09T11:48:05.3462466Z agm lagarith sol_dpcm 2023-08-09T11:48:05.3462698Z aic loco sonic 2023-08-09T11:48:05.3462935Z alac lscr sp5x 2023-08-09T11:48:05.3463177Z alias_pix m101 speedhq 2023-08-09T11:48:05.3463467Z als mace3 speex 2023-08-09T11:48:05.3463700Z amrnb mace6 srgc 2023-08-09T11:48:05.3463935Z amrwb magicyuv srt 2023-08-09T11:48:05.3464165Z amv mdec ssa 2023-08-09T11:48:05.3464395Z anm media100 stl 2023-08-09T11:48:05.3464639Z ansi metasound subrip 2023-08-09T11:48:05.3464887Z anull microdvd subviewer 2023-08-09T11:48:05.3465133Z apac mimic subviewer1 2023-08-09T11:48:05.3465374Z ape misc4 sunrast 2023-08-09T11:48:05.3465612Z apng mjpeg svq1 2023-08-09T11:48:05.3465845Z aptx mjpeg_cuvid svq3 2023-08-09T11:48:05.3466096Z aptx_hd mjpegb tak 2023-08-09T11:48:05.3716799Z arbc mlp targa 2023-08-09T11:48:05.3717061Z argo mmvideo targa_y216 2023-08-09T11:48:05.3717313Z ass mobiclip tdsc 2023-08-09T11:48:05.3719378Z asv1 motionpixels text 2023-08-09T11:48:05.3719774Z asv2 movtext theora 2023-08-09T11:48:05.3720042Z atrac1 mp1 thp 2023-08-09T11:48:05.3720364Z atrac3 mp1float tiertexseqvideo 2023-08-09T11:48:05.3720626Z atrac3al mp2 tiff 2023-08-09T11:48:05.3720924Z atrac3p mp2float tmv 2023-08-09T11:48:05.3721227Z atrac3pal mp3 truehd 2023-08-09T11:48:05.3721545Z atrac9 mp3adu truemotion1 2023-08-09T11:48:05.3722046Z aura mp3adufloat truemotion2 2023-08-09T11:48:05.3722341Z aura2 mp3float truemotion2rt 2023-08-09T11:48:05.3722676Z av1 mp3on4 truespeech 2023-08-09T11:48:05.3722988Z av1_cuvid mp3on4float tscc 2023-08-09T11:48:05.3723453Z avrn mpc7 tscc2 2023-08-09T11:48:05.3723763Z avrp mpc8 tta 2023-08-09T11:48:05.3724064Z avs mpeg1_cuvid twinvq 2023-08-09T11:48:05.3724354Z avui mpeg1video txd 2023-08-09T11:48:05.3724657Z ayuv mpeg2_cuvid ulti 2023-08-09T11:48:05.3724971Z bethsoftvid mpeg2video utvideo 2023-08-09T11:48:05.3725272Z bfi mpeg4 v210 2023-08-09T11:48:05.3725551Z bink mpeg4_cuvid v210x 2023-08-09T11:48:05.3725878Z binkaudio_dct mpegvideo v308 2023-08-09T11:48:05.3726190Z binkaudio_rdft mpl2 v408 2023-08-09T11:48:05.3726427Z bintext msa1 v410 2023-08-09T11:48:05.3726662Z bitpacked mscc vb 2023-08-09T11:48:05.3726938Z bmp msmpeg4v1 vble 2023-08-09T11:48:05.3727171Z bmv_audio msmpeg4v2 vbn 2023-08-09T11:48:05.3727400Z bmv_video msmpeg4v3 vc1 2023-08-09T11:48:05.3727644Z bonk msnsiren vc1_cuvid 2023-08-09T11:48:05.3727894Z brender_pix msp2 vc1image 2023-08-09T11:48:05.3728119Z c93 msrle vcr1 2023-08-09T11:48:05.3728353Z cavs mss1 vmdaudio 2023-08-09T11:48:05.3728594Z cbd2_dpcm mss2 vmdvideo 2023-08-09T11:48:05.3728838Z ccaption msvideo1 vmnc 2023-08-09T11:48:05.3729077Z cdgraphics mszh vnull 2023-08-09T11:48:05.3729428Z cdtoons mts2 vorbis 2023-08-09T11:48:05.3729665Z cdxl mv30 vp3 2023-08-09T11:48:05.3729883Z cfhd mvc1 vp4 2023-08-09T11:48:05.3730116Z cinepak mvc2 vp5 2023-08-09T11:48:05.3730350Z clearvideo mvdv vp6 2023-08-09T11:48:05.3730573Z cljr mvha vp6a 2023-08-09T11:48:05.3730801Z cllc mwsc vp6f 2023-08-09T11:48:05.3731035Z comfortnoise mxpeg vp7 2023-08-09T11:48:05.3731266Z cook nellymoser vp8 2023-08-09T11:48:05.3731511Z cpia notchlc vp8_cuvid 2023-08-09T11:48:05.3731747Z cri nuv vp9 2023-08-09T11:48:05.3731982Z cscd on2avc vp9_cuvid 2023-08-09T11:48:05.3732213Z cyuv opus vplayer 2023-08-09T11:48:05.3732457Z dca paf_audio vqa 2023-08-09T11:48:05.3732689Z dds paf_video vqc 2023-08-09T11:48:05.3732921Z derf_dpcm pam wady_dpcm 2023-08-09T11:48:05.3733161Z dfa pbm wavarc 2023-08-09T11:48:05.3733400Z dfpwm pcm_alaw wavpack 2023-08-09T11:48:05.3733638Z dirac pcm_bluray wbmp 2023-08-09T11:48:05.3733874Z dnxhd pcm_dvd wcmv 2023-08-09T11:48:05.3734110Z dolby_e pcm_f16le webp 2023-08-09T11:48:05.3734344Z dpx pcm_f24le webvtt 2023-08-09T11:48:05.3734585Z dsd_lsbf pcm_f32be wmalossless 2023-08-09T11:48:05.3734919Z dsd_lsbf_planar pcm_f32le wmapro 2023-08-09T11:48:05.3735168Z dsd_msbf pcm_f64be wmav1 2023-08-09T11:48:05.3735411Z dsd_msbf_planar pcm_f64le wmav2 2023-08-09T11:48:05.3735666Z dsicinaudio pcm_lxf wmavoice 2023-08-09T11:48:05.3735916Z dsicinvideo pcm_mulaw wmv1 2023-08-09T11:48:05.3736152Z dss_sp pcm_s16be wmv2 2023-08-09T11:48:05.3736388Z dst pcm_s16be_planar wmv3 2023-08-09T11:48:05.3736629Z dvaudio pcm_s16le wmv3image 2023-08-09T11:48:05.3736867Z dvbsub pcm_s16le_planar wnv1 2023-08-09T11:48:05.3737127Z dvdsub pcm_s24be wrapped_avframe 2023-08-09T11:48:05.3737385Z dvvideo pcm_s24daud ws_snd1 2023-08-09T11:48:05.3737647Z dxa pcm_s24le xan_dpcm 2023-08-09T11:48:05.3737921Z dxtory pcm_s24le_planar xan_wc3 2023-08-09T11:48:05.3738165Z dxv pcm_s32be xan_wc4 2023-08-09T11:48:05.3738402Z eac3 pcm_s32le xbin 2023-08-09T11:48:05.3738629Z eacmv pcm_s32le_planar xbm 2023-08-09T11:48:05.3738873Z eamad pcm_s64be xface 2023-08-09T11:48:05.3739106Z eatgq pcm_s64le xl 2023-08-09T11:48:05.3739334Z eatgv pcm_s8 xma1 2023-08-09T11:48:05.3739567Z eatqi pcm_s8_planar xma2 2023-08-09T11:48:05.3739808Z eightbps pcm_sga xpm 2023-08-09T11:48:05.3740046Z eightsvx_exp pcm_u16be xsub 2023-08-09T11:48:05.3740288Z eightsvx_fib pcm_u16le xwd 2023-08-09T11:48:05.3740530Z escape124 pcm_u24be y41p 2023-08-09T11:48:05.3740771Z escape130 pcm_u24le ylc 2023-08-09T11:48:05.3741002Z evrc pcm_u32be yop 2023-08-09T11:48:05.3741235Z exr pcm_u32le yuv4 2023-08-09T11:48:05.3741544Z fastaudio pcm_u8 zero12v 2023-08-09T11:48:05.3741782Z ffv1 pcm_vidc zerocodec 2023-08-09T11:48:05.3742017Z ffvhuff pcx zlib 2023-08-09T11:48:05.3742253Z ffwavesynth pfm zmbv 2023-08-09T11:48:05.3742459Z fic pgm 2023-08-09T11:48:05.3742582Z 2023-08-09T11:48:05.3742664Z Enabled encoders: 2023-08-09T11:48:05.3742879Z a64multi h264_nvenc phm 2023-08-09T11:48:05.3743102Z a64multi5 hdr png 2023-08-09T11:48:05.3743332Z aac hevc_nvenc ppm 2023-08-09T11:48:05.3743568Z ac3 huffyuv prores 2023-08-09T11:48:05.3743812Z ac3_fixed jpeg2000 prores_aw 2023-08-09T11:48:05.3744060Z adpcm_adx jpegls prores_ks 2023-08-09T11:48:05.3744311Z adpcm_argo libmp3lame qoi 2023-08-09T11:48:05.3744551Z adpcm_g722 libx264 qtrle 2023-08-09T11:48:05.3744781Z adpcm_g726 libx264rgb r10k 2023-08-09T11:48:05.3745021Z adpcm_g726le ljpeg r210 2023-08-09T11:48:05.3745267Z adpcm_ima_alp magicyuv ra_144 2023-08-09T11:48:05.3745510Z adpcm_ima_amv mjpeg rawvideo 2023-08-09T11:48:05.3745756Z adpcm_ima_apm mlp roq 2023-08-09T11:48:05.3745999Z adpcm_ima_qt movtext roq_dpcm 2023-08-09T11:48:05.3746241Z adpcm_ima_ssi mp2 rpza 2023-08-09T11:48:05.3746477Z adpcm_ima_wav mp2fixed rv10 2023-08-09T11:48:05.3746723Z adpcm_ima_ws mpeg1video rv20 2023-08-09T11:48:05.3747050Z adpcm_ms mpeg2video s302m 2023-08-09T11:48:05.3747284Z adpcm_swf mpeg4 sbc 2023-08-09T11:48:05.3747532Z adpcm_yamaha msmpeg4v2 sgi 2023-08-09T11:48:05.3747802Z alac msmpeg4v3 smc 2023-08-09T11:48:05.3748043Z alias_pix msvideo1 snow 2023-08-09T11:48:05.3748281Z amv nellymoser sonic 2023-08-09T11:48:05.3748648Z anull opus sonic_ls 2023-08-09T11:48:05.3748876Z apng pam speedhq 2023-08-09T11:48:05.3749103Z aptx pbm srt 2023-08-09T11:48:05.3749329Z aptx_hd pcm_alaw ssa 2023-08-09T11:48:05.3749565Z ass pcm_bluray subrip 2023-08-09T11:48:05.3749795Z asv1 pcm_dvd sunrast 2023-08-09T11:48:05.3750029Z asv2 pcm_f32be svq1 2023-08-09T11:48:05.3750262Z av1_nvenc pcm_f32le targa 2023-08-09T11:48:05.3750489Z avrp pcm_f64be text 2023-08-09T11:48:05.3750719Z avui pcm_f64le tiff 2023-08-09T11:48:05.3750949Z ayuv pcm_mulaw truehd 2023-08-09T11:48:05.3751175Z bitpacked pcm_s16be tta 2023-08-09T11:48:05.3751409Z bmp pcm_s16be_planar ttml 2023-08-09T11:48:05.3751651Z cfhd pcm_s16le utvideo 2023-08-09T11:48:05.3751883Z cinepak pcm_s16le_planar v210 2023-08-09T11:48:05.3752117Z cljr pcm_s24be v308 2023-08-09T11:48:05.3752351Z comfortnoise pcm_s24daud v408 2023-08-09T11:48:05.3752587Z dca pcm_s24le v410 2023-08-09T11:48:05.3752808Z dfpwm pcm_s24le_planar vbn 2023-08-09T11:48:05.3753049Z dnxhd pcm_s32be vc2 2023-08-09T11:48:05.3753282Z dpx pcm_s32le vnull 2023-08-09T11:48:05.3753576Z dvbsub pcm_s32le_planar vorbis 2023-08-09T11:48:05.3753816Z dvdsub pcm_s64be wavpack 2023-08-09T11:48:05.3754053Z dvvideo pcm_s64le wbmp 2023-08-09T11:48:05.3754277Z eac3 pcm_s8 webvtt 2023-08-09T11:48:05.3754513Z exr pcm_s8_planar wmav1 2023-08-09T11:48:05.3754748Z ffv1 pcm_u16be wmav2 2023-08-09T11:48:05.3754970Z ffvhuff pcm_u16le wmv1 2023-08-09T11:48:05.3755198Z fits pcm_u24be wmv2 2023-08-09T11:48:05.3755442Z flac pcm_u24le wrapped_avframe 2023-08-09T11:48:05.3755694Z flashsv pcm_u32be xbm 2023-08-09T11:48:05.3755926Z flashsv2 pcm_u32le xface 2023-08-09T11:48:05.3756154Z flv pcm_u8 xsub 2023-08-09T11:48:05.3756386Z g723_1 pcm_vidc xwd 2023-08-09T11:48:05.3756610Z gif pcx y41p 2023-08-09T11:48:05.3756829Z h261 pfm yuv4 2023-08-09T11:48:05.3757046Z h263 pgm zlib 2023-08-09T11:48:05.4537578Z h263p pgmyuv zmbv 2023-08-09T11:48:05.4537890Z 2023-08-09T11:48:05.4538362Z Enabled hwaccels: 2023-08-09T11:48:05.4538634Z av1_nvdec mpeg1_nvdec vp8_nvdec 2023-08-09T11:48:05.4538942Z h264_nvdec mpeg2_nvdec vp9_nvdec 2023-08-09T11:48:05.4539251Z hevc_nvdec mpeg4_nvdec wmv3_nvdec 2023-08-09T11:48:05.4539553Z mjpeg_nvdec vc1_nvdec 2023-08-09T11:48:05.4539716Z 2023-08-09T11:48:05.4540067Z Enabled parsers: 2023-08-09T11:48:05.4540334Z aac dvdsub opus 2023-08-09T11:48:05.4540644Z aac_latm flac png 2023-08-09T11:48:05.4540930Z ac3 ftr pnm 2023-08-09T11:48:05.4541208Z adx g723_1 qoi 2023-08-09T11:48:05.4541494Z amr g729 rv30 2023-08-09T11:48:05.4541783Z av1 gif rv40 2023-08-09T11:48:05.4542068Z avs2 gsm sbc 2023-08-09T11:48:05.4542348Z avs3 h261 sipr 2023-08-09T11:48:05.4542644Z bmp h263 tak 2023-08-09T11:48:05.4542871Z cavsvideo h264 vc1 2023-08-09T11:48:05.4543142Z cook hdr vorbis 2023-08-09T11:48:05.4543435Z cri hevc vp3 2023-08-09T11:48:05.4543717Z dca ipu vp8 2023-08-09T11:48:05.4543943Z dirac jpeg2000 vp9 2023-08-09T11:48:05.4544177Z dnxhd misc4 webp 2023-08-09T11:48:05.4544403Z dolby_e mjpeg xbm 2023-08-09T11:48:05.4544632Z dpx mlp xma 2023-08-09T11:48:05.4544867Z dvaudio mpeg4video xwd 2023-08-09T11:48:05.4545084Z dvbsub mpegaudio 2023-08-09T11:48:05.4545293Z dvd_nav mpegvideo 2023-08-09T11:48:05.4545422Z 2023-08-09T11:48:05.4545503Z Enabled demuxers: 2023-08-09T11:48:05.4545714Z aa idf pcm_s16be 2023-08-09T11:48:05.4545952Z aac iff pcm_s16le 2023-08-09T11:48:05.4546181Z aax ifv pcm_s24be 2023-08-09T11:48:05.4546417Z ac3 ilbc pcm_s24le 2023-08-09T11:48:05.4546651Z ace image2 pcm_s32be 2023-08-09T11:48:05.4546890Z acm image2_alias_pix pcm_s32le 2023-08-09T11:48:05.4547264Z act image2_brender_pix pcm_s8 2023-08-09T11:48:05.4547515Z adf image2pipe pcm_u16be 2023-08-09T11:48:05.4547761Z adp image_bmp_pipe pcm_u16le 2023-08-09T11:48:05.4548006Z ads image_cri_pipe pcm_u24be 2023-08-09T11:48:05.4548240Z adx image_dds_pipe pcm_u24le 2023-08-09T11:48:05.4548637Z aea image_dpx_pipe pcm_u32be 2023-08-09T11:48:05.4548888Z afc image_exr_pipe pcm_u32le 2023-08-09T11:48:05.4549129Z aiff image_gem_pipe pcm_u8 2023-08-09T11:48:05.4549372Z aix image_gif_pipe pcm_vidc 2023-08-09T11:48:05.4549618Z alp image_hdr_pipe pjs 2023-08-09T11:48:05.4549862Z amr image_j2k_pipe pmp 2023-08-09T11:48:05.4550102Z amrnb image_jpeg_pipe pp_bnk 2023-08-09T11:48:05.4550356Z amrwb image_jpegls_pipe pva 2023-08-09T11:48:05.4550596Z anm image_jpegxl_pipe pvf 2023-08-09T11:48:05.4550831Z apac image_pam_pipe qcp 2023-08-09T11:48:05.4551071Z apc image_pbm_pipe r3d 2023-08-09T11:48:05.4551319Z ape image_pcx_pipe rawvideo 2023-08-09T11:48:05.4551564Z apm image_pfm_pipe realtext 2023-08-09T11:48:05.4551816Z apng image_pgm_pipe redspark 2023-08-09T11:48:05.4552062Z aptx image_pgmyuv_pipe rka 2023-08-09T11:48:05.4552304Z aptx_hd image_pgx_pipe rl2 2023-08-09T11:48:05.4552543Z aqtitle image_phm_pipe rm 2023-08-09T11:48:05.4552868Z argo_asf image_photocd_pipe roq 2023-08-09T11:48:05.4553119Z argo_brp image_pictor_pipe rpl 2023-08-09T11:48:05.4553363Z argo_cvg image_png_pipe rsd 2023-08-09T11:48:05.4553601Z asf image_ppm_pipe rso 2023-08-09T11:48:05.4553838Z asf_o image_psd_pipe rtp 2023-08-09T11:48:05.4554070Z ass image_qdraw_pipe rtsp 2023-08-09T11:48:05.4554315Z ast image_qoi_pipe s337m 2023-08-09T11:48:05.4554554Z au image_sgi_pipe sami 2023-08-09T11:48:05.4554786Z av1 image_sunrast_pipe sap 2023-08-09T11:48:05.4555024Z avi image_svg_pipe sbc 2023-08-09T11:48:05.4555257Z avr image_tiff_pipe sbg 2023-08-09T11:48:05.4555488Z avs image_vbn_pipe scc 2023-08-09T11:48:05.4555713Z avs2 image_webp_pipe scd 2023-08-09T11:48:05.4555957Z avs3 image_xbm_pipe sdns 2023-08-09T11:48:05.4556201Z bethsoftvid image_xpm_pipe sdp 2023-08-09T11:48:05.4556442Z bfi image_xwd_pipe sdr2 2023-08-09T11:48:05.4556679Z bfstm ingenient sds 2023-08-09T11:48:05.4556906Z bink ipmovie sdx 2023-08-09T11:48:05.4557141Z binka ipu segafilm 2023-08-09T11:48:05.4557374Z bintext ircam ser 2023-08-09T11:48:05.4557597Z bit iss sga 2023-08-09T11:48:05.4557838Z bitpacked iv8 shorten 2023-08-09T11:48:05.4558108Z bmv ivf siff 2023-08-09T11:48:05.4558348Z boa ivr simbiosis_imx 2023-08-09T11:48:05.4558587Z bonk jacosub sln 2023-08-09T11:48:05.4558814Z brstm jv smacker 2023-08-09T11:48:05.4559041Z c93 kux smjpeg 2023-08-09T11:48:05.4559324Z caf kvag smush 2023-08-09T11:48:05.4559548Z cavsvideo laf sol 2023-08-09T11:48:05.4559775Z cdg live_flv sox 2023-08-09T11:48:05.4560009Z cdxl lmlm4 spdif 2023-08-09T11:48:05.4560228Z cine loas srt 2023-08-09T11:48:05.4560456Z codec2 lrc stl 2023-08-09T11:48:05.4560683Z codec2raw luodat str 2023-08-09T11:48:05.4560926Z concat lvf subviewer 2023-08-09T11:48:05.4561159Z data lxf subviewer1 2023-08-09T11:48:05.4561389Z daud m4v sup 2023-08-09T11:48:05.4561619Z dcstr matroska svag 2023-08-09T11:48:05.4561845Z derf mca svs 2023-08-09T11:48:05.4562066Z dfa mcc swf 2023-08-09T11:48:05.4562294Z dfpwm mgsts tak 2023-08-09T11:48:05.4562527Z dhav microdvd tedcaptions 2023-08-09T11:48:05.4562772Z dirac mjpeg thp 2023-08-09T11:48:05.4563016Z dnxhd mjpeg_2000 threedostr 2023-08-09T11:48:05.4563254Z dsf mlp tiertexseq 2023-08-09T11:48:05.4563812Z dsicin mlv tmv 2023-08-09T11:48:05.4564042Z dss mm truehd 2023-08-09T11:48:05.4564269Z dts mmf tta 2023-08-09T11:48:05.4564487Z dtshd mods tty 2023-08-09T11:48:05.4564712Z dv moflex txd 2023-08-09T11:48:05.4565055Z dvbsub mov ty 2023-08-09T11:48:05.4565282Z dvbtxt mp3 v210 2023-08-09T11:48:05.4565520Z dxa mpc v210x 2023-08-09T11:48:05.4565748Z ea mpc8 vag 2023-08-09T11:48:05.4565970Z ea_cdata mpegps vc1 2023-08-09T11:48:05.4566205Z eac3 mpegts vc1t 2023-08-09T11:48:05.4566448Z epaf mpegtsraw vividas 2023-08-09T11:48:05.4566687Z ffmetadata mpegvideo vivo 2023-08-09T11:48:05.4566933Z filmstrip mpjpeg vmd 2023-08-09T11:48:05.4567167Z fits mpl2 vobsub 2023-08-09T11:48:05.4567402Z flac mpsub voc 2023-08-09T11:48:05.4567623Z flic msf vpk 2023-08-09T11:48:05.4567857Z flv msnwc_tcp vplayer 2023-08-09T11:48:05.4568097Z fourxm msp vqf 2023-08-09T11:48:05.4568320Z frm mtaf w64 2023-08-09T11:48:05.4568544Z fsb mtv wady 2023-08-09T11:48:05.4568767Z fwse musx wav 2023-08-09T11:48:05.4568984Z g722 mv wavarc 2023-08-09T11:48:05.4569205Z g723_1 mvi wc3 2023-08-09T11:48:05.4569442Z g726 mxf webm_dash_manifest 2023-08-09T11:48:05.4569691Z g726le mxg webvtt 2023-08-09T11:48:05.4569915Z g729 nc wsaud 2023-08-09T11:48:05.4570145Z gdv nistsphere wsd 2023-08-09T11:48:05.4570379Z genh nsp wsvqa 2023-08-09T11:48:05.4570598Z gif nsv wtv 2023-08-09T11:48:05.4570828Z gsm nut wv 2023-08-09T11:48:05.4571052Z gxf nuv wve 2023-08-09T11:48:05.4571337Z h261 obu xa 2023-08-09T11:48:05.4571563Z h263 ogg xbin 2023-08-09T11:48:05.4571786Z h264 oma xmd 2023-08-09T11:48:05.4572000Z hca paf xmv 2023-08-09T11:48:05.4572229Z hcom pcm_alaw xvag 2023-08-09T11:48:05.4572468Z hevc pcm_f32be xwma 2023-08-09T11:48:05.4572701Z hls pcm_f32le yop 2023-08-09T11:48:05.4572942Z hnm pcm_f64be yuv4mpegpipe 2023-08-09T11:48:05.4573169Z ico pcm_f64le 2023-08-09T11:48:05.4573377Z idcin pcm_mulaw 2023-08-09T11:48:05.4573497Z 2023-08-09T11:48:05.4573580Z Enabled muxers: 2023-08-09T11:48:05.4573793Z a64 h263 pcm_s16le 2023-08-09T11:48:05.4574027Z ac3 h264 pcm_s24be 2023-08-09T11:48:05.4574262Z adts hash pcm_s24le 2023-08-09T11:48:05.4574497Z adx hds pcm_s32be 2023-08-09T11:48:05.4574733Z aiff hevc pcm_s32le 2023-08-09T11:48:05.4574964Z alp hls pcm_s8 2023-08-09T11:48:05.4575201Z amr ico pcm_u16be 2023-08-09T11:48:05.4575432Z amv ilbc pcm_u16le 2023-08-09T11:48:05.4575674Z apm image2 pcm_u24be 2023-08-09T11:48:05.4575911Z apng image2pipe pcm_u24le 2023-08-09T11:48:05.4576151Z aptx ipod pcm_u32be 2023-08-09T11:48:05.4576393Z aptx_hd ircam pcm_u32le 2023-08-09T11:48:05.5565981Z argo_asf ismv pcm_u8 2023-08-09T11:48:05.5566371Z argo_cvg ivf pcm_vidc 2023-08-09T11:48:05.5566699Z asf jacosub psp 2023-08-09T11:48:05.5567055Z asf_stream kvag rawvideo 2023-08-09T11:48:05.5567351Z ass latm rm 2023-08-09T11:48:05.5567633Z ast lrc roq 2023-08-09T11:48:05.5567924Z au m4v rso 2023-08-09T11:48:05.5568229Z avi matroska rtp 2023-08-09T11:48:05.5568574Z avif matroska_audio rtp_mpegts 2023-08-09T11:48:05.5568903Z avm2 md5 rtsp 2023-08-09T11:48:05.5569204Z avs2 microdvd sap 2023-08-09T11:48:05.5569420Z avs3 mjpeg sbc 2023-08-09T11:48:05.5569658Z bit mkvtimestamp_v2 scc 2023-08-09T11:48:05.5569889Z caf mlp segafilm 2023-08-09T11:48:05.5570119Z cavsvideo mmf segment 2023-08-09T11:48:05.5570350Z codec2 mov smjpeg 2023-08-09T11:48:05.5570595Z codec2raw mp2 smoothstreaming 2023-08-09T11:48:05.5570828Z crc mp3 sox 2023-08-09T11:48:05.5571043Z dash mp4 spdif 2023-08-09T11:48:05.5571272Z data mpeg1system spx 2023-08-09T11:48:05.5571509Z daud mpeg1vcd srt 2023-08-09T11:48:05.5571836Z dfpwm mpeg1video stream_segment 2023-08-09T11:48:05.5572136Z dirac mpeg2dvd streamhash 2023-08-09T11:48:05.5572393Z dnxhd mpeg2svcd sup 2023-08-09T11:48:05.5572692Z dts mpeg2video swf 2023-08-09T11:48:05.5572918Z dv mpeg2vob tee 2023-08-09T11:48:05.5573299Z eac3 mpegts tg2 2023-08-09T11:48:05.5573523Z f4v mpjpeg tgp 2023-08-09T11:48:05.5573753Z ffmetadata mxf truehd 2023-08-09T11:48:05.5573981Z fifo mxf_d10 tta 2023-08-09T11:48:05.5574207Z fifo_test mxf_opatom ttml 2023-08-09T11:48:05.5574448Z filmstrip null uncodedframecrc 2023-08-09T11:48:05.5574685Z fits nut vc1 2023-08-09T11:48:05.5574903Z flac obu vc1t 2023-08-09T11:48:05.5575115Z flv oga voc 2023-08-09T11:48:05.5575336Z framecrc ogg w64 2023-08-09T11:48:05.5575559Z framehash ogv wav 2023-08-09T11:48:05.5575782Z framemd5 oma webm 2023-08-09T11:48:05.5576017Z g722 opus webm_chunk 2023-08-09T11:48:05.5576265Z g723_1 pcm_alaw webm_dash_manifest 2023-08-09T11:48:05.5576497Z g726 pcm_f32be webp 2023-08-09T11:48:05.5576724Z g726le pcm_f32le webvtt 2023-08-09T11:48:05.5576955Z gif pcm_f64be wsaud 2023-08-09T11:48:05.5577183Z gsm pcm_f64le wtv 2023-08-09T11:48:05.5577401Z gxf pcm_mulaw wv 2023-08-09T11:48:05.5577640Z h261 pcm_s16be yuv4mpegpipe 2023-08-09T11:48:05.5577782Z 2023-08-09T11:48:05.5577865Z Enabled protocols: 2023-08-09T11:48:05.5578073Z async http rtmpt 2023-08-09T11:48:05.5578312Z cache httpproxy rtmpts 2023-08-09T11:48:05.5578632Z concat https rtp 2023-08-09T11:48:05.5578854Z concatf icecast srtp 2023-08-09T11:48:05.5579099Z crypto ipfs_gateway subfile 2023-08-09T11:48:05.5579339Z data ipns_gateway tcp 2023-08-09T11:48:05.5579562Z fd md5 tee 2023-08-09T11:48:05.5579774Z ffrtmphttp mmsh tls 2023-08-09T11:48:05.5580000Z file mmst udp 2023-08-09T11:48:05.5580224Z ftp pipe udplite 2023-08-09T11:48:05.5580451Z gopher prompeg unix 2023-08-09T11:48:05.5580667Z gophers rtmp 2023-08-09T11:48:05.5580864Z hls rtmps 2023-08-09T11:48:05.5581012Z 2023-08-09T11:48:05.5581094Z Enabled filters: 2023-08-09T11:48:05.5581314Z a3dscope cropdetect oscilloscope 2023-08-09T11:48:05.5581569Z abench crossfeed overlay 2023-08-09T11:48:05.5581832Z abitscope crystalizer overlay_cuda 2023-08-09T11:48:05.5582079Z acompressor cue owdenoise 2023-08-09T11:48:05.5582318Z acontrast curves pad 2023-08-09T11:48:05.5582561Z acopy datascope pal100bars 2023-08-09T11:48:05.5582807Z acrossfade dblur pal75bars 2023-08-09T11:48:05.5583052Z acrossover dcshift palettegen 2023-08-09T11:48:05.5583296Z acrusher dctdnoiz paletteuse 2023-08-09T11:48:05.5583522Z acue deband pan 2023-08-09T11:48:05.5583747Z addroi deblock perms 2023-08-09T11:48:05.5583994Z adeclick decimate perspective 2023-08-09T11:48:05.5584244Z adeclip deconvolve phase 2023-08-09T11:48:05.5584500Z adecorrelate dedot photosensitivity 2023-08-09T11:48:05.5584836Z adelay deesser pixdesctest 2023-08-09T11:48:05.5585083Z adenorm deflate pixelize 2023-08-09T11:48:05.5585323Z aderivative deflicker pixscope 2023-08-09T11:48:05.5585570Z adrawgraph dejudder pp 2023-08-09T11:48:05.5585802Z adrc delogo pp7 2023-08-09T11:48:05.5586053Z adynamicequalizer derain premultiply 2023-08-09T11:48:05.5586306Z adynamicsmooth deshake prewitt 2023-08-09T11:48:05.5586557Z aecho despill pseudocolor 2023-08-09T11:48:05.5586856Z aemphasis detelecine psnr 2023-08-09T11:48:05.5587167Z aeval dialoguenhance pullup 2023-08-09T11:48:05.5587484Z aevalsrc dilation qp 2023-08-09T11:48:05.5587802Z aexciter displace random 2023-08-09T11:48:05.5588115Z afade dnn_classify readeia608 2023-08-09T11:48:05.5588576Z afdelaysrc dnn_detect readvitc 2023-08-09T11:48:05.5588910Z afftdn dnn_processing realtime 2023-08-09T11:48:05.5589240Z afftfilt doubleweave remap 2023-08-09T11:48:05.5589552Z afifo drawbox removegrain 2023-08-09T11:48:05.5589859Z afir drawgraph removelogo 2023-08-09T11:48:05.5590179Z afirsrc drawgrid repeatfields 2023-08-09T11:48:05.5590488Z aformat drmeter replaygain 2023-08-09T11:48:05.5590802Z afreqshift dynaudnorm reverse 2023-08-09T11:48:05.5591116Z afwtdn earwax rgbashift 2023-08-09T11:48:05.5591413Z agate ebur128 rgbtestsrc 2023-08-09T11:48:05.5591885Z agraphmonitor edgedetect roberts 2023-08-09T11:48:05.5592207Z ahistogram elbg rotate 2023-08-09T11:48:05.5592511Z aiir entropy sab 2023-08-09T11:48:05.5592807Z aintegral epx scale 2023-08-09T11:48:05.5593127Z ainterleave eq scale2ref 2023-08-09T11:48:05.5593457Z alatency equalizer scale_cuda 2023-08-09T11:48:05.5593767Z alimiter erosion scdet 2023-08-09T11:48:05.5594070Z allpass estdif scharr 2023-08-09T11:48:05.5594374Z allrgb exposure scroll 2023-08-09T11:48:05.5594696Z allyuv extractplanes segment 2023-08-09T11:48:05.5595017Z aloop extrastereo select 2023-08-09T11:48:05.5595351Z alphaextract fade selectivecolor 2023-08-09T11:48:05.5595694Z alphamerge feedback sendcmd 2023-08-09T11:48:05.5596039Z amerge fftdnoiz separatefields 2023-08-09T11:48:05.5596363Z ametadata fftfilt setdar 2023-08-09T11:48:05.5596671Z amix field setfield 2023-08-09T11:48:05.5596947Z amovie fieldhint setparams 2023-08-09T11:48:05.5597188Z amplify fieldmatch setpts 2023-08-09T11:48:05.5597435Z amultiply fieldorder setrange 2023-08-09T11:48:05.5597693Z anequalizer fifo setsar 2023-08-09T11:48:05.5597956Z anlmdn fillborders settb 2023-08-09T11:48:05.5598190Z anlmf find_rect shear 2023-08-09T11:48:05.5598415Z anlms firequalizer showcqt 2023-08-09T11:48:05.5598654Z anoisesrc flanger showcwt 2023-08-09T11:48:05.5598901Z anull floodfill showfreqs 2023-08-09T11:48:05.5599217Z anullsink format showinfo 2023-08-09T11:48:05.5599454Z anullsrc fps showpalette 2023-08-09T11:48:05.5599704Z apad framepack showspatial 2023-08-09T11:48:05.5599950Z aperms framerate showspectrum 2023-08-09T11:48:05.5600209Z aphasemeter framestep showspectrumpic 2023-08-09T11:48:05.5600474Z aphaser freezedetect showvolume 2023-08-09T11:48:05.5600727Z aphaseshift freezeframes showwaves 2023-08-09T11:48:05.5600977Z apsyclip fspp showwavespic 2023-08-09T11:48:05.5614166Z apulsator gblur shuffleframes 2023-08-09T11:48:05.5614452Z arealtime geq shufflepixels 2023-08-09T11:48:05.5614734Z aresample gradfun shuffleplanes 2023-08-09T11:48:05.5615011Z areverse gradients sidechaincompress 2023-08-09T11:48:05.5615290Z arnndn graphmonitor sidechaingate 2023-08-09T11:48:05.5615551Z asdr grayworld sidedata 2023-08-09T11:48:05.5615813Z asegment greyedge sierpinski 2023-08-09T11:48:05.5616069Z aselect guided signalstats 2023-08-09T11:48:05.5616322Z asendcmd haas signature 2023-08-09T11:48:05.5616585Z asetnsamples haldclut silencedetect 2023-08-09T11:48:05.5616852Z asetpts haldclutsrc silenceremove 2023-08-09T11:48:05.5617106Z asetrate hdcd sinc 2023-08-09T11:48:05.5617350Z asettb headphone sine 2023-08-09T11:48:05.5617600Z ashowinfo hflip siti 2023-08-09T11:48:05.5618054Z asidedata highpass smartblur 2023-08-09T11:48:05.5618320Z asoftclip highshelf smptebars 2023-08-09T11:48:05.5618590Z aspectralstats hilbert smptehdbars 2023-08-09T11:49:07.6150229Z asplit histeq sobel 2023-08-09T11:49:07.6150547Z astats histogram spectrumsynth 2023-08-09T11:49:07.6150811Z astreamselect hqdn3d speechnorm 2023-08-09T11:49:07.6153192Z asubboost hqx split 2023-08-09T11:49:07.6153440Z asubcut hstack spp 2023-08-09T11:49:07.6153747Z asupercut hsvhold sr 2023-08-09T11:49:07.6154083Z asuperpass hsvkey ssim 2023-08-09T11:49:07.6154460Z asuperstop hue ssim360 2023-08-09T11:49:07.6154745Z atadenoise huesaturation stereo3d 2023-08-09T11:49:07.6157288Z atempo hwdownload stereotools 2023-08-09T11:49:07.6157680Z atilt hwmap stereowiden 2023-08-09T11:49:07.6158033Z atrim hwupload streamselect 2023-08-09T11:49:07.6158395Z avectorscope hwupload_cuda super2xsai 2023-08-09T11:49:07.6158779Z avgblur hysteresis superequalizer 2023-08-09T11:49:07.6159143Z avsynctest identity surround 2023-08-09T11:49:07.6159521Z axcorrelate idet swaprect 2023-08-09T11:49:07.6159895Z backgroundkey il swapuv 2023-08-09T11:49:07.6160263Z bandpass inflate tblend 2023-08-09T11:49:07.6160638Z bandreject interlace telecine 2023-08-09T11:49:07.6161011Z bass interleave testsrc 2023-08-09T11:49:07.6161349Z bbox join testsrc2 2023-08-09T11:49:07.6161691Z bench kerndeint thistogram 2023-08-09T11:49:07.6162269Z bilateral kirsch threshold 2023-08-09T11:49:07.6162626Z bilateral_cuda lagfun thumbnail 2023-08-09T11:49:07.6163020Z biquad latency thumbnail_cuda 2023-08-09T11:49:07.6163738Z bitplanenoise lenscorrection tile 2023-08-09T11:49:07.6164119Z blackdetect life tiltshelf 2023-08-09T11:49:07.6164511Z blackframe limitdiff tinterlace 2023-08-09T11:49:07.6164907Z blend limiter tlut2 2023-08-09T11:49:07.6165266Z blockdetect loop tmedian 2023-08-09T11:49:07.6165649Z blurdetect loudnorm tmidequalizer 2023-08-09T11:49:07.6166001Z bm3d lowpass tmix 2023-08-09T11:49:07.6166348Z boxblur lowshelf tonemap 2023-08-09T11:49:07.6166669Z bwdif lumakey tpad 2023-08-09T11:49:07.6167002Z cas lut transpose 2023-08-09T11:49:07.6167322Z cellauto lut1d treble 2023-08-09T11:49:07.6167643Z channelmap lut2 tremolo 2023-08-09T11:49:07.6167942Z channelsplit lut3d trim 2023-08-09T11:49:07.6168262Z chorus lutrgb unpremultiply 2023-08-09T11:49:07.6168590Z chromahold lutyuv unsharp 2023-08-09T11:49:07.6168879Z chromakey mandelbrot untile 2023-08-09T11:49:07.6169216Z chromakey_cuda maskedclamp v360 2023-08-09T11:49:07.6169557Z chromanr maskedmax vaguedenoiser 2023-08-09T11:49:07.6169888Z chromashift maskedmerge varblur 2023-08-09T11:49:07.6170392Z ciescope maskedmin vectorscope 2023-08-09T11:49:07.6170728Z codecview maskedthreshold vflip 2023-08-09T11:49:07.6171056Z color maskfun vfrdet 2023-08-09T11:49:07.6171341Z colorbalance mcompand vibrance 2023-08-09T11:49:07.6171599Z colorchannelmixer median vibrato 2023-08-09T11:49:07.6171851Z colorchart mergeplanes vif 2023-08-09T11:49:07.6172133Z colorcontrast mestimate vignette 2023-08-09T11:49:07.6172386Z colorcorrect metadata virtualbass 2023-08-09T11:49:07.6172647Z colorhold midequalizer vmafmotion 2023-08-09T11:49:07.6172965Z colorize minterpolate volume 2023-08-09T11:49:07.6173284Z colorkey mix volumedetect 2023-08-09T11:49:07.6173620Z colorlevels monochrome vstack 2023-08-09T11:49:07.6173957Z colormap morpho w3fdif 2023-08-09T11:49:07.6174255Z colormatrix movie waveform 2023-08-09T11:49:07.6174622Z colorspace mpdecimate weave 2023-08-09T11:49:07.6174971Z colorspace_cuda mptestsrc xbr 2023-08-09T11:49:07.6175231Z colorspectrum msad xcorrelate 2023-08-09T11:49:07.6175509Z colortemperature multiply xfade 2023-08-09T11:49:07.6175839Z compand negate xmedian 2023-08-09T11:49:07.6176164Z compensationdelay nlmeans xstack 2023-08-09T11:49:07.6176440Z concat nnedi yadif 2023-08-09T11:49:07.6176684Z convolution noformat yadif_cuda 2023-08-09T11:49:07.6176939Z convolve noise yaepblur 2023-08-09T11:49:07.6177188Z copy normalize yuvtestsrc 2023-08-09T11:49:07.6177507Z corr null zoompan 2023-08-09T11:49:07.6177767Z cover_rect nullsink 2023-08-09T11:49:07.6178035Z crop nullsrc 2023-08-09T11:49:07.6178325Z 2023-08-09T11:49:07.6178434Z Enabled bsfs: 2023-08-09T11:49:07.6178745Z aac_adtstoasc h264_redundant_pps opus_metadata 2023-08-09T11:49:07.6179030Z av1_frame_merge hapqa_extract pcm_rechunk 2023-08-09T11:49:07.6179298Z av1_frame_split hevc_metadata pgs_frame_merge 2023-08-09T11:49:07.6179577Z av1_metadata hevc_mp4toannexb prores_metadata 2023-08-09T11:49:07.6179853Z chomp imx_dump_header remove_extradata 2023-08-09T11:49:07.6180107Z dca_core media100_to_mjpegb setts 2023-08-09T11:49:07.6180366Z dts2pts mjpeg2jpeg text2movsub 2023-08-09T11:49:07.6180635Z dump_extradata mjpega_dump_header trace_headers 2023-08-09T11:49:07.6180907Z dv_error_marker mov2textsub truehd_core 2023-08-09T11:49:07.6181175Z eac3_core mp3_header_decompress vp9_metadata 2023-08-09T11:49:07.6181460Z extract_extradata mpeg2_metadata vp9_raw_reorder 2023-08-09T11:49:07.6181743Z filter_units mpeg4_unpack_bframes vp9_superframe 2023-08-09T11:49:07.6182017Z h264_metadata noise vp9_superframe_split 2023-08-09T11:49:07.6182264Z h264_mp4toannexb null 2023-08-09T11:49:07.6182394Z 2023-08-09T11:49:07.6182481Z Enabled indevs: 2023-08-09T11:49:07.6182666Z fbdev oss 2023-08-09T11:49:07.6182866Z lavfi v4l2 2023-08-09T11:49:07.6182987Z 2023-08-09T11:49:07.6183067Z Enabled outdevs: 2023-08-09T11:49:07.6183274Z fbdev oss v4l2 2023-08-09T11:49:07.6183411Z 2023-08-09T11:49:07.6183523Z License: nonfree and unredistributable 2023-08-09T11:49:07.6183738Z + make clean 2023-08-09T11:49:07.6184033Z + make -j 2023-08-09T11:49:07.6184291Z + make install 2023-08-09T11:49:07.6184535Z INSTALL libavdevice/libavdevice.so 2023-08-09T11:49:07.6184851Z STRIP install-libavdevice-shared 2023-08-09T11:49:07.6185096Z INSTALL libavfilter/libavfilter.so 2023-08-09T11:49:07.6185383Z STRIP install-libavfilter-shared 2023-08-09T11:49:07.6185628Z INSTALL libavformat/libavformat.so 2023-08-09T11:49:07.6185898Z STRIP install-libavformat-shared 2023-08-09T11:49:07.6186139Z INSTALL libavcodec/libavcodec.so 2023-08-09T11:49:07.6186412Z STRIP install-libavcodec-shared 2023-08-09T11:49:07.6186653Z INSTALL libpostproc/libpostproc.so 2023-08-09T11:49:07.6186933Z STRIP install-libpostproc-shared 2023-08-09T11:49:07.6187183Z INSTALL libswresample/libswresample.so 2023-08-09T11:49:07.6187474Z STRIP install-libswresample-shared 2023-08-09T11:49:07.6187716Z INSTALL libswscale/libswscale.so 2023-08-09T11:49:07.6187983Z STRIP install-libswscale-shared 2023-08-09T11:49:07.6188208Z INSTALL libavutil/libavutil.so 2023-08-09T11:49:07.6188474Z STRIP install-libavutil-shared 2023-08-09T11:49:07.6188876Z INSTALL install-progs-yes 2023-08-09T11:49:07.6189079Z INSTALL ffmpeg 2023-08-09T11:49:07.6189270Z INSTALL ffprobe 2023-08-09T11:49:07.6189557Z INSTALL presets/libvpx-1080p50_60.ffpreset 2023-08-09T11:49:07.6189840Z INSTALL presets/libvpx-360p.ffpreset 2023-08-09T11:49:07.6190126Z INSTALL presets/libvpx-1080p.ffpreset 2023-08-09T11:49:07.6190416Z INSTALL presets/libvpx-720p50_60.ffpreset 2023-08-09T11:49:07.6190691Z INSTALL presets/libvpx-720p.ffpreset 2023-08-09T11:49:07.6190921Z INSTALL doc/ffprobe.xsd 2023-08-09T11:49:07.6191142Z INSTALL doc/examples/transcode.c 2023-08-09T11:49:07.6191379Z INSTALL doc/examples/vaapi_transcode.c 2023-08-09T11:49:07.6191616Z INSTALL doc/examples/demux_decode.c 2023-08-09T11:49:07.6191849Z INSTALL doc/examples/hw_decode.c 2023-08-09T11:49:07.6192068Z INSTALL doc/examples/mux.c 2023-08-09T11:49:07.6192294Z INSTALL doc/examples/avio_read_callback.c 2023-08-09T11:49:07.6192536Z INSTALL doc/examples/encode_audio.c 2023-08-09T11:49:07.6192793Z INSTALL doc/examples/avio_http_serve_files.c 2023-08-09T11:49:07.6193032Z INSTALL doc/examples/filter_audio.c 2023-08-09T11:49:07.6193283Z INSTALL doc/examples/decode_filter_video.c 2023-08-09T11:49:07.6193591Z INSTALL doc/examples/decode_video.c 2023-08-09T11:49:07.6193825Z INSTALL doc/examples/avio_list_dir.c 2023-08-09T11:49:07.6194063Z INSTALL doc/examples/qsv_transcode.c 2023-08-09T11:49:07.6194294Z INSTALL doc/examples/remux.c 2023-08-09T11:49:07.6194515Z INSTALL doc/examples/extract_mvs.c 2023-08-09T11:49:07.6194760Z INSTALL doc/examples/decode_filter_audio.c 2023-08-09T11:49:07.6195000Z INSTALL doc/examples/qsv_decode.c 2023-08-09T11:49:07.6195223Z INSTALL doc/examples/vaapi_encode.c 2023-08-09T11:49:07.6195479Z INSTALL doc/examples/resample_audio.c 2023-08-09T11:49:07.6195716Z INSTALL doc/examples/decode_audio.c 2023-08-09T11:49:07.6195953Z INSTALL doc/examples/show_metadata.c 2023-08-09T11:49:07.6196185Z INSTALL doc/examples/transcode_aac.c 2023-08-09T11:49:07.6196427Z INSTALL doc/examples/encode_video.c 2023-08-09T11:49:07.6196664Z INSTALL doc/examples/scale_video.c 2023-08-09T11:49:07.6196881Z INSTALL doc/examples/README 2023-08-09T11:49:07.6197100Z INSTALL doc/examples/Makefile 2023-08-09T11:49:07.6197333Z INSTALL doc/examples/transcode.c 2023-08-09T11:49:07.6197562Z INSTALL doc/examples/vaapi_transcode.c 2023-08-09T11:49:07.6197800Z INSTALL doc/examples/demux_decode.c 2023-08-09T11:49:07.6198032Z INSTALL doc/examples/hw_decode.c 2023-08-09T11:49:07.6198244Z INSTALL doc/examples/mux.c 2023-08-09T11:49:07.6198478Z INSTALL doc/examples/avio_read_callback.c 2023-08-09T11:49:07.6198717Z INSTALL doc/examples/encode_audio.c 2023-08-09T11:49:07.6198956Z INSTALL doc/examples/avio_http_serve_files.c 2023-08-09T11:49:07.6199201Z INSTALL doc/examples/filter_audio.c 2023-08-09T11:49:07.6199442Z INSTALL doc/examples/decode_filter_video.c 2023-08-09T11:49:07.6199687Z INSTALL doc/examples/decode_video.c 2023-08-09T11:49:07.6199918Z INSTALL doc/examples/avio_list_dir.c 2023-08-09T11:49:07.6200158Z INSTALL doc/examples/qsv_transcode.c 2023-08-09T11:49:07.6200469Z INSTALL doc/examples/remux.c 2023-08-09T11:49:07.6200688Z INSTALL doc/examples/extract_mvs.c 2023-08-09T11:49:07.6200937Z INSTALL doc/examples/decode_filter_audio.c 2023-08-09T11:49:07.6201175Z INSTALL doc/examples/qsv_decode.c 2023-08-09T11:49:07.6201398Z INSTALL doc/examples/vaapi_encode.c 2023-08-09T11:49:07.6201635Z INSTALL doc/examples/resample_audio.c 2023-08-09T11:49:07.6201871Z INSTALL doc/examples/decode_audio.c 2023-08-09T11:49:07.6202095Z INSTALL doc/examples/show_metadata.c 2023-08-09T11:49:07.6202329Z INSTALL doc/examples/transcode_aac.c 2023-08-09T11:49:07.6202561Z INSTALL doc/examples/encode_video.c 2023-08-09T11:49:07.6202785Z INSTALL doc/examples/scale_video.c 2023-08-09T11:49:07.6203009Z INSTALL doc/examples/README 2023-08-09T11:49:07.6203229Z INSTALL doc/examples/Makefile 2023-08-09T11:49:07.6203728Z INSTALL libavdevice/avdevice.h 2023-08-09T11:49:07.6203969Z INSTALL libavdevice/version.h 2023-08-09T11:49:07.6204201Z INSTALL libavdevice/version_major.h 2023-08-09T11:49:07.6204464Z INSTALL libavdevice/libavdevice.pc 2023-08-09T11:49:07.6204721Z INSTALL libavfilter/avfilter.h 2023-08-09T11:49:07.6204955Z INSTALL libavfilter/buffersink.h 2023-08-09T11:49:07.6205179Z INSTALL libavfilter/buffersrc.h 2023-08-09T11:49:07.6205404Z INSTALL libavfilter/version.h 2023-08-09T11:49:07.6205634Z INSTALL libavfilter/version_major.h 2023-08-09T11:49:07.6205864Z INSTALL libavfilter/libavfilter.pc 2023-08-09T11:49:07.6206095Z INSTALL libavformat/avformat.h 2023-08-09T11:49:07.6206315Z INSTALL libavformat/avio.h 2023-08-09T11:49:07.6206535Z INSTALL libavformat/version.h 2023-08-09T11:49:07.6206756Z INSTALL libavformat/version_major.h 2023-08-09T11:49:07.6206989Z INSTALL libavformat/libavformat.pc 2023-08-09T11:50:25.0047035Z INSTALL libavcodec/ac3_parser.h 2023-08-09T11:50:25.0047432Z INSTALL libavcodec/adts_parser.h 2023-08-09T11:50:25.0047693Z INSTALL libavcodec/avcodec.h 2023-08-09T11:50:25.0047972Z INSTALL libavcodec/avdct.h 2023-08-09T11:50:25.0048182Z INSTALL libavcodec/avfft.h 2023-08-09T11:50:25.0053231Z INSTALL libavcodec/bsf.h 2023-08-09T11:50:25.0053547Z INSTALL libavcodec/codec.h 2023-08-09T11:50:25.0053845Z INSTALL libavcodec/codec_desc.h 2023-08-09T11:50:25.0054393Z INSTALL libavcodec/codec_id.h 2023-08-09T11:50:25.0054723Z INSTALL libavcodec/codec_par.h 2023-08-09T11:50:25.0054996Z INSTALL libavcodec/d3d11va.h 2023-08-09T11:50:25.0055298Z INSTALL libavcodec/defs.h 2023-08-09T11:50:25.0055582Z INSTALL libavcodec/dirac.h 2023-08-09T11:50:25.0055872Z INSTALL libavcodec/dv_profile.h 2023-08-09T11:50:25.0056232Z INSTALL libavcodec/dxva2.h 2023-08-09T11:50:25.0056484Z INSTALL libavcodec/jni.h 2023-08-09T11:50:25.0056703Z INSTALL libavcodec/mediacodec.h 2023-08-09T11:50:25.0056926Z INSTALL libavcodec/packet.h 2023-08-09T11:50:25.0057130Z INSTALL libavcodec/qsv.h 2023-08-09T11:50:25.0057349Z INSTALL libavcodec/vdpau.h 2023-08-09T11:50:25.0057563Z INSTALL libavcodec/version.h 2023-08-09T11:50:25.0057779Z INSTALL libavcodec/version_major.h 2023-08-09T11:50:25.0058027Z INSTALL libavcodec/videotoolbox.h 2023-08-09T11:50:25.0058302Z INSTALL libavcodec/vorbis_parser.h 2023-08-09T11:50:25.0058607Z INSTALL libavcodec/xvmc.h 2023-08-09T11:50:25.0058888Z INSTALL libavcodec/libavcodec.pc 2023-08-09T11:50:25.0059235Z INSTALL libpostproc/postprocess.h 2023-08-09T11:50:25.0059560Z INSTALL libpostproc/version.h 2023-08-09T11:50:25.0059873Z INSTALL libpostproc/version_major.h 2023-08-09T11:50:25.0060257Z INSTALL libpostproc/libpostproc.pc 2023-08-09T11:50:25.0060597Z INSTALL libswresample/swresample.h 2023-08-09T11:50:25.0060907Z INSTALL libswresample/version.h 2023-08-09T11:50:25.0061224Z INSTALL libswresample/version_major.h 2023-08-09T11:50:25.0061554Z INSTALL libswresample/libswresample.pc 2023-08-09T11:50:25.0061879Z INSTALL libswscale/swscale.h 2023-08-09T11:50:25.0062182Z INSTALL libswscale/version.h 2023-08-09T11:50:25.0062482Z INSTALL libswscale/version_major.h 2023-08-09T11:50:25.0062805Z INSTALL libswscale/libswscale.pc 2023-08-09T11:50:25.0063087Z INSTALL libavutil/adler32.h 2023-08-09T11:50:25.0063439Z INSTALL libavutil/aes.h 2023-08-09T11:50:25.0063654Z INSTALL libavutil/aes_ctr.h 2023-08-09T11:50:25.0063900Z INSTALL libavutil/ambient_viewing_environment.h 2023-08-09T11:50:25.0064143Z INSTALL libavutil/attributes.h 2023-08-09T11:50:25.0064368Z INSTALL libavutil/audio_fifo.h 2023-08-09T11:50:25.0064591Z INSTALL libavutil/avassert.h 2023-08-09T11:50:25.0064802Z INSTALL libavutil/avstring.h 2023-08-09T11:50:25.0065019Z INSTALL libavutil/avutil.h 2023-08-09T11:50:25.0065231Z INSTALL libavutil/base64.h 2023-08-09T11:50:25.0065435Z INSTALL libavutil/blowfish.h 2023-08-09T11:50:25.0065667Z INSTALL libavutil/bprint.h 2023-08-09T11:50:25.0065912Z INSTALL libavutil/bswap.h 2023-08-09T11:50:25.0066117Z INSTALL libavutil/buffer.h 2023-08-09T11:50:25.0066324Z INSTALL libavutil/cast5.h 2023-08-09T11:50:25.0066536Z INSTALL libavutil/camellia.h 2023-08-09T11:50:25.0066755Z INSTALL libavutil/channel_layout.h 2023-08-09T11:50:25.0066977Z INSTALL libavutil/common.h 2023-08-09T11:50:25.0067195Z INSTALL libavutil/cpu.h 2023-08-09T11:50:25.0067392Z INSTALL libavutil/crc.h 2023-08-09T11:50:25.0067599Z INSTALL libavutil/csp.h 2023-08-09T11:50:25.0067804Z INSTALL libavutil/des.h 2023-08-09T11:50:25.0068019Z INSTALL libavutil/detection_bbox.h 2023-08-09T11:50:25.0068237Z INSTALL libavutil/dict.h 2023-08-09T11:50:25.0068450Z INSTALL libavutil/display.h 2023-08-09T11:50:25.0068796Z INSTALL libavutil/dovi_meta.h 2023-08-09T11:50:25.0069082Z INSTALL libavutil/downmix_info.h 2023-08-09T11:50:25.0069391Z INSTALL libavutil/encryption_info.h 2023-08-09T11:50:25.0069695Z INSTALL libavutil/error.h 2023-08-09T11:50:25.0069972Z INSTALL libavutil/eval.h 2023-08-09T11:50:25.0070258Z INSTALL libavutil/fifo.h 2023-08-09T11:50:25.0070541Z INSTALL libavutil/file.h 2023-08-09T11:50:25.0071324Z INSTALL libavutil/frame.h 2023-08-09T11:50:25.0071540Z INSTALL libavutil/hash.h 2023-08-09T11:50:25.0071772Z INSTALL libavutil/hdr_dynamic_metadata.h 2023-08-09T11:50:25.0072021Z INSTALL libavutil/hdr_dynamic_vivid_metadata.h 2023-08-09T11:50:25.0072263Z INSTALL libavutil/hmac.h 2023-08-09T11:50:25.0072478Z INSTALL libavutil/hwcontext.h 2023-08-09T11:50:25.0072699Z INSTALL libavutil/hwcontext_cuda.h 2023-08-09T11:50:25.0073027Z INSTALL libavutil/hwcontext_d3d11va.h 2023-08-09T11:50:25.0073272Z INSTALL libavutil/hwcontext_drm.h 2023-08-09T11:50:25.0073499Z INSTALL libavutil/hwcontext_dxva2.h 2023-08-09T11:50:25.0073731Z INSTALL libavutil/hwcontext_qsv.h 2023-08-09T11:50:25.0073968Z INSTALL libavutil/hwcontext_mediacodec.h 2023-08-09T11:50:25.0074202Z INSTALL libavutil/hwcontext_opencl.h 2023-08-09T11:50:25.0074441Z INSTALL libavutil/hwcontext_vaapi.h 2023-08-09T11:50:25.0074689Z INSTALL libavutil/hwcontext_videotoolbox.h 2023-08-09T11:50:25.0074925Z INSTALL libavutil/hwcontext_vdpau.h 2023-08-09T11:50:25.0075160Z INSTALL libavutil/hwcontext_vulkan.h 2023-08-09T11:50:25.0075387Z INSTALL libavutil/imgutils.h 2023-08-09T11:50:25.0075614Z INSTALL libavutil/intfloat.h 2023-08-09T11:50:25.0075908Z INSTALL libavutil/intreadwrite.h 2023-08-09T11:50:25.0076133Z INSTALL libavutil/lfg.h 2023-08-09T11:50:25.0076329Z INSTALL libavutil/log.h 2023-08-09T11:50:25.0076533Z INSTALL libavutil/lzo.h 2023-08-09T11:50:25.0076746Z INSTALL libavutil/macros.h 2023-08-09T11:50:25.0076965Z INSTALL libavutil/mathematics.h 2023-08-09T11:50:25.0077205Z INSTALL libavutil/mastering_display_metadata.h 2023-08-09T11:50:25.0077438Z INSTALL libavutil/md5.h 2023-08-09T11:50:25.0077640Z INSTALL libavutil/mem.h 2023-08-09T11:50:25.0077846Z INSTALL libavutil/motion_vector.h 2023-08-09T11:50:25.0078067Z INSTALL libavutil/murmur3.h 2023-08-09T11:50:25.0078280Z INSTALL libavutil/opt.h 2023-08-09T11:50:25.0078486Z INSTALL libavutil/parseutils.h 2023-08-09T11:50:25.0078707Z INSTALL libavutil/pixdesc.h 2023-08-09T11:50:25.0078929Z INSTALL libavutil/pixelutils.h 2023-08-09T11:50:25.0079140Z INSTALL libavutil/pixfmt.h 2023-08-09T11:50:25.0079368Z INSTALL libavutil/random_seed.h 2023-08-09T11:50:25.0079588Z INSTALL libavutil/rc4.h 2023-08-09T11:50:25.0079844Z INSTALL libavutil/rational.h 2023-08-09T11:50:25.0080298Z INSTALL libavutil/replaygain.h 2023-08-09T11:50:25.0080613Z INSTALL libavutil/ripemd.h 2023-08-09T11:50:25.0080917Z INSTALL libavutil/samplefmt.h 2023-08-09T11:50:25.0081244Z INSTALL libavutil/sha.h 2023-08-09T11:50:25.0081544Z INSTALL libavutil/sha512.h 2023-08-09T11:50:25.0081863Z INSTALL libavutil/spherical.h 2023-08-09T11:50:25.0082193Z INSTALL libavutil/stereo3d.h 2023-08-09T11:50:25.0082529Z INSTALL libavutil/threadmessage.h 2023-08-09T11:50:25.0082853Z INSTALL libavutil/time.h 2023-08-09T11:50:25.0083183Z INSTALL libavutil/timecode.h 2023-08-09T11:50:25.0083783Z INSTALL libavutil/timestamp.h 2023-08-09T11:50:25.0084080Z INSTALL libavutil/tree.h 2023-08-09T11:50:25.0084392Z INSTALL libavutil/twofish.h 2023-08-09T11:50:25.0084706Z INSTALL libavutil/uuid.h 2023-08-09T11:50:25.0085016Z INSTALL libavutil/version.h 2023-08-09T11:50:25.0085338Z INSTALL libavutil/video_enc_params.h 2023-08-09T11:50:25.0085680Z INSTALL libavutil/xtea.h 2023-08-09T11:50:25.0085996Z INSTALL libavutil/tea.h 2023-08-09T11:50:25.0086320Z INSTALL libavutil/tx.h 2023-08-09T11:50:25.0086685Z INSTALL libavutil/film_grain_params.h 2023-08-09T11:50:25.0087018Z INSTALL libavutil/avconfig.h 2023-08-09T11:50:25.0087362Z INSTALL libavutil/ffversion.h 2023-08-09T11:50:25.0087712Z INSTALL libavutil/libavutil.pc 2023-08-09T11:50:25.0088048Z + echo ::endgroup:: 2023-08-09T11:50:25.0088709Z ##[endgroup] 2023-08-09T11:50:25.0089269Z + echo '::group::Install other Dependencies' 2023-08-09T11:50:25.0089730Z ##[group]Install other Dependencies 2023-08-09T11:50:25.0090282Z + conda install --quiet --yes -c conda-forge -c numba/label/dev sox libvorbis librosa==0.10.0 parameterized 'requests>=2.20' 2023-08-09T11:50:25.0090605Z + local cmd=install 2023-08-09T11:50:25.0090791Z + case "$cmd" in 2023-08-09T11:50:25.0091208Z + __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:50:25.0091763Z + /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:50:25.0092169Z Collecting package metadata (current_repodata.json): ...working... done 2023-08-09T11:50:25.0092576Z Solving environment: ...working... 2023-08-09T11:50:25.0092908Z Warning: 2 possible package resolutions (only showing differing packages): 2023-08-09T11:50:25.0093472Z - conda-forge/linux-64::matplotlib-base-3.7.2-py39h0126182_0, conda-forge/noarch::pyparsing-3.0.9-pyhd8ed1ab_0 2023-08-09T11:50:25.0094362Z - conda-forge/linux-64::matplotlib-base-3.7.1-py39he190548_0, conda-forge/noarch::pyparsing-3.1.1-pyhd8ed1ab_0done 2023-08-09T11:50:25.0094608Z 2023-08-09T11:50:25.0094696Z ## Package Plan ## 2023-08-09T11:50:25.0094824Z 2023-08-09T11:50:25.0094930Z environment location: /work/ci_env 2023-08-09T11:50:25.0095076Z 2023-08-09T11:50:25.0095167Z added / updated specs: 2023-08-09T11:50:25.0095396Z - librosa==0.10.0 2023-08-09T11:50:25.0095615Z - libvorbis 2023-08-09T11:50:25.0095870Z - parameterized 2023-08-09T11:50:25.0096175Z - requests[version='>=2.20'] 2023-08-09T11:50:25.0096409Z - sox 2023-08-09T11:50:25.0096522Z 2023-08-09T11:50:25.0096527Z 2023-08-09T11:50:25.0096652Z The following packages will be downloaded: 2023-08-09T11:50:25.0096807Z 2023-08-09T11:50:25.0096911Z package | build 2023-08-09T11:50:25.0097195Z ---------------------------|----------------- 2023-08-09T11:50:25.0097539Z _libgcc_mutex-0.1 | conda_forge 3 KB conda-forge 2023-08-09T11:50:25.0097896Z _openmp_mutex-4.5 | 2_kmp_llvm 6 KB conda-forge 2023-08-09T11:50:25.0098249Z appdirs-1.4.4 | pyh9f0ad1d_0 13 KB conda-forge 2023-08-09T11:50:25.0098612Z audioread-3.0.0 | py39hf3d152e_1 34 KB conda-forge 2023-08-09T11:50:25.0098981Z brotli-1.0.9 | h166bdaf_9 20 KB conda-forge 2023-08-09T11:50:25.0099341Z brotli-bin-1.0.9 | h166bdaf_9 20 KB conda-forge 2023-08-09T11:50:25.0099809Z brotli-python-1.0.9 | py39h5a03fae_9 320 KB conda-forge 2023-08-09T11:50:25.0100182Z certifi-2023.7.22 | pyhd8ed1ab_0 150 KB conda-forge 2023-08-09T11:50:25.0100532Z cffi-1.15.1 | py39he91dace_3 229 KB conda-forge 2023-08-09T11:50:25.0100891Z charset-normalizer-3.2.0 | pyhd8ed1ab_0 45 KB conda-forge 2023-08-09T11:50:25.0101250Z contourpy-1.1.0 | py39h7633fee_0 216 KB conda-forge 2023-08-09T11:50:25.0101596Z cycler-0.11.0 | pyhd8ed1ab_0 10 KB conda-forge 2023-08-09T11:50:25.0101941Z decorator-5.1.1 | pyhd8ed1ab_0 12 KB conda-forge 2023-08-09T11:50:25.0102258Z ffmpeg-4.2.2 | h20bf706_0 59.6 MB 2023-08-09T11:50:25.0102597Z fonttools-4.42.0 | py39hd1e30aa_0 2.1 MB conda-forge 2023-08-09T11:50:25.0102946Z freetype-2.12.1 | hca18f0e_1 611 KB conda-forge 2023-08-09T11:50:25.0103339Z gettext-0.21.1 | h27087fc_0 4.1 MB conda-forge 2023-08-09T11:50:25.0103706Z idna-3.4 | pyhd8ed1ab_0 55 KB conda-forge 2023-08-09T11:50:25.0104069Z importlib-resources-6.0.1 | pyhd8ed1ab_0 9 KB conda-forge 2023-08-09T11:50:25.0104441Z importlib_resources-6.0.1 | pyhd8ed1ab_0 30 KB conda-forge 2023-08-09T11:50:25.0104787Z joblib-1.3.2 | pyhd8ed1ab_0 216 KB conda-forge 2023-08-09T11:50:25.0105133Z kiwisolver-1.4.4 | py39hf939315_1 76 KB conda-forge 2023-08-09T11:50:25.0105484Z lazy_loader-0.2 | pyhd8ed1ab_0 13 KB conda-forge 2023-08-09T11:50:25.0105889Z lcms2-2.15 | haa2dc70_1 236 KB conda-forge 2023-08-09T11:50:25.0106353Z lerc-4.0.0 | h27087fc_0 275 KB conda-forge 2023-08-09T11:50:25.0106867Z libbrotlicommon-1.0.9 | h166bdaf_9 69 KB conda-forge 2023-08-09T11:50:25.0107535Z libbrotlidec-1.0.9 | h166bdaf_9 32 KB conda-forge 2023-08-09T11:50:25.0108407Z libbrotlienc-1.0.9 | h166bdaf_9 259 KB conda-forge 2023-08-09T11:50:25.0108998Z libdeflate-1.18 | h0b41bf4_0 64 KB conda-forge 2023-08-09T11:50:25.0109453Z libflac-1.4.3 | h59595ed_0 385 KB conda-forge 2023-08-09T11:50:25.0109915Z libgcc-ng-13.1.0 | he5830b7_0 758 KB conda-forge 2023-08-09T11:50:25.0110353Z libgfortran-ng-13.1.0 | h69a702a_0 23 KB conda-forge 2023-08-09T11:50:25.0110713Z libgfortran5-13.1.0 | h15d22d2_0 1.4 MB conda-forge 2023-08-09T11:50:25.0111476Z libjpeg-turbo-2.1.5.1 | h0b41bf4_0 479 KB conda-forge 2023-08-09T11:50:25.0111862Z libllvm14-14.0.6 | hcd5def8_4 30.0 MB conda-forge 2023-08-09T11:50:25.0112199Z libogg-1.3.4 | h7f98852_1 206 KB conda-forge 2023-08-09T11:50:25.0112551Z libpng-1.6.39 | h753d276_0 276 KB conda-forge 2023-08-09T11:50:25.0113021Z librosa-0.10.0 | pyhd8ed1ab_2 188 KB conda-forge 2023-08-09T11:50:25.0113410Z libsndfile-1.2.0 | hb75c966_0 342 KB conda-forge 2023-08-09T11:50:25.0113760Z libstdcxx-ng-13.1.0 | hfd8a6a1_0 3.7 MB conda-forge 2023-08-09T11:50:25.0114104Z libtiff-4.5.1 | h8b53f26_0 408 KB conda-forge 2023-08-09T11:50:25.0114432Z libvorbis-1.3.7 | h9c3ff4c_0 280 KB conda-forge 2023-08-09T11:50:25.0114754Z libvpx-1.7.0 | h439df22_0 1.2 MB 2023-08-09T11:50:25.0115095Z libwebp-base-1.3.1 | hd590300_0 391 KB conda-forge 2023-08-09T11:50:25.0115565Z libxcb-1.15 | h0b41bf4_0 375 KB conda-forge 2023-08-09T11:50:25.0116027Z libzlib-1.2.13 | hd590300_5 60 KB conda-forge 2023-08-09T11:50:25.0116443Z llvm-openmp-16.0.6 | h4dfa4b3_0 39.9 MB conda-forge 2023-08-09T11:50:25.0116791Z llvmlite-0.40.1 | py39h174d805_0 2.4 MB conda-forge 2023-08-09T11:50:25.0117116Z mad-0.15.1b | h9c3ff4c_1 113 KB conda-forge 2023-08-09T11:50:25.0117460Z matplotlib-base-3.7.2 | py39h0126182_0 6.4 MB conda-forge 2023-08-09T11:50:25.0117847Z mkl-service-2.4.0 | py39h5eee18b_1 54 KB 2023-08-09T11:50:25.0118167Z mkl_fft-1.3.6 | py39h417a72b_1 211 KB 2023-08-09T11:50:25.0118474Z mkl_random-1.2.2 | py39h417a72b_1 294 KB 2023-08-09T11:50:25.0118805Z mpg123-1.31.3 | hcb278e6_0 474 KB conda-forge 2023-08-09T11:50:25.0119164Z msgpack-python-1.0.5 | py39h4b4f3f3_0 83 KB conda-forge 2023-08-09T11:50:25.0119520Z munkres-1.1.4 | pyh9f0ad1d_0 12 KB conda-forge 2023-08-09T11:50:25.0119845Z numba-0.57.1 | py39hb75a051_0 3.9 MB conda-forge 2023-08-09T11:50:25.0120165Z numpy-1.24.3 | py39hf6e8229_1 10 KB 2023-08-09T11:50:25.0120486Z numpy-base-1.24.3 | py39h060ed82_1 6.2 MB 2023-08-09T11:50:25.0120817Z openjpeg-2.5.0 | hfec8fc6_2 344 KB conda-forge 2023-08-09T11:50:25.0121150Z openssl-3.1.2 | hd590300_0 2.5 MB conda-forge 2023-08-09T11:50:25.0121484Z packaging-23.1 | pyhd8ed1ab_0 45 KB conda-forge 2023-08-09T11:50:25.0121833Z parameterized-0.9.0 | pyhd8ed1ab_0 24 KB conda-forge 2023-08-09T11:50:25.0122168Z pillow-10.0.0 | py39haaeba84_0 44.2 MB conda-forge 2023-08-09T11:50:25.0122597Z pooch-1.6.0 | pyhd8ed1ab_0 44 KB conda-forge 2023-08-09T11:50:25.0123047Z pthread-stubs-0.4 | h36c2ea0_1001 5 KB conda-forge 2023-08-09T11:50:25.0123629Z pycparser-2.21 | pyhd8ed1ab_0 100 KB conda-forge 2023-08-09T11:50:25.0124002Z pyparsing-3.0.9 | pyhd8ed1ab_0 79 KB conda-forge 2023-08-09T11:50:25.0124345Z pysocks-1.7.1 | pyha2e5f31_6 19 KB conda-forge 2023-08-09T11:50:25.0124691Z pysoundfile-0.12.1 | pyhd8ed1ab_0 27 KB conda-forge 2023-08-09T11:50:25.0125038Z python-dateutil-2.8.2 | pyhd8ed1ab_0 240 KB conda-forge 2023-08-09T11:50:25.0125389Z python_abi-3.9 | 2_cp39 4 KB conda-forge 2023-08-09T11:50:25.0125774Z requests-2.31.0 | pyhd8ed1ab_0 55 KB conda-forge 2023-08-09T11:50:25.0126119Z scikit-learn-1.3.0 | py39hc236052_0 8.0 MB conda-forge 2023-08-09T11:50:25.0126446Z scipy-1.10.1 | py39hf6e8229_1 23.2 MB 2023-08-09T11:50:25.0126782Z six-1.16.0 | pyh6c4a22f_0 14 KB conda-forge 2023-08-09T11:50:25.0127112Z sox-14.4.2 | ha5cc309_1018 499 KB conda-forge 2023-08-09T11:50:25.0127427Z soxr-0.1.3 | h0b41bf4_3 128 KB conda-forge 2023-08-09T11:50:25.0127771Z soxr-python-0.3.5 | py39h0f8d45d_0 260 KB conda-forge 2023-08-09T11:50:25.0128124Z threadpoolctl-3.2.0 | pyha21a80b_0 20 KB conda-forge 2023-08-09T11:50:25.0128472Z unicodedata2-15.0.0 | py39hb9d737c_0 500 KB conda-forge 2023-08-09T11:50:25.0128822Z urllib3-2.0.4 | pyhd8ed1ab_0 96 KB conda-forge 2023-08-09T11:50:25.0129167Z xorg-libxau-1.0.11 | hd590300_0 14 KB conda-forge 2023-08-09T11:50:25.0129616Z xorg-libxdmcp-1.1.3 | h7f98852_0 19 KB conda-forge 2023-08-09T11:50:25.0129956Z zipp-3.16.2 | pyhd8ed1ab_0 18 KB conda-forge 2023-08-09T11:50:25.0130284Z zlib-1.2.13 | hd590300_5 91 KB conda-forge 2023-08-09T11:50:25.0130613Z ------------------------------------------------------------ 2023-08-09T11:50:25.0130878Z Total: 249.7 MB 2023-08-09T11:50:25.0131015Z 2023-08-09T11:50:25.0131134Z The following NEW packages will be INSTALLED: 2023-08-09T11:50:25.0131286Z 2023-08-09T11:50:25.0131538Z appdirs conda-forge/noarch::appdirs-1.4.4-pyh9f0ad1d_0 2023-08-09T11:50:25.0131957Z audioread conda-forge/linux-64::audioread-3.0.0-py39hf3d152e_1 2023-08-09T11:50:25.0132348Z brotli conda-forge/linux-64::brotli-1.0.9-h166bdaf_9 2023-08-09T11:50:25.0132739Z brotli-bin conda-forge/linux-64::brotli-bin-1.0.9-h166bdaf_9 2023-08-09T11:50:25.0133175Z brotli-python conda-forge/linux-64::brotli-python-1.0.9-py39h5a03fae_9 2023-08-09T11:50:25.0133597Z certifi conda-forge/noarch::certifi-2023.7.22-pyhd8ed1ab_0 2023-08-09T11:50:25.0133997Z cffi conda-forge/linux-64::cffi-1.15.1-py39he91dace_3 2023-08-09T11:50:25.0134423Z charset-normalizer conda-forge/noarch::charset-normalizer-3.2.0-pyhd8ed1ab_0 2023-08-09T11:50:25.0134867Z contourpy conda-forge/linux-64::contourpy-1.1.0-py39h7633fee_0 2023-08-09T11:50:25.0135279Z cycler conda-forge/noarch::cycler-0.11.0-pyhd8ed1ab_0 2023-08-09T11:50:25.0135705Z decorator conda-forge/noarch::decorator-5.1.1-pyhd8ed1ab_0 2023-08-09T11:50:25.0136094Z ffmpeg pkgs/main/linux-64::ffmpeg-4.2.2-h20bf706_0 2023-08-09T11:50:25.0136494Z fonttools conda-forge/linux-64::fonttools-4.42.0-py39hd1e30aa_0 2023-08-09T11:50:25.0136917Z freetype conda-forge/linux-64::freetype-2.12.1-hca18f0e_1 2023-08-09T11:50:25.0137340Z gettext conda-forge/linux-64::gettext-0.21.1-h27087fc_0 2023-08-09T11:50:25.0137842Z idna conda-forge/noarch::idna-3.4-pyhd8ed1ab_0 2023-08-09T11:50:25.0138276Z importlib-resourc~ conda-forge/noarch::importlib-resources-6.0.1-pyhd8ed1ab_0 2023-08-09T11:50:25.0138740Z importlib_resourc~ conda-forge/noarch::importlib_resources-6.0.1-pyhd8ed1ab_0 2023-08-09T11:50:25.0139150Z joblib conda-forge/noarch::joblib-1.3.2-pyhd8ed1ab_0 2023-08-09T11:50:25.0139565Z kiwisolver conda-forge/linux-64::kiwisolver-1.4.4-py39hf939315_1 2023-08-09T11:50:25.0139966Z lazy_loader conda-forge/noarch::lazy_loader-0.2-pyhd8ed1ab_0 2023-08-09T11:50:25.0140348Z lcms2 conda-forge/linux-64::lcms2-2.15-haa2dc70_1 2023-08-09T11:50:25.0140713Z lerc conda-forge/linux-64::lerc-4.0.0-h27087fc_0 2023-08-09T11:50:25.0141110Z libbrotlicommon conda-forge/linux-64::libbrotlicommon-1.0.9-h166bdaf_9 2023-08-09T11:50:25.0141583Z libbrotlidec conda-forge/linux-64::libbrotlidec-1.0.9-h166bdaf_9 2023-08-09T11:50:25.0142036Z libbrotlienc conda-forge/linux-64::libbrotlienc-1.0.9-h166bdaf_9 2023-08-09T11:50:25.0142442Z libdeflate conda-forge/linux-64::libdeflate-1.18-h0b41bf4_0 2023-08-09T11:50:25.0142832Z libflac conda-forge/linux-64::libflac-1.4.3-h59595ed_0 2023-08-09T11:50:25.0143245Z libgfortran-ng conda-forge/linux-64::libgfortran-ng-13.1.0-h69a702a_0 2023-08-09T11:50:25.0143679Z libgfortran5 conda-forge/linux-64::libgfortran5-13.1.0-h15d22d2_0 2023-08-09T11:50:25.0144116Z libjpeg-turbo conda-forge/linux-64::libjpeg-turbo-2.1.5.1-h0b41bf4_0 2023-08-09T11:50:25.0144692Z libllvm14 conda-forge/linux-64::libllvm14-14.0.6-hcd5def8_4 2023-08-09T11:50:25.0145242Z libogg conda-forge/linux-64::libogg-1.3.4-h7f98852_1 2023-08-09T11:50:25.0145735Z libpng conda-forge/linux-64::libpng-1.6.39-h753d276_0 2023-08-09T11:50:25.0146520Z librosa conda-forge/noarch::librosa-0.10.0-pyhd8ed1ab_2 2023-08-09T11:50:25.0146924Z libsndfile conda-forge/linux-64::libsndfile-1.2.0-hb75c966_0 2023-08-09T11:50:25.0147386Z libtiff conda-forge/linux-64::libtiff-4.5.1-h8b53f26_0 2023-08-09T11:50:25.0147933Z libvorbis conda-forge/linux-64::libvorbis-1.3.7-h9c3ff4c_0 2023-08-09T11:50:25.0148512Z libwebp-base conda-forge/linux-64::libwebp-base-1.3.1-hd590300_0 2023-08-09T11:50:25.0149174Z libxcb conda-forge/linux-64::libxcb-1.15-h0b41bf4_0 2023-08-09T11:50:25.0149736Z libzlib conda-forge/linux-64::libzlib-1.2.13-hd590300_5 2023-08-09T11:50:25.0150337Z llvm-openmp conda-forge/linux-64::llvm-openmp-16.0.6-h4dfa4b3_0 2023-08-09T11:50:25.0150960Z llvmlite conda-forge/linux-64::llvmlite-0.40.1-py39h174d805_0 2023-08-09T11:50:25.0151539Z mad conda-forge/linux-64::mad-0.15.1b-h9c3ff4c_1 2023-08-09T11:50:25.0152189Z matplotlib-base conda-forge/linux-64::matplotlib-base-3.7.2-py39h0126182_0 2023-08-09T11:50:25.0152855Z mkl-service pkgs/main/linux-64::mkl-service-2.4.0-py39h5eee18b_1 2023-08-09T11:50:25.0153460Z mkl_fft pkgs/main/linux-64::mkl_fft-1.3.6-py39h417a72b_1 2023-08-09T11:50:25.0154025Z mkl_random pkgs/main/linux-64::mkl_random-1.2.2-py39h417a72b_1 2023-08-09T11:50:25.0154620Z mpg123 conda-forge/linux-64::mpg123-1.31.3-hcb278e6_0 2023-08-09T11:50:25.0155264Z msgpack-python conda-forge/linux-64::msgpack-python-1.0.5-py39h4b4f3f3_0 2023-08-09T11:50:25.0155901Z munkres conda-forge/noarch::munkres-1.1.4-pyh9f0ad1d_0 2023-08-09T11:50:25.0156496Z numba conda-forge/linux-64::numba-0.57.1-py39hb75a051_0 2023-08-09T11:50:25.0157073Z numpy pkgs/main/linux-64::numpy-1.24.3-py39hf6e8229_1 2023-08-09T11:50:25.0157677Z numpy-base pkgs/main/linux-64::numpy-base-1.24.3-py39h060ed82_1 2023-08-09T11:50:25.0158303Z openjpeg conda-forge/linux-64::openjpeg-2.5.0-hfec8fc6_2 2023-08-09T11:50:25.0158925Z packaging conda-forge/noarch::packaging-23.1-pyhd8ed1ab_0 2023-08-09T11:50:25.0159679Z parameterized conda-forge/noarch::parameterized-0.9.0-pyhd8ed1ab_0 2023-08-09T11:50:25.0160326Z pillow conda-forge/linux-64::pillow-10.0.0-py39haaeba84_0 2023-08-09T11:50:25.0160920Z pooch conda-forge/noarch::pooch-1.6.0-pyhd8ed1ab_0 2023-08-09T11:50:25.0161549Z pthread-stubs conda-forge/linux-64::pthread-stubs-0.4-h36c2ea0_1001 2023-08-09T11:50:25.0162185Z pycparser conda-forge/noarch::pycparser-2.21-pyhd8ed1ab_0 2023-08-09T11:50:25.0162800Z pyparsing conda-forge/noarch::pyparsing-3.0.9-pyhd8ed1ab_0 2023-08-09T11:50:56.7978056Z pysocks conda-forge/noarch::pysocks-1.7.1-pyha2e5f31_6 2023-08-09T11:50:56.7978682Z pysoundfile conda-forge/noarch::pysoundfile-0.12.1-pyhd8ed1ab_0 2023-08-09T11:50:56.7979279Z python-dateutil conda-forge/noarch::python-dateutil-2.8.2-pyhd8ed1ab_0 2023-08-09T11:50:56.7979906Z python_abi conda-forge/linux-64::python_abi-3.9-2_cp39 2023-08-09T11:50:56.7980350Z requests conda-forge/noarch::requests-2.31.0-pyhd8ed1ab_0 2023-08-09T11:50:56.7980777Z scikit-learn conda-forge/linux-64::scikit-learn-1.3.0-py39hc236052_0 2023-08-09T11:50:56.7982029Z scipy pkgs/main/linux-64::scipy-1.10.1-py39hf6e8229_1 2023-08-09T11:50:56.7982573Z six conda-forge/noarch::six-1.16.0-pyh6c4a22f_0 2023-08-09T11:50:56.7982971Z sox conda-forge/linux-64::sox-14.4.2-ha5cc309_1018 2023-08-09T11:50:56.7983345Z soxr conda-forge/linux-64::soxr-0.1.3-h0b41bf4_3 2023-08-09T11:50:56.7983757Z soxr-python conda-forge/linux-64::soxr-python-0.3.5-py39h0f8d45d_0 2023-08-09T11:50:56.7984215Z threadpoolctl conda-forge/noarch::threadpoolctl-3.2.0-pyha21a80b_0 2023-08-09T11:50:56.7984684Z unicodedata2 conda-forge/linux-64::unicodedata2-15.0.0-py39hb9d737c_0 2023-08-09T11:50:56.7985357Z urllib3 conda-forge/noarch::urllib3-2.0.4-pyhd8ed1ab_0 2023-08-09T11:50:56.7985795Z xorg-libxau conda-forge/linux-64::xorg-libxau-1.0.11-hd590300_0 2023-08-09T11:50:56.7986403Z xorg-libxdmcp conda-forge/linux-64::xorg-libxdmcp-1.1.3-h7f98852_0 2023-08-09T11:50:56.7986872Z zipp conda-forge/noarch::zipp-3.16.2-pyhd8ed1ab_0 2023-08-09T11:50:56.7987041Z 2023-08-09T11:50:56.7987153Z The following packages will be REMOVED: 2023-08-09T11:50:56.7987301Z 2023-08-09T11:50:56.7987422Z libgomp-11.2.0-h1234567_1 2023-08-09T11:50:56.7987556Z 2023-08-09T11:50:56.7987664Z The following packages will be UPDATED: 2023-08-09T11:50:56.7987805Z 2023-08-09T11:50:56.7988097Z libgcc-ng pkgs/main::libgcc-ng-11.2.0-h1234567_1 --> conda-forge::libgcc-ng-13.1.0-he5830b7_0 2023-08-09T11:50:56.8000164Z libstdcxx-ng pkgs/main::libstdcxx-ng-11.2.0-h12345~ --> conda-forge::libstdcxx-ng-13.1.0-hfd8a6a1_0 2023-08-09T11:50:56.8000876Z openssl pkgs/main::openssl-3.0.10-h7f8727e_0 --> conda-forge::openssl-3.1.2-hd590300_0 2023-08-09T11:50:56.8001476Z zlib pkgs/main::zlib-1.2.13-h5eee18b_0 --> conda-forge::zlib-1.2.13-hd590300_5 2023-08-09T11:50:56.8001727Z 2023-08-09T11:50:56.8002020Z The following packages will be SUPERSEDED by a higher-priority channel: 2023-08-09T11:50:56.8002270Z 2023-08-09T11:50:56.8002626Z _libgcc_mutex pkgs/main::_libgcc_mutex-0.1-main --> conda-forge::_libgcc_mutex-0.1-conda_forge 2023-08-09T11:50:56.8003236Z _openmp_mutex pkgs/main::_openmp_mutex-5.1-1_gnu --> conda-forge::_openmp_mutex-4.5-2_kmp_llvm 2023-08-09T11:50:56.8004234Z libvpx conda-forge::libvpx-1.11.0-h9c3ff4c_3 --> pkgs/main::libvpx-1.7.0-h439df22_0 2023-08-09T11:50:56.8004430Z 2023-08-09T11:50:56.8004435Z 2023-08-09T11:50:56.8004552Z Preparing transaction: ...working... done 2023-08-09T11:50:56.8004807Z Verifying transaction: ...working... done 2023-08-09T11:50:56.8005061Z Executing transaction: ...working... done 2023-08-09T11:50:56.8005273Z + __conda_reactivate 2023-08-09T11:50:56.8005460Z + local ask_conda 2023-08-09T11:50:56.8005858Z ++ PS1='(/work/ci_env) ' 2023-08-09T11:50:56.8006081Z ++ __conda_exe shell.posix reactivate 2023-08-09T11:50:56.8006328Z ++ /opt/conda/bin/conda shell.posix reactivate 2023-08-09T11:50:56.8006611Z + ask_conda='PS1='\''(/work/ci_env) '\'' 2023-08-09T11:50:56.8007119Z 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:50:56.8007505Z export CONDA_SHLVL='\''2'\'' 2023-08-09T11:50:56.8007795Z export CONDA_PROMPT_MODIFIER='\''(/work/ci_env) '\''' 2023-08-09T11:50:56.8008076Z + eval 'PS1='\''(/work/ci_env) '\'' 2023-08-09T11:50:56.8008558Z 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:50:56.8008952Z export CONDA_SHLVL='\''2'\'' 2023-08-09T11:50:56.8009245Z export CONDA_PROMPT_MODIFIER='\''(/work/ci_env) '\''' 2023-08-09T11:50:56.8009498Z ++ PS1='(/work/ci_env) ' 2023-08-09T11:50:56.8009972Z ++ 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:50:56.8010574Z ++ 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:50:56.8010907Z ++ export CONDA_SHLVL=2 2023-08-09T11:50:56.8011089Z ++ CONDA_SHLVL=2 2023-08-09T11:50:56.8011356Z ++ export 'CONDA_PROMPT_MODIFIER=(/work/ci_env) ' 2023-08-09T11:50:56.8011649Z ++ CONDA_PROMPT_MODIFIER='(/work/ci_env) ' 2023-08-09T11:50:56.8011852Z + __conda_hashr 2023-08-09T11:50:56.8012055Z + '[' -n '' ']' 2023-08-09T11:50:56.8012335Z + '[' -n '' ']' 2023-08-09T11:50:56.8012512Z + hash -r 2023-08-09T11:50:56.8013229Z + 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:50:56.8013840Z Collecting git+https://github.com/kpu/kenlm/ 2023-08-09T11:50:56.8014220Z Cloning https://github.com/kpu/kenlm/ to /tmp/pip-req-build-s3oj4015 2023-08-09T11:50:56.8014738Z Running command git clone --filter=blob:none --quiet https://github.com/kpu/kenlm/ /tmp/pip-req-build-s3oj4015 2023-08-09T11:50:56.8015142Z Resolved https://github.com/kpu/kenlm/ to commit 5bf7b46558e1c5595bf3b8c9b0b1f9d8d257040a 2023-08-09T11:50:56.8015528Z Installing build dependencies ... [?25l- \ | / - done 2023-08-09T11:50:56.8015875Z [?25h Getting requirements to build wheel ... [?25l- done 2023-08-09T11:50:56.8016208Z [?25h Preparing metadata (pyproject.toml) ... [?25l- done 2023-08-09T11:50:56.8016583Z [?25hCollecting git+https://github.com/pytorch/fairseq.git@e47a4c8 2023-08-09T11:50:56.8017028Z Cloning https://github.com/pytorch/fairseq.git (to revision e47a4c8) to /tmp/pip-req-build-a7n_29n6 2023-08-09T11:50:56.8017535Z Running command git clone --filter=blob:none --quiet https://github.com/pytorch/fairseq.git /tmp/pip-req-build-a7n_29n6 2023-08-09T11:50:56.8017983Z  WARNING: Did not find branch or tag 'e47a4c8', assuming revision or ref. 2023-08-09T11:50:56.8018311Z  Running command git checkout -q e47a4c8 2023-08-09T11:50:56.8018609Z Resolved https://github.com/pytorch/fairseq.git to commit e47a4c8 2023-08-09T11:50:56.8018962Z Running command git submodule update --init --recursive -q 2023-08-09T11:50:56.8019306Z Installing build dependencies ... [?25l- \ | / - done 2023-08-09T11:50:56.8019632Z [?25h Getting requirements to build wheel ... [?25ldone 2023-08-09T11:50:56.8019972Z [?25h Installing backend dependencies ... [?25l- \ | / done 2023-08-09T11:50:56.8020361Z [?25h Preparing metadata (pyproject.toml) ... [?25l- done 2023-08-09T11:50:56.8020638Z [?25hCollecting kaldi-io 2023-08-09T11:50:56.8021207Z 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:50:56.8021722Z Downloading kaldi_io-0.9.8-py3-none-any.whl.metadata (2.2 kB) 2023-08-09T11:50:56.8022132Z Requirement already satisfied: SoundFile in ./ci_env/lib/python3.9/site-packages (0.12.1) 2023-08-09T11:50:56.8022408Z Collecting coverage 2023-08-09T11:50:56.8023071Z Obtaining dependency information for coverage from https://files.pythonhosted.org/packages/fe/57/e4f8ad64d84ca9e759d783a052795f62a9f9111585e46068845b1cb52c2b/coverage-7.2.7-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata 2023-08-09T11:50:56.8023766Z Downloading coverage-7.2.7-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (9.7 kB) 2023-08-09T11:50:56.8024079Z Collecting pytest 2023-08-09T11:50:56.8024644Z 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:50:56.8025173Z Downloading pytest-7.4.0-py3-none-any.whl.metadata (8.0 kB) 2023-08-09T11:50:56.8025458Z Collecting pytest-cov 2023-08-09T11:50:56.8026028Z 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:50:56.8026555Z Downloading pytest_cov-4.1.0-py3-none-any.whl.metadata (26 kB) 2023-08-09T11:50:56.8026811Z Collecting scipy==1.7.3 2023-08-09T11:50:56.8027250Z Downloading scipy-1.7.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (39.8 MB) 2023-08-09T11:50:56.8027534Z Collecting transformers 2023-08-09T11:50:56.8028129Z 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:50:56.8028821Z Downloading transformers-4.31.0-py3-none-any.whl.metadata (116 kB) 2023-08-09T11:50:56.8029105Z Collecting expecttest 2023-08-09T11:50:56.8029674Z 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:50:56.8030208Z Downloading expecttest-0.1.6-py3-none-any.whl.metadata (2.5 kB) 2023-08-09T11:50:56.8030469Z Collecting unidecode 2023-08-09T11:50:56.8030771Z Downloading Unidecode-1.3.6-py3-none-any.whl (235 kB) 2023-08-09T11:50:56.8031026Z Collecting inflect 2023-08-09T11:50:56.8031580Z 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:50:56.8032093Z Downloading inflect-7.0.0-py3-none-any.whl.metadata (21 kB) 2023-08-09T11:50:56.8032502Z Requirement already satisfied: Pillow in ./ci_env/lib/python3.9/site-packages (10.0.0) 2023-08-09T11:50:56.8032778Z Collecting sentencepiece 2023-08-09T11:50:56.8033170Z Downloading sentencepiece-0.1.99-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB) 2023-08-09T11:50:56.8033514Z Collecting pytorch-lightning 2023-08-09T11:50:56.8034178Z 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:50:56.8034781Z Downloading pytorch_lightning-2.0.6-py3-none-any.whl.metadata (23 kB) 2023-08-09T11:51:03.8621641Z Collecting protobuf<4.21.0 2023-08-09T11:51:03.8622644Z Downloading protobuf-3.20.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (1.0 MB) 2023-08-09T11:51:03.8623067Z Collecting demucs 2023-08-09T11:51:03.8623484Z Downloading demucs-4.0.0.tar.gz (1.2 MB) 2023-08-09T11:51:03.8623883Z Preparing metadata (setup.py) ... [?25l- done 2023-08-09T11:51:03.8624236Z [?25hCollecting tinytag 2023-08-09T11:51:03.8624593Z Downloading tinytag-1.9.0.tar.gz (39 kB) 2023-08-09T11:51:03.8624892Z Preparing metadata (setup.py) ... [?25l- done 2023-08-09T11:51:03.8625168Z [?25hCollecting flashlight-text 2023-08-09T11:51:03.8625856Z Obtaining dependency information for flashlight-text from https://files.pythonhosted.org/packages/86/e1/7a1fd3f40eab99ac4162f7b95d596165cf4faec130df2d55317e1a984fc5/flashlight_text-0.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata 2023-08-09T11:51:03.8626556Z Downloading flashlight_text-0.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (10 kB) 2023-08-09T11:51:03.8626902Z Collecting numpy<1.23.0,>=1.16.5 (from scipy==1.7.3) 2023-08-09T11:51:03.8627300Z Downloading numpy-1.22.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.8 MB) 2023-08-09T11:51:03.8627759Z Requirement already satisfied: cffi>=1.0 in ./ci_env/lib/python3.9/site-packages (from SoundFile) (1.15.1) 2023-08-09T11:51:03.8628057Z Collecting iniconfig (from pytest) 2023-08-09T11:51:03.8628378Z Downloading iniconfig-2.0.0-py3-none-any.whl (5.9 kB) 2023-08-09T11:51:03.8628934Z Requirement already satisfied: packaging in ./ci_env/lib/python3.9/site-packages (from pytest) (23.1) 2023-08-09T11:51:03.8629241Z Collecting pluggy<2.0,>=0.12 (from pytest) 2023-08-09T11:51:03.8629835Z 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:51:03.8630472Z Downloading pluggy-1.2.0-py3-none-any.whl.metadata (4.4 kB) 2023-08-09T11:51:03.8630771Z Collecting exceptiongroup>=1.0.0rc8 (from pytest) 2023-08-09T11:51:03.8631412Z 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:51:03.8631995Z Downloading exceptiongroup-1.1.2-py3-none-any.whl.metadata (6.1 kB) 2023-08-09T11:51:03.8632294Z Collecting tomli>=1.0.0 (from pytest) 2023-08-09T11:51:03.8632604Z Downloading tomli-2.0.1-py3-none-any.whl (12 kB) 2023-08-09T11:51:03.8633023Z Requirement already satisfied: filelock in ./ci_env/lib/python3.9/site-packages (from transformers) (3.9.0) 2023-08-09T11:51:03.8633416Z Collecting huggingface-hub<1.0,>=0.14.1 (from transformers) 2023-08-09T11:51:03.8634070Z 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:51:03.8634653Z Downloading huggingface_hub-0.16.4-py3-none-any.whl.metadata (12 kB) 2023-08-09T11:51:03.8635097Z Requirement already satisfied: pyyaml>=5.1 in ./ci_env/lib/python3.9/site-packages (from transformers) (6.0) 2023-08-09T11:51:03.8635423Z Collecting regex!=2019.12.17 (from transformers) 2023-08-09T11:51:03.8636058Z Obtaining dependency information for regex!=2019.12.17 from https://files.pythonhosted.org/packages/c0/f4/278e305e02245937579a7952b8a3205116b4d2480a3c03fa11e599b773d6/regex-2023.8.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata 2023-08-09T11:51:03.8636634Z Downloading regex-2023.8.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (40 kB) 2023-08-09T11:51:03.8637104Z Requirement already satisfied: requests in ./ci_env/lib/python3.9/site-packages (from transformers) (2.31.0) 2023-08-09T11:51:03.8637448Z Collecting tokenizers!=0.11.3,<0.14,>=0.11.1 (from transformers) 2023-08-09T11:51:03.8637919Z Downloading tokenizers-0.13.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.8 MB) 2023-08-09T11:51:03.8638237Z Collecting safetensors>=0.3.1 (from transformers) 2023-08-09T11:51:03.8638915Z Obtaining dependency information for safetensors>=0.3.1 from https://files.pythonhosted.org/packages/61/57/402c6a522f26e6bdc8d46cce379bf20f40daa0764578510e4e8a3d3ed1a9/safetensors-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata 2023-08-09T11:51:03.8639542Z Downloading safetensors-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.5 kB) 2023-08-09T11:51:03.8639862Z Collecting tqdm>=4.27 (from transformers) 2023-08-09T11:51:03.8640434Z 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:51:03.8640950Z Downloading tqdm-4.66.0-py3-none-any.whl.metadata (57 kB) 2023-08-09T11:51:03.8641230Z Collecting pydantic>=1.9.1 (from inflect) 2023-08-09T11:51:03.8641838Z 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:51:03.8642365Z Downloading pydantic-2.1.1-py3-none-any.whl.metadata (136 kB) 2023-08-09T11:51:03.8642822Z Requirement already satisfied: typing-extensions in ./ci_env/lib/python3.9/site-packages (from inflect) (4.7.1) 2023-08-09T11:51:03.8643622Z Requirement already satisfied: torch>=1.11.0 in ./ci_env/lib/python3.9/site-packages (from pytorch-lightning) (2.1.0.dev20230808) 2023-08-09T11:51:03.8644141Z Requirement already satisfied: fsspec[http]>2021.06.0 in ./ci_env/lib/python3.9/site-packages (from pytorch-lightning) (2023.6.0) 2023-08-09T11:51:03.8644542Z Collecting torchmetrics>=0.7.0 (from pytorch-lightning) 2023-08-09T11:51:03.8645257Z 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:51:03.8645804Z Downloading torchmetrics-1.0.3-py3-none-any.whl.metadata (21 kB) 2023-08-09T11:51:03.8646187Z Collecting lightning-utilities>=0.7.0 (from pytorch-lightning) 2023-08-09T11:51:03.8646859Z 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:51:03.8647438Z Downloading lightning_utilities-0.9.0-py3-none-any.whl.metadata (4.6 kB) 2023-08-09T11:51:03.8647797Z Collecting dora-search (from demucs) 2023-08-09T11:51:03.8648099Z Downloading dora_search-0.1.12.tar.gz (87 kB) 2023-08-09T11:51:03.8648412Z Installing build dependencies ... [?25l- \ | done 2023-08-09T11:51:03.8648750Z [?25h Getting requirements to build wheel ... [?25l- done 2023-08-09T11:51:03.8649082Z [?25h Preparing metadata (pyproject.toml) ... [?25l- done 2023-08-09T11:51:03.8649382Z [?25hCollecting diffq>=0.2.1 (from demucs) 2023-08-09T11:51:03.8649814Z Downloading diffq-0.2.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (425 kB) 2023-08-09T11:51:03.8650128Z Collecting einops (from demucs) 2023-08-09T11:51:03.8650426Z Downloading einops-0.6.1-py3-none-any.whl (42 kB) 2023-08-09T11:51:03.8650686Z Collecting julius>=0.2.3 (from demucs) 2023-08-09T11:51:03.8650969Z Downloading julius-0.2.7.tar.gz (59 kB) 2023-08-09T11:51:03.8651270Z Preparing metadata (setup.py) ... [?25l- done 2023-08-09T11:51:03.8651561Z [?25hCollecting lameenc>=1.2 (from demucs) 2023-08-09T11:51:03.8652229Z Obtaining dependency information for lameenc>=1.2 from https://files.pythonhosted.org/packages/86/5e/e3d517a5d062136b0f056a15c76a48c57af8b8c5d95042df6ab3938e99b9/lameenc-1.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl.metadata 2023-08-09T11:51:03.8652962Z Downloading lameenc-1.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl.metadata (803 bytes) 2023-08-09T11:51:03.8653281Z Collecting openunmix (from demucs) 2023-08-09T11:51:03.8653603Z Downloading openunmix-1.2.1-py3-none-any.whl (46 kB) 2023-08-09T11:51:03.8653929Z Requirement already satisfied: torchaudio>=0.8 in /work (from demucs) (2.1.0a0+fe9b9ff) 2023-08-09T11:51:03.8654225Z Collecting cython (from fairseq==1.0.0a0+e47a4c8) 2023-08-09T11:51:03.8654849Z Obtaining dependency information for cython from https://files.pythonhosted.org/packages/15/37/314c82797f3798d738f5bde4b85c01f54b2b81acf516fb3fcbc6896c5f8f/Cython-3.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata 2023-08-09T11:51:03.8655436Z Using cached Cython-3.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.1 kB) 2023-08-09T11:51:03.8655820Z Collecting hydra-core<1.1 (from fairseq==1.0.0a0+e47a4c8) 2023-08-09T11:51:03.8656156Z Downloading hydra_core-1.0.7-py3-none-any.whl (123 kB) 2023-08-09T11:51:03.8656444Z Collecting omegaconf<2.1 (from fairseq==1.0.0a0+e47a4c8) 2023-08-09T11:51:03.8656779Z Downloading omegaconf-2.0.6-py3-none-any.whl (36 kB) 2023-08-09T11:51:03.8657071Z Collecting sacrebleu>=1.4.12 (from fairseq==1.0.0a0+e47a4c8) 2023-08-09T11:51:03.8657400Z Downloading sacrebleu-2.3.1-py3-none-any.whl (118 kB) 2023-08-09T11:51:03.8657839Z Requirement already satisfied: pycparser in ./ci_env/lib/python3.9/site-packages (from cffi>=1.0->SoundFile) (2.21) 2023-08-09T11:51:03.8658280Z Collecting aiohttp!=4.0.0a0,!=4.0.0a1 (from fsspec[http]>2021.06.0->pytorch-lightning) 2023-08-09T11:51:03.8658975Z Obtaining dependency information for aiohttp!=4.0.0a0,!=4.0.0a1 from https://files.pythonhosted.org/packages/5b/8d/821fcb268cfc056964a75da3823896b17eabaa4968a2414121bc93b0c501/aiohttp-3.8.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata 2023-08-09T11:51:03.8659650Z Downloading aiohttp-3.8.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (7.7 kB) 2023-08-09T11:51:03.8660096Z Collecting antlr4-python3-runtime==4.8 (from hydra-core<1.1->fairseq==1.0.0a0+e47a4c8) 2023-08-09T11:51:03.8660476Z Downloading antlr4-python3-runtime-4.8.tar.gz (112 kB) 2023-08-09T11:51:03.8660802Z Preparing metadata (setup.py) ... [?25l- done 2023-08-09T11:51:03.8661152Z [?25hCollecting annotated-types>=0.4.0 (from pydantic>=1.9.1->inflect) 2023-08-09T11:51:03.8661813Z 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:51:40.8421565Z Downloading annotated_types-0.5.0-py3-none-any.whl.metadata (11 kB) 2023-08-09T11:51:40.8421998Z Collecting pydantic-core==2.4.0 (from pydantic>=1.9.1->inflect) 2023-08-09T11:51:40.8424914Z Obtaining dependency information for pydantic-core==2.4.0 from https://files.pythonhosted.org/packages/02/bf/a193e0f4a0fa01b8d6791991ecf1500931f8c98ccf81307ade3ad10963d7/pydantic_core-2.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata 2023-08-09T11:51:40.8425926Z Downloading pydantic_core-2.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.5 kB) 2023-08-09T11:51:40.8426558Z Collecting portalocker (from sacrebleu>=1.4.12->fairseq==1.0.0a0+e47a4c8) 2023-08-09T11:51:40.8426977Z Downloading portalocker-2.7.0-py2.py3-none-any.whl (15 kB) 2023-08-09T11:51:40.8427516Z Collecting tabulate>=0.8.9 (from sacrebleu>=1.4.12->fairseq==1.0.0a0+e47a4c8) 2023-08-09T11:51:40.8427957Z Downloading tabulate-0.9.0-py3-none-any.whl (35 kB) 2023-08-09T11:51:40.8428331Z Collecting colorama (from sacrebleu>=1.4.12->fairseq==1.0.0a0+e47a4c8) 2023-08-09T11:51:40.8428827Z Downloading colorama-0.4.6-py2.py3-none-any.whl (25 kB) 2023-08-09T11:51:40.8429177Z Collecting lxml (from sacrebleu>=1.4.12->fairseq==1.0.0a0+e47a4c8) 2023-08-09T11:51:40.8430102Z Obtaining dependency information for lxml from https://files.pythonhosted.org/packages/cc/b9/d822b2fc9b9406cff3ec6be03d69adb0e44fcad09608489ea4acaf2443bb/lxml-4.9.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl.metadata 2023-08-09T11:51:40.8430761Z Downloading lxml-4.9.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl.metadata (3.8 kB) 2023-08-09T11:51:40.8431268Z Requirement already satisfied: sympy in ./ci_env/lib/python3.9/site-packages (from torch>=1.11.0->pytorch-lightning) (1.11.1) 2023-08-09T11:51:40.8431782Z Requirement already satisfied: networkx in ./ci_env/lib/python3.9/site-packages (from torch>=1.11.0->pytorch-lightning) (3.1) 2023-08-09T11:51:40.8432299Z Requirement already satisfied: jinja2 in ./ci_env/lib/python3.9/site-packages (from torch>=1.11.0->pytorch-lightning) (3.1.2) 2023-08-09T11:51:40.8432677Z Collecting retrying (from dora-search->demucs) 2023-08-09T11:51:40.8434282Z Downloading retrying-1.3.4-py3-none-any.whl (11 kB) 2023-08-09T11:51:40.8434740Z Collecting submitit (from dora-search->demucs) 2023-08-09T11:51:40.8435146Z Downloading submitit-1.4.5-py3-none-any.whl (73 kB) 2023-08-09T11:51:40.8435620Z Collecting treetable (from dora-search->demucs) 2023-08-09T11:51:40.8436048Z Downloading treetable-0.2.5.tar.gz (10 kB) 2023-08-09T11:51:40.8436481Z Preparing metadata (setup.py) ... [?25l- done 2023-08-09T11:51:40.8437177Z [?25hRequirement already satisfied: charset-normalizer<4,>=2 in ./ci_env/lib/python3.9/site-packages (from requests->transformers) (3.2.0) 2023-08-09T11:51:40.8437801Z Requirement already satisfied: idna<4,>=2.5 in ./ci_env/lib/python3.9/site-packages (from requests->transformers) (3.4) 2023-08-09T11:51:40.8438501Z Requirement already satisfied: urllib3<3,>=1.21.1 in ./ci_env/lib/python3.9/site-packages (from requests->transformers) (2.0.4) 2023-08-09T11:51:40.8439166Z Requirement already satisfied: certifi>=2017.4.17 in ./ci_env/lib/python3.9/site-packages (from requests->transformers) (2023.7.22) 2023-08-09T11:51:40.8439800Z Collecting attrs>=17.3.0 (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]>2021.06.0->pytorch-lightning) 2023-08-09T11:51:40.8440166Z Downloading attrs-23.1.0-py3-none-any.whl (61 kB) 2023-08-09T11:51:40.8440568Z Collecting multidict<7.0,>=4.5 (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]>2021.06.0->pytorch-lightning) 2023-08-09T11:51:40.8441016Z Downloading multidict-6.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (114 kB) 2023-08-09T11:51:40.8441475Z 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:51:40.8441860Z Downloading async_timeout-4.0.2-py3-none-any.whl (5.8 kB) 2023-08-09T11:51:40.8442269Z Collecting yarl<2.0,>=1.0 (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]>2021.06.0->pytorch-lightning) 2023-08-09T11:51:40.8442689Z Downloading yarl-1.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (269 kB) 2023-08-09T11:51:40.8443131Z Collecting frozenlist>=1.1.1 (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]>2021.06.0->pytorch-lightning) 2023-08-09T11:51:40.8444292Z Obtaining dependency information for frozenlist>=1.1.1 from https://files.pythonhosted.org/packages/b5/03/7dec2e257bd173b5ca1f74477863b97d322149f6f0284d7decead8c5ceeb/frozenlist-1.4.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata 2023-08-09T11:51:40.8445039Z Downloading frozenlist-1.4.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.2 kB) 2023-08-09T11:51:40.8445522Z Collecting aiosignal>=1.1.2 (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]>2021.06.0->pytorch-lightning) 2023-08-09T11:51:40.8445917Z Downloading aiosignal-1.3.1-py3-none-any.whl (7.6 kB) 2023-08-09T11:51:40.8446402Z Requirement already satisfied: MarkupSafe>=2.0 in ./ci_env/lib/python3.9/site-packages (from jinja2->torch>=1.11.0->pytorch-lightning) (2.1.1) 2023-08-09T11:51:40.8446938Z Requirement already satisfied: six>=1.7.0 in ./ci_env/lib/python3.9/site-packages (from retrying->dora-search->demucs) (1.16.0) 2023-08-09T11:51:40.8447451Z Collecting cloudpickle>=1.2.1 (from submitit->dora-search->demucs) 2023-08-09T11:51:40.8447819Z Downloading cloudpickle-2.2.1-py3-none-any.whl (25 kB) 2023-08-09T11:51:40.8448297Z Requirement already satisfied: mpmath>=0.19 in ./ci_env/lib/python3.9/site-packages (from sympy->torch>=1.11.0->pytorch-lightning) (1.3.0) 2023-08-09T11:51:40.8448696Z Downloading kaldi_io-0.9.8-py3-none-any.whl (16 kB) 2023-08-09T11:51:40.8449152Z Downloading coverage-7.2.7-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (228 kB) 2023-08-09T11:51:40.8449548Z Downloading pytest-7.4.0-py3-none-any.whl (323 kB) 2023-08-09T11:51:40.8449884Z Downloading pytest_cov-4.1.0-py3-none-any.whl (21 kB) 2023-08-09T11:51:40.8450227Z Downloading transformers-4.31.0-py3-none-any.whl (7.4 MB) 2023-08-09T11:51:40.8450590Z Downloading expecttest-0.1.6-py3-none-any.whl (6.5 kB) 2023-08-09T11:51:40.8450929Z Downloading inflect-7.0.0-py3-none-any.whl (34 kB) 2023-08-09T11:51:40.8451285Z Downloading pytorch_lightning-2.0.6-py3-none-any.whl (722 kB) 2023-08-09T11:51:40.8451711Z Downloading flashlight_text-0.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB) 2023-08-09T11:51:40.8452106Z Downloading exceptiongroup-1.1.2-py3-none-any.whl (14 kB) 2023-08-09T11:51:40.8452465Z Downloading huggingface_hub-0.16.4-py3-none-any.whl (268 kB) 2023-08-09T11:51:40.8452904Z Downloading lameenc-1.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (179 kB) 2023-08-09T11:51:40.8453316Z Downloading lightning_utilities-0.9.0-py3-none-any.whl (23 kB) 2023-08-09T11:51:40.8453660Z Downloading pluggy-1.2.0-py3-none-any.whl (17 kB) 2023-08-09T11:51:40.8453991Z Downloading pydantic-2.1.1-py3-none-any.whl (370 kB) 2023-08-09T11:51:40.8454401Z Downloading pydantic_core-2.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB) 2023-08-09T11:51:40.8454917Z Downloading regex-2023.8.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (771 kB) 2023-08-09T11:51:40.8455359Z Downloading safetensors-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB) 2023-08-09T11:51:40.8455759Z Downloading torchmetrics-1.0.3-py3-none-any.whl (731 kB) 2023-08-09T11:51:40.8456147Z Downloading tqdm-4.66.0-py3-none-any.whl (78 kB) 2023-08-09T11:51:40.8456540Z Using cached Cython-3.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.6 MB) 2023-08-09T11:51:40.8456964Z Downloading aiohttp-3.8.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB) 2023-08-09T11:51:40.8457344Z Downloading annotated_types-0.5.0-py3-none-any.whl (11 kB) 2023-08-09T11:51:40.8457772Z Downloading lxml-4.9.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (7.1 MB) 2023-08-09T11:51:40.8458264Z Downloading frozenlist-1.4.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (228 kB) 2023-08-09T11:51:40.8458801Z Building wheels for collected packages: demucs, tinytag, kenlm, fairseq, antlr4-python3-runtime, julius, dora-search, treetable 2023-08-09T11:51:40.8459213Z Building wheel for demucs (setup.py) ... [?25l- done 2023-08-09T11:51:40.8459724Z [?25h Created wheel for demucs: filename=demucs-4.0.0-py3-none-any.whl size=76505 sha256=a25941a9a965cf4aed7db3cd2ed494a89235335a013addf9c049ad0f993fd509 2023-08-09T11:51:40.8460175Z Stored in directory: /root/.cache/pip/wheels/aa/30/52/0a577b77ed9c0d30e7f6ea04aa1dae64213bab99dcf06ef476 2023-08-09T11:51:40.8460557Z Building wheel for tinytag (setup.py) ... [?25l- done 2023-08-09T11:51:40.8461073Z [?25h Created wheel for tinytag: filename=tinytag-1.9.0-py3-none-any.whl size=36820 sha256=50dfbd9c6860e2dda5d0e4b05465889123092c7cd0b9dc39db8f15e9a20cebf7 2023-08-09T11:51:40.8461527Z Stored in directory: /root/.cache/pip/wheels/c7/e3/04/5dfdfcdd296a16d8c76e315e70fae70968de56b24a6b94a612 2023-08-09T11:51:40.8462199Z Building wheel for kenlm (pyproject.toml) ... [?25l- \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | done 2023-08-09T11:51:40.8462831Z [?25h Created wheel for kenlm: filename=kenlm-0.0.0-cp39-cp39-linux_x86_64.whl size=578389 sha256=2c40187fa83e5bf9c7bc93e1ae50ee086782b157728dc574833c58aaf0c87e76 2023-08-09T11:51:40.8463403Z Stored in directory: /tmp/pip-ephem-wheel-cache-1401gzw3/wheels/88/07/f2/a9db8be5c6b944398d05ad7e987f1d4f646b92e3eebaa0524a 2023-08-09T11:51:40.8463870Z Building wheel for fairseq (pyproject.toml) ... [?25l- \ | / - \ | / - \ | done 2023-08-09T11:51:40.8464436Z [?25h Created wheel for fairseq: filename=fairseq-1.0.0a0+e47a4c8-cp39-cp39-linux_x86_64.whl size=1617975 sha256=8686eabb876b6311943bd0a5adecd2e68581c5c891eab55501c3ae4578c246c5 2023-08-09T11:51:40.8465026Z Stored in directory: /tmp/pip-ephem-wheel-cache-1401gzw3/wheels/0d/b5/f6/0bd9f1a1867c264422463617c73c8d84776b671d40e4535df0 2023-08-09T11:51:59.5114465Z Building wheel for antlr4-python3-runtime (setup.py) ... [?25l- done 2023-08-09T11:51:59.5115303Z [?25h Created wheel for antlr4-python3-runtime: filename=antlr4_python3_runtime-4.8-py3-none-any.whl size=141211 sha256=2d30014700f31c48440b652699287e8c5515e9c8316906d890eb2c4658f2b418 2023-08-09T11:51:59.5115946Z Stored in directory: /root/.cache/pip/wheels/42/3c/ae/14db087e6018de74810afe32eb6ac890ef9c68ba19b00db97a 2023-08-09T11:51:59.5116347Z Building wheel for julius (setup.py) ... [?25l- done 2023-08-09T11:51:59.5116873Z [?25h Created wheel for julius: filename=julius-0.2.7-py3-none-any.whl size=21879 sha256=37e477f25c6df34e1dbd0b15ddd322d8ce76cbead92385abaaef5c385ed89802 2023-08-09T11:51:59.5117323Z Stored in directory: /root/.cache/pip/wheels/53/0a/a7/fc08f97438f4969d86afa7904336c2eb7eb422101359f3ad11 2023-08-09T11:51:59.5117987Z Building wheel for dora-search (pyproject.toml) ... [?25l- done 2023-08-09T11:51:59.5118539Z [?25h Created wheel for dora-search: filename=dora_search-0.1.12-py3-none-any.whl size=75091 sha256=59595fdd2babaf38968a65601a15e87a77c8587d5949162341ad201da1068391 2023-08-09T11:51:59.5118995Z Stored in directory: /root/.cache/pip/wheels/a2/59/44/10cfedb7fe92293c00755c8c34a87691e0cbc7f6a553f57613 2023-08-09T11:51:59.5119375Z Building wheel for treetable (setup.py) ... [?25l- done 2023-08-09T11:51:59.5119896Z [?25h Created wheel for treetable: filename=treetable-0.2.5-py3-none-any.whl size=7333 sha256=cee3281ca98dbf691016e9da56771797a7d8327bc368f31ed52ff8e75762ec4f 2023-08-09T11:51:59.5120346Z Stored in directory: /root/.cache/pip/wheels/eb/15/60/84d5b8d3b2c8d70583081c70f9628d9e300e44e537559bdb2d 2023-08-09T11:51:59.5120889Z Successfully built demucs tinytag kenlm fairseq antlr4-python3-runtime julius dora-search treetable 2023-08-09T11:51:59.5122183Z 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:51:59.5124425Z 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:51:59.5125651Z Attempting uninstall: numpy 2023-08-09T11:51:59.5125901Z Found existing installation: numpy 1.24.3 2023-08-09T11:51:59.5126337Z Uninstalling numpy-1.24.3: 2023-08-09T11:51:59.5126640Z Successfully uninstalled numpy-1.24.3 2023-08-09T11:51:59.5126883Z Attempting uninstall: scipy 2023-08-09T11:51:59.5127120Z Found existing installation: scipy 1.10.1 2023-08-09T11:51:59.5127394Z Uninstalling scipy-1.10.1: 2023-08-09T11:51:59.5127676Z Successfully uninstalled scipy-1.10.1 2023-08-09T11:51:59.5129448Z 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:51:59.5130960Z 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:51:59.5131502Z + echo ::endgroup:: 2023-08-09T11:51:59.5131921Z ##[endgroup] 2023-08-09T11:51:59.5132165Z + echo '::group::Run tests' 2023-08-09T11:51:59.5132519Z ##[group]Run tests 2023-08-09T11:51:59.5133130Z + 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:51:59.5133808Z + 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:51:59.5134368Z + args=('-v' '--cov=torchaudio' "--junitxml=${RUNNER_TEST_RESULTS_DIR}/junit.xml" '--durations' '100' '-k' 'cuda or gpu') 2023-08-09T11:51:59.5134681Z + declare -a args 2023-08-09T11:51:59.5134889Z + cd test 2023-08-09T11:51:59.5135131Z + python3 -m torch.utils.collect_env 2023-08-09T11:51:59.5135385Z Collecting environment information... 2023-08-09T11:51:59.5135620Z PyTorch version: 2.1.0.dev20230808 2023-08-09T11:51:59.5135839Z Is debug build: False 2023-08-09T11:51:59.5136057Z CUDA used to build PyTorch: 11.8 2023-08-09T11:51:59.5136284Z ROCM used to build PyTorch: N/A 2023-08-09T11:51:59.5136419Z 2023-08-09T11:51:59.5136520Z OS: CentOS Linux 7 (Core) (x86_64) 2023-08-09T11:51:59.5136815Z GCC version: (GCC) 9.3.1 20200408 (Red Hat 9.3.1-2) 2023-08-09T11:51:59.5137046Z Clang version: Could not collect 2023-08-09T11:51:59.5137268Z CMake version: version 3.26.4 2023-08-09T11:51:59.5137514Z Libc version: glibc-2.17 2023-08-09T11:51:59.5137642Z 2023-08-09T11:51:59.5137847Z Python version: 3.9.17 (main, Jul 5 2023, 20:41:20) [GCC 11.2.0] (64-bit runtime) 2023-08-09T11:51:59.5138215Z Python platform: Linux-4.14.252-195.483.amzn2.x86_64-x86_64-with-glibc2.17 2023-08-09T11:51:59.5138477Z Is CUDA available: True 2023-08-09T11:51:59.5138691Z CUDA runtime version: 11.8.89 2023-08-09T11:51:59.5138904Z CUDA_MODULE_LOADING set to: LAZY 2023-08-09T11:51:59.5139157Z GPU models and configuration: GPU 0: NVIDIA A10G 2023-08-09T11:51:59.5139406Z Nvidia driver version: 535.54.03 2023-08-09T11:51:59.5139643Z cuDNN version: Probably one of the following: 2023-08-09T11:51:59.5139985Z /usr/local/cuda-11.8/targets/x86_64-linux/lib/libcudnn.so.8.7.0 2023-08-09T11:51:59.5140414Z /usr/local/cuda-11.8/targets/x86_64-linux/lib/libcudnn_adv_infer.so.8.7.0 2023-08-09T11:51:59.5140783Z /usr/local/cuda-11.8/targets/x86_64-linux/lib/libcudnn_adv_train.so.8.7.0 2023-08-09T11:51:59.5141142Z /usr/local/cuda-11.8/targets/x86_64-linux/lib/libcudnn_cnn_infer.so.8.7.0 2023-08-09T11:51:59.5141510Z /usr/local/cuda-11.8/targets/x86_64-linux/lib/libcudnn_cnn_train.so.8.7.0 2023-08-09T11:51:59.5141877Z /usr/local/cuda-11.8/targets/x86_64-linux/lib/libcudnn_ops_infer.so.8.7.0 2023-08-09T11:51:59.5142241Z /usr/local/cuda-11.8/targets/x86_64-linux/lib/libcudnn_ops_train.so.8.7.0 2023-08-09T11:51:59.5142496Z HIP runtime version: N/A 2023-08-09T11:51:59.5142716Z MIOpen runtime version: N/A 2023-08-09T11:51:59.5142930Z Is XNNPACK available: True 2023-08-09T11:51:59.5143061Z 2023-08-09T11:51:59.5143129Z CPU: 2023-08-09T11:51:59.5143318Z Architecture: x86_64 2023-08-09T11:51:59.5143576Z CPU op-mode(s): 32-bit, 64-bit 2023-08-09T11:51:59.5143804Z Byte Order: Little Endian 2023-08-09T11:51:59.5144013Z CPU(s): 16 2023-08-09T11:51:59.5144249Z On-line CPU(s) list: 0-15 2023-08-09T11:51:59.5144465Z Thread(s) per core: 2 2023-08-09T11:51:59.5144672Z Core(s) per socket: 8 2023-08-09T11:51:59.5144868Z Socket(s): 1 2023-08-09T11:51:59.5145064Z NUMA node(s): 1 2023-08-09T11:51:59.5145272Z Vendor ID: AuthenticAMD 2023-08-09T11:51:59.5145478Z CPU family: 23 2023-08-09T11:51:59.5145674Z Model: 49 2023-08-09T11:51:59.5145882Z Model name: AMD EPYC 7R32 2023-08-09T11:51:59.5146086Z Stepping: 0 2023-08-09T11:51:59.5146288Z CPU MHz: 3300.794 2023-08-09T11:51:59.5146492Z BogoMIPS: 5599.88 2023-08-09T11:51:59.5146698Z Hypervisor vendor: KVM 2023-08-09T11:51:59.5146919Z Virtualization type: full 2023-08-09T11:51:59.5147133Z L1d cache: 32K 2023-08-09T11:51:59.5147400Z L1i cache: 32K 2023-08-09T11:51:59.5147589Z L2 cache: 512K 2023-08-09T11:51:59.5147790Z L3 cache: 16384K 2023-08-09T11:51:59.5148035Z NUMA node0 CPU(s): 0-15 2023-08-09T11:51:59.5148946Z 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:51:59.5149648Z 2023-08-09T11:51:59.5149745Z Versions of relevant libraries: 2023-08-09T11:51:59.5149973Z [pip3] numpy==1.22.4 2023-08-09T11:51:59.5150251Z [pip3] pytorch-lightning==2.0.6 2023-08-09T11:51:59.5150483Z [pip3] torch==2.1.0.dev20230808 2023-08-09T11:51:59.5150713Z [pip3] torchaudio==2.1.0a0+fe9b9ff 2023-08-09T11:51:59.5150949Z [pip3] torchmetrics==1.0.3 2023-08-09T11:51:59.5151158Z [pip3] triton==2.1.0 2023-08-09T11:51:59.5151400Z [conda] blas 1.0 mkl 2023-08-09T11:51:59.5151670Z [conda] mkl 2023.1.0 h213fc3f_46343 2023-08-09T11:51:59.5152013Z [conda] mkl-service 2.4.0 py39h5eee18b_1 2023-08-09T11:51:59.5152298Z [conda] mkl_fft 1.3.6 py39h417a72b_1 2023-08-09T11:51:59.5152580Z [conda] mkl_random 1.2.2 py39h417a72b_1 2023-08-09T11:51:59.5152869Z [conda] numpy 1.22.4 pypi_0 pypi 2023-08-09T11:51:59.5153281Z [conda] pytorch 2.1.0.dev20230808 py3.9_cuda11.8_cudnn8.7.0_0 pytorch-nightly 2023-08-09T11:51:59.5153711Z [conda] pytorch-cuda 11.8 h7e8668a_5 pytorch-nightly 2023-08-09T11:51:59.5154106Z [conda] pytorch-lightning 2.0.6 pypi_0 pypi 2023-08-09T11:51:59.5154558Z [conda] pytorch-mutex 1.0 cuda pytorch-nightly 2023-08-09T11:52:11.0473168Z [conda] torchaudio 2.1.0a0+fe9b9ff dev_0 2023-08-09T11:52:11.0473642Z [conda] torchmetrics 1.0.3 pypi_0 pypi 2023-08-09T11:52:11.0474303Z [conda] torchtriton 2.1.0+e6216047b8 py39 pytorch-nightly 2023-08-09T11:52:11.0475438Z + env 2023-08-09T11:52:11.0475681Z + grep TORCHAUDIO 2023-08-09T11:52:11.0475930Z TORCHAUDIO_TEST_ALLOW_SKIP_IF_CUDA_SMALL_MEMORY=true 2023-08-09T11:52:11.0476226Z TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_FBANK_FEATS=true 2023-08-09T11:52:11.0476520Z TORCHAUDIO_TEST_ALLOW_SKIP_IF_TEMPORARY_DISABLED=true 2023-08-09T11:52:11.0476798Z TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_DECODER=true 2023-08-09T11:52:11.0477123Z TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_SOX_ENCODER=true 2023-08-09T11:52:11.0477511Z TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_APPLY_CMVN_SLIDING=true 2023-08-09T11:52:11.0477873Z TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_SPECTROGRAM_FEATS=true 2023-08-09T11:52:11.0478207Z TORCHAUDIO_TEST_ALLOW_SKIP_IF_ON_PYTHON_310=true 2023-08-09T11:52:11.0478527Z TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_KALDI_PITCH_FEATS=true 2023-08-09T11:52:11.0478822Z TORCHAUDIO_TEST_ALLOW_SKIP_IF_NO_CMD_COMPUTE_MFCC_FEATS=true 2023-08-09T11:52:11.0479289Z + pytest -v --cov=torchaudio --junitxml=/test-results/junit.xml --durations 100 -k 'cuda or gpu' torchaudio_unittest 2023-08-09T11:52:11.0479709Z ============================= test session starts ============================== 2023-08-09T11:52:11.0480084Z platform linux -- Python 3.9.17, pytest-7.4.0, pluggy-1.2.0 -- /work/ci_env/bin/python 2023-08-09T11:52:11.0480366Z cachedir: .pytest_cache 2023-08-09T11:52:11.0480569Z rootdir: /work 2023-08-09T11:52:11.0481062Z plugins: hydra-core-1.0.7, cov-4.1.0 2023-08-09T11:52:11.0481345Z collecting ...  2023-08-09T11:52:11.0481699Z collecting 3 items  2023-08-09T11:52:11.0482151Z collecting 829 items  2023-08-09T11:52:11.0482520Z collecting 2631 items  2023-08-09T11:52:11.0482857Z collecting 5685 items  2023-08-09T11:52:11.0483191Z collecting 5805 items  2023-08-09T11:52:11.0483788Z collecting 5822 items  2023-08-09T11:52:11.0484121Z collecting 7943 items  2023-08-09T11:52:11.0484448Z collecting 8945 items  2023-08-09T11:52:11.0484781Z collecting 10880 items  2023-08-09T11:52:11.0485121Z collected 11561 items / 8860 deselected / 2701 selected  2023-08-09T11:52:11.0485294Z 2023-08-09T11:52:11.0485632Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_00 SKIPPED [ 0%] 2023-08-09T11:52:11.0486241Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_01 SKIPPED [ 0%] 2023-08-09T11:52:11.0486839Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_02 SKIPPED [ 0%] 2023-08-09T11:52:11.0487358Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_03 SKIPPED [ 0%] 2023-08-09T11:52:11.0487875Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_04 SKIPPED [ 0%] 2023-08-09T11:52:11.0488553Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_05 SKIPPED [ 0%] 2023-08-09T11:52:11.0489204Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_06 SKIPPED [ 0%] 2023-08-09T11:52:11.0489808Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_07 SKIPPED [ 0%] 2023-08-09T11:52:11.0490336Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_08 SKIPPED [ 0%] 2023-08-09T11:52:11.0490851Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_09 SKIPPED [ 0%] 2023-08-09T11:52:11.0491370Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_10 SKIPPED [ 0%] 2023-08-09T11:52:11.0491891Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_11 SKIPPED [ 0%] 2023-08-09T11:52:11.0492401Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_12 SKIPPED [ 0%] 2023-08-09T11:52:11.0492911Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_13 SKIPPED [ 0%] 2023-08-09T11:52:11.0493436Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_14 SKIPPED [ 0%] 2023-08-09T11:52:11.0493940Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_15 SKIPPED [ 0%] 2023-08-09T11:52:11.0494451Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_16 SKIPPED [ 0%] 2023-08-09T11:52:11.0495069Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_17 SKIPPED [ 0%] 2023-08-09T11:52:11.0495608Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_18 SKIPPED [ 0%] 2023-08-09T11:52:11.0496228Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_19 SKIPPED [ 0%] 2023-08-09T11:52:11.0496734Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_20 SKIPPED [ 0%] 2023-08-09T11:52:11.0497245Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_21 SKIPPED [ 0%] 2023-08-09T11:52:11.0497754Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_22 SKIPPED [ 0%] 2023-08-09T11:52:11.0498273Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_23 SKIPPED [ 0%] 2023-08-09T11:52:11.0498796Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_24 SKIPPED [ 0%] 2023-08-09T11:52:11.0499418Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_25 SKIPPED [ 0%] 2023-08-09T11:52:11.0500050Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_26 SKIPPED [ 0%] 2023-08-09T11:52:11.0500574Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_27 SKIPPED [ 1%] 2023-08-09T11:52:11.0501152Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_28 SKIPPED [ 1%] 2023-08-09T11:52:11.0501737Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_29 SKIPPED [ 1%] 2023-08-09T11:52:11.0502412Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_30 SKIPPED [ 1%] 2023-08-09T11:52:11.0502931Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_31 SKIPPED [ 1%] 2023-08-09T11:52:11.0503440Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_32 SKIPPED [ 1%] 2023-08-09T11:52:11.0503953Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_33 SKIPPED [ 1%] 2023-08-09T11:52:11.0504465Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_34 SKIPPED [ 1%] 2023-08-09T11:52:11.0504989Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_35 SKIPPED [ 1%] 2023-08-09T11:52:11.0505855Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_36 SKIPPED [ 1%] 2023-08-09T11:52:11.0506498Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_37 SKIPPED [ 1%] 2023-08-09T11:52:11.0507026Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_38 SKIPPED [ 1%] 2023-08-09T11:52:11.0507551Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_39 SKIPPED [ 1%] 2023-08-09T11:52:11.0508063Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_40 SKIPPED [ 1%] 2023-08-09T11:52:11.0508770Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_41 SKIPPED [ 1%] 2023-08-09T11:52:11.0509444Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_42 SKIPPED [ 1%] 2023-08-09T11:52:11.0509965Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_43 SKIPPED [ 1%] 2023-08-09T11:52:11.0510476Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_44 SKIPPED [ 1%] 2023-08-09T11:52:11.1499733Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_45 SKIPPED [ 1%] 2023-08-09T11:52:11.1500535Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_46 SKIPPED [ 1%] 2023-08-09T11:52:11.1501225Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_47 SKIPPED [ 1%] 2023-08-09T11:52:11.1501971Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_48 SKIPPED [ 1%] 2023-08-09T11:52:11.1502553Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_49 SKIPPED [ 1%] 2023-08-09T11:52:11.1503070Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_50 SKIPPED [ 1%] 2023-08-09T11:52:11.1503592Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_51 SKIPPED [ 1%] 2023-08-09T11:52:11.1504104Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_52 SKIPPED [ 1%] 2023-08-09T11:52:11.1504789Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_53 SKIPPED [ 1%] 2023-08-09T11:52:11.1505316Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_54 SKIPPED [ 2%] 2023-08-09T11:52:11.1506041Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_55 SKIPPED [ 2%] 2023-08-09T11:52:11.1506560Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_56 SKIPPED [ 2%] 2023-08-09T11:52:11.1507065Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_57 SKIPPED [ 2%] 2023-08-09T11:52:11.1507577Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_58 SKIPPED [ 2%] 2023-08-09T11:52:11.1508086Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_59 SKIPPED [ 2%] 2023-08-09T11:52:11.1508687Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_60 SKIPPED [ 2%] 2023-08-09T11:52:11.1509209Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_61 SKIPPED [ 2%] 2023-08-09T11:52:11.1509782Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_62 SKIPPED [ 2%] 2023-08-09T11:52:11.1510433Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_63 SKIPPED [ 2%] 2023-08-09T11:52:11.1511045Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_64 SKIPPED [ 2%] 2023-08-09T11:52:11.1511550Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_65 SKIPPED [ 2%] 2023-08-09T11:52:11.1512076Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_66 SKIPPED [ 2%] 2023-08-09T11:52:11.1512806Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_67 SKIPPED [ 2%] 2023-08-09T11:52:11.1513386Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_68 SKIPPED [ 2%] 2023-08-09T11:52:11.1513968Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_69 SKIPPED [ 2%] 2023-08-09T11:52:11.1514542Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_70 SKIPPED [ 2%] 2023-08-09T11:52:11.1515192Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_71 SKIPPED [ 2%] 2023-08-09T11:52:11.1515913Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_72 SKIPPED [ 2%] 2023-08-09T11:52:11.1516524Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_73 SKIPPED [ 2%] 2023-08-09T11:52:11.1517063Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_74 SKIPPED [ 2%] 2023-08-09T11:52:11.1517575Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_75 SKIPPED [ 2%] 2023-08-09T11:52:11.1518082Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_76 SKIPPED [ 2%] 2023-08-09T11:52:11.1518592Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_77 SKIPPED [ 2%] 2023-08-09T11:52:11.1519093Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_78 SKIPPED [ 2%] 2023-08-09T11:52:11.1519609Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_79 SKIPPED [ 2%] 2023-08-09T11:52:11.1520218Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_80 SKIPPED [ 2%] 2023-08-09T11:52:11.1520731Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_81 SKIPPED [ 3%] 2023-08-09T11:52:11.1521235Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_82 SKIPPED [ 3%] 2023-08-09T11:52:11.1521741Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_83 SKIPPED [ 3%] 2023-08-09T11:52:11.1522248Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_84 SKIPPED [ 3%] 2023-08-09T11:52:11.1522760Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_85 SKIPPED [ 3%] 2023-08-09T11:52:11.1523267Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_86 SKIPPED [ 3%] 2023-08-09T11:52:11.1524125Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_fbank_87 SKIPPED [ 3%] 2023-08-09T11:52:11.1524634Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_000 SKIPPED [ 3%] 2023-08-09T11:52:11.1525142Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_001 SKIPPED [ 3%] 2023-08-09T11:52:11.1525737Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_002 SKIPPED [ 3%] 2023-08-09T11:52:11.1526359Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_003 SKIPPED [ 3%] 2023-08-09T11:52:11.1527105Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_004 SKIPPED [ 3%] 2023-08-09T11:52:11.1527705Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_005 SKIPPED [ 3%] 2023-08-09T11:52:11.1528216Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_006 SKIPPED [ 3%] 2023-08-09T11:52:11.1528724Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_007 SKIPPED [ 3%] 2023-08-09T11:52:11.1529356Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_008 SKIPPED [ 3%] 2023-08-09T11:52:11.1529914Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_009 SKIPPED [ 3%] 2023-08-09T11:52:11.1530441Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_010 SKIPPED [ 3%] 2023-08-09T11:52:11.1530958Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_011 SKIPPED [ 3%] 2023-08-09T11:52:11.1531471Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_012 SKIPPED [ 3%] 2023-08-09T11:52:11.1532136Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_013 SKIPPED [ 3%] 2023-08-09T11:52:11.1532967Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_014 SKIPPED [ 3%] 2023-08-09T11:52:11.1533507Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_015 SKIPPED [ 3%] 2023-08-09T11:52:11.1534136Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_016 SKIPPED [ 3%] 2023-08-09T11:52:11.1534652Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_017 SKIPPED [ 3%] 2023-08-09T11:52:11.2519958Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_018 SKIPPED [ 3%] 2023-08-09T11:52:11.2520834Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_019 SKIPPED [ 3%] 2023-08-09T11:52:11.2521587Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_020 SKIPPED [ 4%] 2023-08-09T11:52:11.2522352Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_021 SKIPPED [ 4%] 2023-08-09T11:52:11.2523118Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_022 SKIPPED [ 4%] 2023-08-09T11:52:11.2524155Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_023 SKIPPED [ 4%] 2023-08-09T11:52:11.2524853Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_024 SKIPPED [ 4%] 2023-08-09T11:52:11.2525373Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_025 SKIPPED [ 4%] 2023-08-09T11:52:11.2526036Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_026 SKIPPED [ 4%] 2023-08-09T11:52:11.2526559Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_027 SKIPPED [ 4%] 2023-08-09T11:52:11.2527286Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_028 SKIPPED [ 4%] 2023-08-09T11:52:11.2527820Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_029 SKIPPED [ 4%] 2023-08-09T11:52:11.2528476Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_030 SKIPPED [ 4%] 2023-08-09T11:52:11.2528995Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_031 SKIPPED [ 4%] 2023-08-09T11:52:11.2529495Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_032 SKIPPED [ 4%] 2023-08-09T11:52:11.2530005Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_033 SKIPPED [ 4%] 2023-08-09T11:52:11.2530537Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_034 SKIPPED [ 4%] 2023-08-09T11:52:11.2531169Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_035 SKIPPED [ 4%] 2023-08-09T11:52:11.2531773Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_036 SKIPPED [ 4%] 2023-08-09T11:52:11.2532332Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_037 SKIPPED [ 4%] 2023-08-09T11:52:11.2532957Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_038 SKIPPED [ 4%] 2023-08-09T11:52:11.2533491Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_039 SKIPPED [ 4%] 2023-08-09T11:52:11.2533993Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_040 SKIPPED [ 4%] 2023-08-09T11:52:11.2534611Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_041 SKIPPED [ 4%] 2023-08-09T11:52:11.2535121Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_042 SKIPPED [ 4%] 2023-08-09T11:52:11.2535628Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_043 SKIPPED [ 4%] 2023-08-09T11:52:11.2536128Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_044 SKIPPED [ 4%] 2023-08-09T11:52:11.2536726Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_045 SKIPPED [ 4%] 2023-08-09T11:52:11.2537416Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_046 SKIPPED [ 4%] 2023-08-09T11:52:11.2537953Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_047 SKIPPED [ 5%] 2023-08-09T11:52:11.2538456Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_048 SKIPPED [ 5%] 2023-08-09T11:52:11.2538963Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_049 SKIPPED [ 5%] 2023-08-09T11:52:11.2539474Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_050 SKIPPED [ 5%] 2023-08-09T11:52:11.2539981Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_051 SKIPPED [ 5%] 2023-08-09T11:52:11.2540483Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_052 SKIPPED [ 5%] 2023-08-09T11:52:11.2541095Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_053 SKIPPED [ 5%] 2023-08-09T11:52:11.2541605Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_054 SKIPPED [ 5%] 2023-08-09T11:52:11.2542112Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_055 SKIPPED [ 5%] 2023-08-09T11:52:11.2542617Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_056 SKIPPED [ 5%] 2023-08-09T11:52:11.2543124Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_057 SKIPPED [ 5%] 2023-08-09T11:52:11.2543635Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_058 SKIPPED [ 5%] 2023-08-09T11:52:11.2544147Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_059 SKIPPED [ 5%] 2023-08-09T11:52:11.2544652Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_060 SKIPPED [ 5%] 2023-08-09T11:52:11.2545162Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_061 SKIPPED [ 5%] 2023-08-09T11:52:11.2545770Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_062 SKIPPED [ 5%] 2023-08-09T11:52:11.2546453Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_063 SKIPPED [ 5%] 2023-08-09T11:52:11.2547074Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_064 SKIPPED [ 5%] 2023-08-09T11:52:11.2547645Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_065 SKIPPED [ 5%] 2023-08-09T11:52:11.2548322Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_066 SKIPPED [ 5%] 2023-08-09T11:52:11.2549024Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_067 SKIPPED [ 5%] 2023-08-09T11:52:11.2549529Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_068 SKIPPED [ 5%] 2023-08-09T11:52:11.2550038Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_069 SKIPPED [ 5%] 2023-08-09T11:52:11.2550544Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_070 SKIPPED [ 5%] 2023-08-09T11:52:11.2551051Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_071 SKIPPED [ 5%] 2023-08-09T11:52:11.2551567Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_072 SKIPPED [ 5%] 2023-08-09T11:52:11.2552079Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_073 SKIPPED [ 5%] 2023-08-09T11:52:11.2552586Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_074 SKIPPED [ 6%] 2023-08-09T11:52:11.2553213Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_075 SKIPPED [ 6%] 2023-08-09T11:52:11.2553913Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_076 SKIPPED [ 6%] 2023-08-09T11:52:11.2554437Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_077 SKIPPED [ 6%] 2023-08-09T11:52:11.2555033Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_078 SKIPPED [ 6%] 2023-08-09T11:52:11.3522697Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_079 SKIPPED [ 6%] 2023-08-09T11:52:11.3523772Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_080 SKIPPED [ 6%] 2023-08-09T11:52:11.3524551Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_081 SKIPPED [ 6%] 2023-08-09T11:52:11.3525149Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_082 SKIPPED [ 6%] 2023-08-09T11:52:11.3525752Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_083 SKIPPED [ 6%] 2023-08-09T11:52:11.3526468Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_084 SKIPPED [ 6%] 2023-08-09T11:52:11.3527178Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_085 SKIPPED [ 6%] 2023-08-09T11:52:11.3527699Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_086 SKIPPED [ 6%] 2023-08-09T11:52:11.3528352Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_087 SKIPPED [ 6%] 2023-08-09T11:52:11.3528932Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_088 SKIPPED [ 6%] 2023-08-09T11:52:11.3529700Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_089 SKIPPED [ 6%] 2023-08-09T11:52:11.3530281Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_090 SKIPPED [ 6%] 2023-08-09T11:52:11.3530992Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_091 SKIPPED [ 6%] 2023-08-09T11:52:11.3531606Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_092 SKIPPED [ 6%] 2023-08-09T11:52:11.3532129Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_093 SKIPPED [ 6%] 2023-08-09T11:52:11.3532816Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_094 SKIPPED [ 6%] 2023-08-09T11:52:11.3533417Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_095 SKIPPED [ 6%] 2023-08-09T11:52:11.3533983Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_096 SKIPPED [ 6%] 2023-08-09T11:52:11.3534571Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_097 SKIPPED [ 6%] 2023-08-09T11:52:11.3535160Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_098 SKIPPED [ 6%] 2023-08-09T11:52:11.3535727Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_099 SKIPPED [ 6%] 2023-08-09T11:52:11.3536246Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_100 SKIPPED [ 6%] 2023-08-09T11:52:11.3536803Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_101 SKIPPED [ 7%] 2023-08-09T11:52:11.3537362Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_102 SKIPPED [ 7%] 2023-08-09T11:52:11.3538038Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_103 SKIPPED [ 7%] 2023-08-09T11:52:11.3538607Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_104 SKIPPED [ 7%] 2023-08-09T11:52:11.3539288Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_105 SKIPPED [ 7%] 2023-08-09T11:52:11.3539812Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_106 SKIPPED [ 7%] 2023-08-09T11:52:11.3540465Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_107 SKIPPED [ 7%] 2023-08-09T11:52:11.3541094Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_108 SKIPPED [ 7%] 2023-08-09T11:52:11.3541617Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_109 SKIPPED [ 7%] 2023-08-09T11:52:11.3542130Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_110 SKIPPED [ 7%] 2023-08-09T11:52:11.3542714Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_111 SKIPPED [ 7%] 2023-08-09T11:52:11.3543300Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_112 SKIPPED [ 7%] 2023-08-09T11:52:11.3543878Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_mfcc_113 SKIPPED [ 7%] 2023-08-09T11:52:11.3544536Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_000 SKIPPED [ 7%] 2023-08-09T11:52:11.3545162Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_001 SKIPPED [ 7%] 2023-08-09T11:52:11.3545874Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_002 SKIPPED [ 7%] 2023-08-09T11:52:11.3546411Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_003 SKIPPED [ 7%] 2023-08-09T11:52:11.3547090Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_004 SKIPPED [ 7%] 2023-08-09T11:52:11.3547720Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_005 SKIPPED [ 7%] 2023-08-09T11:52:11.3548260Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_006 SKIPPED [ 7%] 2023-08-09T11:52:11.3548914Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_007 SKIPPED [ 7%] 2023-08-09T11:52:11.3549561Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_008 SKIPPED [ 7%] 2023-08-09T11:52:11.3550091Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_009 SKIPPED [ 7%] 2023-08-09T11:52:11.3550712Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_010 SKIPPED [ 7%] 2023-08-09T11:52:11.3551336Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_011 SKIPPED [ 7%] 2023-08-09T11:52:11.3551872Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_012 SKIPPED [ 7%] 2023-08-09T11:52:11.3552539Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_013 SKIPPED [ 7%] 2023-08-09T11:52:11.3553202Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_014 SKIPPED [ 8%] 2023-08-09T11:52:11.3553739Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_015 SKIPPED [ 8%] 2023-08-09T11:52:11.3554259Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_016 SKIPPED [ 8%] 2023-08-09T11:52:11.3554788Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_017 SKIPPED [ 8%] 2023-08-09T11:52:11.3555339Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_018 SKIPPED [ 8%] 2023-08-09T11:52:11.3555980Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_019 SKIPPED [ 8%] 2023-08-09T11:52:11.3556508Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_020 SKIPPED [ 8%] 2023-08-09T11:52:11.3557039Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_021 SKIPPED [ 8%] 2023-08-09T11:52:11.3557568Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_022 SKIPPED [ 8%] 2023-08-09T11:52:11.3558105Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_023 SKIPPED [ 8%] 2023-08-09T11:52:11.3558630Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_024 SKIPPED [ 8%] 2023-08-09T11:52:11.4488000Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_025 SKIPPED [ 8%] 2023-08-09T11:52:11.4488821Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_026 SKIPPED [ 8%] 2023-08-09T11:52:11.4489596Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_027 SKIPPED [ 8%] 2023-08-09T11:52:11.4490203Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_028 SKIPPED [ 8%] 2023-08-09T11:52:11.4490725Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_029 SKIPPED [ 8%] 2023-08-09T11:52:11.4491245Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_030 SKIPPED [ 8%] 2023-08-09T11:52:11.4491905Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_031 SKIPPED [ 8%] 2023-08-09T11:52:11.4492471Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_032 SKIPPED [ 8%] 2023-08-09T11:52:11.4492989Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_033 SKIPPED [ 8%] 2023-08-09T11:52:11.4493532Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_034 SKIPPED [ 8%] 2023-08-09T11:52:11.4494081Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_035 SKIPPED [ 8%] 2023-08-09T11:52:11.4494608Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_036 SKIPPED [ 8%] 2023-08-09T11:52:11.4495418Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_037 SKIPPED [ 8%] 2023-08-09T11:52:11.4495987Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_038 SKIPPED [ 8%] 2023-08-09T11:52:11.4496628Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_039 SKIPPED [ 8%] 2023-08-09T11:52:11.4497218Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_040 SKIPPED [ 8%] 2023-08-09T11:52:11.4497753Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_041 SKIPPED [ 9%] 2023-08-09T11:52:11.4498274Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_042 SKIPPED [ 9%] 2023-08-09T11:52:11.4498816Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_043 SKIPPED [ 9%] 2023-08-09T11:52:11.4499342Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_044 SKIPPED [ 9%] 2023-08-09T11:52:11.4499866Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_045 SKIPPED [ 9%] 2023-08-09T11:52:11.4500539Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_046 SKIPPED [ 9%] 2023-08-09T11:52:11.4501074Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_047 SKIPPED [ 9%] 2023-08-09T11:52:11.4501601Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_048 SKIPPED [ 9%] 2023-08-09T11:52:11.4502291Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_049 SKIPPED [ 9%] 2023-08-09T11:52:11.4502931Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_050 SKIPPED [ 9%] 2023-08-09T11:52:11.4503720Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_051 SKIPPED [ 9%] 2023-08-09T11:52:11.4504257Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_052 SKIPPED [ 9%] 2023-08-09T11:52:11.4504784Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_053 SKIPPED [ 9%] 2023-08-09T11:52:11.4505308Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_054 SKIPPED [ 9%] 2023-08-09T11:52:11.4505850Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_055 SKIPPED [ 9%] 2023-08-09T11:52:11.4506379Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_056 SKIPPED [ 9%] 2023-08-09T11:52:11.4506906Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_057 SKIPPED [ 9%] 2023-08-09T11:52:11.4507427Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_058 SKIPPED [ 9%] 2023-08-09T11:52:11.4507955Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_059 SKIPPED [ 9%] 2023-08-09T11:52:11.4508591Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_060 SKIPPED [ 9%] 2023-08-09T11:52:11.4509222Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_061 SKIPPED [ 9%] 2023-08-09T11:52:11.4509746Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_062 SKIPPED [ 9%] 2023-08-09T11:52:11.4510277Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_063 SKIPPED [ 9%] 2023-08-09T11:52:11.4510803Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_064 SKIPPED [ 9%] 2023-08-09T11:52:11.4511328Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_065 SKIPPED [ 9%] 2023-08-09T11:52:11.4511854Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_066 SKIPPED [ 9%] 2023-08-09T11:52:11.4512384Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_067 SKIPPED [ 9%] 2023-08-09T11:52:11.4512911Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_068 SKIPPED [ 10%] 2023-08-09T11:52:11.4513436Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_069 SKIPPED [ 10%] 2023-08-09T11:52:11.4513967Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_070 SKIPPED [ 10%] 2023-08-09T11:52:11.4514646Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_071 SKIPPED [ 10%] 2023-08-09T11:52:11.4515307Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_072 SKIPPED [ 10%] 2023-08-09T11:52:11.4516094Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_073 SKIPPED [ 10%] 2023-08-09T11:52:11.4516629Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_074 SKIPPED [ 10%] 2023-08-09T11:52:11.4517145Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_075 SKIPPED [ 10%] 2023-08-09T11:52:11.4517670Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_076 SKIPPED [ 10%] 2023-08-09T11:52:11.4518193Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_077 SKIPPED [ 10%] 2023-08-09T11:52:11.4518718Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_078 SKIPPED [ 10%] 2023-08-09T11:52:11.4519254Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_079 SKIPPED [ 10%] 2023-08-09T11:52:11.4519779Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_080 SKIPPED [ 10%] 2023-08-09T11:52:11.4520315Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_081 SKIPPED [ 10%] 2023-08-09T11:52:11.4521012Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_082 SKIPPED [ 10%] 2023-08-09T11:52:11.5519850Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_083 SKIPPED [ 10%] 2023-08-09T11:52:11.5520726Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_084 SKIPPED [ 10%] 2023-08-09T11:52:11.5521797Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_085 SKIPPED [ 10%] 2023-08-09T11:52:11.5522521Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_086 SKIPPED [ 10%] 2023-08-09T11:52:11.5523061Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_087 SKIPPED [ 10%] 2023-08-09T11:52:11.5523821Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_088 SKIPPED [ 10%] 2023-08-09T11:52:11.5524355Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_089 SKIPPED [ 10%] 2023-08-09T11:52:11.5524891Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_090 SKIPPED [ 10%] 2023-08-09T11:52:11.5525429Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_091 SKIPPED [ 10%] 2023-08-09T11:52:11.5525948Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_092 SKIPPED [ 10%] 2023-08-09T11:52:11.5526476Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_093 SKIPPED [ 10%] 2023-08-09T11:52:11.5527008Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_094 SKIPPED [ 10%] 2023-08-09T11:52:11.5527531Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_095 SKIPPED [ 11%] 2023-08-09T11:52:11.5528064Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_096 SKIPPED [ 11%] 2023-08-09T11:52:11.5528795Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_097 SKIPPED [ 11%] 2023-08-09T11:52:11.5529399Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_098 SKIPPED [ 11%] 2023-08-09T11:52:11.5529995Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_099 SKIPPED [ 11%] 2023-08-09T11:52:11.5530528Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_100 SKIPPED [ 11%] 2023-08-09T11:52:11.5531145Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_101 SKIPPED [ 11%] 2023-08-09T11:52:11.5531675Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_102 SKIPPED [ 11%] 2023-08-09T11:52:11.5532211Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_103 SKIPPED [ 11%] 2023-08-09T11:52:11.5532756Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_104 SKIPPED [ 11%] 2023-08-09T11:52:11.5533285Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_105 SKIPPED [ 11%] 2023-08-09T11:52:11.5533875Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_106 SKIPPED [ 11%] 2023-08-09T11:52:11.5534414Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_107 SKIPPED [ 11%] 2023-08-09T11:52:11.5535067Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_spectrogram_108 SKIPPED [ 11%] 2023-08-09T11:52:11.5535664Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_00 SKIPPED [ 11%] 2023-08-09T11:52:11.5536261Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_01 SKIPPED [ 11%] 2023-08-09T11:52:11.5536777Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_02 SKIPPED [ 11%] 2023-08-09T11:52:11.5537380Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_03 SKIPPED [ 11%] 2023-08-09T11:52:11.5537896Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_04 SKIPPED [ 11%] 2023-08-09T11:52:11.5538415Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_05 SKIPPED [ 11%] 2023-08-09T11:52:11.5538939Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_06 SKIPPED [ 11%] 2023-08-09T11:52:11.5539451Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_07 SKIPPED [ 11%] 2023-08-09T11:52:11.5539963Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_08 SKIPPED [ 11%] 2023-08-09T11:52:11.5540475Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_09 SKIPPED [ 11%] 2023-08-09T11:52:11.5540983Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_10 SKIPPED [ 11%] 2023-08-09T11:52:11.5541491Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_11 SKIPPED [ 11%] 2023-08-09T11:52:11.5542083Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_12 SKIPPED [ 11%] 2023-08-09T11:52:11.5542596Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_13 SKIPPED [ 12%] 2023-08-09T11:52:11.5543098Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_14 SKIPPED [ 12%] 2023-08-09T11:52:11.5543611Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_15 SKIPPED [ 12%] 2023-08-09T11:52:11.5544121Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_16 SKIPPED [ 12%] 2023-08-09T11:52:11.5544630Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_17 SKIPPED [ 12%] 2023-08-09T11:52:11.5545179Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_18 SKIPPED [ 12%] 2023-08-09T11:52:11.5545751Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_19 SKIPPED [ 12%] 2023-08-09T11:52:11.5546329Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_20 SKIPPED [ 12%] 2023-08-09T11:52:11.5546859Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_21 SKIPPED [ 12%] 2023-08-09T11:52:11.5547428Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_22 SKIPPED [ 12%] 2023-08-09T11:52:11.5547942Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_23 SKIPPED [ 12%] 2023-08-09T11:52:11.5548621Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_24 SKIPPED [ 12%] 2023-08-09T11:52:11.5549324Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_25 SKIPPED [ 12%] 2023-08-09T11:52:11.5549835Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_26 SKIPPED [ 12%] 2023-08-09T11:52:11.5550346Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_27 SKIPPED [ 12%] 2023-08-09T11:52:11.5550857Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_28 SKIPPED [ 12%] 2023-08-09T11:52:11.5551372Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_29 SKIPPED [ 12%] 2023-08-09T11:52:11.5551979Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_30 SKIPPED [ 12%] 2023-08-09T11:52:11.5552508Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_31 SKIPPED [ 12%] 2023-08-09T11:52:11.5553073Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_32 SKIPPED [ 12%] 2023-08-09T11:52:11.6526377Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_33 SKIPPED [ 12%] 2023-08-09T11:52:11.6527185Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_34 SKIPPED [ 12%] 2023-08-09T11:52:11.6527965Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_35 SKIPPED [ 12%] 2023-08-09T11:52:11.6528509Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_36 SKIPPED [ 12%] 2023-08-09T11:52:11.6529292Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_37 SKIPPED [ 12%] 2023-08-09T11:52:11.6529829Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_38 SKIPPED [ 12%] 2023-08-09T11:52:11.6530344Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_39 SKIPPED [ 12%] 2023-08-09T11:52:11.6530864Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_40 SKIPPED [ 13%] 2023-08-09T11:52:11.6531379Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_41 SKIPPED [ 13%] 2023-08-09T11:52:11.6531895Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_42 SKIPPED [ 13%] 2023-08-09T11:52:11.6532409Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_43 SKIPPED [ 13%] 2023-08-09T11:52:11.6532924Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_44 SKIPPED [ 13%] 2023-08-09T11:52:11.6533433Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_45 SKIPPED [ 13%] 2023-08-09T11:52:11.6533941Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_46 SKIPPED [ 13%] 2023-08-09T11:52:11.6534520Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_47 SKIPPED [ 13%] 2023-08-09T11:52:11.6535274Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_48 SKIPPED [ 13%] 2023-08-09T11:52:11.6535936Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_49 SKIPPED [ 13%] 2023-08-09T11:52:11.6536444Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_50 SKIPPED [ 13%] 2023-08-09T11:52:11.6536945Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_51 SKIPPED [ 13%] 2023-08-09T11:52:11.6537453Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_52 SKIPPED [ 13%] 2023-08-09T11:52:11.6537960Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_53 SKIPPED [ 13%] 2023-08-09T11:52:11.6538465Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_54 SKIPPED [ 13%] 2023-08-09T11:52:11.6538979Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_55 SKIPPED [ 13%] 2023-08-09T11:52:11.6539483Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_56 SKIPPED [ 13%] 2023-08-09T11:52:11.6539990Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_57 SKIPPED [ 13%] 2023-08-09T11:52:11.6540496Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_58 SKIPPED [ 13%] 2023-08-09T11:52:11.6541142Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_59 SKIPPED [ 13%] 2023-08-09T11:52:11.6541774Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_60 SKIPPED [ 13%] 2023-08-09T11:52:11.6542291Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_61 SKIPPED [ 13%] 2023-08-09T11:52:11.6542869Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_62 SKIPPED [ 13%] 2023-08-09T11:52:11.6543381Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_63 SKIPPED [ 13%] 2023-08-09T11:52:11.6543884Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_64 SKIPPED [ 13%] 2023-08-09T11:52:11.6544392Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_65 SKIPPED [ 13%] 2023-08-09T11:52:11.6544906Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_66 SKIPPED [ 13%] 2023-08-09T11:52:11.6545416Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_67 SKIPPED [ 14%] 2023-08-09T11:52:11.6545928Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_68 SKIPPED [ 14%] 2023-08-09T11:52:11.6546433Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_69 SKIPPED [ 14%] 2023-08-09T11:52:11.6546941Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_70 SKIPPED [ 14%] 2023-08-09T11:52:11.6547449Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_71 SKIPPED [ 14%] 2023-08-09T11:52:11.6547949Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_72 SKIPPED [ 14%] 2023-08-09T11:52:11.6548619Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_73 SKIPPED [ 14%] 2023-08-09T11:52:11.6549215Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_74 SKIPPED [ 14%] 2023-08-09T11:52:11.6549724Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_75 SKIPPED [ 14%] 2023-08-09T11:52:11.6550221Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_76 SKIPPED [ 14%] 2023-08-09T11:52:11.6550728Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_77 SKIPPED [ 14%] 2023-08-09T11:52:11.6551233Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_78 SKIPPED [ 14%] 2023-08-09T11:52:11.6551741Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_79 SKIPPED [ 14%] 2023-08-09T11:52:11.6552272Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_80 SKIPPED [ 14%] 2023-08-09T11:52:11.6552951Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_81 SKIPPED [ 14%] 2023-08-09T11:52:11.6553472Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_82 SKIPPED [ 14%] 2023-08-09T11:52:11.6553980Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_83 SKIPPED [ 14%] 2023-08-09T11:52:11.6554485Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_84 SKIPPED [ 14%] 2023-08-09T11:52:11.6554991Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_85 SKIPPED [ 14%] 2023-08-09T11:52:11.6555506Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_86 SKIPPED [ 14%] 2023-08-09T11:52:11.6556085Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_fbank_87 SKIPPED [ 14%] 2023-08-09T11:52:11.6556589Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_000 SKIPPED [ 14%] 2023-08-09T11:52:11.6557096Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_001 SKIPPED [ 14%] 2023-08-09T11:52:11.6557601Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_002 SKIPPED [ 14%] 2023-08-09T11:52:11.6558113Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_003 SKIPPED [ 14%] 2023-08-09T11:52:11.6558650Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_004 SKIPPED [ 14%] 2023-08-09T11:52:11.6559341Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_005 SKIPPED [ 14%] 2023-08-09T11:52:11.7507649Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_006 SKIPPED [ 15%] 2023-08-09T11:52:11.7508225Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_007 SKIPPED [ 15%] 2023-08-09T11:52:11.7508846Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_008 SKIPPED [ 15%] 2023-08-09T11:52:11.7509356Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_009 SKIPPED [ 15%] 2023-08-09T11:52:11.7509873Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_010 SKIPPED [ 15%] 2023-08-09T11:52:11.7510556Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_011 SKIPPED [ 15%] 2023-08-09T11:52:11.7511067Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_012 SKIPPED [ 15%] 2023-08-09T11:52:11.7511570Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_013 SKIPPED [ 15%] 2023-08-09T11:52:11.7512076Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_014 SKIPPED [ 15%] 2023-08-09T11:52:11.7512583Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_015 SKIPPED [ 15%] 2023-08-09T11:52:11.7513088Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_016 SKIPPED [ 15%] 2023-08-09T11:52:11.7513639Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_017 SKIPPED [ 15%] 2023-08-09T11:52:11.7514155Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_018 SKIPPED [ 15%] 2023-08-09T11:52:11.7514659Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_019 SKIPPED [ 15%] 2023-08-09T11:52:11.7515188Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_020 SKIPPED [ 15%] 2023-08-09T11:52:11.7515696Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_021 SKIPPED [ 15%] 2023-08-09T11:52:11.7516328Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_022 SKIPPED [ 15%] 2023-08-09T11:52:11.7516960Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_023 SKIPPED [ 15%] 2023-08-09T11:52:11.7517468Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_024 SKIPPED [ 15%] 2023-08-09T11:52:11.7517981Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_025 SKIPPED [ 15%] 2023-08-09T11:52:11.7518488Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_026 SKIPPED [ 15%] 2023-08-09T11:52:11.7518996Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_027 SKIPPED [ 15%] 2023-08-09T11:52:11.7519502Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_028 SKIPPED [ 15%] 2023-08-09T11:52:11.7520014Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_029 SKIPPED [ 15%] 2023-08-09T11:52:11.7520518Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_030 SKIPPED [ 15%] 2023-08-09T11:52:11.7521026Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_031 SKIPPED [ 15%] 2023-08-09T11:52:11.7521527Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_032 SKIPPED [ 15%] 2023-08-09T11:52:11.7522355Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_033 SKIPPED [ 16%] 2023-08-09T11:52:11.7522865Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_034 SKIPPED [ 16%] 2023-08-09T11:52:11.7523649Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_035 SKIPPED [ 16%] 2023-08-09T11:52:11.7524171Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_036 SKIPPED [ 16%] 2023-08-09T11:52:11.7524680Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_037 SKIPPED [ 16%] 2023-08-09T11:52:11.7525181Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_038 SKIPPED [ 16%] 2023-08-09T11:52:11.7525685Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_039 SKIPPED [ 16%] 2023-08-09T11:52:11.7526191Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_040 SKIPPED [ 16%] 2023-08-09T11:52:11.7526697Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_041 SKIPPED [ 16%] 2023-08-09T11:52:11.7527207Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_042 SKIPPED [ 16%] 2023-08-09T11:52:11.7527710Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_043 SKIPPED [ 16%] 2023-08-09T11:52:11.7528217Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_044 SKIPPED [ 16%] 2023-08-09T11:52:11.7528720Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_045 SKIPPED [ 16%] 2023-08-09T11:52:11.7529217Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_046 SKIPPED [ 16%] 2023-08-09T11:52:11.7529722Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_047 SKIPPED [ 16%] 2023-08-09T11:52:11.7530309Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_048 SKIPPED [ 16%] 2023-08-09T11:52:11.7530819Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_049 SKIPPED [ 16%] 2023-08-09T11:52:11.7531317Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_050 SKIPPED [ 16%] 2023-08-09T11:52:11.7531823Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_051 SKIPPED [ 16%] 2023-08-09T11:52:11.7532370Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_052 SKIPPED [ 16%] 2023-08-09T11:52:11.7532922Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_053 SKIPPED [ 16%] 2023-08-09T11:52:11.7533436Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_054 SKIPPED [ 16%] 2023-08-09T11:52:11.7533990Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_055 SKIPPED [ 16%] 2023-08-09T11:52:11.7534495Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_056 SKIPPED [ 16%] 2023-08-09T11:52:11.7535000Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_057 SKIPPED [ 16%] 2023-08-09T11:52:11.7535497Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_058 SKIPPED [ 16%] 2023-08-09T11:52:11.7536000Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_059 SKIPPED [ 16%] 2023-08-09T11:52:11.7536589Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_060 SKIPPED [ 17%] 2023-08-09T11:52:11.7537101Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_061 SKIPPED [ 17%] 2023-08-09T11:52:11.7537600Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_062 SKIPPED [ 17%] 2023-08-09T11:52:11.7538106Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_063 SKIPPED [ 17%] 2023-08-09T11:52:11.7538706Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_064 SKIPPED [ 17%] 2023-08-09T11:52:11.7539216Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_065 SKIPPED [ 17%] 2023-08-09T11:52:11.7539721Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_066 SKIPPED [ 17%] 2023-08-09T11:52:11.8487088Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_067 SKIPPED [ 17%] 2023-08-09T11:52:11.8487664Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_068 SKIPPED [ 17%] 2023-08-09T11:52:11.8488203Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_069 SKIPPED [ 17%] 2023-08-09T11:52:11.8488721Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_070 SKIPPED [ 17%] 2023-08-09T11:52:11.8489234Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_071 SKIPPED [ 17%] 2023-08-09T11:52:11.8489756Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_072 SKIPPED [ 17%] 2023-08-09T11:52:11.8490435Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_073 SKIPPED [ 17%] 2023-08-09T11:52:11.8490957Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_074 SKIPPED [ 17%] 2023-08-09T11:52:11.8491460Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_075 SKIPPED [ 17%] 2023-08-09T11:52:11.8491975Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_076 SKIPPED [ 17%] 2023-08-09T11:52:11.8492505Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_077 SKIPPED [ 17%] 2023-08-09T11:52:11.8493015Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_078 SKIPPED [ 17%] 2023-08-09T11:52:11.8493531Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_079 SKIPPED [ 17%] 2023-08-09T11:52:11.8494032Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_080 SKIPPED [ 17%] 2023-08-09T11:52:11.8494695Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_081 SKIPPED [ 17%] 2023-08-09T11:52:11.8495217Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_082 SKIPPED [ 17%] 2023-08-09T11:52:11.8495721Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_083 SKIPPED [ 17%] 2023-08-09T11:52:11.8496217Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_084 SKIPPED [ 17%] 2023-08-09T11:52:11.8496842Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_085 SKIPPED [ 17%] 2023-08-09T11:52:11.8497350Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_086 SKIPPED [ 17%] 2023-08-09T11:52:11.8497864Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_087 SKIPPED [ 18%] 2023-08-09T11:52:11.8498367Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_088 SKIPPED [ 18%] 2023-08-09T11:52:11.8498877Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_089 SKIPPED [ 18%] 2023-08-09T11:52:11.8499386Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_090 SKIPPED [ 18%] 2023-08-09T11:52:11.8499899Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_091 SKIPPED [ 18%] 2023-08-09T11:52:11.8500435Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_092 SKIPPED [ 18%] 2023-08-09T11:52:11.8501055Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_093 SKIPPED [ 18%] 2023-08-09T11:52:11.8501564Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_094 SKIPPED [ 18%] 2023-08-09T11:52:11.8502074Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_095 SKIPPED [ 18%] 2023-08-09T11:52:11.8502576Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_096 SKIPPED [ 18%] 2023-08-09T11:52:11.8503086Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_097 SKIPPED [ 18%] 2023-08-09T11:52:11.8503679Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_098 SKIPPED [ 18%] 2023-08-09T11:52:11.8504242Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_099 SKIPPED [ 18%] 2023-08-09T11:52:11.8504745Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_100 SKIPPED [ 18%] 2023-08-09T11:52:11.8505253Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_101 SKIPPED [ 18%] 2023-08-09T11:52:11.8505765Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_102 SKIPPED [ 18%] 2023-08-09T11:52:11.8506270Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_103 SKIPPED [ 18%] 2023-08-09T11:52:11.8506781Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_104 SKIPPED [ 18%] 2023-08-09T11:52:11.8507288Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_105 SKIPPED [ 18%] 2023-08-09T11:52:11.8507795Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_106 SKIPPED [ 18%] 2023-08-09T11:52:11.8508305Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_107 SKIPPED [ 18%] 2023-08-09T11:52:11.8508953Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_108 SKIPPED [ 18%] 2023-08-09T11:52:11.8509467Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_109 SKIPPED [ 18%] 2023-08-09T11:52:11.8510041Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_110 SKIPPED [ 18%] 2023-08-09T11:52:11.8510616Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_111 SKIPPED [ 18%] 2023-08-09T11:52:11.8511187Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_112 SKIPPED [ 18%] 2023-08-09T11:52:11.8511688Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_mfcc_113 SKIPPED [ 18%] 2023-08-09T11:52:11.8512216Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_000 SKIPPED [ 19%] 2023-08-09T11:52:11.8512753Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_001 SKIPPED [ 19%] 2023-08-09T11:52:11.8513300Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_002 SKIPPED [ 19%] 2023-08-09T11:52:11.8513830Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_003 SKIPPED [ 19%] 2023-08-09T11:52:11.8514357Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_004 SKIPPED [ 19%] 2023-08-09T11:52:11.8514887Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_005 SKIPPED [ 19%] 2023-08-09T11:52:11.8515414Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_006 SKIPPED [ 19%] 2023-08-09T11:52:11.8515934Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_007 SKIPPED [ 19%] 2023-08-09T11:52:11.8516553Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_008 SKIPPED [ 19%] 2023-08-09T11:52:11.8517189Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_009 SKIPPED [ 19%] 2023-08-09T11:52:11.8517713Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_010 SKIPPED [ 19%] 2023-08-09T11:52:11.8518230Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_011 SKIPPED [ 19%] 2023-08-09T11:52:11.8518764Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_012 SKIPPED [ 19%] 2023-08-09T11:52:11.9428735Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_013 SKIPPED [ 19%] 2023-08-09T11:52:11.9429368Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_014 SKIPPED [ 19%] 2023-08-09T11:52:11.9429908Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_015 SKIPPED [ 19%] 2023-08-09T11:52:11.9430445Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_016 SKIPPED [ 19%] 2023-08-09T11:52:11.9430977Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_017 SKIPPED [ 19%] 2023-08-09T11:52:11.9431513Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_018 SKIPPED [ 19%] 2023-08-09T11:52:11.9432044Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_019 SKIPPED [ 19%] 2023-08-09T11:52:11.9432711Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_020 SKIPPED [ 19%] 2023-08-09T11:52:11.9433236Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_021 SKIPPED [ 19%] 2023-08-09T11:52:11.9433764Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_022 SKIPPED [ 19%] 2023-08-09T11:52:11.9434293Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_023 SKIPPED [ 19%] 2023-08-09T11:52:11.9434814Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_024 SKIPPED [ 19%] 2023-08-09T11:52:11.9435337Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_025 SKIPPED [ 19%] 2023-08-09T11:52:11.9435897Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_026 SKIPPED [ 19%] 2023-08-09T11:52:11.9436565Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_027 SKIPPED [ 20%] 2023-08-09T11:52:11.9437187Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_028 SKIPPED [ 20%] 2023-08-09T11:52:11.9437723Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_029 SKIPPED [ 20%] 2023-08-09T11:52:11.9438332Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_030 SKIPPED [ 20%] 2023-08-09T11:52:11.9438859Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_031 SKIPPED [ 20%] 2023-08-09T11:52:11.9439487Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_032 SKIPPED [ 20%] 2023-08-09T11:52:11.9440021Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_033 SKIPPED [ 20%] 2023-08-09T11:52:11.9440550Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_034 SKIPPED [ 20%] 2023-08-09T11:52:11.9441082Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_035 SKIPPED [ 20%] 2023-08-09T11:52:11.9441611Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_036 SKIPPED [ 20%] 2023-08-09T11:52:11.9442181Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_037 SKIPPED [ 20%] 2023-08-09T11:52:11.9442815Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_038 SKIPPED [ 20%] 2023-08-09T11:52:11.9443584Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_039 SKIPPED [ 20%] 2023-08-09T11:52:11.9444219Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_040 SKIPPED [ 20%] 2023-08-09T11:52:11.9444744Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_041 SKIPPED [ 20%] 2023-08-09T11:52:11.9445273Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_042 SKIPPED [ 20%] 2023-08-09T11:52:11.9445802Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_043 SKIPPED [ 20%] 2023-08-09T11:52:11.9446447Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_044 SKIPPED [ 20%] 2023-08-09T11:52:11.9446965Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_045 SKIPPED [ 20%] 2023-08-09T11:52:11.9447497Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_046 SKIPPED [ 20%] 2023-08-09T11:52:11.9448025Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_047 SKIPPED [ 20%] 2023-08-09T11:52:11.9448555Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_048 SKIPPED [ 20%] 2023-08-09T11:52:11.9449080Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_049 SKIPPED [ 20%] 2023-08-09T11:52:11.9449610Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_050 SKIPPED [ 20%] 2023-08-09T11:52:11.9450137Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_051 SKIPPED [ 20%] 2023-08-09T11:52:11.9450661Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_052 SKIPPED [ 20%] 2023-08-09T11:52:11.9451194Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_053 SKIPPED [ 20%] 2023-08-09T11:52:11.9451716Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_054 SKIPPED [ 21%] 2023-08-09T11:52:11.9452351Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_055 SKIPPED [ 21%] 2023-08-09T11:52:11.9453063Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_056 SKIPPED [ 21%] 2023-08-09T11:52:11.9453626Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_057 SKIPPED [ 21%] 2023-08-09T11:52:11.9454208Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_058 SKIPPED [ 21%] 2023-08-09T11:52:11.9454737Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_059 SKIPPED [ 21%] 2023-08-09T11:52:11.9455267Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_060 SKIPPED [ 21%] 2023-08-09T11:52:11.9455792Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_061 SKIPPED [ 21%] 2023-08-09T11:52:11.9456325Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_062 SKIPPED [ 21%] 2023-08-09T11:52:11.9456853Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_063 SKIPPED [ 21%] 2023-08-09T11:52:11.9457379Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_064 SKIPPED [ 21%] 2023-08-09T11:52:11.9457903Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_065 SKIPPED [ 21%] 2023-08-09T11:52:11.9458523Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_066 SKIPPED [ 21%] 2023-08-09T11:52:11.9459128Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_067 SKIPPED [ 21%] 2023-08-09T11:52:11.9459840Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_068 SKIPPED [ 21%] 2023-08-09T11:52:11.9460374Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_069 SKIPPED [ 21%] 2023-08-09T11:52:11.9460903Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_070 SKIPPED [ 21%] 2023-08-09T11:54:55.2095984Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_071 SKIPPED [ 21%] 2023-08-09T11:54:55.2097461Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_072 SKIPPED [ 21%] 2023-08-09T11:54:55.2098044Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_073 SKIPPED [ 21%] 2023-08-09T11:54:55.2098613Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_074 SKIPPED [ 21%] 2023-08-09T11:54:55.2099164Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_075 SKIPPED [ 21%] 2023-08-09T11:54:55.2099701Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_076 SKIPPED [ 21%] 2023-08-09T11:54:55.2100812Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_077 SKIPPED [ 21%] 2023-08-09T11:54:55.2101375Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_078 SKIPPED [ 21%] 2023-08-09T11:54:55.2101920Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_079 SKIPPED [ 21%] 2023-08-09T11:54:55.2102708Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_080 SKIPPED [ 21%] 2023-08-09T11:54:55.2103250Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_081 SKIPPED [ 22%] 2023-08-09T11:54:55.2103798Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_082 SKIPPED [ 22%] 2023-08-09T11:54:55.2104495Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_083 SKIPPED [ 22%] 2023-08-09T11:54:55.2105197Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_084 SKIPPED [ 22%] 2023-08-09T11:54:55.2105916Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_085 SKIPPED [ 22%] 2023-08-09T11:54:55.2106468Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_086 SKIPPED [ 22%] 2023-08-09T11:54:55.2106991Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_087 SKIPPED [ 22%] 2023-08-09T11:54:55.2107605Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_088 SKIPPED [ 22%] 2023-08-09T11:54:55.2108350Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_089 SKIPPED [ 22%] 2023-08-09T11:54:55.2109247Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_090 SKIPPED [ 22%] 2023-08-09T11:54:55.2110140Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_091 SKIPPED [ 22%] 2023-08-09T11:54:55.2110881Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_092 SKIPPED [ 22%] 2023-08-09T11:54:55.2111424Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_093 SKIPPED [ 22%] 2023-08-09T11:54:55.2111951Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_094 SKIPPED [ 22%] 2023-08-09T11:54:55.2112476Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_095 SKIPPED [ 22%] 2023-08-09T11:54:55.2113004Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_096 SKIPPED [ 22%] 2023-08-09T11:54:55.2113537Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_097 SKIPPED [ 22%] 2023-08-09T11:54:55.2114069Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_098 SKIPPED [ 22%] 2023-08-09T11:54:55.2114595Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_099 SKIPPED [ 22%] 2023-08-09T11:54:55.2115121Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_100 SKIPPED [ 22%] 2023-08-09T11:54:55.2115643Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_101 SKIPPED [ 22%] 2023-08-09T11:54:55.2116168Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_102 SKIPPED [ 22%] 2023-08-09T11:54:55.2116699Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_103 SKIPPED [ 22%] 2023-08-09T11:54:55.2117337Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_104 SKIPPED [ 22%] 2023-08-09T11:54:55.2117873Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_105 SKIPPED [ 22%] 2023-08-09T11:54:55.2118400Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_106 SKIPPED [ 22%] 2023-08-09T11:54:55.2118928Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_107 SKIPPED [ 22%] 2023-08-09T11:54:55.2119452Z torchaudio_unittest/compliance/kaldi/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_spectrogram_108 SKIPPED [ 23%] 2023-08-09T11:54:55.2120035Z torchaudio_unittest/example/tacotron2/tacotron2_loss_gpu_test.py::TestTacotron2LossShapeFloat32CUDA::test_tacotron2_loss_shape PASSED [ 23%] 2023-08-09T11:54:55.2120679Z torchaudio_unittest/example/tacotron2/tacotron2_loss_gpu_test.py::TestTacotron2TorchsciptFloat32CUDA::test_tacotron2_loss_torchscript_consistency PASSED [ 23%] 2023-08-09T11:54:55.2121317Z torchaudio_unittest/example/tacotron2/tacotron2_loss_gpu_test.py::TestTacotron2GradcheckFloat64CUDA::test_tacotron2_loss_gradcheck PASSED [ 23%] 2023-08-09T11:54:55.2121879Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_add_noise PASSED [ 23%] 2023-08-09T11:54:55.2122411Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_allpass_biquad_0 PASSED [ 23%] 2023-08-09T11:54:55.2122950Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_apply_beamforming PASSED [ 23%] 2023-08-09T11:54:55.2123909Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_band_biquad_0 PASSED [ 23%] 2023-08-09T11:54:55.2124429Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_band_biquad_1 PASSED [ 23%] 2023-08-09T11:54:55.2124944Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_bandpass_biquad_0 PASSED [ 23%] 2023-08-09T11:54:55.2125472Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_bandpass_biquad_1 PASSED [ 23%] 2023-08-09T11:54:55.2126005Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_bandreject_biquad_0 PASSED [ 23%] 2023-08-09T11:54:55.2126520Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_bass_biquad_0 PASSED [ 23%] 2023-08-09T11:54:55.2127026Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_bass_biquad_1 PASSED [ 23%] 2023-08-09T11:54:55.2127535Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_biquad PASSED [ 23%] 2023-08-09T11:54:55.2128066Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_convolve_convolve_full PASSED [ 23%] 2023-08-09T11:54:55.2128607Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_convolve_convolve_same PASSED [ 23%] 2023-08-09T11:54:55.2129144Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_convolve_convolve_valid PASSED [ 23%] 2023-08-09T11:54:55.2129683Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_convolve_fftconvolve_full PASSED [ 23%] 2023-08-09T11:54:55.2130230Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_convolve_fftconvolve_same PASSED [ 23%] 2023-08-09T11:54:55.2130915Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_convolve_fftconvolve_valid PASSED [ 23%] 2023-08-09T11:58:59.4682277Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_deemph_biquad PASSED [ 23%] 2023-08-09T11:58:59.4683167Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_deemphasis PASSED [ 23%] 2023-08-09T11:58:59.4684322Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_equalizer_biquad_0 PASSED [ 23%] 2023-08-09T11:58:59.4685192Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_equalizer_biquad_1 PASSED [ 23%] 2023-08-09T11:58:59.4686042Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_filtfilt_a PASSED [ 23%] 2023-08-09T11:58:59.4686911Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_filtfilt_all_inputs PASSED [ 23%] 2023-08-09T11:58:59.4687777Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_filtfilt_b PASSED [ 24%] 2023-08-09T11:58:59.4688600Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_filtfilt_batching PASSED [ 24%] 2023-08-09T11:58:59.4689419Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_flanger PASSED [ 24%] 2023-08-09T11:58:59.4690225Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_gain PASSED [ 24%] 2023-08-09T11:58:59.4691049Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_highpass_biquad_0 PASSED [ 24%] 2023-08-09T11:58:59.4692234Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_lfilter_a PASSED [ 24%] 2023-08-09T11:58:59.4693084Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_lfilter_all_inputs PASSED [ 24%] 2023-08-09T11:58:59.4693940Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_lfilter_b PASSED [ 24%] 2023-08-09T11:58:59.4694775Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_lfilter_batching PASSED [ 24%] 2023-08-09T11:58:59.4695633Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_lfilter_filterbanks PASSED [ 24%] 2023-08-09T11:58:59.4696458Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_lfilter_x PASSED [ 24%] 2023-08-09T11:58:59.4697284Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_lowpass_biquad_0 PASSED [ 24%] 2023-08-09T11:58:59.4698137Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_mvdr_weights_rtf PASSED [ 24%] 2023-08-09T11:58:59.4698982Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_mvdr_weights_rtf_with_tensor PASSED [ 24%] 2023-08-09T11:58:59.4699880Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_mvdr_weights_souden PASSED [ 24%] 2023-08-09T11:58:59.4700728Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_mvdr_weights_souden_with_tensor PASSED [ 24%] 2023-08-09T11:58:59.4701558Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_overdrive PASSED [ 24%] 2023-08-09T11:58:59.4702365Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_phaser_0 PASSED [ 24%] 2023-08-09T11:58:59.4703373Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_phaser_1 PASSED [ 24%] 2023-08-09T11:58:59.4704272Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_preemphasis PASSED [ 24%] 2023-08-09T11:58:59.4705066Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_psd_0 PASSED [ 24%] 2023-08-09T11:58:59.4705865Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_psd_1 PASSED [ 24%] 2023-08-09T11:58:59.4706675Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_rtf_power_0 PASSED [ 24%] 2023-08-09T11:58:59.4707486Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_rtf_power_1 PASSED [ 24%] 2023-08-09T11:58:59.4708309Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_rtf_power_with_tensor_0 PASSED [ 24%] 2023-08-09T11:58:59.4709336Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_rtf_power_with_tensor_1 PASSED [ 24%] 2023-08-09T11:58:59.4710133Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_speed PASSED [ 24%] 2023-08-09T11:58:59.4710943Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_treble_biquad_0 PASSED [ 25%] 2023-08-09T11:58:59.4711755Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_treble_biquad_1 PASSED [ 25%] 2023-08-09T11:58:59.4712572Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradRNNTCUDA::test_rnnt_loss_0 PASSED [ 25%] 2023-08-09T11:58:59.4713359Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradRNNTCUDA::test_rnnt_loss_1 PASSED [ 25%] 2023-08-09T11:58:59.4714328Z torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradRNNTCUDA::test_rnnt_loss_2 PASSED [ 25%] 2023-08-09T11:58:59.4715129Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_add_noise_broadcast PASSED [ 25%] 2023-08-09T11:58:59.4715977Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_add_noise_leading_dim_check_0 PASSED [ 25%] 2023-08-09T11:58:59.4716850Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_add_noise_leading_dim_check_1 PASSED [ 25%] 2023-08-09T11:58:59.4717719Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_add_noise_leading_dim_check_2 PASSED [ 25%] 2023-08-09T11:58:59.4718569Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_add_noise_length_check PASSED [ 25%] 2023-08-09T11:58:59.4719460Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_amplitude_to_DB_reversible_0 PASSED [ 25%] 2023-08-09T11:58:59.4720334Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_amplitude_to_DB_reversible_1 PASSED [ 25%] 2023-08-09T11:58:59.4721201Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_amplitude_to_DB_reversible_2 PASSED [ 25%] 2023-08-09T11:58:59.4722073Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_amplitude_to_DB_top_db_clamp_0 PASSED [ 25%] 2023-08-09T11:58:59.4722946Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_amplitude_to_DB_top_db_clamp_1 PASSED [ 25%] 2023-08-09T11:58:59.4724027Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_amplitude_to_DB_top_db_clamp_2 PASSED [ 25%] 2023-08-09T11:58:59.4725043Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_apply_beamforming PASSED [ 25%] 2023-08-09T11:58:59.4725916Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_compute_deltas_one_channel PASSED [ 25%] 2023-08-09T11:58:59.4726776Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_compute_deltas_two_channels PASSED [ 25%] 2023-08-09T11:58:59.4727655Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_broadcast_convolve_5_2_3_1_1_3 PASSED [ 25%] 2023-08-09T11:58:59.4728564Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_broadcast_convolve_5_2_3_1_2_3 PASSED [ 25%] 2023-08-09T11:58:59.4729469Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_broadcast_convolve_5_2_3_5_1_3 PASSED [ 25%] 2023-08-09T11:58:59.4730388Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_broadcast_fftconvolve_5_2_3_1_1_3 PASSED [ 25%] 2023-08-09T11:58:59.4731306Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_broadcast_fftconvolve_5_2_3_1_2_3 PASSED [ 25%] 2023-08-09T11:58:59.4732191Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_broadcast_fftconvolve_5_2_3_5_1_3 PASSED [ 25%] 2023-08-09T11:58:59.4733062Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_input_dim_check_00 PASSED [ 25%] 2023-08-09T11:58:59.4733906Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_input_dim_check_01 PASSED [ 25%] 2023-08-09T11:58:59.7610775Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_input_dim_check_02 PASSED [ 26%] 2023-08-09T11:58:59.7611763Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_input_dim_check_03 PASSED [ 26%] 2023-08-09T11:58:59.7612638Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_input_dim_check_04 PASSED [ 26%] 2023-08-09T11:58:59.7613494Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_input_dim_check_05 PASSED [ 26%] 2023-08-09T11:58:59.7614310Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_input_dim_check_06 PASSED [ 26%] 2023-08-09T11:58:59.7615127Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_input_dim_check_07 PASSED [ 26%] 2023-08-09T11:58:59.7615955Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_input_dim_check_08 PASSED [ 26%] 2023-08-09T11:58:59.7616825Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_input_dim_check_09 PASSED [ 26%] 2023-08-09T11:58:59.7617673Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_input_dim_check_10 PASSED [ 26%] 2023-08-09T11:58:59.7618491Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_input_dim_check_11 PASSED [ 26%] 2023-08-09T11:58:59.7619323Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_input_dim_check_12 PASSED [ 26%] 2023-08-09T11:58:59.7620135Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_input_dim_check_13 PASSED [ 26%] 2023-08-09T11:58:59.7621312Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics_10_4_100_43_full PASSED [ 26%] 2023-08-09T11:58:59.7622163Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics_10_4_100_43_same PASSED [ 26%] 2023-08-09T11:58:59.7623001Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics_10_4_100_43_valid PASSED [ 26%] 2023-08-09T11:58:59.7623835Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics_10_4_21_45_full PASSED [ 26%] 2023-08-09T11:58:59.7624655Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics_10_4_21_45_same PASSED [ 26%] 2023-08-09T11:58:59.7625518Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics_10_4_21_45_valid PASSED [ 26%] 2023-08-09T11:58:59.7626390Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics_2_100_43_full PASSED [ 26%] 2023-08-09T11:58:59.7627260Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics_2_100_43_same PASSED [ 26%] 2023-08-09T11:58:59.7628120Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics_2_100_43_valid PASSED [ 26%] 2023-08-09T11:58:59.7629126Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics_2_21_45_full PASSED [ 26%] 2023-08-09T11:58:59.7629967Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics_2_21_45_same PASSED [ 26%] 2023-08-09T11:58:59.7630794Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics_2_21_45_valid PASSED [ 26%] 2023-08-09T11:58:59.7631868Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics_4_3_1_2_100_43_full PASSED [ 26%] 2023-08-09T11:58:59.7632750Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics_4_3_1_2_100_43_same PASSED [ 26%] 2023-08-09T11:58:59.7633625Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics_4_3_1_2_100_43_valid PASSED [ 26%] 2023-08-09T11:58:59.7634492Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics_4_3_1_2_21_45_full PASSED [ 27%] 2023-08-09T11:58:59.7635360Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics_4_3_1_2_21_45_same PASSED [ 27%] 2023-08-09T11:58:59.7636260Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics_4_3_1_2_21_45_valid PASSED [ 27%] 2023-08-09T11:58:59.7637097Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics__100_43_full PASSED [ 27%] 2023-08-09T11:58:59.7637970Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics__100_43_same PASSED [ 27%] 2023-08-09T11:58:59.7638827Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics__100_43_valid PASSED [ 27%] 2023-08-09T11:58:59.7639703Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics__21_45_full PASSED [ 27%] 2023-08-09T11:58:59.7640547Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics__21_45_same PASSED [ 27%] 2023-08-09T11:58:59.7641532Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_convolve_numerics__21_45_valid PASSED [ 27%] 2023-08-09T11:58:59.7642406Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_detect_pitch_frequency_pitch_0 PASSED [ 27%] 2023-08-09T11:58:59.7643292Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_detect_pitch_frequency_pitch_1 PASSED [ 27%] 2023-08-09T11:58:59.7644475Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics_10_4_100_43_full PASSED [ 27%] 2023-08-09T11:58:59.7645353Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics_10_4_100_43_same PASSED [ 27%] 2023-08-09T11:58:59.7646239Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics_10_4_100_43_valid PASSED [ 27%] 2023-08-09T11:58:59.7647128Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics_10_4_21_45_full PASSED [ 27%] 2023-08-09T11:58:59.7648001Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics_10_4_21_45_same PASSED [ 27%] 2023-08-09T11:58:59.7648834Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics_10_4_21_45_valid PASSED [ 27%] 2023-08-09T11:58:59.7649621Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics_2_100_43_full PASSED [ 27%] 2023-08-09T11:58:59.7650416Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics_2_100_43_same PASSED [ 27%] 2023-08-09T11:58:59.7651462Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics_2_100_43_valid PASSED [ 27%] 2023-08-09T11:58:59.7652324Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics_2_21_45_full PASSED [ 27%] 2023-08-09T11:58:59.7653185Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics_2_21_45_same PASSED [ 27%] 2023-08-09T11:58:59.7654108Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics_2_21_45_valid PASSED [ 27%] 2023-08-09T11:58:59.7655002Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics_4_3_1_2_100_43_full PASSED [ 27%] 2023-08-09T11:58:59.7655894Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics_4_3_1_2_100_43_same PASSED [ 27%] 2023-08-09T11:58:59.7656751Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics_4_3_1_2_100_43_valid PASSED [ 27%] 2023-08-09T11:58:59.7657628Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics_4_3_1_2_21_45_full PASSED [ 27%] 2023-08-09T11:58:59.7658521Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics_4_3_1_2_21_45_same PASSED [ 28%] 2023-08-09T11:59:00.0904555Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics_4_3_1_2_21_45_valid PASSED [ 28%] 2023-08-09T11:59:00.0905713Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics__100_43_full PASSED [ 28%] 2023-08-09T11:59:00.0906439Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics__100_43_same PASSED [ 28%] 2023-08-09T11:59:00.0907257Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics__100_43_valid PASSED [ 28%] 2023-08-09T11:59:00.0907814Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics__21_45_full PASSED [ 28%] 2023-08-09T11:59:00.0908366Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics__21_45_same PASSED [ 28%] 2023-08-09T11:59:00.0909004Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_fftconvolve_numerics__21_45_valid PASSED [ 28%] 2023-08-09T11:59:00.0909553Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_filtfilt_filter_sinusoid PASSED [ 28%] 2023-08-09T11:59:00.0910083Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_filtfilt_simple PASSED [ 28%] 2023-08-09T11:59:00.0910616Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_forced_align_0 PASSED [ 28%] 2023-08-09T11:59:00.0911139Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_forced_align_1 PASSED [ 28%] 2023-08-09T11:59:00.0911659Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_forced_align_2 PASSED [ 28%] 2023-08-09T11:59:00.0912168Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_forced_align_3 PASSED [ 28%] 2023-08-09T11:59:00.0912699Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_forced_align_fail_0 PASSED [ 28%] 2023-08-09T11:59:00.0913226Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_forced_align_fail_1 PASSED [ 28%] 2023-08-09T11:59:00.0913875Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_lfilter_9th_order_filter_stability XFAIL [ 28%] 2023-08-09T11:59:00.0914405Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_lfilter_clamp PASSED [ 28%] 2023-08-09T11:59:00.0914925Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_lfilter_shape_0 PASSED [ 28%] 2023-08-09T11:59:00.0915449Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_lfilter_shape_1 PASSED [ 28%] 2023-08-09T11:59:00.0915971Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_lfilter_shape_2 PASSED [ 28%] 2023-08-09T11:59:00.0916481Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_lfilter_shape_3 PASSED [ 28%] 2023-08-09T11:59:00.0917006Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_lfilter_shape_4 PASSED [ 28%] 2023-08-09T11:59:00.0917541Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_lfilter_shape_5 PASSED [ 28%] 2023-08-09T11:59:00.0918053Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_lfilter_shape_6 PASSED [ 28%] 2023-08-09T11:59:00.0918568Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_lfilter_simple PASSED [ 28%] 2023-08-09T11:59:00.0919082Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_00 PASSED [ 28%] 2023-08-09T11:59:00.0919609Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_01 PASSED [ 29%] 2023-08-09T11:59:00.0920136Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_02 PASSED [ 29%] 2023-08-09T11:59:00.0920705Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_03 PASSED [ 29%] 2023-08-09T11:59:00.0921223Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_04 PASSED [ 29%] 2023-08-09T11:59:00.0921743Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_05 PASSED [ 29%] 2023-08-09T11:59:00.0922260Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_06 PASSED [ 29%] 2023-08-09T11:59:00.0922776Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_07 PASSED [ 29%] 2023-08-09T11:59:00.0923525Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_08 PASSED [ 29%] 2023-08-09T11:59:00.0924058Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_09 PASSED [ 29%] 2023-08-09T11:59:00.0924572Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_10 PASSED [ 29%] 2023-08-09T11:59:00.0925091Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_11 PASSED [ 29%] 2023-08-09T11:59:00.0925593Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_12 PASSED [ 29%] 2023-08-09T11:59:00.0926108Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_13 PASSED [ 29%] 2023-08-09T11:59:00.0926618Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_14 PASSED [ 29%] 2023-08-09T11:59:00.0927202Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_15 PASSED [ 29%] 2023-08-09T11:59:00.0927707Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_16 PASSED [ 29%] 2023-08-09T11:59:00.0928223Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_17 PASSED [ 29%] 2023-08-09T11:59:00.0928731Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_18 PASSED [ 29%] 2023-08-09T11:59:00.0929240Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_19 PASSED [ 29%] 2023-08-09T11:59:00.0929746Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_20 PASSED [ 29%] 2023-08-09T11:59:00.0930268Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_21 PASSED [ 29%] 2023-08-09T11:59:00.0930784Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_22 PASSED [ 29%] 2023-08-09T11:59:00.0931299Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_23 PASSED [ 29%] 2023-08-09T11:59:00.0931820Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_iid_0 PASSED [ 29%] 2023-08-09T11:59:00.0932355Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_iid_1 PASSED [ 29%] 2023-08-09T11:59:00.0932883Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_iid_2 PASSED [ 29%] 2023-08-09T11:59:00.0933419Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_iid_3 PASSED [ 29%] 2023-08-09T11:59:00.0934003Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_iid_4 PASSED [ 30%] 2023-08-09T11:59:00.0934534Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_iid_5 PASSED [ 30%] 2023-08-09T11:59:00.0935054Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_iid_6 PASSED [ 30%] 2023-08-09T11:59:00.0935582Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_iid_7 PASSED [ 30%] 2023-08-09T11:59:00.0936123Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_iid_preserve_0 PASSED [ 30%] 2023-08-09T11:59:00.0936691Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_iid_preserve_1 PASSED [ 30%] 2023-08-09T11:59:00.0937259Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_iid_preserve_2 PASSED [ 30%] 2023-08-09T11:59:01.3738135Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_iid_preserve_3 PASSED [ 30%] 2023-08-09T11:59:01.3739000Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_input_axis_check_0 PASSED [ 30%] 2023-08-09T11:59:01.3739720Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_input_axis_check_1 PASSED [ 30%] 2023-08-09T11:59:01.3740341Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_preserve_0 PASSED [ 30%] 2023-08-09T11:59:01.3741444Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_preserve_1 PASSED [ 30%] 2023-08-09T11:59:01.3742177Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_preserve_2 PASSED [ 30%] 2023-08-09T11:59:01.3742783Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_preserve_3 PASSED [ 30%] 2023-08-09T11:59:01.3743326Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_preserve_4 PASSED [ 30%] 2023-08-09T11:59:01.3743856Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_preserve_5 PASSED [ 30%] 2023-08-09T11:59:01.3744389Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_preserve_6 PASSED [ 30%] 2023-08-09T11:59:01.3744941Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_preserve_7 PASSED [ 30%] 2023-08-09T11:59:01.3745481Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_merge_repeated_tokens_00 PASSED [ 30%] 2023-08-09T11:59:01.3746018Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_merge_repeated_tokens_01 PASSED [ 30%] 2023-08-09T11:59:01.3746562Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_merge_repeated_tokens_02 PASSED [ 30%] 2023-08-09T11:59:01.3747114Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_merge_repeated_tokens_03 PASSED [ 30%] 2023-08-09T11:59:01.3747638Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_merge_repeated_tokens_04 PASSED [ 30%] 2023-08-09T11:59:01.3748278Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_merge_repeated_tokens_05 PASSED [ 30%] 2023-08-09T11:59:01.3748948Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_merge_repeated_tokens_06 PASSED [ 30%] 2023-08-09T11:59:01.3749488Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_merge_repeated_tokens_07 PASSED [ 30%] 2023-08-09T11:59:01.3750023Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_merge_repeated_tokens_08 PASSED [ 30%] 2023-08-09T11:59:01.3750557Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_merge_repeated_tokens_09 PASSED [ 31%] 2023-08-09T11:59:01.3751076Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_merge_repeated_tokens_10 PASSED [ 31%] 2023-08-09T11:59:01.3751620Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_merge_repeated_tokens_11 PASSED [ 31%] 2023-08-09T11:59:01.3752151Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_merge_repeated_tokens_12 PASSED [ 31%] 2023-08-09T11:59:01.3752675Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_merge_repeated_tokens_13 PASSED [ 31%] 2023-08-09T11:59:01.3753193Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_merge_repeated_tokens_14 PASSED [ 31%] 2023-08-09T11:59:01.3753727Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_merge_repeated_tokens_15 PASSED [ 31%] 2023-08-09T11:59:01.3754253Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_merge_repeated_tokens_16 PASSED [ 31%] 2023-08-09T11:59:01.3754833Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_merge_repeated_tokens_17 PASSED [ 31%] 2023-08-09T11:59:01.3755470Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_merge_repeated_tokens_18 PASSED [ 31%] 2023-08-09T11:59:01.3756005Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_merge_repeated_tokens_19 PASSED [ 31%] 2023-08-09T11:59:01.3756529Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_merge_repeated_tokens_20 PASSED [ 31%] 2023-08-09T11:59:01.3757053Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_merge_repeated_tokens_21 PASSED [ 31%] 2023-08-09T11:59:01.3757567Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_merge_repeated_tokens_22 PASSED [ 31%] 2023-08-09T11:59:01.3758101Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mvdr_weights_rtf PASSED [ 31%] 2023-08-09T11:59:01.3758645Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mvdr_weights_rtf_with_tensor PASSED [ 31%] 2023-08-09T11:59:01.3759180Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mvdr_weights_souden PASSED [ 31%] 2023-08-09T11:59:01.3759721Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_mvdr_weights_souden_with_tensor PASSED [ 31%] 2023-08-09T11:59:01.3760265Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_phase_vocoder_shape_0_5 PASSED [ 31%] 2023-08-09T11:59:01.3760800Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_phase_vocoder_shape_1_01 PASSED [ 31%] 2023-08-09T11:59:01.3761337Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_phase_vocoder_shape_1_3 PASSED [ 31%] 2023-08-09T11:59:01.3762016Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_pitch_shift_shape_0 PASSED [ 31%] 2023-08-09T11:59:01.3762559Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_pitch_shift_shape_2 PASSED [ 31%] 2023-08-09T11:59:01.3763080Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_pitch_shift_shape_4 PASSED [ 31%] 2023-08-09T11:59:01.3763886Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_pitch_shift_shape__2 PASSED [ 31%] 2023-08-09T11:59:01.3764407Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_pitch_shift_shape__4 PASSED [ 31%] 2023-08-09T11:59:01.3764947Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_preemphasis_3_2_100_0_68 PASSED [ 31%] 2023-08-09T11:59:01.3765482Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_preemphasis_3_2_100_0_9 PASSED [ 32%] 2023-08-09T11:59:01.3766013Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_preemphasis_3_2_100_0_97 PASSED [ 32%] 2023-08-09T11:59:01.3766527Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_preemphasis_95_0_68 PASSED [ 32%] 2023-08-09T11:59:01.3767052Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_preemphasis_95_0_9 PASSED [ 32%] 2023-08-09T11:59:01.3767569Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_preemphasis_95_0_97 PASSED [ 32%] 2023-08-09T11:59:01.3768212Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_preemphasis_deemphasis_roundtrip_3_2_100_0_68 PASSED [ 32%] 2023-08-09T11:59:01.3768801Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_preemphasis_deemphasis_roundtrip_3_2_100_0_9 PASSED [ 32%] 2023-08-09T11:59:01.3769370Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_preemphasis_deemphasis_roundtrip_3_2_100_0_97 PASSED [ 32%] 2023-08-09T11:59:01.3769949Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_preemphasis_deemphasis_roundtrip_95_0_68 PASSED [ 32%] 2023-08-09T11:59:01.3770525Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_preemphasis_deemphasis_roundtrip_95_0_9 PASSED [ 32%] 2023-08-09T11:59:01.3771094Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_preemphasis_deemphasis_roundtrip_95_0_97 PASSED [ 32%] 2023-08-09T11:59:01.4975597Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_psd PASSED [ 32%] 2023-08-09T11:59:01.4976558Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_psd_with_mask_0 PASSED [ 32%] 2023-08-09T11:59:01.4977418Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_psd_with_mask_1 PASSED [ 32%] 2023-08-09T11:59:01.4978306Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_identity_0_sinc_interp_hann PASSED [ 32%] 2023-08-09T11:59:01.4979199Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_identity_1_sinc_interp_hann PASSED [ 32%] 2023-08-09T11:59:01.4980080Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_identity_2_sinc_interp_kaiser PASSED [ 32%] 2023-08-09T11:59:01.4981264Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_identity_3_sinc_interp_kaiser PASSED [ 32%] 2023-08-09T11:59:01.4982207Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_00_sinc_interp_hann PASSED [ 32%] 2023-08-09T11:59:01.4983150Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_01_sinc_interp_hann PASSED [ 32%] 2023-08-09T11:59:01.4984083Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_02_sinc_interp_hann PASSED [ 32%] 2023-08-09T11:59:01.4984975Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_03_sinc_interp_hann PASSED [ 32%] 2023-08-09T11:59:01.4985918Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_04_sinc_interp_hann PASSED [ 32%] 2023-08-09T11:59:01.4986880Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_05_sinc_interp_hann PASSED [ 32%] 2023-08-09T11:59:01.4987826Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_06_sinc_interp_hann PASSED [ 32%] 2023-08-09T11:59:01.4988853Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_07_sinc_interp_hann PASSED [ 32%] 2023-08-09T11:59:01.4989828Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_08_sinc_interp_hann PASSED [ 32%] 2023-08-09T11:59:01.4990983Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_09_sinc_interp_hann PASSED [ 33%] 2023-08-09T11:59:01.4991963Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_10_sinc_interp_hann PASSED [ 33%] 2023-08-09T11:59:01.4992928Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_11_sinc_interp_hann PASSED [ 33%] 2023-08-09T11:59:01.4993903Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_12_sinc_interp_hann PASSED [ 33%] 2023-08-09T11:59:01.4994858Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_13_sinc_interp_hann PASSED [ 33%] 2023-08-09T11:59:01.4995871Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_14_sinc_interp_hann PASSED [ 33%] 2023-08-09T11:59:01.4996838Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_15_sinc_interp_hann PASSED [ 33%] 2023-08-09T11:59:01.4997859Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_16_sinc_interp_hann PASSED [ 33%] 2023-08-09T11:59:01.4998822Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_17_sinc_interp_hann PASSED [ 33%] 2023-08-09T11:59:01.4999801Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_18_sinc_interp_hann PASSED [ 33%] 2023-08-09T11:59:01.5000924Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_19_sinc_interp_kaiser PASSED [ 33%] 2023-08-09T11:59:01.5001924Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_20_sinc_interp_kaiser PASSED [ 33%] 2023-08-09T11:59:01.5002915Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_21_sinc_interp_kaiser PASSED [ 33%] 2023-08-09T11:59:01.5004113Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_22_sinc_interp_kaiser PASSED [ 33%] 2023-08-09T11:59:01.5005087Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_23_sinc_interp_kaiser PASSED [ 33%] 2023-08-09T11:59:01.5006084Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_24_sinc_interp_kaiser PASSED [ 33%] 2023-08-09T11:59:01.5007059Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_25_sinc_interp_kaiser PASSED [ 33%] 2023-08-09T11:59:01.5008039Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_26_sinc_interp_kaiser PASSED [ 33%] 2023-08-09T11:59:01.5009027Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_27_sinc_interp_kaiser PASSED [ 33%] 2023-08-09T11:59:01.5010011Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_28_sinc_interp_kaiser PASSED [ 33%] 2023-08-09T11:59:01.5011129Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_29_sinc_interp_kaiser PASSED [ 33%] 2023-08-09T11:59:01.5012077Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_30_sinc_interp_kaiser PASSED [ 33%] 2023-08-09T11:59:01.5013015Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_31_sinc_interp_kaiser PASSED [ 33%] 2023-08-09T11:59:01.5013954Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_32_sinc_interp_kaiser PASSED [ 33%] 2023-08-09T11:59:01.5014885Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_33_sinc_interp_kaiser PASSED [ 33%] 2023-08-09T11:59:01.5015843Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_34_sinc_interp_kaiser PASSED [ 33%] 2023-08-09T11:59:01.5016679Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_35_sinc_interp_kaiser PASSED [ 33%] 2023-08-09T11:59:01.5017583Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_36_sinc_interp_kaiser PASSED [ 34%] 2023-08-09T11:59:01.5018480Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_accuracy_37_sinc_interp_kaiser PASSED [ 34%] 2023-08-09T11:59:01.5019443Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_size_0_sinc_interp_hann PASSED [ 34%] 2023-08-09T11:59:01.5020534Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_downsample_size_1_sinc_interp_kaiser PASSED [ 34%] 2023-08-09T11:59:01.5021475Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_identity_size_0_sinc_interp_hann PASSED [ 34%] 2023-08-09T11:59:01.5022413Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_identity_size_1_sinc_interp_kaiser PASSED [ 34%] 2023-08-09T11:59:01.9564352Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_00_sinc_interp_hann PASSED [ 34%] 2023-08-09T11:59:01.9565475Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_01_sinc_interp_hann PASSED [ 34%] 2023-08-09T11:59:01.9566504Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_02_sinc_interp_hann PASSED [ 34%] 2023-08-09T11:59:01.9567752Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_03_sinc_interp_hann PASSED [ 34%] 2023-08-09T11:59:01.9568690Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_04_sinc_interp_hann PASSED [ 34%] 2023-08-09T11:59:01.9569546Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_05_sinc_interp_hann PASSED [ 34%] 2023-08-09T11:59:01.9570340Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_06_sinc_interp_hann PASSED [ 34%] 2023-08-09T11:59:01.9571555Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_07_sinc_interp_hann PASSED [ 34%] 2023-08-09T11:59:01.9572426Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_08_sinc_interp_hann PASSED [ 34%] 2023-08-09T11:59:01.9573224Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_09_sinc_interp_hann PASSED [ 34%] 2023-08-09T11:59:01.9574036Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_10_sinc_interp_hann PASSED [ 34%] 2023-08-09T11:59:01.9574828Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_11_sinc_interp_hann PASSED [ 34%] 2023-08-09T11:59:01.9575604Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_12_sinc_interp_hann PASSED [ 34%] 2023-08-09T11:59:01.9576443Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_13_sinc_interp_hann PASSED [ 34%] 2023-08-09T11:59:01.9577231Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_14_sinc_interp_hann PASSED [ 34%] 2023-08-09T11:59:01.9578131Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_15_sinc_interp_hann PASSED [ 34%] 2023-08-09T11:59:01.9579052Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_16_sinc_interp_hann PASSED [ 34%] 2023-08-09T11:59:01.9580050Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_17_sinc_interp_hann PASSED [ 34%] 2023-08-09T11:59:01.9581215Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_18_sinc_interp_hann PASSED [ 34%] 2023-08-09T11:59:01.9582130Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_19_sinc_interp_kaiser PASSED [ 34%] 2023-08-09T11:59:01.9583092Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_20_sinc_interp_kaiser PASSED [ 34%] 2023-08-09T11:59:01.9584123Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_21_sinc_interp_kaiser PASSED [ 35%] 2023-08-09T11:59:01.9585120Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_22_sinc_interp_kaiser PASSED [ 35%] 2023-08-09T11:59:01.9586027Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_23_sinc_interp_kaiser PASSED [ 35%] 2023-08-09T11:59:01.9586948Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_24_sinc_interp_kaiser PASSED [ 35%] 2023-08-09T11:59:01.9587866Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_25_sinc_interp_kaiser PASSED [ 35%] 2023-08-09T11:59:01.9589014Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_26_sinc_interp_kaiser PASSED [ 35%] 2023-08-09T11:59:01.9589998Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_27_sinc_interp_kaiser PASSED [ 35%] 2023-08-09T11:59:01.9591094Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_28_sinc_interp_kaiser PASSED [ 35%] 2023-08-09T11:59:01.9591973Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_29_sinc_interp_kaiser PASSED [ 35%] 2023-08-09T11:59:01.9592896Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_30_sinc_interp_kaiser PASSED [ 35%] 2023-08-09T11:59:01.9593838Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_31_sinc_interp_kaiser PASSED [ 35%] 2023-08-09T11:59:01.9594784Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_32_sinc_interp_kaiser PASSED [ 35%] 2023-08-09T11:59:01.9595811Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_33_sinc_interp_kaiser PASSED [ 35%] 2023-08-09T11:59:01.9596787Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_34_sinc_interp_kaiser PASSED [ 35%] 2023-08-09T11:59:01.9597723Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_35_sinc_interp_kaiser PASSED [ 35%] 2023-08-09T11:59:01.9598553Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_36_sinc_interp_kaiser PASSED [ 35%] 2023-08-09T11:59:01.9599393Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_accuracy_37_sinc_interp_kaiser PASSED [ 35%] 2023-08-09T11:59:01.9600294Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_size_0_sinc_interp_hann PASSED [ 35%] 2023-08-09T11:59:01.9601187Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_resample_waveform_upsample_size_1_sinc_interp_kaiser PASSED [ 35%] 2023-08-09T11:59:01.9601989Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_rnnt_loss_basic_backward PASSED [ 35%] 2023-08-09T11:59:01.9602765Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_rnnt_loss_basic_forward_no_grad PASSED [ 35%] 2023-08-09T11:59:01.9603778Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_rnnt_loss_costs_and_gradients_0 PASSED [ 35%] 2023-08-09T11:59:01.9604610Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_rnnt_loss_costs_and_gradients_1 PASSED [ 35%] 2023-08-09T11:59:01.9605450Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_rnnt_loss_costs_and_gradients_2 PASSED [ 35%] 2023-08-09T11:59:01.9606302Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_rnnt_loss_costs_and_gradients_3 PASSED [ 35%] 2023-08-09T11:59:01.9607203Z 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:59:01.9608136Z 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:59:01.9609028Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_rnnt_loss_nonfused_softmax PASSED [ 36%] 2023-08-09T11:59:02.7406903Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_rtf_evd PASSED [ 36%] 2023-08-09T11:59:02.7407705Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_rtf_power_0 PASSED [ 36%] 2023-08-09T11:59:02.7408353Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_rtf_power_1 PASSED [ 36%] 2023-08-09T11:59:02.7408996Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_rtf_power_2 PASSED [ 36%] 2023-08-09T11:59:02.7409659Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_rtf_power_with_tensor_0 PASSED [ 36%] 2023-08-09T11:59:02.7410346Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_rtf_power_with_tensor_1 PASSED [ 36%] 2023-08-09T11:59:02.7411030Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_rtf_power_with_tensor_2 PASSED [ 36%] 2023-08-09T11:59:02.7411718Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_simple_case_edit_distance_00_ PASSED [ 36%] 2023-08-09T11:59:02.7412414Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_simple_case_edit_distance_01_abc PASSED [ 36%] 2023-08-09T11:59:02.7413125Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_simple_case_edit_distance_02__I_O PASSED [ 36%] 2023-08-09T11:59:02.7413833Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_simple_case_edit_distance_03_abc PASSED [ 36%] 2023-08-09T11:59:02.7414535Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_simple_case_edit_distance_04_aa PASSED [ 36%] 2023-08-09T11:59:02.7415497Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_simple_case_edit_distance_05_aaa PASSED [ 36%] 2023-08-09T11:59:02.7416207Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_simple_case_edit_distance_06__I PASSED [ 36%] 2023-08-09T11:59:02.7416915Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_simple_case_edit_distance_07_aaa PASSED [ 36%] 2023-08-09T11:59:02.7417620Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_simple_case_edit_distance_08_aba PASSED [ 36%] 2023-08-09T11:59:02.7418316Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_simple_case_edit_distance_09_aba PASSED [ 36%] 2023-08-09T11:59:02.7419021Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_simple_case_edit_distance_10_abc PASSED [ 36%] 2023-08-09T11:59:02.7419733Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_simple_case_edit_distance_11_0_I PASSED [ 36%] 2023-08-09T11:59:02.7420432Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_simple_case_edit_distance_12 PASSED [ 36%] 2023-08-09T11:59:02.7421122Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_simple_case_edit_distance_13 PASSED [ 36%] 2023-08-09T11:59:02.7421803Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_simple_case_edit_distance_14 PASSED [ 36%] 2023-08-09T11:59:02.7422483Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_simple_case_edit_distance_15 PASSED [ 36%] 2023-08-09T11:59:02.7423168Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_simple_case_edit_distance_16 PASSED [ 36%] 2023-08-09T11:59:02.7424015Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_simple_case_edit_distance_17 PASSED [ 36%] 2023-08-09T11:59:02.7424689Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_simple_case_edit_distance_18 PASSED [ 36%] 2023-08-09T11:59:02.7425363Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_simple_case_edit_distance_19 PASSED [ 37%] 2023-08-09T11:59:02.7426060Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_simple_case_edit_distance_20_aba PASSED [ 37%] 2023-08-09T11:59:02.7426754Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_simple_case_edit_distance_21 PASSED [ 37%] 2023-08-09T11:59:02.7427425Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_simple_case_edit_distance_22 PASSED [ 37%] 2023-08-09T11:59:02.7428123Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_spectrogram_grad_at_zero_0 PASSED [ 37%] 2023-08-09T11:59:02.7428956Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_spectrogram_grad_at_zero_1 PASSED [ 37%] 2023-08-09T11:59:02.7429649Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_spectrogram_grad_at_zero_2 PASSED [ 37%] 2023-08-09T11:59:02.7430328Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_spectrogram_grad_at_zero_3 PASSED [ 37%] 2023-08-09T11:59:02.7431048Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_spectrogram_normalization_hann_window_0 PASSED [ 37%] 2023-08-09T11:59:02.7431797Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_spectrogram_normalization_hann_window_1 PASSED [ 37%] 2023-08-09T11:59:02.7432610Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_spectrogram_normalization_hann_window_2 PASSED [ 37%] 2023-08-09T11:59:02.7433304Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_speed_accuracy_0_8_False PASSED [ 37%] 2023-08-09T11:59:02.7433988Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_speed_accuracy_0_8_True PASSED [ 37%] 2023-08-09T11:59:02.7434673Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_speed_accuracy_1_1_False PASSED [ 37%] 2023-08-09T11:59:02.7435355Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_speed_accuracy_1_1_True PASSED [ 37%] 2023-08-09T11:59:02.7436025Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_speed_accuracy_1_2_False PASSED [ 37%] 2023-08-09T11:59:02.7436706Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_speed_accuracy_1_2_True PASSED [ 37%] 2023-08-09T11:59:02.7437374Z torchaudio_unittest/functional/functional_cuda_test.py::TestFunctionalFloat32::test_speed_identity PASSED [ 37%] 2023-08-09T11:59:02.7438035Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_add_noise_broadcast PASSED [ 37%] 2023-08-09T11:59:02.7438715Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_add_noise_leading_dim_check_0 PASSED [ 37%] 2023-08-09T11:59:02.7439385Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_add_noise_leading_dim_check_1 PASSED [ 37%] 2023-08-09T11:59:02.7440141Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_add_noise_leading_dim_check_2 PASSED [ 37%] 2023-08-09T11:59:02.7440820Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_add_noise_length_check PASSED [ 37%] 2023-08-09T11:59:02.7441498Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_amplitude_to_DB_reversible_0 PASSED [ 37%] 2023-08-09T11:59:02.7442174Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_amplitude_to_DB_reversible_1 PASSED [ 37%] 2023-08-09T11:59:02.7442864Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_amplitude_to_DB_reversible_2 PASSED [ 37%] 2023-08-09T11:59:02.7443713Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_amplitude_to_DB_top_db_clamp_0 PASSED [ 37%] 2023-08-09T11:59:02.7444413Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_amplitude_to_DB_top_db_clamp_1 PASSED [ 38%] 2023-08-09T11:59:02.7445092Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_amplitude_to_DB_top_db_clamp_2 PASSED [ 38%] 2023-08-09T11:59:02.7445756Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_apply_beamforming PASSED [ 38%] 2023-08-09T11:59:02.7446426Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_compute_deltas_one_channel PASSED [ 38%] 2023-08-09T11:59:02.7447107Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_compute_deltas_two_channels PASSED [ 38%] 2023-08-09T11:59:03.0282733Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_broadcast_convolve_5_2_3_1_1_3 PASSED [ 38%] 2023-08-09T11:59:03.0283761Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_broadcast_convolve_5_2_3_1_2_3 PASSED [ 38%] 2023-08-09T11:59:03.0284710Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_broadcast_convolve_5_2_3_5_1_3 PASSED [ 38%] 2023-08-09T11:59:03.0285445Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_broadcast_fftconvolve_5_2_3_1_1_3 PASSED [ 38%] 2023-08-09T11:59:03.0286172Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_broadcast_fftconvolve_5_2_3_1_2_3 PASSED [ 38%] 2023-08-09T11:59:03.0286884Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_broadcast_fftconvolve_5_2_3_5_1_3 PASSED [ 38%] 2023-08-09T11:59:03.0287579Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_input_dim_check_00 PASSED [ 38%] 2023-08-09T11:59:03.0288275Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_input_dim_check_01 PASSED [ 38%] 2023-08-09T11:59:03.0288952Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_input_dim_check_02 PASSED [ 38%] 2023-08-09T11:59:03.0289610Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_input_dim_check_03 PASSED [ 38%] 2023-08-09T11:59:03.0290274Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_input_dim_check_04 PASSED [ 38%] 2023-08-09T11:59:03.0290983Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_input_dim_check_05 PASSED [ 38%] 2023-08-09T11:59:03.0291655Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_input_dim_check_06 PASSED [ 38%] 2023-08-09T11:59:03.0292430Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_input_dim_check_07 PASSED [ 38%] 2023-08-09T11:59:03.0293084Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_input_dim_check_08 PASSED [ 38%] 2023-08-09T11:59:03.0293744Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_input_dim_check_09 PASSED [ 38%] 2023-08-09T11:59:03.0294415Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_input_dim_check_10 PASSED [ 38%] 2023-08-09T11:59:03.0295130Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_input_dim_check_11 PASSED [ 38%] 2023-08-09T11:59:03.0295783Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_input_dim_check_12 PASSED [ 38%] 2023-08-09T11:59:03.0296466Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_input_dim_check_13 PASSED [ 38%] 2023-08-09T11:59:03.0297153Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics_10_4_100_43_full PASSED [ 38%] 2023-08-09T11:59:03.0297845Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics_10_4_100_43_same PASSED [ 38%] 2023-08-09T11:59:03.0298529Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics_10_4_100_43_valid PASSED [ 39%] 2023-08-09T11:59:03.0299207Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics_10_4_21_45_full PASSED [ 39%] 2023-08-09T11:59:03.0299891Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics_10_4_21_45_same PASSED [ 39%] 2023-08-09T11:59:03.0300647Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics_10_4_21_45_valid PASSED [ 39%] 2023-08-09T11:59:03.0301333Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics_2_100_43_full PASSED [ 39%] 2023-08-09T11:59:03.0301997Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics_2_100_43_same PASSED [ 39%] 2023-08-09T11:59:03.0302671Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics_2_100_43_valid PASSED [ 39%] 2023-08-09T11:59:03.0303352Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics_2_21_45_full PASSED [ 39%] 2023-08-09T11:59:03.0304020Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics_2_21_45_same PASSED [ 39%] 2023-08-09T11:59:03.0304753Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics_2_21_45_valid PASSED [ 39%] 2023-08-09T11:59:03.0305443Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics_4_3_1_2_100_43_full PASSED [ 39%] 2023-08-09T11:59:03.0306134Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics_4_3_1_2_100_43_same PASSED [ 39%] 2023-08-09T11:59:03.0306830Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics_4_3_1_2_100_43_valid PASSED [ 39%] 2023-08-09T11:59:03.0307509Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics_4_3_1_2_21_45_full PASSED [ 39%] 2023-08-09T11:59:03.0308286Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics_4_3_1_2_21_45_same PASSED [ 39%] 2023-08-09T11:59:03.0309121Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics_4_3_1_2_21_45_valid PASSED [ 39%] 2023-08-09T11:59:03.0309803Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics__100_43_full PASSED [ 39%] 2023-08-09T11:59:03.0310465Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics__100_43_same PASSED [ 39%] 2023-08-09T11:59:03.0311147Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics__100_43_valid PASSED [ 39%] 2023-08-09T11:59:03.0311827Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics__21_45_full PASSED [ 39%] 2023-08-09T11:59:03.0312507Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics__21_45_same PASSED [ 39%] 2023-08-09T11:59:03.0313187Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_convolve_numerics__21_45_valid PASSED [ 39%] 2023-08-09T11:59:03.0313859Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_detect_pitch_frequency_pitch_0 PASSED [ 39%] 2023-08-09T11:59:03.0314532Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_detect_pitch_frequency_pitch_1 PASSED [ 39%] 2023-08-09T11:59:03.0315225Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics_10_4_100_43_full PASSED [ 39%] 2023-08-09T11:59:03.0315919Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics_10_4_100_43_same PASSED [ 39%] 2023-08-09T11:59:03.0316685Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics_10_4_100_43_valid PASSED [ 39%] 2023-08-09T11:59:03.0317382Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics_10_4_21_45_full PASSED [ 40%] 2023-08-09T11:59:03.0318075Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics_10_4_21_45_same PASSED [ 40%] 2023-08-09T11:59:03.0318763Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics_10_4_21_45_valid PASSED [ 40%] 2023-08-09T11:59:03.0319446Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics_2_100_43_full PASSED [ 40%] 2023-08-09T11:59:03.0320137Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics_2_100_43_same PASSED [ 40%] 2023-08-09T11:59:03.0320842Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics_2_100_43_valid PASSED [ 40%] 2023-08-09T11:59:03.0321533Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics_2_21_45_full PASSED [ 40%] 2023-08-09T11:59:03.3277403Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics_2_21_45_same PASSED [ 40%] 2023-08-09T11:59:03.3278081Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics_2_21_45_valid PASSED [ 40%] 2023-08-09T11:59:03.3278808Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics_4_3_1_2_100_43_full PASSED [ 40%] 2023-08-09T11:59:03.3279460Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics_4_3_1_2_100_43_same PASSED [ 40%] 2023-08-09T11:59:03.3280493Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics_4_3_1_2_100_43_valid PASSED [ 40%] 2023-08-09T11:59:03.3281081Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics_4_3_1_2_21_45_full PASSED [ 40%] 2023-08-09T11:59:03.3281640Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics_4_3_1_2_21_45_same PASSED [ 40%] 2023-08-09T11:59:03.3282188Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics_4_3_1_2_21_45_valid PASSED [ 40%] 2023-08-09T11:59:03.3282743Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics__100_43_full PASSED [ 40%] 2023-08-09T11:59:03.3283525Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics__100_43_same PASSED [ 40%] 2023-08-09T11:59:03.3284083Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics__100_43_valid PASSED [ 40%] 2023-08-09T11:59:03.3284615Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics__21_45_full PASSED [ 40%] 2023-08-09T11:59:03.3285148Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics__21_45_same PASSED [ 40%] 2023-08-09T11:59:03.3285686Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_fftconvolve_numerics__21_45_valid PASSED [ 40%] 2023-08-09T11:59:03.3286222Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_filtfilt_filter_sinusoid PASSED [ 40%] 2023-08-09T11:59:03.3286740Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_filtfilt_simple PASSED [ 40%] 2023-08-09T11:59:03.3287343Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_forced_align_0 PASSED [ 40%] 2023-08-09T11:59:03.3287847Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_forced_align_1 PASSED [ 40%] 2023-08-09T11:59:03.3288352Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_forced_align_2 PASSED [ 40%] 2023-08-09T11:59:03.3288841Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_forced_align_3 PASSED [ 40%] 2023-08-09T11:59:03.3289352Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_forced_align_fail_0 PASSED [ 41%] 2023-08-09T11:59:03.3289868Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_forced_align_fail_1 PASSED [ 41%] 2023-08-09T11:59:03.3290416Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_lfilter_9th_order_filter_stability PASSED [ 41%] 2023-08-09T11:59:03.3290929Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_lfilter_clamp PASSED [ 41%] 2023-08-09T11:59:03.3291439Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_lfilter_shape_0 PASSED [ 41%] 2023-08-09T11:59:03.3291939Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_lfilter_shape_1 PASSED [ 41%] 2023-08-09T11:59:03.3292439Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_lfilter_shape_2 PASSED [ 41%] 2023-08-09T11:59:03.3292928Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_lfilter_shape_3 PASSED [ 41%] 2023-08-09T11:59:03.3293489Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_lfilter_shape_4 PASSED [ 41%] 2023-08-09T11:59:03.3293987Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_lfilter_shape_5 PASSED [ 41%] 2023-08-09T11:59:03.3294486Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_lfilter_shape_6 PASSED [ 41%] 2023-08-09T11:59:03.3294980Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_lfilter_simple PASSED [ 41%] 2023-08-09T11:59:03.3295487Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_00 PASSED [ 41%] 2023-08-09T11:59:03.3295996Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_01 PASSED [ 41%] 2023-08-09T11:59:03.3296508Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_02 PASSED [ 41%] 2023-08-09T11:59:03.3297013Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_03 PASSED [ 41%] 2023-08-09T11:59:03.3297517Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_04 PASSED [ 41%] 2023-08-09T11:59:03.3298024Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_05 PASSED [ 41%] 2023-08-09T11:59:03.3298530Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_06 PASSED [ 41%] 2023-08-09T11:59:03.3299024Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_07 PASSED [ 41%] 2023-08-09T11:59:03.3299523Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_08 PASSED [ 41%] 2023-08-09T11:59:03.3300076Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_09 PASSED [ 41%] 2023-08-09T11:59:03.3300577Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_10 PASSED [ 41%] 2023-08-09T11:59:03.3301068Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_11 PASSED [ 41%] 2023-08-09T11:59:03.3301568Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_12 PASSED [ 41%] 2023-08-09T11:59:03.3302067Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_13 PASSED [ 41%] 2023-08-09T11:59:03.3302566Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_14 PASSED [ 41%] 2023-08-09T11:59:03.3303059Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_15 PASSED [ 42%] 2023-08-09T11:59:03.3303560Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_16 PASSED [ 42%] 2023-08-09T11:59:03.3304059Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_17 PASSED [ 42%] 2023-08-09T11:59:03.3304556Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_18 PASSED [ 42%] 2023-08-09T11:59:03.3305056Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_19 PASSED [ 42%] 2023-08-09T11:59:03.3305544Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_20 PASSED [ 42%] 2023-08-09T11:59:03.3306103Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_21 PASSED [ 42%] 2023-08-09T11:59:03.3306606Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_22 PASSED [ 42%] 2023-08-09T11:59:03.3307104Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_23 PASSED [ 42%] 2023-08-09T11:59:03.3307603Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_iid_0 PASSED [ 42%] 2023-08-09T11:59:03.3308121Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_iid_1 PASSED [ 42%] 2023-08-09T11:59:03.3308756Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_iid_2 PASSED [ 42%] 2023-08-09T11:59:03.3309272Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_iid_3 PASSED [ 42%] 2023-08-09T11:59:03.3309792Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_iid_4 PASSED [ 42%] 2023-08-09T11:59:05.0330790Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_iid_5 PASSED [ 42%] 2023-08-09T11:59:05.0331564Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_iid_6 PASSED [ 42%] 2023-08-09T11:59:05.0332307Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_iid_7 PASSED [ 42%] 2023-08-09T11:59:05.0333044Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_iid_preserve_0 PASSED [ 42%] 2023-08-09T11:59:05.0333773Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_iid_preserve_1 PASSED [ 42%] 2023-08-09T11:59:05.0334693Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_iid_preserve_2 PASSED [ 42%] 2023-08-09T11:59:05.0335280Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_iid_preserve_3 PASSED [ 42%] 2023-08-09T11:59:05.0335828Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_input_axis_check_0 PASSED [ 42%] 2023-08-09T11:59:05.0336369Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_input_axis_check_1 PASSED [ 42%] 2023-08-09T11:59:05.0336905Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_preserve_0 PASSED [ 42%] 2023-08-09T11:59:05.0337435Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_preserve_1 PASSED [ 42%] 2023-08-09T11:59:05.0337971Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_preserve_2 PASSED [ 42%] 2023-08-09T11:59:05.0338481Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_preserve_3 PASSED [ 42%] 2023-08-09T11:59:05.0339006Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_preserve_4 PASSED [ 43%] 2023-08-09T11:59:05.0339534Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_preserve_5 PASSED [ 43%] 2023-08-09T11:59:05.0340053Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_preserve_6 PASSED [ 43%] 2023-08-09T11:59:05.0340564Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mask_along_axis_preserve_7 PASSED [ 43%] 2023-08-09T11:59:05.0341189Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_merge_repeated_tokens_00 PASSED [ 43%] 2023-08-09T11:59:05.0341712Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_merge_repeated_tokens_01 PASSED [ 43%] 2023-08-09T11:59:05.0342232Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_merge_repeated_tokens_02 PASSED [ 43%] 2023-08-09T11:59:05.0342743Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_merge_repeated_tokens_03 PASSED [ 43%] 2023-08-09T11:59:05.0343263Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_merge_repeated_tokens_04 PASSED [ 43%] 2023-08-09T11:59:05.0343774Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_merge_repeated_tokens_05 PASSED [ 43%] 2023-08-09T11:59:05.0344299Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_merge_repeated_tokens_06 PASSED [ 43%] 2023-08-09T11:59:05.0344808Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_merge_repeated_tokens_07 PASSED [ 43%] 2023-08-09T11:59:05.0345325Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_merge_repeated_tokens_08 PASSED [ 43%] 2023-08-09T11:59:05.0345833Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_merge_repeated_tokens_09 PASSED [ 43%] 2023-08-09T11:59:05.0346343Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_merge_repeated_tokens_10 PASSED [ 43%] 2023-08-09T11:59:05.0346855Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_merge_repeated_tokens_11 PASSED [ 43%] 2023-08-09T11:59:05.0347364Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_merge_repeated_tokens_12 PASSED [ 43%] 2023-08-09T11:59:05.0347923Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_merge_repeated_tokens_13 PASSED [ 43%] 2023-08-09T11:59:05.0348431Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_merge_repeated_tokens_14 PASSED [ 43%] 2023-08-09T11:59:05.0349045Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_merge_repeated_tokens_15 PASSED [ 43%] 2023-08-09T11:59:05.0349546Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_merge_repeated_tokens_16 PASSED [ 43%] 2023-08-09T11:59:05.0350052Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_merge_repeated_tokens_17 PASSED [ 43%] 2023-08-09T11:59:05.0350565Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_merge_repeated_tokens_18 PASSED [ 43%] 2023-08-09T11:59:05.0351080Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_merge_repeated_tokens_19 PASSED [ 43%] 2023-08-09T11:59:05.0351580Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_merge_repeated_tokens_20 PASSED [ 43%] 2023-08-09T11:59:05.0352085Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_merge_repeated_tokens_21 PASSED [ 43%] 2023-08-09T11:59:05.0352602Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_merge_repeated_tokens_22 PASSED [ 43%] 2023-08-09T11:59:05.0353105Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mvdr_weights_rtf PASSED [ 44%] 2023-08-09T11:59:05.0353679Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mvdr_weights_rtf_with_tensor PASSED [ 44%] 2023-08-09T11:59:05.0354206Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mvdr_weights_souden PASSED [ 44%] 2023-08-09T11:59:05.0354741Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_mvdr_weights_souden_with_tensor PASSED [ 44%] 2023-08-09T11:59:05.0355271Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_phase_vocoder_shape_0_5 PASSED [ 44%] 2023-08-09T11:59:05.0355782Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_phase_vocoder_shape_1_01 PASSED [ 44%] 2023-08-09T11:59:05.0356298Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_phase_vocoder_shape_1_3 PASSED [ 44%] 2023-08-09T11:59:05.0356823Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_pitch_shift_shape_0 PASSED [ 44%] 2023-08-09T11:59:05.0357351Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_pitch_shift_shape_2 PASSED [ 44%] 2023-08-09T11:59:05.0357863Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_pitch_shift_shape_4 PASSED [ 44%] 2023-08-09T11:59:05.0358379Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_pitch_shift_shape__2 PASSED [ 44%] 2023-08-09T11:59:05.0358897Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_pitch_shift_shape__4 PASSED [ 44%] 2023-08-09T11:59:05.0359417Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_preemphasis_3_2_100_0_68 PASSED [ 44%] 2023-08-09T11:59:05.0359932Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_preemphasis_3_2_100_0_9 PASSED [ 44%] 2023-08-09T11:59:05.0360507Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_preemphasis_3_2_100_0_97 PASSED [ 44%] 2023-08-09T11:59:05.0361022Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_preemphasis_95_0_68 PASSED [ 44%] 2023-08-09T11:59:05.0361539Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_preemphasis_95_0_9 PASSED [ 44%] 2023-08-09T11:59:05.0362058Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_preemphasis_95_0_97 PASSED [ 44%] 2023-08-09T11:59:05.0362607Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_preemphasis_deemphasis_roundtrip_3_2_100_0_68 PASSED [ 44%] 2023-08-09T11:59:05.0363184Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_preemphasis_deemphasis_roundtrip_3_2_100_0_9 PASSED [ 44%] 2023-08-09T11:59:05.1612498Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_preemphasis_deemphasis_roundtrip_3_2_100_0_97 PASSED [ 44%] 2023-08-09T11:59:05.1613288Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_preemphasis_deemphasis_roundtrip_95_0_68 PASSED [ 44%] 2023-08-09T11:59:05.1614026Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_preemphasis_deemphasis_roundtrip_95_0_9 PASSED [ 44%] 2023-08-09T11:59:05.1614743Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_preemphasis_deemphasis_roundtrip_95_0_97 PASSED [ 44%] 2023-08-09T11:59:05.1615401Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_psd PASSED [ 44%] 2023-08-09T11:59:05.1616044Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_psd_with_mask_0 PASSED [ 44%] 2023-08-09T11:59:05.1616869Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_psd_with_mask_1 PASSED [ 44%] 2023-08-09T11:59:05.1617554Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_identity_0_sinc_interp_hann PASSED [ 45%] 2023-08-09T11:59:05.1618269Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_identity_1_sinc_interp_hann PASSED [ 45%] 2023-08-09T11:59:05.1618978Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_identity_2_sinc_interp_kaiser PASSED [ 45%] 2023-08-09T11:59:05.1619700Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_identity_3_sinc_interp_kaiser PASSED [ 45%] 2023-08-09T11:59:05.1620523Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_00_sinc_interp_hann PASSED [ 45%] 2023-08-09T11:59:05.1621323Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_01_sinc_interp_hann PASSED [ 45%] 2023-08-09T11:59:05.1622103Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_02_sinc_interp_hann PASSED [ 45%] 2023-08-09T11:59:05.1622881Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_03_sinc_interp_hann PASSED [ 45%] 2023-08-09T11:59:05.1623646Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_04_sinc_interp_hann PASSED [ 45%] 2023-08-09T11:59:05.1624400Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_05_sinc_interp_hann PASSED [ 45%] 2023-08-09T11:59:05.1625288Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_06_sinc_interp_hann PASSED [ 45%] 2023-08-09T11:59:05.1626061Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_07_sinc_interp_hann PASSED [ 45%] 2023-08-09T11:59:05.1626821Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_08_sinc_interp_hann PASSED [ 45%] 2023-08-09T11:59:05.1627573Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_09_sinc_interp_hann PASSED [ 45%] 2023-08-09T11:59:05.1628333Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_10_sinc_interp_hann PASSED [ 45%] 2023-08-09T11:59:05.1629225Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_11_sinc_interp_hann PASSED [ 45%] 2023-08-09T11:59:05.1629991Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_12_sinc_interp_hann PASSED [ 45%] 2023-08-09T11:59:05.1630750Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_13_sinc_interp_hann PASSED [ 45%] 2023-08-09T11:59:05.1631501Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_14_sinc_interp_hann PASSED [ 45%] 2023-08-09T11:59:05.1632266Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_15_sinc_interp_hann PASSED [ 45%] 2023-08-09T11:59:05.1633119Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_16_sinc_interp_hann PASSED [ 45%] 2023-08-09T11:59:05.1633882Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_17_sinc_interp_hann PASSED [ 45%] 2023-08-09T11:59:05.1634629Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_18_sinc_interp_hann PASSED [ 45%] 2023-08-09T11:59:05.1635400Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_19_sinc_interp_kaiser PASSED [ 45%] 2023-08-09T11:59:05.1636184Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_20_sinc_interp_kaiser PASSED [ 45%] 2023-08-09T11:59:05.1636975Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_21_sinc_interp_kaiser PASSED [ 45%] 2023-08-09T11:59:05.1637751Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_22_sinc_interp_kaiser PASSED [ 45%] 2023-08-09T11:59:05.1638510Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_23_sinc_interp_kaiser PASSED [ 46%] 2023-08-09T11:59:05.1639289Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_24_sinc_interp_kaiser PASSED [ 46%] 2023-08-09T11:59:05.1640061Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_25_sinc_interp_kaiser PASSED [ 46%] 2023-08-09T11:59:05.1640914Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_26_sinc_interp_kaiser PASSED [ 46%] 2023-08-09T11:59:05.1641676Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_27_sinc_interp_kaiser PASSED [ 46%] 2023-08-09T11:59:05.1642440Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_28_sinc_interp_kaiser PASSED [ 46%] 2023-08-09T11:59:05.1643216Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_29_sinc_interp_kaiser PASSED [ 46%] 2023-08-09T11:59:05.1644183Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_30_sinc_interp_kaiser PASSED [ 46%] 2023-08-09T11:59:05.1644976Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_31_sinc_interp_kaiser PASSED [ 46%] 2023-08-09T11:59:05.1645732Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_32_sinc_interp_kaiser PASSED [ 46%] 2023-08-09T11:59:05.1646496Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_33_sinc_interp_kaiser PASSED [ 46%] 2023-08-09T11:59:05.1647274Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_34_sinc_interp_kaiser PASSED [ 46%] 2023-08-09T11:59:05.1648046Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_35_sinc_interp_kaiser PASSED [ 46%] 2023-08-09T11:59:05.1648959Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_36_sinc_interp_kaiser PASSED [ 46%] 2023-08-09T11:59:05.1649720Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_accuracy_37_sinc_interp_kaiser PASSED [ 46%] 2023-08-09T11:59:05.1650491Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_size_0_sinc_interp_hann PASSED [ 46%] 2023-08-09T11:59:05.4502051Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_downsample_size_1_sinc_interp_kaiser PASSED [ 46%] 2023-08-09T11:59:05.4502856Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_identity_size_0_sinc_interp_hann PASSED [ 46%] 2023-08-09T11:59:05.4503636Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_identity_size_1_sinc_interp_kaiser PASSED [ 46%] 2023-08-09T11:59:05.4504410Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_00_sinc_interp_hann PASSED [ 46%] 2023-08-09T11:59:05.4505169Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_01_sinc_interp_hann PASSED [ 46%] 2023-08-09T11:59:05.4505930Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_02_sinc_interp_hann PASSED [ 46%] 2023-08-09T11:59:05.4506690Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_03_sinc_interp_hann PASSED [ 46%] 2023-08-09T11:59:05.4507440Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_04_sinc_interp_hann PASSED [ 46%] 2023-08-09T11:59:05.4508369Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_05_sinc_interp_hann PASSED [ 46%] 2023-08-09T11:59:05.4509286Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_06_sinc_interp_hann PASSED [ 46%] 2023-08-09T11:59:05.4510038Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_07_sinc_interp_hann PASSED [ 46%] 2023-08-09T11:59:05.4510792Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_08_sinc_interp_hann PASSED [ 47%] 2023-08-09T11:59:05.4511543Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_09_sinc_interp_hann PASSED [ 47%] 2023-08-09T11:59:05.4512296Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_10_sinc_interp_hann PASSED [ 47%] 2023-08-09T11:59:05.4513044Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_11_sinc_interp_hann PASSED [ 47%] 2023-08-09T11:59:05.4513804Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_12_sinc_interp_hann PASSED [ 47%] 2023-08-09T11:59:05.4514551Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_13_sinc_interp_hann PASSED [ 47%] 2023-08-09T11:59:05.4515300Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_14_sinc_interp_hann PASSED [ 47%] 2023-08-09T11:59:05.4516148Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_15_sinc_interp_hann PASSED [ 47%] 2023-08-09T11:59:05.4516892Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_16_sinc_interp_hann PASSED [ 47%] 2023-08-09T11:59:05.4517633Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_17_sinc_interp_hann PASSED [ 47%] 2023-08-09T11:59:05.4518383Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_18_sinc_interp_hann PASSED [ 47%] 2023-08-09T11:59:05.4519141Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_19_sinc_interp_kaiser PASSED [ 47%] 2023-08-09T11:59:05.4519913Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_20_sinc_interp_kaiser PASSED [ 47%] 2023-08-09T11:59:05.4520676Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_21_sinc_interp_kaiser PASSED [ 47%] 2023-08-09T11:59:05.4521429Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_22_sinc_interp_kaiser PASSED [ 47%] 2023-08-09T11:59:05.4522191Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_23_sinc_interp_kaiser PASSED [ 47%] 2023-08-09T11:59:05.4522937Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_24_sinc_interp_kaiser PASSED [ 47%] 2023-08-09T11:59:05.4523975Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_25_sinc_interp_kaiser PASSED [ 47%] 2023-08-09T11:59:05.4524750Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_26_sinc_interp_kaiser PASSED [ 47%] 2023-08-09T11:59:05.4525511Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_27_sinc_interp_kaiser PASSED [ 47%] 2023-08-09T11:59:05.4526266Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_28_sinc_interp_kaiser PASSED [ 47%] 2023-08-09T11:59:05.4527010Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_29_sinc_interp_kaiser PASSED [ 47%] 2023-08-09T11:59:05.4527778Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_30_sinc_interp_kaiser PASSED [ 47%] 2023-08-09T11:59:05.4528548Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_31_sinc_interp_kaiser PASSED [ 47%] 2023-08-09T11:59:05.4529302Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_32_sinc_interp_kaiser PASSED [ 47%] 2023-08-09T11:59:05.4530046Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_33_sinc_interp_kaiser PASSED [ 47%] 2023-08-09T11:59:05.4530793Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_34_sinc_interp_kaiser PASSED [ 47%] 2023-08-09T11:59:05.4531647Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_35_sinc_interp_kaiser PASSED [ 48%] 2023-08-09T11:59:05.4532409Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_36_sinc_interp_kaiser PASSED [ 48%] 2023-08-09T11:59:05.4533162Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_accuracy_37_sinc_interp_kaiser PASSED [ 48%] 2023-08-09T11:59:05.4533899Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_size_0_sinc_interp_hann PASSED [ 48%] 2023-08-09T11:59:05.4534649Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_resample_waveform_upsample_size_1_sinc_interp_kaiser PASSED [ 48%] 2023-08-09T11:59:05.4535398Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_rnnt_loss_basic_backward PASSED [ 48%] 2023-08-09T11:59:05.4536088Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_rnnt_loss_basic_forward_no_grad PASSED [ 48%] 2023-08-09T11:59:05.4536763Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_rnnt_loss_costs_and_gradients_0 PASSED [ 48%] 2023-08-09T11:59:05.4537440Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_rnnt_loss_costs_and_gradients_1 PASSED [ 48%] 2023-08-09T11:59:05.4538109Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_rnnt_loss_costs_and_gradients_2 PASSED [ 48%] 2023-08-09T11:59:05.4538784Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_rnnt_loss_costs_and_gradients_3 PASSED [ 48%] 2023-08-09T11:59:05.4539512Z 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:59:06.3825418Z 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:59:06.3826207Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_rnnt_loss_nonfused_softmax PASSED [ 48%] 2023-08-09T11:59:06.3826892Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_rtf_evd PASSED [ 48%] 2023-08-09T11:59:06.3827546Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_rtf_power_0 PASSED [ 48%] 2023-08-09T11:59:06.3828190Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_rtf_power_1 PASSED [ 48%] 2023-08-09T11:59:06.3828971Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_rtf_power_2 PASSED [ 48%] 2023-08-09T11:59:06.3829661Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_rtf_power_with_tensor_0 PASSED [ 48%] 2023-08-09T11:59:06.3830333Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_rtf_power_with_tensor_1 PASSED [ 48%] 2023-08-09T11:59:06.3831002Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_rtf_power_with_tensor_2 PASSED [ 48%] 2023-08-09T11:59:06.3831680Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_simple_case_edit_distance_00_ PASSED [ 48%] 2023-08-09T11:59:06.3832385Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_simple_case_edit_distance_01_abc PASSED [ 48%] 2023-08-09T11:59:06.3833085Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_simple_case_edit_distance_02__I_O PASSED [ 48%] 2023-08-09T11:59:06.3833934Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_simple_case_edit_distance_03_abc PASSED [ 48%] 2023-08-09T11:59:06.3834637Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_simple_case_edit_distance_04_aa PASSED [ 48%] 2023-08-09T11:59:06.3835329Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_simple_case_edit_distance_05_aaa PASSED [ 48%] 2023-08-09T11:59:06.3836017Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_simple_case_edit_distance_06__I PASSED [ 49%] 2023-08-09T11:59:06.3836705Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_simple_case_edit_distance_07_aaa PASSED [ 49%] 2023-08-09T11:59:06.3837382Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_simple_case_edit_distance_08_aba PASSED [ 49%] 2023-08-09T11:59:06.3838070Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_simple_case_edit_distance_09_aba PASSED [ 49%] 2023-08-09T11:59:06.3838750Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_simple_case_edit_distance_10_abc PASSED [ 49%] 2023-08-09T11:59:06.3839421Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_simple_case_edit_distance_11_0_I PASSED [ 49%] 2023-08-09T11:59:06.3840114Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_simple_case_edit_distance_12 PASSED [ 49%] 2023-08-09T11:59:06.3840791Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_simple_case_edit_distance_13 PASSED [ 49%] 2023-08-09T11:59:06.3841471Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_simple_case_edit_distance_14 PASSED [ 49%] 2023-08-09T11:59:06.3842225Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_simple_case_edit_distance_15 PASSED [ 49%] 2023-08-09T11:59:06.3842907Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_simple_case_edit_distance_16 PASSED [ 49%] 2023-08-09T11:59:06.3843779Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_simple_case_edit_distance_17 PASSED [ 49%] 2023-08-09T11:59:06.3844448Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_simple_case_edit_distance_18 PASSED [ 49%] 2023-08-09T11:59:06.3845120Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_simple_case_edit_distance_19 PASSED [ 49%] 2023-08-09T11:59:06.3845809Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_simple_case_edit_distance_20_aba PASSED [ 49%] 2023-08-09T11:59:06.3846491Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_simple_case_edit_distance_21 PASSED [ 49%] 2023-08-09T11:59:06.3847153Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_simple_case_edit_distance_22 PASSED [ 49%] 2023-08-09T11:59:06.3847828Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_spectrogram_grad_at_zero_0 PASSED [ 49%] 2023-08-09T11:59:06.3848515Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_spectrogram_grad_at_zero_1 PASSED [ 49%] 2023-08-09T11:59:06.3849188Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_spectrogram_grad_at_zero_2 PASSED [ 49%] 2023-08-09T11:59:06.3849995Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_spectrogram_grad_at_zero_3 PASSED [ 49%] 2023-08-09T11:59:06.3850702Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_spectrogram_normalization_hann_window_0 PASSED [ 49%] 2023-08-09T11:59:06.3851432Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_spectrogram_normalization_hann_window_1 PASSED [ 49%] 2023-08-09T11:59:06.3852157Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_spectrogram_normalization_hann_window_2 PASSED [ 49%] 2023-08-09T11:59:06.3852844Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_speed_accuracy_0_8_False PASSED [ 49%] 2023-08-09T11:59:06.3853511Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_speed_accuracy_0_8_True PASSED [ 49%] 2023-08-09T11:59:06.3854182Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_speed_accuracy_1_1_False PASSED [ 49%] 2023-08-09T11:59:06.3854847Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_speed_accuracy_1_1_True PASSED [ 50%] 2023-08-09T11:59:06.3855496Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_speed_accuracy_1_2_False PASSED [ 50%] 2023-08-09T11:59:06.3856151Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_speed_accuracy_1_2_True PASSED [ 50%] 2023-08-09T11:59:06.3856809Z torchaudio_unittest/functional/functional_cuda_test.py::TestLFilterFloat64::test_speed_identity PASSED [ 50%] 2023-08-09T11:59:06.3857577Z 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:59:06.3858512Z 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:59:06.3859333Z 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:59:06.3860159Z 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:59:06.3860983Z 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:59:06.3861796Z 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:59:06.3862620Z 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:59:06.3863437Z 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:59:06.3864255Z 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:59:06.5348530Z 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:59:06.5349490Z 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:59:06.5350463Z 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:59:06.5351275Z 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:59:06.5352094Z 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:59:06.5352910Z 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:59:06.5353756Z 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:59:06.5354573Z 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:59:06.5355386Z 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:59:06.5356188Z 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:59:06.5357001Z 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:59:06.5357908Z 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:59:06.5358720Z 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:59:06.5359540Z 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:59:06.5360344Z 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:59:06.5361153Z 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:59:06.5361983Z 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:59:06.5362797Z 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:59:06.5363761Z 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:59:06.5364588Z 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:59:06.5365504Z 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:59:06.5366316Z 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:59:06.5367132Z 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:59:06.5367931Z 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:59:06.5368738Z 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:59:06.5369568Z 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:59:06.5370381Z 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:59:06.5371188Z 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:59:06.5371990Z 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:59:06.5372801Z 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:59:06.5373706Z 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:59:06.5374527Z 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:59:06.5375341Z 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:59:06.5376140Z 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:59:06.5376970Z 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:59:06.5377779Z 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:59:06.5378587Z 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:59:06.5379404Z 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:59:06.5380200Z 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:59:06.5381086Z 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:59:06.5381899Z 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:59:06.5382708Z 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:59:06.5383519Z 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:59:06.5384320Z 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:59:12.8213508Z 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:59:12.8214440Z 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:59:12.8215346Z 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:59:12.8216158Z 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:59:12.8216864Z 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:59:12.8217835Z 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:59:12.8218480Z 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:59:12.8219115Z 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:59:12.8219755Z 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:59:12.8220398Z 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:59:12.8221030Z 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:59:12.8221667Z 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:59:12.8222298Z 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:59:12.8222928Z 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:59:12.8223644Z 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:59:12.8224276Z 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:59:12.8224904Z 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:59:12.8225537Z 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:59:12.8226183Z 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:59:12.8226758Z torchaudio_unittest/functional/kaldi_compatibility_cuda_test.py::TestKaldiFloat32::test_sliding_window_cmn SKIPPED [ 52%] 2023-08-09T11:59:12.8227303Z torchaudio_unittest/functional/kaldi_compatibility_cuda_test.py::TestKaldiFloat64::test_sliding_window_cmn SKIPPED [ 52%] 2023-08-09T11:59:12.8227847Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_amplitude_to_DB PASSED [ 52%] 2023-08-09T11:59:12.8228397Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_amplitude_to_DB_power PASSED [ 52%] 2023-08-09T11:59:12.8229013Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_00 SKIPPED [ 52%] 2023-08-09T11:59:12.8229554Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_01 SKIPPED [ 53%] 2023-08-09T11:59:12.8230143Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_02 SKIPPED [ 53%] 2023-08-09T11:59:12.8230677Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_03 SKIPPED [ 53%] 2023-08-09T11:59:12.8231203Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_04 SKIPPED [ 53%] 2023-08-09T11:59:12.8231721Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_05 SKIPPED [ 53%] 2023-08-09T11:59:12.8232244Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_06 SKIPPED [ 53%] 2023-08-09T11:59:12.8232779Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_07 SKIPPED [ 53%] 2023-08-09T11:59:12.8233313Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_08 SKIPPED [ 53%] 2023-08-09T11:59:12.8233830Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_09 SKIPPED [ 53%] 2023-08-09T11:59:12.8234355Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_10 SKIPPED [ 53%] 2023-08-09T11:59:12.8234885Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_11 SKIPPED [ 53%] 2023-08-09T11:59:12.8235413Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_12 SKIPPED [ 53%] 2023-08-09T11:59:12.8235980Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_13 SKIPPED [ 53%] 2023-08-09T11:59:12.8236506Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_14 SKIPPED [ 53%] 2023-08-09T11:59:12.8237028Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_15 SKIPPED [ 53%] 2023-08-09T11:59:12.8237546Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_16 SKIPPED [ 53%] 2023-08-09T11:59:12.8238057Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_17 SKIPPED [ 53%] 2023-08-09T11:59:12.8238578Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_18 SKIPPED [ 53%] 2023-08-09T11:59:12.8239105Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_19 SKIPPED [ 53%] 2023-08-09T11:59:12.8239636Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_20 SKIPPED [ 53%] 2023-08-09T11:59:12.8240152Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_21 SKIPPED [ 53%] 2023-08-09T11:59:12.8240679Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_22 SKIPPED [ 53%] 2023-08-09T11:59:12.8241203Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_23 SKIPPED [ 53%] 2023-08-09T11:59:12.8241729Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_24 SKIPPED [ 53%] 2023-08-09T11:59:12.8242248Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_25 SKIPPED [ 53%] 2023-08-09T11:59:12.8242839Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_26 SKIPPED [ 53%] 2023-08-09T11:59:12.8243607Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_create_mel_fb_27 SKIPPED [ 53%] 2023-08-09T11:59:12.8244147Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_griffinlim_0 PASSED [ 54%] 2023-08-09T11:59:17.7217924Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_griffinlim_0_99 PASSED [ 54%] 2023-08-09T11:59:17.7218618Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalComplexCUDA::test_phase_vocoder_0_5 PASSED [ 54%] 2023-08-09T11:59:17.7219529Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalComplexCUDA::test_phase_vocoder_1_01 PASSED [ 54%] 2023-08-09T11:59:17.7220349Z torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalComplexCUDA::test_phase_vocoder_1_3 PASSED [ 54%] 2023-08-09T11:59:17.7220935Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_DB_to_amplitude PASSED [ 54%] 2023-08-09T11:59:17.7221495Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_add_noise_False PASSED [ 54%] 2023-08-09T11:59:17.7222055Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_add_noise_True PASSED [ 54%] 2023-08-09T11:59:17.7222608Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_allpass PASSED [ 54%] 2023-08-09T11:59:17.7223397Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_amplitude_to_DB PASSED [ 54%] 2023-08-09T11:59:17.7223959Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_apply_beamforming PASSED [ 54%] 2023-08-09T11:59:17.7224532Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_band_with_noise PASSED [ 54%] 2023-08-09T11:59:17.7225095Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_band_without_noise PASSED [ 54%] 2023-08-09T11:59:17.7225655Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_bandpass_with_csg PASSED [ 54%] 2023-08-09T11:59:17.7226220Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_bandpass_without_csg PASSED [ 54%] 2023-08-09T11:59:17.7226801Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_bandreject PASSED [ 54%] 2023-08-09T11:59:17.7227344Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_bass PASSED [ 54%] 2023-08-09T11:59:17.7227891Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_compute_deltas PASSED [ 54%] 2023-08-09T11:59:17.7228429Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_contrast PASSED [ 54%] 2023-08-09T11:59:17.7229113Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_convolve_convolve_full PASSED [ 54%] 2023-08-09T11:59:17.7229688Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_convolve_convolve_same PASSED [ 54%] 2023-08-09T11:59:17.7230364Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_convolve_convolve_valid PASSED [ 54%] 2023-08-09T11:59:17.7230942Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_convolve_fftconvolve_full PASSED [ 54%] 2023-08-09T11:59:17.7231522Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_convolve_fftconvolve_same PASSED [ 54%] 2023-08-09T11:59:17.7232110Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_convolve_fftconvolve_valid PASSED [ 54%] 2023-08-09T11:59:17.7243760Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_create_dct SKIPPED [ 54%] 2023-08-09T11:59:17.7244322Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_dcshift PASSED [ 54%] 2023-08-09T11:59:17.7244886Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_deemph PASSED [ 55%] 2023-08-09T11:59:17.7245436Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_deemphasis PASSED [ 55%] 2023-08-09T11:59:17.7246012Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_detect_pitch_frequency PASSED [ 55%] 2023-08-09T11:59:17.7246582Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_dither_GPDF PASSED [ 55%] 2023-08-09T11:59:17.7247129Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_dither_RPDF PASSED [ 55%] 2023-08-09T11:59:17.7247674Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_dither_TPDF PASSED [ 55%] 2023-08-09T11:59:17.7248363Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_dither_noise_shaping PASSED [ 55%] 2023-08-09T11:59:17.7248924Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_equalizer PASSED [ 55%] 2023-08-09T11:59:17.7249463Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_filtfilt PASSED [ 55%] 2023-08-09T11:59:17.7250005Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_flanger PASSED [ 55%] 2023-08-09T11:59:17.7250539Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_gain PASSED [ 55%] 2023-08-09T11:59:17.7251080Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_griffinlim PASSED [ 55%] 2023-08-09T11:59:17.7251633Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_highpass PASSED [ 55%] 2023-08-09T11:59:17.7252198Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_inverse_spectrogram_0 PASSED [ 55%] 2023-08-09T11:59:17.7252764Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_inverse_spectrogram_1 PASSED [ 55%] 2023-08-09T11:59:17.7253350Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_inverse_spectrogram_2_window PASSED [ 55%] 2023-08-09T11:59:17.7253942Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_inverse_spectrogram_3_frame_length PASSED [ 55%] 2023-08-09T11:59:17.7254509Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_lfilter PASSED [ 55%] 2023-08-09T11:59:17.7255131Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_linear_fbanks SKIPPED [ 55%] 2023-08-09T11:59:17.7255676Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_lowpass PASSED [ 55%] 2023-08-09T11:59:17.7256216Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis PASSED [ 55%] 2023-08-09T11:59:17.7256777Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_mask_along_axis_iid PASSED [ 55%] 2023-08-09T11:59:17.7257336Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_measure_loudness PASSED [ 55%] 2023-08-09T11:59:17.7257900Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_melscale_fbanks SKIPPED [ 55%] 2023-08-09T11:59:17.7258467Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_mu_law_decoding PASSED [ 55%] 2023-08-09T11:59:17.7259062Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_mu_law_encoding PASSED [ 55%] 2023-08-09T11:59:17.7259606Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_mvdr_weights_rtf PASSED [ 55%] 2023-08-09T11:59:17.7260180Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_mvdr_weights_rtf_with_tensor PASSED [ 56%] 2023-08-09T11:59:17.7260752Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_mvdr_weights_souden PASSED [ 56%] 2023-08-09T11:59:17.7261389Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_mvdr_weights_souden_with_tensor PASSED [ 56%] 2023-08-09T11:59:17.7261956Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_overdrive PASSED [ 56%] 2023-08-09T11:59:25.5834298Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_perf_biquad_filtering PASSED [ 56%] 2023-08-09T11:59:25.5835305Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_phase_vocoder PASSED [ 56%] 2023-08-09T11:59:25.5836077Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_phaser PASSED [ 56%] 2023-08-09T11:59:25.5836815Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_preemphasis PASSED [ 56%] 2023-08-09T11:59:25.5837517Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_psd PASSED [ 56%] 2023-08-09T11:59:25.5838123Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_psd_with_mask PASSED [ 56%] 2023-08-09T11:59:25.5838687Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_resample_kaiser_0 PASSED [ 56%] 2023-08-09T11:59:25.5839248Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_resample_kaiser_1 PASSED [ 56%] 2023-08-09T11:59:25.5839810Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_resample_sinc PASSED [ 56%] 2023-08-09T11:59:25.5840351Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_riaa PASSED [ 56%] 2023-08-09T11:59:25.5841121Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_rnnt_loss PASSED [ 56%] 2023-08-09T11:59:25.5841667Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_rtf_evd PASSED [ 56%] 2023-08-09T11:59:25.5842203Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_rtf_power_0 PASSED [ 56%] 2023-08-09T11:59:25.5842744Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_rtf_power_1 PASSED [ 56%] 2023-08-09T11:59:25.5843583Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_rtf_power_with_tensor_0 PASSED [ 56%] 2023-08-09T11:59:25.5844163Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_rtf_power_with_tensor_1 PASSED [ 56%] 2023-08-09T11:59:25.5844735Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_sliding_window_cmn PASSED [ 56%] 2023-08-09T11:59:25.5845299Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_spectral_centroid PASSED [ 56%] 2023-08-09T11:59:25.5845853Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_spectrogram_0 PASSED [ 56%] 2023-08-09T11:59:25.5846395Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_spectrogram_1 PASSED [ 56%] 2023-08-09T11:59:25.5846952Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_spectrogram_2_window PASSED [ 56%] 2023-08-09T11:59:25.5847529Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_spectrogram_3_frame_length PASSED [ 56%] 2023-08-09T11:59:25.5848194Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_speed_False PASSED [ 56%] 2023-08-09T11:59:25.5848742Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_speed_True PASSED [ 57%] 2023-08-09T11:59:25.5849271Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_treble PASSED [ 57%] 2023-08-09T11:59:25.5849817Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_DB_to_amplitude PASSED [ 57%] 2023-08-09T11:59:25.5850371Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_add_noise_False PASSED [ 57%] 2023-08-09T11:59:25.5850939Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_add_noise_True PASSED [ 57%] 2023-08-09T11:59:25.5851494Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_allpass SKIPPED [ 57%] 2023-08-09T11:59:25.5852038Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_amplitude_to_DB PASSED [ 57%] 2023-08-09T11:59:25.5852598Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_apply_beamforming PASSED [ 57%] 2023-08-09T11:59:25.5853155Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_band_with_noise SKIPPED [ 57%] 2023-08-09T11:59:25.5853719Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_band_without_noise SKIPPED [ 57%] 2023-08-09T11:59:25.5854274Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_bandpass_with_csg SKIPPED [ 57%] 2023-08-09T11:59:25.5854917Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_bandpass_without_csg SKIPPED [ 57%] 2023-08-09T11:59:25.5855480Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_bandreject SKIPPED [ 57%] 2023-08-09T11:59:25.5856022Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_bass SKIPPED [ 57%] 2023-08-09T11:59:25.5856557Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_compute_deltas PASSED [ 57%] 2023-08-09T11:59:25.5857097Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_contrast PASSED [ 57%] 2023-08-09T11:59:25.5857654Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_convolve_convolve_full PASSED [ 57%] 2023-08-09T11:59:25.5858231Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_convolve_convolve_same PASSED [ 57%] 2023-08-09T11:59:25.5858795Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_convolve_convolve_valid PASSED [ 57%] 2023-08-09T11:59:25.5859370Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_convolve_fftconvolve_full PASSED [ 57%] 2023-08-09T11:59:25.5859948Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_convolve_fftconvolve_same PASSED [ 57%] 2023-08-09T11:59:25.5860520Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_convolve_fftconvolve_valid PASSED [ 57%] 2023-08-09T11:59:25.5861142Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_create_dct SKIPPED [ 57%] 2023-08-09T11:59:25.5861677Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_dcshift PASSED [ 57%] 2023-08-09T11:59:25.5862218Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_deemph SKIPPED [ 57%] 2023-08-09T11:59:25.5862758Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_deemphasis PASSED [ 57%] 2023-08-09T11:59:25.5863321Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_detect_pitch_frequency PASSED [ 57%] 2023-08-09T11:59:25.5863875Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_dither_GPDF PASSED [ 58%] 2023-08-09T11:59:25.5864431Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_dither_RPDF PASSED [ 58%] 2023-08-09T11:59:25.5864973Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_dither_TPDF PASSED [ 58%] 2023-08-09T11:59:25.5865526Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_dither_noise_shaping PASSED [ 58%] 2023-08-09T11:59:25.5866072Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_equalizer SKIPPED [ 58%] 2023-08-09T11:59:25.5866614Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_filtfilt PASSED [ 58%] 2023-08-09T11:59:25.5867153Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_flanger PASSED [ 58%] 2023-08-09T11:59:46.9785432Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_gain PASSED [ 58%] 2023-08-09T11:59:46.9787208Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_griffinlim PASSED [ 58%] 2023-08-09T11:59:46.9787874Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_highpass SKIPPED [ 58%] 2023-08-09T11:59:46.9788573Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_inverse_spectrogram_0 PASSED [ 58%] 2023-08-09T11:59:46.9789160Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_inverse_spectrogram_1 PASSED [ 58%] 2023-08-09T11:59:46.9790073Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_inverse_spectrogram_2_window PASSED [ 58%] 2023-08-09T11:59:46.9790803Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_inverse_spectrogram_3_frame_length PASSED [ 58%] 2023-08-09T11:59:46.9791368Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_lfilter SKIPPED [ 58%] 2023-08-09T11:59:46.9791932Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_linear_fbanks SKIPPED [ 58%] 2023-08-09T11:59:46.9792513Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_lowpass SKIPPED [ 58%] 2023-08-09T11:59:46.9793281Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_mask_along_axis PASSED [ 58%] 2023-08-09T11:59:46.9794057Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_mask_along_axis_iid PASSED [ 58%] 2023-08-09T11:59:46.9794909Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_measure_loudness SKIPPED [ 58%] 2023-08-09T11:59:46.9795476Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_melscale_fbanks SKIPPED [ 58%] 2023-08-09T11:59:46.9796223Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_mu_law_decoding PASSED [ 58%] 2023-08-09T11:59:46.9796908Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_mu_law_encoding PASSED [ 58%] 2023-08-09T11:59:46.9797625Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_mvdr_weights_rtf PASSED [ 58%] 2023-08-09T11:59:46.9798400Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_mvdr_weights_rtf_with_tensor PASSED [ 58%] 2023-08-09T11:59:46.9799212Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_mvdr_weights_souden PASSED [ 58%] 2023-08-09T11:59:46.9800033Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_mvdr_weights_souden_with_tensor PASSED [ 58%] 2023-08-09T11:59:46.9800746Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_overdrive PASSED [ 59%] 2023-08-09T11:59:46.9801370Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_perf_biquad_filtering SKIPPED [ 59%] 2023-08-09T11:59:46.9801944Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_phase_vocoder PASSED [ 59%] 2023-08-09T11:59:46.9802496Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_phaser PASSED [ 59%] 2023-08-09T11:59:46.9803122Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_preemphasis PASSED [ 59%] 2023-08-09T11:59:46.9803964Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_psd PASSED [ 59%] 2023-08-09T11:59:46.9804516Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_psd_with_mask PASSED [ 59%] 2023-08-09T11:59:46.9805070Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_resample_kaiser_0 PASSED [ 59%] 2023-08-09T11:59:46.9805629Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_resample_kaiser_1 PASSED [ 59%] 2023-08-09T11:59:46.9806178Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_resample_sinc PASSED [ 59%] 2023-08-09T11:59:46.9806723Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_riaa SKIPPED [ 59%] 2023-08-09T11:59:46.9807263Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_rtf_evd PASSED [ 59%] 2023-08-09T11:59:46.9807802Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_rtf_power_0 PASSED [ 59%] 2023-08-09T11:59:46.9808337Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_rtf_power_1 PASSED [ 59%] 2023-08-09T11:59:46.9808898Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_rtf_power_with_tensor_0 PASSED [ 59%] 2023-08-09T11:59:46.9809582Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_rtf_power_with_tensor_1 PASSED [ 59%] 2023-08-09T11:59:46.9810154Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_sliding_window_cmn PASSED [ 59%] 2023-08-09T11:59:46.9810709Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_spectral_centroid PASSED [ 59%] 2023-08-09T11:59:46.9811268Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_spectrogram_0 PASSED [ 59%] 2023-08-09T11:59:46.9811815Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_spectrogram_1 PASSED [ 59%] 2023-08-09T11:59:46.9812377Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_spectrogram_2_window PASSED [ 59%] 2023-08-09T11:59:46.9812959Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_spectrogram_3_frame_length PASSED [ 59%] 2023-08-09T11:59:46.9813519Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_speed_False PASSED [ 59%] 2023-08-09T11:59:46.9814064Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_speed_True PASSED [ 59%] 2023-08-09T11:59:46.9814621Z torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_treble SKIPPED [ 59%] 2023-08-09T11:59:46.9815116Z torchaudio_unittest/io/stream_reader_test.py::CudaDecoderTest_str::test_h264_cuvid PASSED [ 59%] 2023-08-09T11:59:46.9815601Z torchaudio_unittest/io/stream_reader_test.py::CudaDecoderTest_str::test_h264_cuvid_hw_accel PASSED [ 59%] 2023-08-09T11:59:46.9816113Z torchaudio_unittest/io/stream_reader_test.py::CudaDecoderTest_str::test_h264_cuvid_hw_accel_crop PASSED [ 60%] 2023-08-09T11:59:46.9816696Z torchaudio_unittest/io/stream_reader_test.py::CudaDecoderTest_str::test_h264_cuvid_hw_accel_resize PASSED [ 60%] 2023-08-09T11:59:46.9817181Z torchaudio_unittest/io/stream_reader_test.py::CudaDecoderTest_str::test_hevc_cuvid PASSED [ 60%] 2023-08-09T11:59:46.9817666Z torchaudio_unittest/io/stream_reader_test.py::CudaDecoderTest_str::test_hevc_cuvid_hw_accel PASSED [ 60%] 2023-08-09T11:59:46.9818165Z torchaudio_unittest/io/stream_reader_test.py::CudaDecoderTest_str::test_hevc_cuvid_hw_accel_crop PASSED [ 60%] 2023-08-09T11:59:46.9818670Z torchaudio_unittest/io/stream_reader_test.py::CudaDecoderTest_str::test_hevc_cuvid_hw_accel_resize PASSED [ 60%] 2023-08-09T11:59:46.9819151Z torchaudio_unittest/io/stream_reader_test.py::CudaDecoderTest_fileobj::test_h264_cuvid PASSED [ 60%] 2023-08-09T11:59:46.9819652Z torchaudio_unittest/io/stream_reader_test.py::CudaDecoderTest_fileobj::test_h264_cuvid_hw_accel PASSED [ 60%] 2023-08-09T11:59:46.9820166Z torchaudio_unittest/io/stream_reader_test.py::CudaDecoderTest_fileobj::test_h264_cuvid_hw_accel_crop PASSED [ 60%] 2023-08-09T11:59:46.9820682Z torchaudio_unittest/io/stream_reader_test.py::CudaDecoderTest_fileobj::test_h264_cuvid_hw_accel_resize PASSED [ 60%] 2023-08-09T11:59:46.9821168Z torchaudio_unittest/io/stream_reader_test.py::CudaDecoderTest_fileobj::test_hevc_cuvid PASSED [ 60%] 2023-08-09T11:59:46.9821666Z torchaudio_unittest/io/stream_reader_test.py::CudaDecoderTest_fileobj::test_hevc_cuvid_hw_accel PASSED [ 60%] 2023-08-09T12:00:21.4588366Z torchaudio_unittest/io/stream_reader_test.py::CudaDecoderTest_fileobj::test_hevc_cuvid_hw_accel_crop PASSED [ 60%] 2023-08-09T12:00:21.4589083Z torchaudio_unittest/io/stream_reader_test.py::CudaDecoderTest_fileobj::test_hevc_cuvid_hw_accel_resize PASSED [ 60%] 2023-08-09T12:00:21.4590951Z torchaudio_unittest/io/stream_reader_test.py::FilterGraphWithCudaAccel::test_scale_cuda_format SKIPPED [ 60%] 2023-08-09T12:00:21.4591699Z torchaudio_unittest/io/stream_reader_test.py::FilterGraphWithCudaAccel::test_sclae_cuda_change_size SKIPPED [ 60%] 2023-08-09T12:00:21.4592418Z torchaudio_unittest/models/conformer/conformer_gpu_test.py::ConformerFloat32GPUTest::test_torchscript_consistency_forward PASSED [ 60%] 2023-08-09T12:00:21.4593109Z torchaudio_unittest/models/conformer/conformer_gpu_test.py::ConformerFloat64GPUTest::test_torchscript_consistency_forward PASSED [ 60%] 2023-08-09T12:00:21.4593784Z torchaudio_unittest/models/decoder/cuda_ctc_decoder_test.py::CUCTCDecoderTest::test_construct_basic_decoder_path PASSED [ 60%] 2023-08-09T12:00:21.4594334Z torchaudio_unittest/models/decoder/cuda_ctc_decoder_test.py::CUCTCDecoderTest::test_construct_basic_decoder_tokens PASSED [ 60%] 2023-08-09T12:00:21.4594944Z torchaudio_unittest/models/decoder/cuda_ctc_decoder_test.py::CUCTCDecoderTest::test_shape PASSED [ 60%] 2023-08-09T12:00:21.4595538Z torchaudio_unittest/models/emformer/emformer_gpu_test.py::EmformerFloat32GPUTest::test_output_lengths_forward PASSED [ 60%] 2023-08-09T12:00:21.4596299Z torchaudio_unittest/models/emformer/emformer_gpu_test.py::EmformerFloat32GPUTest::test_output_lengths_infer PASSED [ 60%] 2023-08-09T12:00:21.4596845Z torchaudio_unittest/models/emformer/emformer_gpu_test.py::EmformerFloat32GPUTest::test_output_shape_forward PASSED [ 60%] 2023-08-09T12:00:21.4597488Z torchaudio_unittest/models/emformer/emformer_gpu_test.py::EmformerFloat32GPUTest::test_output_shape_infer PASSED [ 60%] 2023-08-09T12:00:21.4598157Z torchaudio_unittest/models/emformer/emformer_gpu_test.py::EmformerFloat32GPUTest::test_torchscript_consistency_forward PASSED [ 60%] 2023-08-09T12:00:21.4598967Z torchaudio_unittest/models/emformer/emformer_gpu_test.py::EmformerFloat32GPUTest::test_torchscript_consistency_infer PASSED [ 60%] 2023-08-09T12:00:21.4599749Z torchaudio_unittest/models/emformer/emformer_gpu_test.py::EmformerFloat64GPUTest::test_output_lengths_forward PASSED [ 61%] 2023-08-09T12:00:21.4600520Z torchaudio_unittest/models/emformer/emformer_gpu_test.py::EmformerFloat64GPUTest::test_output_lengths_infer PASSED [ 61%] 2023-08-09T12:00:21.4601241Z torchaudio_unittest/models/emformer/emformer_gpu_test.py::EmformerFloat64GPUTest::test_output_shape_forward PASSED [ 61%] 2023-08-09T12:00:21.4601775Z torchaudio_unittest/models/emformer/emformer_gpu_test.py::EmformerFloat64GPUTest::test_output_shape_infer PASSED [ 61%] 2023-08-09T12:00:21.4602326Z torchaudio_unittest/models/emformer/emformer_gpu_test.py::EmformerFloat64GPUTest::test_torchscript_consistency_forward PASSED [ 61%] 2023-08-09T12:00:21.4602921Z torchaudio_unittest/models/emformer/emformer_gpu_test.py::EmformerFloat64GPUTest::test_torchscript_consistency_infer PASSED [ 61%] 2023-08-09T12:00:21.4603864Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::CompareHDemucsOriginal::test_import_recreate_high_model_0 PASSED [ 61%] 2023-08-09T12:00:21.4604566Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::CompareHDemucsOriginal::test_import_recreate_high_model_1 PASSED [ 61%] 2023-08-09T12:00:21.4605118Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::CompareHDemucsOriginal::test_import_recreate_high_model_2 PASSED [ 61%] 2023-08-09T12:00:21.4605665Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::CompareHDemucsOriginal::test_import_recreate_high_model_3 PASSED [ 61%] 2023-08-09T12:00:21.4606373Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::CompareHDemucsOriginal::test_import_recreate_low_model_0 PASSED [ 61%] 2023-08-09T12:00:21.4606930Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::CompareHDemucsOriginal::test_import_recreate_low_model_1 PASSED [ 61%] 2023-08-09T12:00:21.4607475Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::CompareHDemucsOriginal::test_import_recreate_low_model_2 PASSED [ 61%] 2023-08-09T12:00:21.4608028Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::CompareHDemucsOriginal::test_import_recreate_low_model_3 PASSED [ 61%] 2023-08-09T12:00:21.4608578Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_decoder_output_shape_frequency PASSED [ 61%] 2023-08-09T12:00:21.4609128Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_decoder_output_shape_time PASSED [ 61%] 2023-08-09T12:00:21.4609677Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_encoder_output_shape_frequency PASSED [ 61%] 2023-08-09T12:00:21.4610218Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_encoder_output_shape_time PASSED [ 61%] 2023-08-09T12:00:21.4610745Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_hdemucs_output_shape_00 PASSED [ 61%] 2023-08-09T12:00:21.4611279Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_hdemucs_output_shape_01 PASSED [ 61%] 2023-08-09T12:00:21.4611818Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_hdemucs_output_shape_02 PASSED [ 61%] 2023-08-09T12:00:21.4612349Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_hdemucs_output_shape_03 PASSED [ 61%] 2023-08-09T12:00:21.4612871Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_hdemucs_output_shape_04 PASSED [ 61%] 2023-08-09T12:00:21.4613465Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_hdemucs_output_shape_05 PASSED [ 61%] 2023-08-09T12:00:21.4614002Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_hdemucs_output_shape_06 PASSED [ 61%] 2023-08-09T12:00:21.4614524Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_hdemucs_output_shape_07 PASSED [ 61%] 2023-08-09T12:00:21.4615040Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_hdemucs_output_shape_08 PASSED [ 61%] 2023-08-09T12:00:21.4615562Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_hdemucs_output_shape_09 PASSED [ 62%] 2023-08-09T12:00:21.4616100Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_hdemucs_output_shape_10 PASSED [ 62%] 2023-08-09T12:00:21.4616628Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_hdemucs_output_shape_11 PASSED [ 62%] 2023-08-09T12:00:21.4617158Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_import_recreate_high_model_0 PASSED [ 62%] 2023-08-09T12:00:21.4617703Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_import_recreate_high_model_1 PASSED [ 62%] 2023-08-09T12:00:21.4618242Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_import_recreate_high_model_2 PASSED [ 62%] 2023-08-09T12:00:21.4618783Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_import_recreate_high_model_3 PASSED [ 62%] 2023-08-09T12:00:21.4619399Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_import_recreate_low_model_0 PASSED [ 62%] 2023-08-09T12:00:21.4619934Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_import_recreate_low_model_1 PASSED [ 62%] 2023-08-09T12:00:21.4620462Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_import_recreate_low_model_2 PASSED [ 62%] 2023-08-09T12:00:21.4620994Z torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::HDemucsFloat32GPUTest::test_import_recreate_low_model_3 PASSED [ 62%] 2023-08-09T12:00:21.4621511Z torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat32GPUTest::test_output_shape_forward PASSED [ 62%] 2023-08-09T12:00:21.4622002Z torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat32GPUTest::test_output_shape_join PASSED [ 62%] 2023-08-09T12:00:21.4622507Z torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat32GPUTest::test_output_shape_predict PASSED [ 62%] 2023-08-09T12:00:21.4623016Z torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat32GPUTest::test_output_shape_transcribe PASSED [ 62%] 2023-08-09T12:00:21.4623543Z torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat32GPUTest::test_output_shape_transcribe_streaming PASSED [ 62%] 2023-08-09T12:01:17.8360126Z torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat32GPUTest::test_torchscript_consistency_forward PASSED [ 62%] 2023-08-09T12:01:17.8360856Z torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat32GPUTest::test_torchscript_consistency_join PASSED [ 62%] 2023-08-09T12:01:17.8361808Z torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat32GPUTest::test_torchscript_consistency_predict PASSED [ 62%] 2023-08-09T12:01:17.8362506Z torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat32GPUTest::test_torchscript_consistency_transcribe PASSED [ 62%] 2023-08-09T12:01:17.8363779Z torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat32GPUTest::test_torchscript_consistency_transcribe_streaming PASSED [ 62%] 2023-08-09T12:01:17.8368833Z torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat64GPUTest::test_output_shape_forward PASSED [ 62%] 2023-08-09T12:01:17.8369485Z torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat64GPUTest::test_output_shape_join PASSED [ 62%] 2023-08-09T12:01:17.8370131Z torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat64GPUTest::test_output_shape_predict PASSED [ 62%] 2023-08-09T12:01:17.8370781Z torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat64GPUTest::test_output_shape_transcribe PASSED [ 62%] 2023-08-09T12:01:17.8371462Z torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat64GPUTest::test_output_shape_transcribe_streaming PASSED [ 62%] 2023-08-09T12:01:17.8372158Z torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat64GPUTest::test_torchscript_consistency_forward PASSED [ 62%] 2023-08-09T12:01:17.8372834Z torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat64GPUTest::test_torchscript_consistency_join PASSED [ 63%] 2023-08-09T12:01:17.8436674Z torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat64GPUTest::test_torchscript_consistency_predict PASSED [ 63%] 2023-08-09T12:01:17.8437376Z torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat64GPUTest::test_torchscript_consistency_transcribe PASSED [ 63%] 2023-08-09T12:01:17.8438088Z torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat64GPUTest::test_torchscript_consistency_transcribe_streaming PASSED [ 63%] 2023-08-09T12:01:17.8438857Z torchaudio_unittest/models/rnnt_decoder/rnnt_decoder_gpu_test.py::RNNTBeamSearchFloat32GPUTest::test_torchscript_consistency_forward PASSED [ 63%] 2023-08-09T12:01:17.8439895Z torchaudio_unittest/models/rnnt_decoder/rnnt_decoder_gpu_test.py::RNNTBeamSearchFloat32GPUTest::test_torchscript_consistency_infer PASSED [ 63%] 2023-08-09T12:01:17.8440683Z torchaudio_unittest/models/rnnt_decoder/rnnt_decoder_gpu_test.py::RNNTBeamSearchFloat64GPUTest::test_torchscript_consistency_forward PASSED [ 63%] 2023-08-09T12:01:17.8441479Z torchaudio_unittest/models/rnnt_decoder/rnnt_decoder_gpu_test.py::RNNTBeamSearchFloat64GPUTest::test_torchscript_consistency_infer PASSED [ 63%] 2023-08-09T12:01:17.8442166Z torchaudio_unittest/models/squim/squim_test.py::TestSquimObjective::test_cuda_smoke_test_0 PASSED [ 63%] 2023-08-09T12:01:17.8442791Z torchaudio_unittest/models/squim/squim_test.py::TestSquimObjective::test_cuda_smoke_test_1 PASSED [ 63%] 2023-08-09T12:01:17.8443627Z torchaudio_unittest/models/squim/squim_test.py::TestSquimSubjective::test_cuda_smoke_test_0 PASSED [ 63%] 2023-08-09T12:01:17.8444271Z torchaudio_unittest/models/squim/squim_test.py::TestSquimSubjective::test_cuda_smoke_test_1 PASSED [ 63%] 2023-08-09T12:01:17.8445008Z torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2EncoderFloat32CUDA::test_encoder_output_shape PASSED [ 63%] 2023-08-09T12:01:17.8445789Z torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2EncoderFloat32CUDA::test_tacotron2_torchscript_consistency PASSED [ 63%] 2023-08-09T12:01:17.8446755Z torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2DecoderFloat32CUDA::test_decoder_inference_output_shape_0 PASSED [ 63%] 2023-08-09T12:01:17.8447528Z torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2DecoderFloat32CUDA::test_decoder_inference_output_shape_1 PASSED [ 63%] 2023-08-09T12:01:17.8448340Z torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2DecoderFloat32CUDA::test_decoder_inference_torchscript_consistency_0 PASSED [ 63%] 2023-08-09T12:01:17.8449257Z torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2DecoderFloat32CUDA::test_decoder_inference_torchscript_consistency_1 PASSED [ 63%] 2023-08-09T12:01:17.8450036Z torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2DecoderFloat32CUDA::test_decoder_output_shape_0 PASSED [ 63%] 2023-08-09T12:01:17.8450786Z torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2DecoderFloat32CUDA::test_decoder_output_shape_1 PASSED [ 63%] 2023-08-09T12:01:17.8451549Z torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2DecoderFloat32CUDA::test_decoder_torchscript_consistency_0 PASSED [ 63%] 2023-08-09T12:01:17.8452329Z torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2DecoderFloat32CUDA::test_decoder_torchscript_consistency_1 PASSED [ 63%] 2023-08-09T12:01:17.8453080Z torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2Float32CUDA::test_tacotron2_backward_0 PASSED [ 63%] 2023-08-09T12:01:17.8453774Z torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2Float32CUDA::test_tacotron2_backward_1 PASSED [ 63%] 2023-08-09T12:01:17.8454493Z torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2Float32CUDA::test_tacotron2_inference_output_shape_0 PASSED [ 63%] 2023-08-09T12:01:17.8455225Z torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2Float32CUDA::test_tacotron2_inference_output_shape_1 PASSED [ 63%] 2023-08-09T12:01:17.8455991Z torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2Float32CUDA::test_tacotron2_inference_torchscript_consistency_0 PASSED [ 63%] 2023-08-09T12:01:17.8456879Z torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2Float32CUDA::test_tacotron2_inference_torchscript_consistency_1 PASSED [ 64%] 2023-08-09T12:01:17.8457611Z torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2Float32CUDA::test_tacotron2_output_shape_0 PASSED [ 64%] 2023-08-09T12:01:17.8458328Z torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2Float32CUDA::test_tacotron2_output_shape_1 PASSED [ 64%] 2023-08-09T12:01:17.8459063Z torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2Float32CUDA::test_tacotron2_torchscript_consistency_0 PASSED [ 64%] 2023-08-09T12:01:17.8459802Z torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2Float32CUDA::test_tacotron2_torchscript_consistency_1 PASSED [ 64%] 2023-08-09T12:01:17.8460481Z torchaudio_unittest/models/wav2vec2/model_test.py::TestWav2Vec2Model::test_cuda_smoke_test_0 PASSED [ 64%] 2023-08-09T12:01:17.8461110Z torchaudio_unittest/models/wav2vec2/model_test.py::TestWav2Vec2Model::test_cuda_smoke_test_1 PASSED [ 64%] 2023-08-09T12:01:17.8461735Z torchaudio_unittest/models/wav2vec2/model_test.py::TestWavLMModel::test_cuda_smoke_test_0 PASSED [ 64%] 2023-08-09T12:01:17.8462356Z torchaudio_unittest/models/wav2vec2/model_test.py::TestWavLMModel::test_cuda_smoke_test_1 PASSED [ 64%] 2023-08-09T12:01:17.8463001Z torchaudio_unittest/models/wav2vec2/model_test.py::TestHuBERTPretrainModel::test_cuda_smoke_test_0 PASSED [ 64%] 2023-08-09T12:01:17.8463653Z torchaudio_unittest/models/wav2vec2/model_test.py::TestHuBERTPretrainModel::test_cuda_smoke_test_1 PASSED [ 64%] 2023-08-09T12:01:17.8464327Z torchaudio_unittest/prototype/conformer_wav2vec2_test.py::TestConformerWav2Vec2::test_cuda_smoke_test_0 SKIPPED [ 64%] 2023-08-09T12:01:17.8465017Z torchaudio_unittest/prototype/conformer_wav2vec2_test.py::TestConformerWav2Vec2::test_cuda_smoke_test_1 SKIPPED [ 64%] 2023-08-09T12:01:17.8465921Z torchaudio_unittest/prototype/conformer_wav2vec2_test.py::TestConformerWav2Vec2::test_pretrain_cuda_smoke_test__function_conformer_wav2vec2_pretrain_base_at_0x7efb59099af0__torch_float32 SKIPPED [ 64%] 2023-08-09T12:01:17.8466841Z torchaudio_unittest/prototype/conformer_wav2vec2_test.py::TestConformerWav2Vec2::test_pretrain_cuda_smoke_test__function_conformer_wav2vec2_pretrain_base_at_0x7efb59099af0__torch_float64 SKIPPED [ 64%] 2023-08-09T12:01:17.8467757Z torchaudio_unittest/prototype/conformer_wav2vec2_test.py::TestConformerWav2Vec2::test_pretrain_cuda_smoke_test__function_conformer_wav2vec2_pretrain_large_at_0x7efb59099b80__torch_float32 SKIPPED [ 64%] 2023-08-09T12:01:17.8468793Z torchaudio_unittest/prototype/conformer_wav2vec2_test.py::TestConformerWav2Vec2::test_pretrain_cuda_smoke_test__function_conformer_wav2vec2_pretrain_large_at_0x7efb59099b80__torch_float64 SKIPPED [ 64%] 2023-08-09T12:02:27.8789529Z torchaudio_unittest/prototype/conv_emformer_gpu_test.py::ConvEmformerFloat32GPUTest::test_output_lengths_forward PASSED [ 64%] 2023-08-09T12:02:27.8790279Z torchaudio_unittest/prototype/conv_emformer_gpu_test.py::ConvEmformerFloat32GPUTest::test_output_lengths_infer PASSED [ 64%] 2023-08-09T12:02:27.8791013Z torchaudio_unittest/prototype/conv_emformer_gpu_test.py::ConvEmformerFloat32GPUTest::test_output_shape_forward PASSED [ 64%] 2023-08-09T12:02:27.8791777Z torchaudio_unittest/prototype/conv_emformer_gpu_test.py::ConvEmformerFloat32GPUTest::test_output_shape_infer PASSED [ 64%] 2023-08-09T12:02:27.8792374Z torchaudio_unittest/prototype/conv_emformer_gpu_test.py::ConvEmformerFloat32GPUTest::test_torchscript_consistency_forward PASSED [ 64%] 2023-08-09T12:02:27.8793460Z torchaudio_unittest/prototype/conv_emformer_gpu_test.py::ConvEmformerFloat32GPUTest::test_torchscript_consistency_infer PASSED [ 64%] 2023-08-09T12:02:27.8794062Z torchaudio_unittest/prototype/conv_emformer_gpu_test.py::ConvEmformerFloat64GPUTest::test_output_lengths_forward PASSED [ 64%] 2023-08-09T12:02:27.8794623Z torchaudio_unittest/prototype/conv_emformer_gpu_test.py::ConvEmformerFloat64GPUTest::test_output_lengths_infer PASSED [ 64%] 2023-08-09T12:02:27.8795176Z torchaudio_unittest/prototype/conv_emformer_gpu_test.py::ConvEmformerFloat64GPUTest::test_output_shape_forward PASSED [ 64%] 2023-08-09T12:02:27.8795837Z torchaudio_unittest/prototype/conv_emformer_gpu_test.py::ConvEmformerFloat64GPUTest::test_output_shape_infer PASSED [ 64%] 2023-08-09T12:02:27.8796518Z torchaudio_unittest/prototype/conv_emformer_gpu_test.py::ConvEmformerFloat64GPUTest::test_torchscript_consistency_forward PASSED [ 65%] 2023-08-09T12:02:27.8797375Z torchaudio_unittest/prototype/conv_emformer_gpu_test.py::ConvEmformerFloat64GPUTest::test_torchscript_consistency_infer PASSED [ 65%] 2023-08-09T12:02:27.8797957Z torchaudio_unittest/prototype/rnnt_gpu_test.py::ConformerRNNTFloat32GPUTest::test_output_shape_forward PASSED [ 65%] 2023-08-09T12:02:27.8798500Z torchaudio_unittest/prototype/rnnt_gpu_test.py::ConformerRNNTFloat32GPUTest::test_output_shape_join PASSED [ 65%] 2023-08-09T12:02:27.8799032Z torchaudio_unittest/prototype/rnnt_gpu_test.py::ConformerRNNTFloat32GPUTest::test_output_shape_predict PASSED [ 65%] 2023-08-09T12:02:27.8799582Z torchaudio_unittest/prototype/rnnt_gpu_test.py::ConformerRNNTFloat32GPUTest::test_output_shape_transcribe PASSED [ 65%] 2023-08-09T12:02:27.8800163Z torchaudio_unittest/prototype/rnnt_gpu_test.py::ConformerRNNTFloat32GPUTest::test_torchscript_consistency_forward PASSED [ 65%] 2023-08-09T12:02:27.8800749Z torchaudio_unittest/prototype/rnnt_gpu_test.py::ConformerRNNTFloat32GPUTest::test_torchscript_consistency_join PASSED [ 65%] 2023-08-09T12:02:27.8801439Z torchaudio_unittest/prototype/rnnt_gpu_test.py::ConformerRNNTFloat32GPUTest::test_torchscript_consistency_predict PASSED [ 65%] 2023-08-09T12:02:27.8802030Z torchaudio_unittest/prototype/rnnt_gpu_test.py::ConformerRNNTFloat32GPUTest::test_torchscript_consistency_transcribe PASSED [ 65%] 2023-08-09T12:02:27.8802591Z torchaudio_unittest/prototype/rnnt_gpu_test.py::ConformerRNNTFloat64GPUTest::test_output_shape_forward PASSED [ 65%] 2023-08-09T12:02:27.8803189Z torchaudio_unittest/prototype/rnnt_gpu_test.py::ConformerRNNTFloat64GPUTest::test_output_shape_join PASSED [ 65%] 2023-08-09T12:02:27.8804249Z torchaudio_unittest/prototype/rnnt_gpu_test.py::ConformerRNNTFloat64GPUTest::test_output_shape_predict PASSED [ 65%] 2023-08-09T12:02:27.8804864Z torchaudio_unittest/prototype/rnnt_gpu_test.py::ConformerRNNTFloat64GPUTest::test_output_shape_transcribe PASSED [ 65%] 2023-08-09T12:02:27.8805433Z torchaudio_unittest/prototype/rnnt_gpu_test.py::ConformerRNNTFloat64GPUTest::test_torchscript_consistency_forward PASSED [ 65%] 2023-08-09T12:02:27.8805999Z torchaudio_unittest/prototype/rnnt_gpu_test.py::ConformerRNNTFloat64GPUTest::test_torchscript_consistency_join PASSED [ 65%] 2023-08-09T12:02:27.8806565Z torchaudio_unittest/prototype/rnnt_gpu_test.py::ConformerRNNTFloat64GPUTest::test_torchscript_consistency_predict PASSED [ 65%] 2023-08-09T12:02:27.8807133Z torchaudio_unittest/prototype/rnnt_gpu_test.py::ConformerRNNTFloat64GPUTest::test_torchscript_consistency_transcribe PASSED [ 65%] 2023-08-09T12:02:27.8807753Z torchaudio_unittest/prototype/ssl_model_test.py::TestSSLModel::test_cuda_smoke_test__function_conformer_wav2vec2_base_at_0x7efb590999d0__64_torch_float32 PASSED [ 65%] 2023-08-09T12:02:27.8808532Z torchaudio_unittest/prototype/ssl_model_test.py::TestSSLModel::test_cuda_smoke_test__function_conformer_wav2vec2_base_at_0x7efb590999d0__64_torch_float64 PASSED [ 65%] 2023-08-09T12:02:27.8809159Z torchaudio_unittest/prototype/ssl_model_test.py::TestSSLModel::test_cuda_smoke_test__function_emformer_hubert_base_at_0x7efb590ab1f0__80_torch_float32 PASSED [ 65%] 2023-08-09T12:02:27.8809775Z torchaudio_unittest/prototype/ssl_model_test.py::TestSSLModel::test_cuda_smoke_test__function_emformer_hubert_base_at_0x7efb590ab1f0__80_torch_float64 PASSED [ 65%] 2023-08-09T12:02:27.8810353Z torchaudio_unittest/prototype/functional/autograd_cuda_test.py::TestAutogradCUDAFloat64::test_exp_sigmoid_input PASSED [ 65%] 2023-08-09T12:02:27.8810917Z torchaudio_unittest/prototype/functional/autograd_cuda_test.py::TestAutogradCUDAFloat64::test_extend_pitch PASSED [ 65%] 2023-08-09T12:02:27.8811482Z torchaudio_unittest/prototype/functional/autograd_cuda_test.py::TestAutogradCUDAFloat64::test_filter_waveform PASSED [ 65%] 2023-08-09T12:02:27.8812030Z torchaudio_unittest/prototype/functional/autograd_cuda_test.py::TestAutogradCUDAFloat64::test_freq_ir PASSED [ 65%] 2023-08-09T12:02:27.8812572Z torchaudio_unittest/prototype/functional/autograd_cuda_test.py::TestAutogradCUDAFloat64::test_oscillator_bank_0 PASSED [ 65%] 2023-08-09T12:02:27.8813123Z torchaudio_unittest/prototype/functional/autograd_cuda_test.py::TestAutogradCUDAFloat64::test_oscillator_bank_1 PASSED [ 66%] 2023-08-09T12:02:27.8813663Z torchaudio_unittest/prototype/functional/autograd_cuda_test.py::TestAutogradCUDAFloat64::test_sinc_ir PASSED [ 66%] 2023-08-09T12:02:27.8814218Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_adsr_envelope_00 PASSED [ 66%] 2023-08-09T12:02:27.8814788Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_adsr_envelope_01 PASSED [ 66%] 2023-08-09T12:02:27.8815432Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_adsr_envelope_02 PASSED [ 66%] 2023-08-09T12:02:27.8816005Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_adsr_envelope_03 PASSED [ 66%] 2023-08-09T12:02:27.8816575Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_adsr_envelope_04 PASSED [ 66%] 2023-08-09T12:02:27.8817126Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_adsr_envelope_05 PASSED [ 66%] 2023-08-09T12:02:27.8817675Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_adsr_envelope_06 PASSED [ 66%] 2023-08-09T12:02:27.8818244Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_adsr_envelope_07 PASSED [ 66%] 2023-08-09T12:02:27.8818799Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_adsr_envelope_08 PASSED [ 66%] 2023-08-09T12:02:27.8819347Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_adsr_envelope_09 PASSED [ 66%] 2023-08-09T12:02:27.8819892Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_adsr_envelope_10 PASSED [ 66%] 2023-08-09T12:02:27.8820442Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_adsr_envelope_11 PASSED [ 66%] 2023-08-09T12:02:27.8820996Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_adsr_envelope_12 PASSED [ 66%] 2023-08-09T12:02:27.8821603Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_adsr_envelope_13 PASSED [ 66%] 2023-08-09T12:02:27.8822145Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_adsr_envelope_14 PASSED [ 66%] 2023-08-09T12:02:27.8822693Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_adsr_envelope_15 PASSED [ 66%] 2023-08-09T12:02:27.8823243Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_adsr_envelope_16 PASSED [ 66%] 2023-08-09T12:02:28.0190017Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_exp_sigmoid_input_diff_0 PASSED [ 66%] 2023-08-09T12:02:28.0191038Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_exp_sigmoid_input_diff_1 PASSED [ 66%] 2023-08-09T12:02:28.0191944Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_exp_sigmoid_input_diff_2 PASSED [ 66%] 2023-08-09T12:02:28.0192779Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_extend_pitch PASSED [ 66%] 2023-08-09T12:02:28.0193363Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_delta_1_3 PASSED [ 66%] 2023-08-09T12:02:28.0193940Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_delta_1_4 PASSED [ 66%] 2023-08-09T12:02:28.0194503Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_delta_1_5 PASSED [ 66%] 2023-08-09T12:02:28.0195087Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_delta_1_6 PASSED [ 66%] 2023-08-09T12:02:28.0195806Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_delta_1_7 PASSED [ 67%] 2023-08-09T12:02:28.0196379Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_delta_1_8 PASSED [ 67%] 2023-08-09T12:02:28.0196947Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_delta_3_3 PASSED [ 67%] 2023-08-09T12:02:28.0197506Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_delta_3_4 PASSED [ 67%] 2023-08-09T12:02:28.0198074Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_delta_3_5 PASSED [ 67%] 2023-08-09T12:02:28.0198662Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_delta_3_6 PASSED [ 67%] 2023-08-09T12:02:28.0199230Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_delta_3_7 PASSED [ 67%] 2023-08-09T12:02:28.0199793Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_delta_3_8 PASSED [ 67%] 2023-08-09T12:02:28.0200362Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_delta_5_3 PASSED [ 67%] 2023-08-09T12:02:28.0200936Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_delta_5_4 PASSED [ 67%] 2023-08-09T12:02:28.0201595Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_delta_5_5 PASSED [ 67%] 2023-08-09T12:02:28.0202168Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_delta_5_6 PASSED [ 67%] 2023-08-09T12:02:28.0202726Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_delta_5_7 PASSED [ 67%] 2023-08-09T12:02:28.0203297Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_delta_5_8 PASSED [ 67%] 2023-08-09T12:02:28.0204042Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_diff PASSED [ 67%] 2023-08-09T12:02:28.0204620Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_same PASSED [ 67%] 2023-08-09T12:02:28.0205201Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_00 PASSED [ 67%] 2023-08-09T12:02:28.0205775Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_01 PASSED [ 67%] 2023-08-09T12:02:28.0206347Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_02 PASSED [ 67%] 2023-08-09T12:02:28.0206918Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_03 PASSED [ 67%] 2023-08-09T12:02:28.0207473Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_04 PASSED [ 67%] 2023-08-09T12:02:28.0208042Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_05 PASSED [ 67%] 2023-08-09T12:02:28.0208696Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_06 PASSED [ 67%] 2023-08-09T12:02:28.0209268Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_07 PASSED [ 67%] 2023-08-09T12:02:28.0209832Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_08 PASSED [ 67%] 2023-08-09T12:02:28.0210434Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_09 PASSED [ 67%] 2023-08-09T12:02:28.0211008Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_10 PASSED [ 67%] 2023-08-09T12:02:28.0211590Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_11 PASSED [ 68%] 2023-08-09T12:02:28.0212152Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_12 PASSED [ 68%] 2023-08-09T12:02:28.0212703Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_13 PASSED [ 68%] 2023-08-09T12:02:28.0213274Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_14 PASSED [ 68%] 2023-08-09T12:02:28.0213846Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_15 PASSED [ 68%] 2023-08-09T12:02:28.0214413Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_16 PASSED [ 68%] 2023-08-09T12:02:28.0215047Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_17 PASSED [ 68%] 2023-08-09T12:02:28.0215609Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_18 PASSED [ 68%] 2023-08-09T12:02:28.0216175Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_19 PASSED [ 68%] 2023-08-09T12:02:28.0216736Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_20 PASSED [ 68%] 2023-08-09T12:02:28.0217296Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_21 PASSED [ 68%] 2023-08-09T12:02:28.0217858Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_22 PASSED [ 68%] 2023-08-09T12:02:28.0218424Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_filter_waveform_shape_23 PASSED [ 68%] 2023-08-09T12:02:28.0218988Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_freq_ir_reference_0 PASSED [ 68%] 2023-08-09T12:02:28.0219553Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_freq_ir_reference_1 PASSED [ 68%] 2023-08-09T12:02:28.0220120Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_freq_ir_warns_negative_values PASSED [ 68%] 2023-08-09T12:02:28.0220719Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_oscillator_bank_smoke_test_2_3_5_7_mean PASSED [ 68%] 2023-08-09T12:02:28.0221380Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_oscillator_bank_smoke_test_2_3_5_7_none PASSED [ 68%] 2023-08-09T12:02:28.3958436Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_oscillator_bank_smoke_test_2_3_5_7_sum PASSED [ 68%] 2023-08-09T12:02:28.3959148Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_oscillator_bank_smoke_test_2_3_5_mean PASSED [ 68%] 2023-08-09T12:02:28.3959767Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_oscillator_bank_smoke_test_2_3_5_none PASSED [ 68%] 2023-08-09T12:02:28.3960386Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_oscillator_bank_smoke_test_2_3_5_sum PASSED [ 68%] 2023-08-09T12:02:28.3961027Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_oscillator_bank_smoke_test_2_3_mean PASSED [ 68%] 2023-08-09T12:02:28.3961631Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_oscillator_bank_smoke_test_2_3_none PASSED [ 68%] 2023-08-09T12:02:28.3962236Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_oscillator_bank_smoke_test_2_3_sum PASSED [ 68%] 2023-08-09T12:02:28.3962829Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_oscillator_invalid PASSED [ 68%] 2023-08-09T12:02:28.3963690Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_1025_False PASSED [ 68%] 2023-08-09T12:02:28.3964574Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_1025_True PASSED [ 69%] 2023-08-09T12:02:28.3965159Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_129_False PASSED [ 69%] 2023-08-09T12:02:28.3965771Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_129_True PASSED [ 69%] 2023-08-09T12:02:28.3966369Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_1_1025_False PASSED [ 69%] 2023-08-09T12:02:28.3966964Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_1_1025_True PASSED [ 69%] 2023-08-09T12:02:28.3967559Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_1_129_False PASSED [ 69%] 2023-08-09T12:02:28.3968157Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_1_129_True PASSED [ 69%] 2023-08-09T12:02:28.3968747Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_1_1_False PASSED [ 69%] 2023-08-09T12:02:28.3969332Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_1_1_True PASSED [ 69%] 2023-08-09T12:02:28.3969927Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_1_2049_False PASSED [ 69%] 2023-08-09T12:02:28.3970528Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_1_2049_True PASSED [ 69%] 2023-08-09T12:02:28.3971250Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_1_257_False PASSED [ 69%] 2023-08-09T12:02:28.3971838Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_1_257_True PASSED [ 69%] 2023-08-09T12:02:28.3972426Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_1_3_False PASSED [ 69%] 2023-08-09T12:02:28.3973129Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_1_3_True PASSED [ 69%] 2023-08-09T12:02:28.3973919Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_1_513_False PASSED [ 69%] 2023-08-09T12:02:28.3974535Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_1_513_True PASSED [ 69%] 2023-08-09T12:02:28.3975126Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_1_5_False PASSED [ 69%] 2023-08-09T12:02:28.3975718Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_1_5_True PASSED [ 69%] 2023-08-09T12:02:28.3976296Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_1_65_False PASSED [ 69%] 2023-08-09T12:02:28.3976878Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_1_65_True PASSED [ 69%] 2023-08-09T12:02:28.3977459Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_1_False PASSED [ 69%] 2023-08-09T12:02:28.3978128Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_1_True PASSED [ 69%] 2023-08-09T12:02:28.3978769Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_2049_False PASSED [ 69%] 2023-08-09T12:02:28.3979441Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_2049_True PASSED [ 69%] 2023-08-09T12:02:28.3980216Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_257_False PASSED [ 69%] 2023-08-09T12:02:28.3980860Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_257_True PASSED [ 69%] 2023-08-09T12:02:28.3981450Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_3_False PASSED [ 70%] 2023-08-09T12:02:28.3982028Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_3_True PASSED [ 70%] 2023-08-09T12:02:28.3982603Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_513_False PASSED [ 70%] 2023-08-09T12:02:28.3983184Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_513_True PASSED [ 70%] 2023-08-09T12:02:28.3983768Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_5_1025_False PASSED [ 70%] 2023-08-09T12:02:28.3984348Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_5_1025_True PASSED [ 70%] 2023-08-09T12:02:28.3985064Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_5_129_False PASSED [ 70%] 2023-08-09T12:02:28.3985647Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_5_129_True PASSED [ 70%] 2023-08-09T12:02:28.3986223Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_5_1_False PASSED [ 70%] 2023-08-09T12:02:28.3986790Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_5_1_True PASSED [ 70%] 2023-08-09T12:02:28.3987373Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_5_2049_False PASSED [ 70%] 2023-08-09T12:02:28.3987968Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_5_2049_True PASSED [ 70%] 2023-08-09T12:02:28.3988711Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_5_257_False PASSED [ 70%] 2023-08-09T12:02:28.3989292Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_5_257_True PASSED [ 70%] 2023-08-09T12:02:28.3989861Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_5_3_False PASSED [ 70%] 2023-08-09T12:02:28.5156036Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_5_3_True PASSED [ 70%] 2023-08-09T12:02:28.5156699Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_5_513_False PASSED [ 70%] 2023-08-09T12:02:28.5157560Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_5_513_True PASSED [ 70%] 2023-08-09T12:02:28.5158151Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_5_5_False PASSED [ 70%] 2023-08-09T12:02:28.5158724Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_5_5_True PASSED [ 70%] 2023-08-09T12:02:28.5159311Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_5_65_False PASSED [ 70%] 2023-08-09T12:02:28.5159915Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_5_65_True PASSED [ 70%] 2023-08-09T12:02:28.5160508Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_5_False PASSED [ 70%] 2023-08-09T12:02:28.5161092Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_5_True PASSED [ 70%] 2023-08-09T12:02:28.5161664Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_65_False PASSED [ 70%] 2023-08-09T12:02:28.5162422Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_65_True PASSED [ 70%] 2023-08-09T12:02:28.5163018Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_9_1025_False PASSED [ 70%] 2023-08-09T12:02:28.5163817Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_9_1025_True PASSED [ 71%] 2023-08-09T12:02:28.5164488Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_9_129_False PASSED [ 71%] 2023-08-09T12:02:28.5165082Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_9_129_True PASSED [ 71%] 2023-08-09T12:02:28.5165880Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_9_1_False PASSED [ 71%] 2023-08-09T12:02:28.5166622Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_9_1_True PASSED [ 71%] 2023-08-09T12:02:28.5167213Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_9_2049_False PASSED [ 71%] 2023-08-09T12:02:28.5167804Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_9_2049_True PASSED [ 71%] 2023-08-09T12:02:28.5168386Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_9_257_False PASSED [ 71%] 2023-08-09T12:02:28.5168968Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_9_257_True PASSED [ 71%] 2023-08-09T12:02:28.5169553Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_9_3_False PASSED [ 71%] 2023-08-09T12:02:28.5170128Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_9_3_True PASSED [ 71%] 2023-08-09T12:02:28.5170829Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_9_513_False PASSED [ 71%] 2023-08-09T12:02:28.5171411Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_9_513_True PASSED [ 71%] 2023-08-09T12:02:28.5172093Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_9_5_False PASSED [ 71%] 2023-08-09T12:02:28.5172783Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_9_5_True PASSED [ 71%] 2023-08-09T12:02:28.5173377Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_9_65_False PASSED [ 71%] 2023-08-09T12:02:28.5173958Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_0_9_65_True PASSED [ 71%] 2023-08-09T12:02:28.5174552Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_1_0_1025_False PASSED [ 71%] 2023-08-09T12:02:28.5175130Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_1_0_1025_True PASSED [ 71%] 2023-08-09T12:02:28.5175698Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_1_0_129_False PASSED [ 71%] 2023-08-09T12:02:28.5176274Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_1_0_129_True PASSED [ 71%] 2023-08-09T12:02:28.5176847Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_1_0_1_False PASSED [ 71%] 2023-08-09T12:02:28.5177505Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_1_0_1_True PASSED [ 71%] 2023-08-09T12:02:28.5178084Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_1_0_2049_False PASSED [ 71%] 2023-08-09T12:02:28.5178664Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_1_0_2049_True PASSED [ 71%] 2023-08-09T12:02:28.5179241Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_1_0_257_False PASSED [ 71%] 2023-08-09T12:02:28.5179820Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_1_0_257_True PASSED [ 71%] 2023-08-09T12:02:28.5180407Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_1_0_3_False PASSED [ 72%] 2023-08-09T12:02:28.5180982Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_1_0_3_True PASSED [ 72%] 2023-08-09T12:02:28.5181557Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_1_0_513_False PASSED [ 72%] 2023-08-09T12:02:28.5182131Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_1_0_513_True PASSED [ 72%] 2023-08-09T12:02:28.5182706Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_1_0_5_False PASSED [ 72%] 2023-08-09T12:02:28.5183276Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_1_0_5_True PASSED [ 72%] 2023-08-09T12:02:28.5183914Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_1_0_65_False PASSED [ 72%] 2023-08-09T12:02:28.5184591Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_reference_1_0_65_True PASSED [ 72%] 2023-08-09T12:02:28.5185234Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_10_1025_False PASSED [ 72%] 2023-08-09T12:02:28.5185880Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_10_1025_True PASSED [ 72%] 2023-08-09T12:02:28.5186459Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_10_129_False PASSED [ 72%] 2023-08-09T12:02:28.5187045Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_10_129_True PASSED [ 72%] 2023-08-09T12:02:28.5187625Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_10_1_False PASSED [ 72%] 2023-08-09T12:02:28.6223564Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_10_1_True PASSED [ 72%] 2023-08-09T12:02:28.6224179Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_10_257_False PASSED [ 72%] 2023-08-09T12:02:28.6225268Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_10_257_True PASSED [ 72%] 2023-08-09T12:02:28.6226151Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_10_3_False PASSED [ 72%] 2023-08-09T12:02:28.6227041Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_10_3_True PASSED [ 72%] 2023-08-09T12:02:28.6227639Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_10_513_False PASSED [ 72%] 2023-08-09T12:02:28.6228219Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_10_513_True PASSED [ 72%] 2023-08-09T12:02:28.6228885Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_10_65_False PASSED [ 72%] 2023-08-09T12:02:28.6229457Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_10_65_True PASSED [ 72%] 2023-08-09T12:02:28.6230050Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_1_1025_False PASSED [ 72%] 2023-08-09T12:02:28.6230664Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_1_1025_True PASSED [ 72%] 2023-08-09T12:02:28.6231242Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_1_129_False PASSED [ 72%] 2023-08-09T12:02:28.6231814Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_1_129_True PASSED [ 72%] 2023-08-09T12:02:28.6232383Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_1_1_False PASSED [ 72%] 2023-08-09T12:02:28.6232943Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_1_1_True PASSED [ 73%] 2023-08-09T12:02:28.6233636Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_1_257_False PASSED [ 73%] 2023-08-09T12:02:28.6234214Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_1_257_True PASSED [ 73%] 2023-08-09T12:02:28.6234786Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_1_3_False PASSED [ 73%] 2023-08-09T12:02:28.6235361Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_1_3_True PASSED [ 73%] 2023-08-09T12:02:28.6235929Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_1_513_False PASSED [ 73%] 2023-08-09T12:02:28.6236509Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_1_513_True PASSED [ 73%] 2023-08-09T12:02:28.6237081Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_1_65_False PASSED [ 73%] 2023-08-09T12:02:28.6237648Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_1_65_True PASSED [ 73%] 2023-08-09T12:02:28.6238218Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_2_5_1025_False PASSED [ 73%] 2023-08-09T12:02:28.6238791Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_2_5_1025_True PASSED [ 73%] 2023-08-09T12:02:28.6239366Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_2_5_129_False PASSED [ 73%] 2023-08-09T12:02:28.6240016Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_2_5_129_True PASSED [ 73%] 2023-08-09T12:02:28.6240612Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_2_5_1_False PASSED [ 73%] 2023-08-09T12:02:28.6241181Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_2_5_1_True PASSED [ 73%] 2023-08-09T12:02:28.6241751Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_2_5_257_False PASSED [ 73%] 2023-08-09T12:02:28.6242352Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_2_5_257_True PASSED [ 73%] 2023-08-09T12:02:28.6242927Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_2_5_3_False PASSED [ 73%] 2023-08-09T12:02:28.6243832Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_2_5_3_True PASSED [ 73%] 2023-08-09T12:02:28.6244407Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_2_5_513_False PASSED [ 73%] 2023-08-09T12:02:28.6244975Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_2_5_513_True PASSED [ 73%] 2023-08-09T12:02:28.6245546Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_2_5_65_False PASSED [ 73%] 2023-08-09T12:02:28.6246109Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_2_5_65_True PASSED [ 73%] 2023-08-09T12:02:28.6246797Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_3_5_7_1025_False PASSED [ 73%] 2023-08-09T12:02:28.6247380Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_3_5_7_1025_True PASSED [ 73%] 2023-08-09T12:02:28.6247952Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_3_5_7_129_False PASSED [ 73%] 2023-08-09T12:02:28.6248528Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_3_5_7_129_True PASSED [ 73%] 2023-08-09T12:02:28.6249091Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_3_5_7_1_False PASSED [ 74%] 2023-08-09T12:02:28.6249664Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_3_5_7_1_True PASSED [ 74%] 2023-08-09T12:02:28.6250241Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_3_5_7_257_False PASSED [ 74%] 2023-08-09T12:02:28.6250812Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_3_5_7_257_True PASSED [ 74%] 2023-08-09T12:02:28.6251376Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_3_5_7_3_False PASSED [ 74%] 2023-08-09T12:02:28.6251943Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_3_5_7_3_True PASSED [ 74%] 2023-08-09T12:02:28.6252515Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_3_5_7_513_False PASSED [ 74%] 2023-08-09T12:02:28.6253175Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_3_5_7_513_True PASSED [ 74%] 2023-08-09T12:02:28.6253739Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_3_5_7_65_False PASSED [ 74%] 2023-08-09T12:02:28.6254307Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_shape_3_5_7_65_True PASSED [ 74%] 2023-08-09T12:02:28.6254871Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_size_False PASSED [ 74%] 2023-08-09T12:02:28.6255434Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat32CUDATest::test_sinc_ir_size_True PASSED [ 74%] 2023-08-09T12:02:28.7567297Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_adsr_envelope_00 PASSED [ 74%] 2023-08-09T12:02:28.7568008Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_adsr_envelope_01 PASSED [ 74%] 2023-08-09T12:02:28.7568673Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_adsr_envelope_02 PASSED [ 74%] 2023-08-09T12:02:28.7569314Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_adsr_envelope_03 PASSED [ 74%] 2023-08-09T12:02:28.7569935Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_adsr_envelope_04 PASSED [ 74%] 2023-08-09T12:02:28.7570516Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_adsr_envelope_05 PASSED [ 74%] 2023-08-09T12:02:28.7571418Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_adsr_envelope_06 PASSED [ 74%] 2023-08-09T12:02:28.7572073Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_adsr_envelope_07 PASSED [ 74%] 2023-08-09T12:02:28.7572702Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_adsr_envelope_08 PASSED [ 74%] 2023-08-09T12:02:28.7573325Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_adsr_envelope_09 PASSED [ 74%] 2023-08-09T12:02:28.7573898Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_adsr_envelope_10 PASSED [ 74%] 2023-08-09T12:02:28.7574563Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_adsr_envelope_11 PASSED [ 74%] 2023-08-09T12:02:28.7575206Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_adsr_envelope_12 PASSED [ 74%] 2023-08-09T12:02:28.7575811Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_adsr_envelope_13 PASSED [ 74%] 2023-08-09T12:02:28.7576370Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_adsr_envelope_14 PASSED [ 74%] 2023-08-09T12:02:28.7576994Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_adsr_envelope_15 PASSED [ 75%] 2023-08-09T12:02:28.7577624Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_adsr_envelope_16 PASSED [ 75%] 2023-08-09T12:02:28.7578228Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_exp_sigmoid_input_diff_0 PASSED [ 75%] 2023-08-09T12:02:28.7579036Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_exp_sigmoid_input_diff_1 PASSED [ 75%] 2023-08-09T12:02:28.7579747Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_exp_sigmoid_input_diff_2 PASSED [ 75%] 2023-08-09T12:02:28.7580367Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_extend_pitch PASSED [ 75%] 2023-08-09T12:02:28.7580994Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_delta_1_3 PASSED [ 75%] 2023-08-09T12:02:28.7581582Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_delta_1_4 PASSED [ 75%] 2023-08-09T12:02:28.7582164Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_delta_1_5 PASSED [ 75%] 2023-08-09T12:02:28.7582745Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_delta_1_6 PASSED [ 75%] 2023-08-09T12:02:28.7583412Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_delta_1_7 PASSED [ 75%] 2023-08-09T12:02:28.7584363Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_delta_1_8 PASSED [ 75%] 2023-08-09T12:02:28.7584964Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_delta_3_3 PASSED [ 75%] 2023-08-09T12:02:28.7585599Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_delta_3_4 PASSED [ 75%] 2023-08-09T12:02:28.7586398Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_delta_3_5 PASSED [ 75%] 2023-08-09T12:02:28.7586985Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_delta_3_6 PASSED [ 75%] 2023-08-09T12:02:28.7587550Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_delta_3_7 PASSED [ 75%] 2023-08-09T12:02:28.7588112Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_delta_3_8 PASSED [ 75%] 2023-08-09T12:02:28.7588790Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_delta_5_3 PASSED [ 75%] 2023-08-09T12:02:28.7589343Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_delta_5_4 PASSED [ 75%] 2023-08-09T12:02:28.7589927Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_delta_5_5 PASSED [ 75%] 2023-08-09T12:02:28.7590523Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_delta_5_6 PASSED [ 75%] 2023-08-09T12:02:28.7591084Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_delta_5_7 PASSED [ 75%] 2023-08-09T12:02:28.7591635Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_delta_5_8 PASSED [ 75%] 2023-08-09T12:02:28.7592194Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_diff PASSED [ 75%] 2023-08-09T12:02:28.7592839Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_same PASSED [ 75%] 2023-08-09T12:02:28.7593605Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_00 PASSED [ 75%] 2023-08-09T12:02:28.7594183Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_01 PASSED [ 76%] 2023-08-09T12:02:28.7594746Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_02 PASSED [ 76%] 2023-08-09T12:02:28.7595315Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_03 PASSED [ 76%] 2023-08-09T12:02:28.7595880Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_04 PASSED [ 76%] 2023-08-09T12:02:28.7596459Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_05 PASSED [ 76%] 2023-08-09T12:02:28.7597013Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_06 PASSED [ 76%] 2023-08-09T12:02:28.7597582Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_07 PASSED [ 76%] 2023-08-09T12:02:28.7598144Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_08 PASSED [ 76%] 2023-08-09T12:02:28.7598707Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_09 PASSED [ 76%] 2023-08-09T12:02:28.7599436Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_10 PASSED [ 76%] 2023-08-09T12:02:28.7600079Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_11 PASSED [ 76%] 2023-08-09T12:02:28.7600660Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_12 PASSED [ 76%] 2023-08-09T12:02:28.8892979Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_13 PASSED [ 76%] 2023-08-09T12:02:28.8893638Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_14 PASSED [ 76%] 2023-08-09T12:02:28.8894214Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_15 PASSED [ 76%] 2023-08-09T12:02:28.8894841Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_16 PASSED [ 76%] 2023-08-09T12:02:28.8895419Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_17 PASSED [ 76%] 2023-08-09T12:02:28.8895991Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_18 PASSED [ 76%] 2023-08-09T12:02:28.8896555Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_19 PASSED [ 76%] 2023-08-09T12:02:28.8897108Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_20 PASSED [ 76%] 2023-08-09T12:02:28.8897682Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_21 PASSED [ 76%] 2023-08-09T12:02:28.8898492Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_22 PASSED [ 76%] 2023-08-09T12:02:28.8899060Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_filter_waveform_shape_23 PASSED [ 76%] 2023-08-09T12:02:28.8899649Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_freq_ir_reference_0 PASSED [ 76%] 2023-08-09T12:02:28.8900239Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_freq_ir_reference_1 PASSED [ 76%] 2023-08-09T12:02:28.8900847Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_freq_ir_warns_negative_values PASSED [ 76%] 2023-08-09T12:02:28.8901459Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_oscillator_bank_smoke_test_2_3_5_7_mean PASSED [ 76%] 2023-08-09T12:02:28.8902067Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_oscillator_bank_smoke_test_2_3_5_7_none PASSED [ 77%] 2023-08-09T12:02:28.8902665Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_oscillator_bank_smoke_test_2_3_5_7_sum PASSED [ 77%] 2023-08-09T12:02:28.8903270Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_oscillator_bank_smoke_test_2_3_5_mean PASSED [ 77%] 2023-08-09T12:02:28.8903869Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_oscillator_bank_smoke_test_2_3_5_none PASSED [ 77%] 2023-08-09T12:02:28.8904570Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_oscillator_bank_smoke_test_2_3_5_sum PASSED [ 77%] 2023-08-09T12:02:28.8905161Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_oscillator_bank_smoke_test_2_3_mean PASSED [ 77%] 2023-08-09T12:02:28.8905762Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_oscillator_bank_smoke_test_2_3_none PASSED [ 77%] 2023-08-09T12:02:28.8906359Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_oscillator_bank_smoke_test_2_3_sum PASSED [ 77%] 2023-08-09T12:02:28.8906938Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_oscillator_invalid PASSED [ 77%] 2023-08-09T12:02:28.8907521Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_1025_False PASSED [ 77%] 2023-08-09T12:02:28.8908117Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_1025_True PASSED [ 77%] 2023-08-09T12:02:28.8908847Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_129_False PASSED [ 77%] 2023-08-09T12:02:28.8909431Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_129_True PASSED [ 77%] 2023-08-09T12:02:28.8910018Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_1_1025_False PASSED [ 77%] 2023-08-09T12:02:28.8910596Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_1_1025_True PASSED [ 77%] 2023-08-09T12:02:28.8911245Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_1_129_False PASSED [ 77%] 2023-08-09T12:02:28.8911834Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_1_129_True PASSED [ 77%] 2023-08-09T12:02:28.8912419Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_1_1_False PASSED [ 77%] 2023-08-09T12:02:28.8913001Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_1_1_True PASSED [ 77%] 2023-08-09T12:02:28.8913579Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_1_2049_False PASSED [ 77%] 2023-08-09T12:02:28.8914165Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_1_2049_True PASSED [ 77%] 2023-08-09T12:02:28.8914748Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_1_257_False PASSED [ 77%] 2023-08-09T12:02:28.8915329Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_1_257_True PASSED [ 77%] 2023-08-09T12:02:28.8915904Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_1_3_False PASSED [ 77%] 2023-08-09T12:02:28.8916489Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_1_3_True PASSED [ 77%] 2023-08-09T12:02:28.8917067Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_1_513_False PASSED [ 77%] 2023-08-09T12:02:28.8917709Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_1_513_True PASSED [ 77%] 2023-08-09T12:02:28.8918286Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_1_5_False PASSED [ 78%] 2023-08-09T12:02:28.8918866Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_1_5_True PASSED [ 78%] 2023-08-09T12:02:28.8919447Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_1_65_False PASSED [ 78%] 2023-08-09T12:02:28.8920026Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_1_65_True PASSED [ 78%] 2023-08-09T12:02:28.8920614Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_1_False PASSED [ 78%] 2023-08-09T12:02:28.8921188Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_1_True PASSED [ 78%] 2023-08-09T12:02:28.8921771Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_2049_False PASSED [ 78%] 2023-08-09T12:02:28.8922356Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_2049_True PASSED [ 78%] 2023-08-09T12:02:28.8922933Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_257_False PASSED [ 78%] 2023-08-09T12:02:28.8923768Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_257_True PASSED [ 78%] 2023-08-09T12:02:29.0138795Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_3_False PASSED [ 78%] 2023-08-09T12:02:29.0139679Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_3_True PASSED [ 78%] 2023-08-09T12:02:29.0140414Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_513_False PASSED [ 78%] 2023-08-09T12:02:29.0140993Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_513_True PASSED [ 78%] 2023-08-09T12:02:29.0141564Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_5_1025_False PASSED [ 78%] 2023-08-09T12:02:29.0142163Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_5_1025_True PASSED [ 78%] 2023-08-09T12:02:29.0142741Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_5_129_False PASSED [ 78%] 2023-08-09T12:02:29.0143317Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_5_129_True PASSED [ 78%] 2023-08-09T12:02:29.0143893Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_5_1_False PASSED [ 78%] 2023-08-09T12:02:29.0144462Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_5_1_True PASSED [ 78%] 2023-08-09T12:02:29.0145151Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_5_2049_False PASSED [ 78%] 2023-08-09T12:02:29.0145733Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_5_2049_True PASSED [ 78%] 2023-08-09T12:02:29.0146303Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_5_257_False PASSED [ 78%] 2023-08-09T12:02:29.0146874Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_5_257_True PASSED [ 78%] 2023-08-09T12:02:29.0147450Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_5_3_False PASSED [ 78%] 2023-08-09T12:02:29.0148020Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_5_3_True PASSED [ 78%] 2023-08-09T12:02:29.0148752Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_5_513_False PASSED [ 78%] 2023-08-09T12:02:29.0149320Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_5_513_True PASSED [ 79%] 2023-08-09T12:02:29.0149895Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_5_5_False PASSED [ 79%] 2023-08-09T12:02:29.0150494Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_5_5_True PASSED [ 79%] 2023-08-09T12:02:29.0151093Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_5_65_False PASSED [ 79%] 2023-08-09T12:02:29.0151766Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_5_65_True PASSED [ 79%] 2023-08-09T12:02:29.0152336Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_5_False PASSED [ 79%] 2023-08-09T12:02:29.0152905Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_5_True PASSED [ 79%] 2023-08-09T12:02:29.0153495Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_65_False PASSED [ 79%] 2023-08-09T12:02:29.0154072Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_65_True PASSED [ 79%] 2023-08-09T12:02:29.0154651Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_9_1025_False PASSED [ 79%] 2023-08-09T12:02:29.0155231Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_9_1025_True PASSED [ 79%] 2023-08-09T12:02:29.0155802Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_9_129_False PASSED [ 79%] 2023-08-09T12:02:29.0156382Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_9_129_True PASSED [ 79%] 2023-08-09T12:02:29.0156959Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_9_1_False PASSED [ 79%] 2023-08-09T12:02:29.0157522Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_9_1_True PASSED [ 79%] 2023-08-09T12:02:29.0158161Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_9_2049_False PASSED [ 79%] 2023-08-09T12:02:29.0158738Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_9_2049_True PASSED [ 79%] 2023-08-09T12:02:29.0159309Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_9_257_False PASSED [ 79%] 2023-08-09T12:02:29.0159877Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_9_257_True PASSED [ 79%] 2023-08-09T12:02:29.0160454Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_9_3_False PASSED [ 79%] 2023-08-09T12:02:29.0161082Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_9_3_True PASSED [ 79%] 2023-08-09T12:02:29.0161660Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_9_513_False PASSED [ 79%] 2023-08-09T12:02:29.0162232Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_9_513_True PASSED [ 79%] 2023-08-09T12:02:29.0162800Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_9_5_False PASSED [ 79%] 2023-08-09T12:02:29.0163644Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_9_5_True PASSED [ 79%] 2023-08-09T12:02:29.0164226Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_9_65_False PASSED [ 79%] 2023-08-09T12:02:29.0164889Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_0_9_65_True PASSED [ 79%] 2023-08-09T12:02:29.0165467Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_1_0_1025_False PASSED [ 80%] 2023-08-09T12:02:29.0166042Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_1_0_1025_True PASSED [ 80%] 2023-08-09T12:02:29.0166611Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_1_0_129_False PASSED [ 80%] 2023-08-09T12:02:29.0167183Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_1_0_129_True PASSED [ 80%] 2023-08-09T12:02:29.0167765Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_1_0_1_False PASSED [ 80%] 2023-08-09T12:02:29.0168331Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_1_0_1_True PASSED [ 80%] 2023-08-09T12:02:29.0168904Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_1_0_2049_False PASSED [ 80%] 2023-08-09T12:02:29.0169483Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_1_0_2049_True PASSED [ 80%] 2023-08-09T12:02:29.1195131Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_1_0_257_False PASSED [ 80%] 2023-08-09T12:02:29.1195816Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_1_0_257_True PASSED [ 80%] 2023-08-09T12:02:29.1196658Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_1_0_3_False PASSED [ 80%] 2023-08-09T12:02:29.1197242Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_1_0_3_True PASSED [ 80%] 2023-08-09T12:02:29.1197828Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_1_0_513_False PASSED [ 80%] 2023-08-09T12:02:29.1198417Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_1_0_513_True PASSED [ 80%] 2023-08-09T12:02:29.1198998Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_1_0_5_False PASSED [ 80%] 2023-08-09T12:02:29.1199591Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_1_0_5_True PASSED [ 80%] 2023-08-09T12:02:29.1200174Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_1_0_65_False PASSED [ 80%] 2023-08-09T12:02:29.1200758Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_reference_1_0_65_True PASSED [ 80%] 2023-08-09T12:02:29.1201329Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_10_1025_False PASSED [ 80%] 2023-08-09T12:02:29.1201903Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_10_1025_True PASSED [ 80%] 2023-08-09T12:02:29.1202483Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_10_129_False PASSED [ 80%] 2023-08-09T12:02:29.1203151Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_10_129_True PASSED [ 80%] 2023-08-09T12:02:29.1204009Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_10_1_False PASSED [ 80%] 2023-08-09T12:02:29.1204570Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_10_1_True PASSED [ 80%] 2023-08-09T12:02:29.1205139Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_10_257_False PASSED [ 80%] 2023-08-09T12:02:29.1205705Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_10_257_True PASSED [ 80%] 2023-08-09T12:02:29.1206285Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_10_3_False PASSED [ 80%] 2023-08-09T12:02:29.1206846Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_10_3_True PASSED [ 81%] 2023-08-09T12:02:29.1207416Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_10_513_False PASSED [ 81%] 2023-08-09T12:02:29.1207983Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_10_513_True PASSED [ 81%] 2023-08-09T12:02:29.1208545Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_10_65_False PASSED [ 81%] 2023-08-09T12:02:29.1209219Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_10_65_True PASSED [ 81%] 2023-08-09T12:02:29.1209789Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_1_1025_False PASSED [ 81%] 2023-08-09T12:02:29.1210361Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_1_1025_True PASSED [ 81%] 2023-08-09T12:02:29.1210931Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_1_129_False PASSED [ 81%] 2023-08-09T12:02:29.1211493Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_1_129_True PASSED [ 81%] 2023-08-09T12:02:29.1212053Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_1_1_False PASSED [ 81%] 2023-08-09T12:02:29.1212626Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_1_1_True PASSED [ 81%] 2023-08-09T12:02:29.1213191Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_1_257_False PASSED [ 81%] 2023-08-09T12:02:29.1213758Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_1_257_True PASSED [ 81%] 2023-08-09T12:02:29.1214323Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_1_3_False PASSED [ 81%] 2023-08-09T12:02:29.1214880Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_1_3_True PASSED [ 81%] 2023-08-09T12:02:29.1215446Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_1_513_False PASSED [ 81%] 2023-08-09T12:02:29.1216086Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_1_513_True PASSED [ 81%] 2023-08-09T12:02:29.1216654Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_1_65_False PASSED [ 81%] 2023-08-09T12:02:29.1217208Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_1_65_True PASSED [ 81%] 2023-08-09T12:02:29.1217779Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_2_5_1025_False PASSED [ 81%] 2023-08-09T12:02:29.1218349Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_2_5_1025_True PASSED [ 81%] 2023-08-09T12:02:29.1218929Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_2_5_129_False PASSED [ 81%] 2023-08-09T12:02:29.1219491Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_2_5_129_True PASSED [ 81%] 2023-08-09T12:02:29.1220060Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_2_5_1_False PASSED [ 81%] 2023-08-09T12:02:29.1220622Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_2_5_1_True PASSED [ 81%] 2023-08-09T12:02:29.1221187Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_2_5_257_False PASSED [ 81%] 2023-08-09T12:02:29.1221757Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_2_5_257_True PASSED [ 81%] 2023-08-09T12:02:29.1222405Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_2_5_3_False PASSED [ 82%] 2023-08-09T12:02:29.1222970Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_2_5_3_True PASSED [ 82%] 2023-08-09T12:02:29.1223535Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_2_5_513_False PASSED [ 82%] 2023-08-09T12:02:29.1224100Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_2_5_513_True PASSED [ 82%] 2023-08-09T12:02:29.1224666Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_2_5_65_False PASSED [ 82%] 2023-08-09T12:02:29.1225250Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_2_5_65_True PASSED [ 82%] 2023-08-09T12:02:29.1225828Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_3_5_7_1025_False PASSED [ 82%] 2023-08-09T12:02:29.8153843Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_3_5_7_1025_True PASSED [ 82%] 2023-08-09T12:02:29.8154712Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_3_5_7_129_False PASSED [ 82%] 2023-08-09T12:02:29.8155478Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_3_5_7_129_True PASSED [ 82%] 2023-08-09T12:02:29.8156223Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_3_5_7_1_False PASSED [ 82%] 2023-08-09T12:02:29.8157344Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_3_5_7_1_True PASSED [ 82%] 2023-08-09T12:02:29.8158102Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_3_5_7_257_False PASSED [ 82%] 2023-08-09T12:02:29.8158837Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_3_5_7_257_True PASSED [ 82%] 2023-08-09T12:02:29.8159571Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_3_5_7_3_False PASSED [ 82%] 2023-08-09T12:02:29.8160311Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_3_5_7_3_True PASSED [ 82%] 2023-08-09T12:02:29.8161066Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_3_5_7_513_False PASSED [ 82%] 2023-08-09T12:02:29.8161799Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_3_5_7_513_True PASSED [ 82%] 2023-08-09T12:02:29.8162528Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_3_5_7_65_False PASSED [ 82%] 2023-08-09T12:02:29.8163262Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_shape_3_5_7_65_True PASSED [ 82%] 2023-08-09T12:02:29.8164190Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_size_False PASSED [ 82%] 2023-08-09T12:02:29.8164904Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64CUDATest::test_sinc_ir_size_True PASSED [ 82%] 2023-08-09T12:02:29.8165801Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_1000_1_16000 PASSED [ 82%] 2023-08-09T12:02:29.8166560Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_1000_1_8000 PASSED [ 82%] 2023-08-09T12:02:29.8167310Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_1000_2_16000 PASSED [ 82%] 2023-08-09T12:02:29.8168052Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_1000_2_8000 PASSED [ 82%] 2023-08-09T12:02:29.8168783Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_1000_4_16000 PASSED [ 82%] 2023-08-09T12:02:29.8169543Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_1000_4_8000 PASSED [ 83%] 2023-08-09T12:02:29.8170288Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_1000_8_16000 PASSED [ 83%] 2023-08-09T12:02:29.8171031Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_1000_8_8000 PASSED [ 83%] 2023-08-09T12:02:29.8171762Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_100_1_16000 PASSED [ 83%] 2023-08-09T12:02:29.8172504Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_100_1_8000 PASSED [ 83%] 2023-08-09T12:02:29.8173263Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_100_2_16000 PASSED [ 83%] 2023-08-09T12:02:29.8174100Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_100_2_8000 PASSED [ 83%] 2023-08-09T12:02:29.8174845Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_100_4_16000 PASSED [ 83%] 2023-08-09T12:02:29.8175586Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_100_4_8000 PASSED [ 83%] 2023-08-09T12:02:29.8176330Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_100_8_16000 PASSED [ 83%] 2023-08-09T12:02:29.8177074Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_100_8_8000 PASSED [ 83%] 2023-08-09T12:02:29.8177832Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_10_1_16000 PASSED [ 83%] 2023-08-09T12:02:29.8178567Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_10_1_8000 PASSED [ 83%] 2023-08-09T12:02:29.8179307Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_10_2_16000 PASSED [ 83%] 2023-08-09T12:02:29.8180050Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_10_2_8000 PASSED [ 83%] 2023-08-09T12:02:29.8180792Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_10_4_16000 PASSED [ 83%] 2023-08-09T12:02:29.8181616Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_10_4_8000 PASSED [ 83%] 2023-08-09T12:02:29.8182351Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_10_8_16000 PASSED [ 83%] 2023-08-09T12:02:29.8183085Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_10_8_8000 PASSED [ 83%] 2023-08-09T12:02:29.8183827Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_1_1_16000 PASSED [ 83%] 2023-08-09T12:02:29.8184568Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_1_1_8000 PASSED [ 83%] 2023-08-09T12:02:29.8185309Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_1_2_16000 PASSED [ 83%] 2023-08-09T12:02:29.8186061Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_1_2_8000 PASSED [ 83%] 2023-08-09T12:02:29.8186809Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_1_4_16000 PASSED [ 83%] 2023-08-09T12:02:29.8187556Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_1_4_8000 PASSED [ 83%] 2023-08-09T12:02:29.8188289Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_1_8_16000 PASSED [ 83%] 2023-08-09T12:02:29.8189157Z torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_1_8_8000 PASSED [ 83%] 2023-08-09T12:02:29.8190014Z torchaudio_unittest/prototype/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_chroma_filterbank PASSED [ 84%] 2023-08-09T12:02:29.8190874Z torchaudio_unittest/prototype/functional/torchscript_consistency_cuda_test.py::TorchScriptConsistencyCUDAFloat32Test::test_barkscale_fbanks SKIPPED [ 84%] 2023-08-09T12:02:29.8191703Z torchaudio_unittest/prototype/functional/torchscript_consistency_cuda_test.py::TorchScriptConsistencyCUDAFloat32Test::test_extend_pitch PASSED [ 84%] 2023-08-09T12:02:29.8192523Z torchaudio_unittest/prototype/functional/torchscript_consistency_cuda_test.py::TorchScriptConsistencyCUDAFloat32Test::test_freq_ir PASSED [ 84%] 2023-08-09T12:02:29.8193348Z torchaudio_unittest/prototype/functional/torchscript_consistency_cuda_test.py::TorchScriptConsistencyCUDAFloat32Test::test_oscillator_bank PASSED [ 84%] 2023-08-09T12:09:01.6164908Z torchaudio_unittest/prototype/functional/torchscript_consistency_cuda_test.py::TorchScriptConsistencyCUDAFloat32Test::test_sinc_ir PASSED [ 84%] 2023-08-09T12:09:01.6166284Z torchaudio_unittest/prototype/functional/torchscript_consistency_cuda_test.py::TorchScriptConsistencyCUDAFloat64Test::test_barkscale_fbanks SKIPPED [ 84%] 2023-08-09T12:09:01.6167034Z torchaudio_unittest/prototype/functional/torchscript_consistency_cuda_test.py::TorchScriptConsistencyCUDAFloat64Test::test_extend_pitch PASSED [ 84%] 2023-08-09T12:09:01.6167695Z torchaudio_unittest/prototype/functional/torchscript_consistency_cuda_test.py::TorchScriptConsistencyCUDAFloat64Test::test_freq_ir PASSED [ 84%] 2023-08-09T12:09:01.6168414Z torchaudio_unittest/prototype/functional/torchscript_consistency_cuda_test.py::TorchScriptConsistencyCUDAFloat64Test::test_oscillator_bank PASSED [ 84%] 2023-08-09T12:09:01.6169708Z torchaudio_unittest/prototype/functional/torchscript_consistency_cuda_test.py::TorchScriptConsistencyCUDAFloat64Test::test_sinc_ir PASSED [ 84%] 2023-08-09T12:09:01.6170719Z torchaudio_unittest/prototype/hifi_gan/hifi_gan_gpu_test.py::HiFiGANFloat32CPUTest::test_mel_transform PASSED [ 84%] 2023-08-09T12:09:01.6171360Z torchaudio_unittest/prototype/hifi_gan/hifi_gan_gpu_test.py::HiFiGANFloat32CPUTest::test_original_implementation_match PASSED [ 84%] 2023-08-09T12:09:01.6171999Z torchaudio_unittest/prototype/hifi_gan/hifi_gan_gpu_test.py::HiFiGANFloat32CPUTest::test_output_shape_forward PASSED [ 84%] 2023-08-09T12:09:01.6172545Z torchaudio_unittest/prototype/hifi_gan/hifi_gan_gpu_test.py::HiFiGANFloat32CPUTest::test_smoke_0 PASSED [ 84%] 2023-08-09T12:09:01.6173126Z torchaudio_unittest/prototype/hifi_gan/hifi_gan_gpu_test.py::HiFiGANFloat32CPUTest::test_smoke_1 PASSED [ 84%] 2023-08-09T12:09:01.6173707Z torchaudio_unittest/prototype/hifi_gan/hifi_gan_gpu_test.py::HiFiGANFloat32CPUTest::test_smoke_2 PASSED [ 84%] 2023-08-09T12:09:01.6174286Z torchaudio_unittest/prototype/hifi_gan/hifi_gan_gpu_test.py::HiFiGANFloat32CPUTest::test_torchscript_consistency_forward PASSED [ 84%] 2023-08-09T12:09:01.6175041Z torchaudio_unittest/prototype/hifi_gan/hifi_gan_gpu_test.py::HiFiGANFloat64CPUTest::test_mel_transform PASSED [ 84%] 2023-08-09T12:09:01.6175876Z torchaudio_unittest/prototype/hifi_gan/hifi_gan_gpu_test.py::HiFiGANFloat64CPUTest::test_original_implementation_match PASSED [ 84%] 2023-08-09T12:09:01.6176782Z torchaudio_unittest/prototype/hifi_gan/hifi_gan_gpu_test.py::HiFiGANFloat64CPUTest::test_output_shape_forward PASSED [ 84%] 2023-08-09T12:09:01.6177517Z torchaudio_unittest/prototype/hifi_gan/hifi_gan_gpu_test.py::HiFiGANFloat64CPUTest::test_smoke_0 PASSED [ 84%] 2023-08-09T12:09:01.6178166Z torchaudio_unittest/prototype/hifi_gan/hifi_gan_gpu_test.py::HiFiGANFloat64CPUTest::test_smoke_1 PASSED [ 84%] 2023-08-09T12:09:01.6179038Z torchaudio_unittest/prototype/hifi_gan/hifi_gan_gpu_test.py::HiFiGANFloat64CPUTest::test_smoke_2 PASSED [ 84%] 2023-08-09T12:09:01.6179870Z torchaudio_unittest/prototype/hifi_gan/hifi_gan_gpu_test.py::HiFiGANFloat64CPUTest::test_torchscript_consistency_forward PASSED [ 84%] 2023-08-09T12:09:01.6180596Z torchaudio_unittest/prototype/transforms/autograd_cuda_test.py::AutogradCUDATest::test_barkscale PASSED [ 84%] 2023-08-09T12:09:01.6181304Z torchaudio_unittest/prototype/transforms/autograd_cuda_test.py::AutogradCUDATest::test_barkspectrogram PASSED [ 84%] 2023-08-09T12:09:01.6182063Z torchaudio_unittest/prototype/transforms/autograd_cuda_test.py::AutogradCUDATest::test_chroma_scale PASSED [ 85%] 2023-08-09T12:09:01.6182609Z torchaudio_unittest/prototype/transforms/autograd_cuda_test.py::AutogradCUDATest::test_chroma_spectrogram PASSED [ 85%] 2023-08-09T12:09:01.6183180Z torchaudio_unittest/prototype/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_chroma_spectrogram_0 PASSED [ 85%] 2023-08-09T12:09:01.6183894Z torchaudio_unittest/prototype/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_chroma_spectrogram_1 PASSED [ 85%] 2023-08-09T12:09:01.6184467Z torchaudio_unittest/prototype/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_chroma_spectrogram_2 PASSED [ 85%] 2023-08-09T12:09:01.6185046Z torchaudio_unittest/prototype/transforms/transforms_cuda_test.py::TransformsFloat32CUDATest::test_InverseBarkScale PASSED [ 85%] 2023-08-09T12:09:01.6185628Z torchaudio_unittest/prototype/transforms/transforms_cuda_test.py::TransformsFloat64CUDATest::test_InverseBarkScale PASSED [ 85%] 2023-08-09T12:09:01.6186163Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_add_noise_False PASSED [ 85%] 2023-08-09T12:09:01.6186758Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_add_noise_True PASSED [ 85%] 2023-08-09T12:09:01.6187266Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_amplitude_to_db PASSED [ 85%] 2023-08-09T12:09:01.6187772Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_compute_deltas PASSED [ 85%] 2023-08-09T12:09:01.6188416Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_convolve_Convolve_full PASSED [ 85%] 2023-08-09T12:09:01.6188952Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_convolve_Convolve_same PASSED [ 85%] 2023-08-09T12:09:01.6189481Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_convolve_Convolve_valid PASSED [ 85%] 2023-08-09T12:09:01.6190018Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_convolve_FFTConvolve_full PASSED [ 85%] 2023-08-09T12:09:01.6190544Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_convolve_FFTConvolve_same PASSED [ 85%] 2023-08-09T12:09:01.6191075Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_convolve_FFTConvolve_valid PASSED [ 85%] 2023-08-09T12:09:01.6191583Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_deemphasis PASSED [ 85%] 2023-08-09T12:09:01.6192086Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_fade_0_linear PASSED [ 85%] 2023-08-09T12:09:01.6192585Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_fade_1_exponential PASSED [ 85%] 2023-08-09T12:09:01.6193092Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_fade_2_logarithmic PASSED [ 85%] 2023-08-09T12:09:01.6193662Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_fade_3_quarter_sine PASSED [ 85%] 2023-08-09T12:09:01.6194170Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_fade_4_half_sine PASSED [ 85%] 2023-08-09T12:09:01.6194675Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_griffinlim_0_99_False PASSED [ 85%] 2023-08-09T12:09:01.6195188Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_griffinlim_0_99_True PASSED [ 85%] 2023-08-09T12:09:01.6195697Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_griffinlim_0_False PASSED [ 85%] 2023-08-09T12:09:01.6196211Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_griffinlim_0_True PASSED [ 85%] 2023-08-09T12:09:01.6196767Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_inverse_spectrogram PASSED [ 86%] 2023-08-09T12:09:01.6197270Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_lfcc_0 PASSED [ 86%] 2023-08-09T12:09:01.6197752Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_lfcc_1 PASSED [ 86%] 2023-08-09T12:09:01.6198239Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_masking_0 PASSED [ 86%] 2023-08-09T12:09:01.6198719Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_masking_1 PASSED [ 86%] 2023-08-09T12:09:01.6199214Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_masking_iid_0 PASSED [ 86%] 2023-08-09T12:09:01.6199711Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_masking_iid_1 PASSED [ 86%] 2023-08-09T12:09:01.6200245Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_melscale PASSED [ 86%] 2023-08-09T12:09:01.6200751Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_melspectrogram PASSED [ 86%] 2023-08-09T12:09:01.6201249Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_mfcc_0 PASSED [ 86%] 2023-08-09T12:09:01.6201732Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_mfcc_1 PASSED [ 86%] 2023-08-09T12:09:01.6202231Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_mvdr_0_ref_channel PASSED [ 86%] 2023-08-09T12:17:15.0001342Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_preemphasis PASSED [ 86%] 2023-08-09T12:17:15.0002066Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_psd PASSED [ 86%] 2023-08-09T12:17:15.0002782Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_psd_with_mask_0 PASSED [ 86%] 2023-08-09T12:17:15.0003654Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_psd_with_mask_1 PASSED [ 86%] 2023-08-09T12:17:15.0092648Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_resample_0 PASSED [ 86%] 2023-08-09T12:17:15.0093321Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_resample_1 PASSED [ 86%] 2023-08-09T12:17:15.0093967Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_resample_2 PASSED [ 86%] 2023-08-09T12:17:15.0094584Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_rtf_mvdr PASSED [ 86%] 2023-08-09T12:17:15.0095232Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_sliding_window_cmn_0 PASSED [ 86%] 2023-08-09T12:17:15.0096122Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_sliding_window_cmn_1 PASSED [ 86%] 2023-08-09T12:17:15.0096774Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_sliding_window_cmn_2 PASSED [ 86%] 2023-08-09T12:17:15.0097432Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_sliding_window_cmn_3 PASSED [ 86%] 2023-08-09T12:17:15.0098055Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_souden_mvdr PASSED [ 86%] 2023-08-09T12:17:15.0098683Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectral_centroid PASSED [ 86%] 2023-08-09T12:17:15.0099317Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_00 PASSED [ 86%] 2023-08-09T12:17:15.0099957Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_01 PASSED [ 87%] 2023-08-09T12:17:15.0100594Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_02 PASSED [ 87%] 2023-08-09T12:17:15.0101206Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_03 PASSED [ 87%] 2023-08-09T12:17:15.0264753Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_04 PASSED [ 87%] 2023-08-09T12:17:15.0265664Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_05 PASSED [ 87%] 2023-08-09T12:17:15.0266368Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_06 PASSED [ 87%] 2023-08-09T12:17:15.0267045Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_07 PASSED [ 87%] 2023-08-09T12:17:15.0267949Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_08 PASSED [ 87%] 2023-08-09T12:17:15.0268610Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_09 PASSED [ 87%] 2023-08-09T12:17:15.0269361Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_10 PASSED [ 87%] 2023-08-09T12:17:15.0270025Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_11 PASSED [ 87%] 2023-08-09T12:17:15.0270748Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_12 PASSED [ 87%] 2023-08-09T12:17:15.0271410Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_13 PASSED [ 87%] 2023-08-09T12:17:15.0272056Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_14 PASSED [ 87%] 2023-08-09T12:17:15.0272718Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_15 PASSED [ 87%] 2023-08-09T12:17:15.0273342Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_speed PASSED [ 87%] 2023-08-09T12:17:15.0274009Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_speed_perturbation PASSED [ 87%] 2023-08-09T12:17:15.0274720Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_time_masking_p PASSED [ 87%] 2023-08-09T12:17:15.0275449Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_timestretch_non_zero_0_7 PASSED [ 87%] 2023-08-09T12:17:15.0276162Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_timestretch_non_zero_0_8 PASSED [ 87%] 2023-08-09T12:17:15.0276896Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_timestretch_non_zero_0_9 PASSED [ 87%] 2023-08-09T12:17:15.0277760Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_timestretch_non_zero_1_0 PASSED [ 87%] 2023-08-09T12:17:15.0278495Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_timestretch_non_zero_1_3 PASSED [ 87%] 2023-08-09T12:17:15.0279223Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_timestretch_zeros_fail XFAIL [ 87%] 2023-08-09T12:17:15.0279902Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_vol_0 PASSED [ 87%] 2023-08-09T12:17:15.0280581Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_vol_1 PASSED [ 87%] 2023-08-09T12:17:15.0281241Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_vol_2 PASSED [ 87%] 2023-08-09T12:17:15.0281947Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradRNNTCUDATest::test_rnnt_loss_0 PASSED [ 88%] 2023-08-09T12:17:15.0282647Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradRNNTCUDATest::test_rnnt_loss_1 PASSED [ 88%] 2023-08-09T12:17:15.0283521Z torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradRNNTCUDATest::test_rnnt_loss_2 PASSED [ 88%] 2023-08-09T12:17:15.0284280Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_MelSpectrogram_00 PASSED [ 88%] 2023-08-09T12:17:15.0285052Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_MelSpectrogram_01 PASSED [ 88%] 2023-08-09T12:17:15.0285796Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_MelSpectrogram_02 PASSED [ 88%] 2023-08-09T12:17:15.0286655Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_MelSpectrogram_03 PASSED [ 88%] 2023-08-09T12:17:15.0287398Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_MelSpectrogram_04 PASSED [ 88%] 2023-08-09T12:17:15.0288153Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_MelSpectrogram_05 PASSED [ 88%] 2023-08-09T12:17:15.0288896Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_MelSpectrogram_06 PASSED [ 88%] 2023-08-09T12:17:15.0289640Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_MelSpectrogram_07 PASSED [ 88%] 2023-08-09T12:17:15.0290406Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_MelSpectrogram_08 PASSED [ 88%] 2023-08-09T12:17:15.0291158Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_MelSpectrogram_09 PASSED [ 88%] 2023-08-09T12:17:15.0291917Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_MelSpectrogram_10 PASSED [ 88%] 2023-08-09T12:17:15.0292656Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_MelSpectrogram_11 PASSED [ 88%] 2023-08-09T12:17:15.0293394Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_Spectrogram_0 PASSED [ 88%] 2023-08-09T12:17:15.0294135Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_Spectrogram_1 PASSED [ 88%] 2023-08-09T12:17:15.0294876Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_Spectrogram_2 PASSED [ 88%] 2023-08-09T12:17:15.0295608Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_Spectrogram_3 PASSED [ 88%] 2023-08-09T12:17:15.0296459Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_Spectrogram_complex PASSED [ 88%] 2023-08-09T12:17:15.0297222Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_magnitude_to_db PASSED [ 88%] 2023-08-09T12:17:15.0297948Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_mfcc_0 PASSED [ 88%] 2023-08-09T12:17:18.5772571Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_mfcc_1 PASSED [ 88%] 2023-08-09T12:17:18.5773312Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_mfcc_2 PASSED [ 88%] 2023-08-09T12:17:18.5774028Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_power_to_db PASSED [ 88%] 2023-08-09T12:17:18.5774766Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_spectral_centroid_0 PASSED [ 88%] 2023-08-09T12:17:18.5775456Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_spectral_centroid_1 PASSED [ 88%] 2023-08-09T12:17:18.5776094Z torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_spectral_centroid_2 PASSED [ 89%] 2023-08-09T12:17:18.5776658Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_AmplitudeToDB PASSED [ 89%] 2023-08-09T12:17:18.5777284Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_ComputeDelta PASSED [ 89%] 2023-08-09T12:17:18.5777909Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_Fade PASSED [ 89%] 2023-08-09T12:17:18.5778842Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_FrequencyMasking PASSED [ 89%] 2023-08-09T12:17:18.5779449Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_GriffinLim PASSED [ 89%] 2023-08-09T12:17:18.5780044Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_InverseSpectrogram PASSED [ 89%] 2023-08-09T12:17:18.5780720Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_LFCC PASSED [ 89%] 2023-08-09T12:17:18.5781443Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_MFCC PASSED [ 89%] 2023-08-09T12:17:18.5782149Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_MVDR_0_ref_channel PASSED [ 89%] 2023-08-09T12:17:18.5782855Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_MVDR_1_stv_evd PASSED [ 89%] 2023-08-09T12:17:18.5783548Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_MVDR_2_stv_power PASSED [ 89%] 2023-08-09T12:17:18.5784248Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_MVDR_3_ref_channel PASSED [ 89%] 2023-08-09T12:17:18.5784947Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_MVDR_4_stv_evd PASSED [ 89%] 2023-08-09T12:17:18.5785680Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_MVDR_5_stv_power PASSED [ 89%] 2023-08-09T12:17:18.5786364Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_MelScale PASSED [ 89%] 2023-08-09T12:17:18.5787226Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_MelSpectrogram PASSED [ 89%] 2023-08-09T12:17:18.5787935Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_MuLawDecoding PASSED [ 89%] 2023-08-09T12:17:18.5788633Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_MuLawEncoding PASSED [ 89%] 2023-08-09T12:17:18.5789445Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_PSD PASSED [ 89%] 2023-08-09T12:17:18.5790115Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_PSD_with_mask PASSED [ 89%] 2023-08-09T12:17:18.5790798Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_PitchShift PASSED [ 89%] 2023-08-09T12:17:18.5791493Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_Resample PASSED [ 89%] 2023-08-09T12:17:18.5792186Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_SlidingWindowCmn PASSED [ 89%] 2023-08-09T12:17:18.5792882Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_SpectralCentroid PASSED [ 89%] 2023-08-09T12:17:18.5793581Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_Spectrogram PASSED [ 89%] 2023-08-09T12:17:18.5794301Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_Spectrogram_return_complex PASSED [ 89%] 2023-08-09T12:17:18.5795009Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_TimeMasking PASSED [ 90%] 2023-08-09T12:17:18.5795777Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_TimeStretch PASSED [ 90%] 2023-08-09T12:17:18.5796448Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_Vad PASSED [ 90%] 2023-08-09T12:17:18.5797106Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_Vol PASSED [ 90%] 2023-08-09T12:17:18.5797792Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_add_noise_False PASSED [ 90%] 2023-08-09T12:17:18.5798476Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_add_noise_True PASSED [ 90%] 2023-08-09T12:17:18.5799184Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_convolve_Convolve_full PASSED [ 90%] 2023-08-09T12:17:18.5799922Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_convolve_Convolve_same PASSED [ 90%] 2023-08-09T12:17:18.5800645Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_convolve_Convolve_valid PASSED [ 90%] 2023-08-09T12:17:18.5801366Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_convolve_FFTConvolve_full PASSED [ 90%] 2023-08-09T12:17:18.5802092Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_convolve_FFTConvolve_same PASSED [ 90%] 2023-08-09T12:17:18.5802825Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_convolve_FFTConvolve_valid PASSED [ 90%] 2023-08-09T12:17:18.5803727Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_deemphasis PASSED [ 90%] 2023-08-09T12:17:18.5804524Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_preemphasis PASSED [ 90%] 2023-08-09T12:17:18.5805206Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_rnnt_loss PASSED [ 90%] 2023-08-09T12:17:18.5805879Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_rtf_mvdr PASSED [ 90%] 2023-08-09T12:17:18.5806552Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_souden_mvdr PASSED [ 90%] 2023-08-09T12:17:18.5807233Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_speed_False PASSED [ 90%] 2023-08-09T12:17:18.5807902Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_speed_True PASSED [ 90%] 2023-08-09T12:17:18.5808625Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_speed_perturbation_False PASSED [ 90%] 2023-08-09T12:17:18.5809352Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_speed_perturbation_True PASSED [ 90%] 2023-08-09T12:17:18.5810070Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_AmplitudeToDB PASSED [ 90%] 2023-08-09T12:17:18.5810763Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_ComputeDelta PASSED [ 90%] 2023-08-09T12:17:18.5811488Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_Fade PASSED [ 90%] 2023-08-09T12:17:18.5812176Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_FrequencyMasking PASSED [ 90%] 2023-08-09T12:17:18.5812958Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_GriffinLim PASSED [ 90%] 2023-08-09T12:17:23.0667579Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_InverseSpectrogram PASSED [ 90%] 2023-08-09T12:17:23.0668341Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_LFCC PASSED [ 91%] 2023-08-09T12:17:23.0669127Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_MFCC PASSED [ 91%] 2023-08-09T12:17:23.0669846Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_MVDR_0_ref_channel PASSED [ 91%] 2023-08-09T12:17:23.0670557Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_MVDR_1_stv_evd PASSED [ 91%] 2023-08-09T12:17:23.0671295Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_MVDR_2_stv_power PASSED [ 91%] 2023-08-09T12:17:23.0672001Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_MVDR_3_ref_channel PASSED [ 91%] 2023-08-09T12:17:23.0672698Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_MVDR_4_stv_evd PASSED [ 91%] 2023-08-09T12:17:23.0673398Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_MVDR_5_stv_power PASSED [ 91%] 2023-08-09T12:17:23.0674088Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_MelScale PASSED [ 91%] 2023-08-09T12:17:23.0674786Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_MelSpectrogram PASSED [ 91%] 2023-08-09T12:17:23.0675699Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_MuLawDecoding PASSED [ 91%] 2023-08-09T12:17:23.0676406Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_MuLawEncoding PASSED [ 91%] 2023-08-09T12:17:23.0677080Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_PSD PASSED [ 91%] 2023-08-09T12:17:23.0677768Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_PSD_with_mask PASSED [ 91%] 2023-08-09T12:17:23.0678458Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_PitchShift PASSED [ 91%] 2023-08-09T12:17:23.0679136Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_Resample PASSED [ 91%] 2023-08-09T12:17:23.0679854Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_SlidingWindowCmn PASSED [ 91%] 2023-08-09T12:17:23.0680567Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_SpectralCentroid PASSED [ 91%] 2023-08-09T12:17:23.0681271Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_Spectrogram PASSED [ 91%] 2023-08-09T12:17:23.0681990Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_Spectrogram_return_complex PASSED [ 91%] 2023-08-09T12:17:23.0682904Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_TimeMasking PASSED [ 91%] 2023-08-09T12:17:23.0683914Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_TimeStretch PASSED [ 91%] 2023-08-09T12:17:23.0684601Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_Vad PASSED [ 91%] 2023-08-09T12:17:23.0685259Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_Vol PASSED [ 91%] 2023-08-09T12:17:23.0685949Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_add_noise_False PASSED [ 91%] 2023-08-09T12:17:23.0686662Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_add_noise_True PASSED [ 91%] 2023-08-09T12:17:23.0687372Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_convolve_Convolve_full PASSED [ 91%] 2023-08-09T12:17:23.0688100Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_convolve_Convolve_same PASSED [ 92%] 2023-08-09T12:17:23.0688837Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_convolve_Convolve_valid PASSED [ 92%] 2023-08-09T12:17:23.0689574Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_convolve_FFTConvolve_full PASSED [ 92%] 2023-08-09T12:17:23.0690312Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_convolve_FFTConvolve_same PASSED [ 92%] 2023-08-09T12:17:23.0691045Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_convolve_FFTConvolve_valid PASSED [ 92%] 2023-08-09T12:17:23.0691744Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_deemphasis PASSED [ 92%] 2023-08-09T12:17:23.0692546Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_preemphasis PASSED [ 92%] 2023-08-09T12:17:23.0693238Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_rtf_mvdr PASSED [ 92%] 2023-08-09T12:17:23.0693921Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_souden_mvdr PASSED [ 92%] 2023-08-09T12:17:23.0694602Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_speed_False PASSED [ 92%] 2023-08-09T12:17:23.0695287Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_speed_True PASSED [ 92%] 2023-08-09T12:17:23.0696001Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_speed_perturbation_False PASSED [ 92%] 2023-08-09T12:17:23.0696746Z torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_speed_perturbation_True PASSED [ 92%] 2023-08-09T12:17:23.0697449Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_add_noise_broadcast PASSED [ 92%] 2023-08-09T12:17:23.0698156Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_add_noise_leading_dim_check_0 PASSED [ 92%] 2023-08-09T12:17:23.0698871Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_add_noise_leading_dim_check_1 PASSED [ 92%] 2023-08-09T12:17:23.0699580Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_add_noise_leading_dim_check_2 PASSED [ 92%] 2023-08-09T12:17:23.0700270Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_add_noise_length_check PASSED [ 92%] 2023-08-09T12:17:23.0701090Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve_10_4_100_43_full PASSED [ 92%] 2023-08-09T12:17:23.0701775Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve_10_4_100_43_same PASSED [ 92%] 2023-08-09T12:17:23.0702467Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve_10_4_100_43_valid PASSED [ 92%] 2023-08-09T12:17:23.0703161Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve_10_4_21_45_full PASSED [ 92%] 2023-08-09T12:17:23.0703834Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve_10_4_21_45_same PASSED [ 92%] 2023-08-09T12:17:23.0704520Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve_10_4_21_45_valid PASSED [ 92%] 2023-08-09T12:17:23.0705222Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve_2_100_43_full PASSED [ 92%] 2023-08-09T12:17:23.0705901Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve_2_100_43_same PASSED [ 92%] 2023-08-09T12:17:23.0706581Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve_2_100_43_valid PASSED [ 92%] 2023-08-09T12:17:23.0707262Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve_2_21_45_full PASSED [ 93%] 2023-08-09T12:17:23.0707945Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve_2_21_45_same PASSED [ 93%] 2023-08-09T12:17:23.3578876Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve_2_21_45_valid PASSED [ 93%] 2023-08-09T12:17:23.3579982Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve_4_3_1_2_100_43_full PASSED [ 93%] 2023-08-09T12:17:23.3580702Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve_4_3_1_2_100_43_same PASSED [ 93%] 2023-08-09T12:17:23.3581437Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve_4_3_1_2_100_43_valid PASSED [ 93%] 2023-08-09T12:17:23.3582142Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve_4_3_1_2_21_45_full PASSED [ 93%] 2023-08-09T12:17:23.3582839Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve_4_3_1_2_21_45_same PASSED [ 93%] 2023-08-09T12:17:23.3583540Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve_4_3_1_2_21_45_valid PASSED [ 93%] 2023-08-09T12:17:23.3584252Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve__100_43_full PASSED [ 93%] 2023-08-09T12:17:23.3584949Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve__100_43_same PASSED [ 93%] 2023-08-09T12:17:23.3585637Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve__100_43_valid PASSED [ 93%] 2023-08-09T12:17:23.3586319Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve__21_45_full PASSED [ 93%] 2023-08-09T12:17:23.3587008Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve__21_45_same PASSED [ 93%] 2023-08-09T12:17:23.3587813Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_convolve__21_45_valid PASSED [ 93%] 2023-08-09T12:17:23.3588517Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_deemphasis_2_1_31_0_72 PASSED [ 93%] 2023-08-09T12:17:23.3589329Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_deemphasis_2_1_31_0_97 PASSED [ 93%] 2023-08-09T12:17:23.3590032Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve_10_4_100_43_full PASSED [ 93%] 2023-08-09T12:17:23.3590742Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve_10_4_100_43_same PASSED [ 93%] 2023-08-09T12:17:23.3591446Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve_10_4_100_43_valid PASSED [ 93%] 2023-08-09T12:17:23.3592147Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve_10_4_21_45_full PASSED [ 93%] 2023-08-09T12:17:23.3592851Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve_10_4_21_45_same PASSED [ 93%] 2023-08-09T12:17:23.3593556Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve_10_4_21_45_valid PASSED [ 93%] 2023-08-09T12:17:23.3594254Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve_2_100_43_full PASSED [ 93%] 2023-08-09T12:17:23.3594943Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve_2_100_43_same PASSED [ 93%] 2023-08-09T12:17:23.3595634Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve_2_100_43_valid PASSED [ 93%] 2023-08-09T12:17:23.3596409Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve_2_21_45_full PASSED [ 93%] 2023-08-09T12:17:23.3597365Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve_2_21_45_same PASSED [ 94%] 2023-08-09T12:17:23.3598060Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve_2_21_45_valid PASSED [ 94%] 2023-08-09T12:17:23.3598757Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve_4_3_1_2_100_43_full PASSED [ 94%] 2023-08-09T12:17:23.3599464Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve_4_3_1_2_100_43_same PASSED [ 94%] 2023-08-09T12:17:23.3600170Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve_4_3_1_2_100_43_valid PASSED [ 94%] 2023-08-09T12:17:23.3600893Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve_4_3_1_2_21_45_full PASSED [ 94%] 2023-08-09T12:17:23.3601588Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve_4_3_1_2_21_45_same PASSED [ 94%] 2023-08-09T12:17:23.3602497Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve_4_3_1_2_21_45_valid PASSED [ 94%] 2023-08-09T12:17:23.3603674Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve__100_43_full PASSED [ 94%] 2023-08-09T12:17:23.3604407Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve__100_43_same PASSED [ 94%] 2023-08-09T12:17:23.3605097Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve__100_43_valid PASSED [ 94%] 2023-08-09T12:17:23.3605960Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve__21_45_full PASSED [ 94%] 2023-08-09T12:17:23.3606648Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve__21_45_same PASSED [ 94%] 2023-08-09T12:17:23.3607339Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_fftconvolve__21_45_valid PASSED [ 94%] 2023-08-09T12:17:23.3608027Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_freq_masking_100_200 PASSED [ 94%] 2023-08-09T12:17:23.3608710Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_freq_masking_50_50_100_200 PASSED [ 94%] 2023-08-09T12:17:23.3609387Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_freq_masking_5_10_20 PASSED [ 94%] 2023-08-09T12:17:23.3610079Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_inverse_melscale PASSED [ 94%] 2023-08-09T12:17:23.3610742Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_mvdr_0 PASSED [ 94%] 2023-08-09T12:17:23.3611378Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_mvdr_1 PASSED [ 94%] 2023-08-09T12:17:23.3612064Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_pitch_shift_resample_kernel PASSED [ 94%] 2023-08-09T12:17:23.3612767Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_preemphasis_2_1_31_0_72 PASSED [ 94%] 2023-08-09T12:17:23.3613452Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_preemphasis_2_1_31_0_97 PASSED [ 94%] 2023-08-09T12:17:23.3614191Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_psd_0 PASSED [ 94%] 2023-08-09T12:17:23.3614844Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_psd_1 PASSED [ 94%] 2023-08-09T12:17:23.3615489Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_psd_2 PASSED [ 94%] 2023-08-09T12:17:23.3616133Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_psd_3 PASSED [ 94%] 2023-08-09T12:17:23.3616842Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_resample_cache_dtype_sinc_interp_hann_None PASSED [ 95%] 2023-08-09T12:17:23.3617628Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_resample_cache_dtype_sinc_interp_hann_torch_float64 PASSED [ 95%] 2023-08-09T12:17:23.3618416Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_resample_cache_dtype_sinc_interp_kaiser_None PASSED [ 95%] 2023-08-09T12:17:23.3619438Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_resample_cache_dtype_sinc_interp_kaiser_torch_float64 PASSED [ 95%] 2023-08-09T12:17:23.3620209Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_resample_identity_sinc_interp_hann_16000 PASSED [ 95%] 2023-08-09T12:17:23.6115548Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_resample_identity_sinc_interp_hann_44100 PASSED [ 95%] 2023-08-09T12:17:23.6116400Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_resample_identity_sinc_interp_kaiser_16000 PASSED [ 95%] 2023-08-09T12:17:23.6117549Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_resample_identity_sinc_interp_kaiser_44100 PASSED [ 95%] 2023-08-09T12:17:23.6118287Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_roundtrip_spectrogram_0 PASSED [ 95%] 2023-08-09T12:17:23.6118984Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_roundtrip_spectrogram_1 PASSED [ 95%] 2023-08-09T12:17:23.6119692Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_roundtrip_spectrogram_2 PASSED [ 95%] 2023-08-09T12:17:23.6120397Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_roundtrip_spectrogram_3 PASSED [ 95%] 2023-08-09T12:17:23.6121104Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_roundtrip_spectrogram_4 PASSED [ 95%] 2023-08-09T12:17:23.6121822Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_roundtrip_spectrogram_5 PASSED [ 95%] 2023-08-09T12:17:23.6122517Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_roundtrip_spectrogram_6 PASSED [ 95%] 2023-08-09T12:17:23.6123209Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_roundtrip_spectrogram_7 PASSED [ 95%] 2023-08-09T12:17:23.6124112Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_roundtrip_spectrogram_8 PASSED [ 95%] 2023-08-09T12:17:23.6124802Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_specaugment_0 PASSED [ 95%] 2023-08-09T12:17:23.6125472Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_specaugment_1 PASSED [ 95%] 2023-08-09T12:17:23.6126280Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_specaugment_2 PASSED [ 95%] 2023-08-09T12:17:23.6127000Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_specaugment_3 PASSED [ 95%] 2023-08-09T12:17:23.6127661Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_specaugment_4 PASSED [ 95%] 2023-08-09T12:17:23.6128313Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_specaugment_5 PASSED [ 95%] 2023-08-09T12:17:23.6129001Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_speed_accuracy_0_8_False PASSED [ 95%] 2023-08-09T12:17:23.6129702Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_speed_accuracy_0_8_True PASSED [ 95%] 2023-08-09T12:17:23.6130411Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_speed_accuracy_1_1_False PASSED [ 95%] 2023-08-09T12:17:23.6131112Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_speed_accuracy_1_1_True PASSED [ 95%] 2023-08-09T12:17:23.6131799Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_speed_accuracy_1_2_False PASSED [ 96%] 2023-08-09T12:17:23.6132492Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_speed_accuracy_1_2_True PASSED [ 96%] 2023-08-09T12:17:23.6133172Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_speed_identity PASSED [ 96%] 2023-08-09T12:17:23.6133858Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_speed_perturbation PASSED [ 96%] 2023-08-09T12:17:23.6134660Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_time_masking_100_200 PASSED [ 96%] 2023-08-09T12:17:23.6135356Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_time_masking_50_50_100_200 PASSED [ 96%] 2023-08-09T12:17:23.6150519Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_time_masking_5_10_20 PASSED [ 96%] 2023-08-09T12:17:23.6151287Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_add_noise_broadcast PASSED [ 96%] 2023-08-09T12:17:23.6152012Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_add_noise_leading_dim_check_0 PASSED [ 96%] 2023-08-09T12:17:23.6152716Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_add_noise_leading_dim_check_1 PASSED [ 96%] 2023-08-09T12:17:23.6153453Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_add_noise_leading_dim_check_2 PASSED [ 96%] 2023-08-09T12:17:23.6154157Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_add_noise_length_check PASSED [ 96%] 2023-08-09T12:17:23.6154857Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve_10_4_100_43_full PASSED [ 96%] 2023-08-09T12:17:23.6155539Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve_10_4_100_43_same PASSED [ 96%] 2023-08-09T12:17:23.6156236Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve_10_4_100_43_valid PASSED [ 96%] 2023-08-09T12:17:23.6156935Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve_10_4_21_45_full PASSED [ 96%] 2023-08-09T12:17:23.6157731Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve_10_4_21_45_same PASSED [ 96%] 2023-08-09T12:17:23.6158419Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve_10_4_21_45_valid PASSED [ 96%] 2023-08-09T12:17:23.6159110Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve_2_100_43_full PASSED [ 96%] 2023-08-09T12:17:23.6159795Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve_2_100_43_same PASSED [ 96%] 2023-08-09T12:17:23.6160486Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve_2_100_43_valid PASSED [ 96%] 2023-08-09T12:17:23.6161166Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve_2_21_45_full PASSED [ 96%] 2023-08-09T12:17:23.6161866Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve_2_21_45_same PASSED [ 96%] 2023-08-09T12:17:23.6162597Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve_2_21_45_valid PASSED [ 96%] 2023-08-09T12:17:23.6163568Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve_4_3_1_2_100_43_full PASSED [ 96%] 2023-08-09T12:17:23.6164281Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve_4_3_1_2_100_43_same PASSED [ 96%] 2023-08-09T12:17:23.6164971Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve_4_3_1_2_100_43_valid PASSED [ 96%] 2023-08-09T12:17:23.6165669Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve_4_3_1_2_21_45_full PASSED [ 97%] 2023-08-09T12:17:23.6166510Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve_4_3_1_2_21_45_same PASSED [ 97%] 2023-08-09T12:17:23.6167213Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve_4_3_1_2_21_45_valid PASSED [ 97%] 2023-08-09T12:17:23.6167894Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve__100_43_full PASSED [ 97%] 2023-08-09T12:17:23.6168584Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve__100_43_same PASSED [ 97%] 2023-08-09T12:17:23.6169274Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve__100_43_valid PASSED [ 97%] 2023-08-09T12:17:23.6169964Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve__21_45_full PASSED [ 97%] 2023-08-09T12:17:23.6170649Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve__21_45_same PASSED [ 97%] 2023-08-09T12:17:23.9774228Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_convolve__21_45_valid PASSED [ 97%] 2023-08-09T12:17:23.9775015Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_deemphasis_2_1_31_0_72 PASSED [ 97%] 2023-08-09T12:17:23.9775718Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_deemphasis_2_1_31_0_97 PASSED [ 97%] 2023-08-09T12:17:23.9776444Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve_10_4_100_43_full PASSED [ 97%] 2023-08-09T12:17:23.9777183Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve_10_4_100_43_same PASSED [ 97%] 2023-08-09T12:17:23.9778193Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve_10_4_100_43_valid PASSED [ 97%] 2023-08-09T12:17:23.9778923Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve_10_4_21_45_full PASSED [ 97%] 2023-08-09T12:17:23.9779637Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve_10_4_21_45_same PASSED [ 97%] 2023-08-09T12:17:23.9780344Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve_10_4_21_45_valid PASSED [ 97%] 2023-08-09T12:17:23.9781113Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve_2_100_43_full PASSED [ 97%] 2023-08-09T12:17:23.9781837Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve_2_100_43_same PASSED [ 97%] 2023-08-09T12:17:23.9782549Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve_2_100_43_valid PASSED [ 97%] 2023-08-09T12:17:23.9783309Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve_2_21_45_full PASSED [ 97%] 2023-08-09T12:17:23.9783996Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve_2_21_45_same PASSED [ 97%] 2023-08-09T12:17:23.9784699Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve_2_21_45_valid PASSED [ 97%] 2023-08-09T12:17:23.9785415Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve_4_3_1_2_100_43_full PASSED [ 97%] 2023-08-09T12:17:23.9786263Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve_4_3_1_2_100_43_same PASSED [ 97%] 2023-08-09T12:17:23.9786979Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve_4_3_1_2_100_43_valid PASSED [ 97%] 2023-08-09T12:17:23.9787684Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve_4_3_1_2_21_45_full PASSED [ 97%] 2023-08-09T12:17:23.9788390Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve_4_3_1_2_21_45_same PASSED [ 98%] 2023-08-09T12:17:23.9789316Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve_4_3_1_2_21_45_valid PASSED [ 98%] 2023-08-09T12:17:23.9790018Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve__100_43_full PASSED [ 98%] 2023-08-09T12:17:23.9790720Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve__100_43_same PASSED [ 98%] 2023-08-09T12:17:23.9791412Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve__100_43_valid PASSED [ 98%] 2023-08-09T12:17:23.9792106Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve__21_45_full PASSED [ 98%] 2023-08-09T12:17:23.9792794Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve__21_45_same PASSED [ 98%] 2023-08-09T12:17:23.9793480Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_fftconvolve__21_45_valid PASSED [ 98%] 2023-08-09T12:17:23.9794179Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_freq_masking_100_200 PASSED [ 98%] 2023-08-09T12:17:23.9794958Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_freq_masking_50_50_100_200 PASSED [ 98%] 2023-08-09T12:17:23.9795650Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_freq_masking_5_10_20 PASSED [ 98%] 2023-08-09T12:17:23.9796326Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_inverse_melscale PASSED [ 98%] 2023-08-09T12:17:23.9796991Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_mvdr_0 PASSED [ 98%] 2023-08-09T12:17:23.9797637Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_mvdr_1 PASSED [ 98%] 2023-08-09T12:17:23.9798334Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_pitch_shift_resample_kernel PASSED [ 98%] 2023-08-09T12:17:23.9799049Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_preemphasis_2_1_31_0_72 PASSED [ 98%] 2023-08-09T12:17:23.9799738Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_preemphasis_2_1_31_0_97 PASSED [ 98%] 2023-08-09T12:17:23.9800392Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_psd_0 PASSED [ 98%] 2023-08-09T12:17:23.9801039Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_psd_1 PASSED [ 98%] 2023-08-09T12:17:23.9801683Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_psd_2 PASSED [ 98%] 2023-08-09T12:17:23.9802328Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_psd_3 PASSED [ 98%] 2023-08-09T12:17:23.9803169Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_resample_cache_dtype_sinc_interp_hann_None PASSED [ 98%] 2023-08-09T12:17:23.9804203Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_resample_cache_dtype_sinc_interp_hann_torch_float64 PASSED [ 98%] 2023-08-09T12:17:23.9804975Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_resample_cache_dtype_sinc_interp_kaiser_None PASSED [ 98%] 2023-08-09T12:17:23.9805767Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_resample_cache_dtype_sinc_interp_kaiser_torch_float64 PASSED [ 98%] 2023-08-09T12:17:23.9806540Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_resample_identity_sinc_interp_hann_16000 PASSED [ 98%] 2023-08-09T12:17:23.9807304Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_resample_identity_sinc_interp_hann_44100 PASSED [ 98%] 2023-08-09T12:17:23.9808061Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_resample_identity_sinc_interp_kaiser_16000 PASSED [ 99%] 2023-08-09T12:17:23.9808810Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_resample_identity_sinc_interp_kaiser_44100 PASSED [ 99%] 2023-08-09T12:17:23.9809539Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_roundtrip_spectrogram_0 PASSED [ 99%] 2023-08-09T12:17:23.9810243Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_roundtrip_spectrogram_1 PASSED [ 99%] 2023-08-09T12:17:23.9810945Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_roundtrip_spectrogram_2 PASSED [ 99%] 2023-08-09T12:17:23.9811749Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_roundtrip_spectrogram_3 PASSED [ 99%] 2023-08-09T12:17:23.9812460Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_roundtrip_spectrogram_4 PASSED [ 99%] 2023-08-09T12:17:23.9813153Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_roundtrip_spectrogram_5 PASSED [ 99%] 2023-08-09T12:17:23.9813849Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_roundtrip_spectrogram_6 PASSED [ 99%] 2023-08-09T12:17:23.9814545Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_roundtrip_spectrogram_7 PASSED [ 99%] 2023-08-09T12:17:24.9827777Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_roundtrip_spectrogram_8 PASSED [ 99%] 2023-08-09T12:17:24.9828786Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_specaugment_0 PASSED [ 99%] 2023-08-09T12:17:24.9829535Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_specaugment_1 PASSED [ 99%] 2023-08-09T12:17:24.9831346Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_specaugment_2 PASSED [ 99%] 2023-08-09T12:17:24.9832076Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_specaugment_3 PASSED [ 99%] 2023-08-09T12:17:24.9832612Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_specaugment_4 PASSED [ 99%] 2023-08-09T12:17:24.9833139Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_specaugment_5 PASSED [ 99%] 2023-08-09T12:17:24.9833855Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_speed_accuracy_0_8_False PASSED [ 99%] 2023-08-09T12:17:24.9834412Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_speed_accuracy_0_8_True PASSED [ 99%] 2023-08-09T12:17:24.9835021Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_speed_accuracy_1_1_False PASSED [ 99%] 2023-08-09T12:17:24.9835786Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_speed_accuracy_1_1_True PASSED [ 99%] 2023-08-09T12:17:24.9836332Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_speed_accuracy_1_2_False PASSED [ 99%] 2023-08-09T12:17:24.9836875Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_speed_accuracy_1_2_True PASSED [ 99%] 2023-08-09T12:17:24.9837627Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_speed_identity PASSED [ 99%] 2023-08-09T12:17:24.9838564Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_speed_perturbation PASSED [ 99%] 2023-08-09T12:17:24.9839319Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_time_masking_100_200 PASSED [ 99%] 2023-08-09T12:17:24.9839931Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_time_masking_50_50_100_200 PASSED [ 99%] 2023-08-09T12:17:24.9840466Z torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_time_masking_5_10_20 PASSED [100%] 2023-08-09T12:17:24.9840703Z 2023-08-09T12:17:24.9840893Z =============================== warnings summary =============================== 2023-08-09T12:17:24.9841265Z ../ci_env/lib/python3.9/site-packages/lightning_utilities/core/imports.py:13 2023-08-09T12:17:24.9842000Z /work/ci_env/lib/python3.9/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:17:24.9842418Z import pkg_resources 2023-08-09T12:17:24.9842549Z 2023-08-09T12:17:24.9842753Z ../ci_env/lib/python3.9/site-packages/pkg_resources/__init__.py:2871 2023-08-09T12:17:24.9843274Z /work/ci_env/lib/python3.9/site-packages/pkg_resources/__init__.py:2871: DeprecationWarning: Deprecated call to `pkg_resources.declare_namespace('mpl_toolkits')`. 2023-08-09T12:17:24.9844285Z 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:17:24.9844720Z declare_namespace(pkg) 2023-08-09T12:17:24.9844860Z 2023-08-09T12:17:24.9845062Z ../ci_env/lib/python3.9/site-packages/pkg_resources/__init__.py:2871 2023-08-09T12:17:24.9845584Z /work/ci_env/lib/python3.9/site-packages/pkg_resources/__init__.py:2871: DeprecationWarning: Deprecated call to `pkg_resources.declare_namespace('google')`. 2023-08-09T12:17:24.9846301Z 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:17:24.9846740Z declare_namespace(pkg) 2023-08-09T12:17:24.9846874Z 2023-08-09T12:17:24.9847074Z ../ci_env/lib/python3.9/site-packages/lightning_fabric/__init__.py:36 2023-08-09T12:17:24.9847684Z /work/ci_env/lib/python3.9/site-packages/lightning_fabric/__init__.py:36: DeprecationWarning: Deprecated call to `pkg_resources.declare_namespace('lightning_fabric')`. 2023-08-09T12:17:24.9848415Z 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:17:24.9848964Z __import__("pkg_resources").declare_namespace(__name__) 2023-08-09T12:17:24.9849132Z 2023-08-09T12:17:24.9849351Z ../ci_env/lib/python3.9/site-packages/torchmetrics/utilities/imports.py:24 2023-08-09T12:17:24.9849752Z ../ci_env/lib/python3.9/site-packages/torchmetrics/utilities/imports.py:24 2023-08-09T12:17:24.9850302Z /work/ci_env/lib/python3.9/site-packages/torchmetrics/utilities/imports.py:24: DeprecationWarning: distutils Version classes are deprecated. Use packaging.version instead. 2023-08-09T12:17:24.9850736Z _PYTHON_LOWER_3_8 = LooseVersion(_PYTHON_VERSION) < LooseVersion("3.8") 2023-08-09T12:17:24.9850922Z 2023-08-09T12:17:24.9851129Z ../ci_env/lib/python3.9/site-packages/pytorch_lightning/__init__.py:36 2023-08-09T12:17:24.9851672Z /work/ci_env/lib/python3.9/site-packages/pytorch_lightning/__init__.py:36: DeprecationWarning: Deprecated call to `pkg_resources.declare_namespace('pytorch_lightning')`. 2023-08-09T12:17:24.9852410Z 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:17:24.9852881Z __import__("pkg_resources").declare_namespace(__name__) 2023-08-09T12:17:24.9853047Z 2023-08-09T12:17:24.9853199Z test/torchaudio_unittest/functional/autograd_cuda_test.py: 55 warnings 2023-08-09T12:17:24.9853526Z test/torchaudio_unittest/functional/functional_cuda_test.py: 746 warnings 2023-08-09T12:17:24.9853873Z test/torchaudio_unittest/functional/librosa_compatibility_cuda_test.py: 35 warnings 2023-08-09T12:17:24.9854226Z test/torchaudio_unittest/functional/torchscript_consistency_cuda_test.py: 155 warnings 2023-08-09T12:17:24.9854560Z test/torchaudio_unittest/io/stream_reader_test.py: 16 warnings 2023-08-09T12:17:24.9854885Z test/torchaudio_unittest/models/conformer/conformer_gpu_test.py: 2 warnings 2023-08-09T12:17:24.9855217Z test/torchaudio_unittest/models/decoder/cuda_ctc_decoder_test.py: 3 warnings 2023-08-09T12:17:24.9855612Z test/torchaudio_unittest/models/emformer/emformer_gpu_test.py: 12 warnings 2023-08-09T12:17:24.9855949Z test/torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py: 32 warnings 2023-08-09T12:17:24.9856269Z test/torchaudio_unittest/models/rnnt/rnnt_gpu_test.py: 20 warnings 2023-08-09T12:17:24.9856594Z test/torchaudio_unittest/models/rnnt_decoder/rnnt_decoder_gpu_test.py: 4 warnings 2023-08-09T12:17:24.9856917Z test/torchaudio_unittest/models/squim/squim_test.py: 4 warnings 2023-08-09T12:17:24.9857239Z test/torchaudio_unittest/models/tacotron2/model_test_gpu_test.py: 20 warnings 2023-08-09T12:17:24.9857554Z test/torchaudio_unittest/models/wav2vec2/model_test.py: 6 warnings 2023-08-09T12:17:24.9857875Z test/torchaudio_unittest/prototype/conv_emformer_gpu_test.py: 12 warnings 2023-08-09T12:17:24.9858204Z test/torchaudio_unittest/prototype/rnnt_gpu_test.py: 16 warnings 2023-08-09T12:17:24.9858514Z test/torchaudio_unittest/prototype/ssl_model_test.py: 4 warnings 2023-08-09T12:17:24.9858845Z test/torchaudio_unittest/prototype/functional/autograd_cuda_test.py: 7 warnings 2023-08-09T12:17:24.9859198Z test/torchaudio_unittest/prototype/functional/functional_cuda_test.py: 484 warnings 2023-08-09T12:17:24.9859566Z test/torchaudio_unittest/prototype/functional/librosa_compatibility_cuda_test.py: 1 warning 2023-08-09T12:17:24.9859941Z test/torchaudio_unittest/prototype/functional/torchscript_consistency_cuda_test.py: 10 warnings 2023-08-09T12:17:24.9860300Z test/torchaudio_unittest/prototype/hifi_gan/hifi_gan_gpu_test.py: 14 warnings 2023-08-09T12:17:24.9860638Z test/torchaudio_unittest/prototype/transforms/autograd_cuda_test.py: 4 warnings 2023-08-09T12:17:24.9861003Z test/torchaudio_unittest/prototype/transforms/librosa_compatibility_cuda_test.py: 3 warnings 2023-08-09T12:17:24.9861359Z test/torchaudio_unittest/prototype/transforms/transforms_cuda_test.py: 2 warnings 2023-08-09T12:17:24.9861750Z test/torchaudio_unittest/transforms/autograd_cuda_test.py: 77 warnings 2023-08-09T12:17:24.9862098Z test/torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py: 25 warnings 2023-08-09T12:17:24.9862447Z test/torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py: 93 warnings 2023-08-09T12:17:24.9862816Z test/torchaudio_unittest/transforms/transforms_cuda_test.py: 204 warnings 2023-08-09T12:17:24.9863344Z /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:17:24.9863849Z warnings.warn("list_audio_backend's return value is irrelevant when the I/O backend dispatcher is enabled.") 2023-08-09T12:17:24.9864064Z 2023-08-09T12:17:24.9864216Z test/torchaudio_unittest/functional/autograd_cuda_test.py: 55 warnings 2023-08-09T12:17:24.9864541Z test/torchaudio_unittest/functional/functional_cuda_test.py: 746 warnings 2023-08-09T12:17:24.9864888Z test/torchaudio_unittest/functional/librosa_compatibility_cuda_test.py: 35 warnings 2023-08-09T12:17:24.9865241Z test/torchaudio_unittest/functional/torchscript_consistency_cuda_test.py: 155 warnings 2023-08-09T12:17:24.9865574Z test/torchaudio_unittest/io/stream_reader_test.py: 16 warnings 2023-08-09T12:17:24.9865890Z test/torchaudio_unittest/models/conformer/conformer_gpu_test.py: 2 warnings 2023-08-09T12:17:24.9866227Z test/torchaudio_unittest/models/decoder/cuda_ctc_decoder_test.py: 3 warnings 2023-08-09T12:17:24.9866553Z test/torchaudio_unittest/models/emformer/emformer_gpu_test.py: 12 warnings 2023-08-09T12:17:24.9866881Z test/torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py: 32 warnings 2023-08-09T12:17:24.9867200Z test/torchaudio_unittest/models/rnnt/rnnt_gpu_test.py: 20 warnings 2023-08-09T12:17:24.9867523Z test/torchaudio_unittest/models/rnnt_decoder/rnnt_decoder_gpu_test.py: 4 warnings 2023-08-09T12:17:24.9867850Z test/torchaudio_unittest/models/squim/squim_test.py: 4 warnings 2023-08-09T12:17:24.9868178Z test/torchaudio_unittest/models/tacotron2/model_test_gpu_test.py: 20 warnings 2023-08-09T12:17:24.9868571Z test/torchaudio_unittest/models/wav2vec2/model_test.py: 6 warnings 2023-08-09T12:17:24.9868995Z test/torchaudio_unittest/prototype/conv_emformer_gpu_test.py: 12 warnings 2023-08-09T12:17:24.9869317Z test/torchaudio_unittest/prototype/rnnt_gpu_test.py: 16 warnings 2023-08-09T12:17:24.9869624Z test/torchaudio_unittest/prototype/ssl_model_test.py: 4 warnings 2023-08-09T12:17:24.9869945Z test/torchaudio_unittest/prototype/functional/autograd_cuda_test.py: 7 warnings 2023-08-09T12:17:24.9870292Z test/torchaudio_unittest/prototype/functional/functional_cuda_test.py: 484 warnings 2023-08-09T12:17:24.9870656Z test/torchaudio_unittest/prototype/functional/librosa_compatibility_cuda_test.py: 1 warning 2023-08-09T12:17:24.9871033Z test/torchaudio_unittest/prototype/functional/torchscript_consistency_cuda_test.py: 10 warnings 2023-08-09T12:17:24.9871387Z test/torchaudio_unittest/prototype/hifi_gan/hifi_gan_gpu_test.py: 14 warnings 2023-08-09T12:17:24.9871725Z test/torchaudio_unittest/prototype/transforms/autograd_cuda_test.py: 4 warnings 2023-08-09T12:17:24.9872092Z test/torchaudio_unittest/prototype/transforms/librosa_compatibility_cuda_test.py: 3 warnings 2023-08-09T12:17:24.9872445Z test/torchaudio_unittest/prototype/transforms/transforms_cuda_test.py: 2 warnings 2023-08-09T12:17:24.9872779Z test/torchaudio_unittest/transforms/autograd_cuda_test.py: 77 warnings 2023-08-09T12:17:24.9873117Z test/torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py: 25 warnings 2023-08-09T12:17:24.9873470Z test/torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py: 93 warnings 2023-08-09T12:17:24.9873802Z test/torchaudio_unittest/transforms/transforms_cuda_test.py: 204 warnings 2023-08-09T12:17:24.9874269Z /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:17:24.9874782Z warnings.warn("set_audio_backend is a no-op when the I/O backend dispatcher is enabled.") 2023-08-09T12:17:24.9874980Z 2023-08-09T12:17:24.9875175Z test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradRNNTCUDA::test_rnnt_loss_0 2023-08-09T12:17:24.9875572Z test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradRNNTCUDA::test_rnnt_loss_1 2023-08-09T12:17:24.9875960Z test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradRNNTCUDA::test_rnnt_loss_2 2023-08-09T12:17:24.9876347Z test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradRNNTCUDATest::test_rnnt_loss_0 2023-08-09T12:17:24.9876729Z test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradRNNTCUDATest::test_rnnt_loss_1 2023-08-09T12:17:24.9877109Z test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradRNNTCUDATest::test_rnnt_loss_2 2023-08-09T12:17:24.9877814Z /work/ci_env/lib/python3.9/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:17:24.9878274Z warnings.warn( 2023-08-09T12:17:24.9878397Z 2023-08-09T12:17:24.9878566Z test/torchaudio_unittest/functional/librosa_compatibility_cuda_test.py: 28 warnings 2023-08-09T12:17:24.9879019Z /work/test/torchaudio_unittest/functional/librosa_compatibility_test_impl.py:80: DeprecationWarning: distutils Version classes are deprecated. Use packaging.version instead. 2023-08-09T12:17:24.9879459Z if norm == "slaney" and StrictVersion(librosa.__version__) < StrictVersion("0.7.2"): 2023-08-09T12:17:24.9879648Z 2023-08-09T12:17:24.9879863Z test/torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_spectrogram_0 2023-08-09T12:17:24.9880308Z test/torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_spectrogram_1 2023-08-09T12:17:24.9880754Z test/torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_spectrogram_2_window 2023-08-09T12:17:24.9881264Z test/torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_spectrogram_3_frame_length 2023-08-09T12:17:24.9881707Z test/torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_spectrogram_0 2023-08-09T12:17:24.9882141Z test/torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_spectrogram_1 2023-08-09T12:17:24.9882574Z test/torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_spectrogram_2_window 2023-08-09T12:17:24.9883023Z test/torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_spectrogram_3_frame_length 2023-08-09T12:17:24.9883931Z /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:17:24.9884401Z warnings.warn( 2023-08-09T12:17:24.9884515Z 2023-08-09T12:17:24.9884724Z test/torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_spectrogram_0 2023-08-09T12:17:24.9885154Z test/torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_spectrogram_1 2023-08-09T12:17:24.9885586Z test/torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_spectrogram_2_window 2023-08-09T12:17:24.9886035Z test/torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_spectrogram_3_frame_length 2023-08-09T12:17:24.9886468Z test/torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_spectrogram_0 2023-08-09T12:17:24.9886966Z test/torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_spectrogram_1 2023-08-09T12:17:24.9887399Z test/torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_spectrogram_2_window 2023-08-09T12:17:24.9887842Z test/torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_spectrogram_3_frame_length 2023-08-09T12:17:24.9888398Z 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:17:24.9888747Z 2023-08-09T12:17:24.9888972Z test/torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2Float32CUDA::test_tacotron2_inference_output_shape_0 2023-08-09T12:17:24.9889429Z test/torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2Float32CUDA::test_tacotron2_inference_output_shape_1 2023-08-09T12:17:24.9889910Z test/torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2Float32CUDA::test_tacotron2_inference_torchscript_consistency_0 2023-08-09T12:17:24.9890381Z test/torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2Float32CUDA::test_tacotron2_inference_torchscript_consistency_1 2023-08-09T12:17:24.9890854Z /work/torchaudio/models/tacotron2.py:856: UserWarning: Reached max decoder steps. The generated spectrogram might not cover the whole transcript. 2023-08-09T12:17:24.9891181Z warnings.warn( 2023-08-09T12:17:24.9891303Z 2023-08-09T12:17:24.9891535Z test/torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2Float32CUDA::test_tacotron2_inference_torchscript_consistency_0 2023-08-09T12:17:24.9892001Z test/torchaudio_unittest/models/tacotron2/model_test_gpu_test.py::TestTacotron2Float32CUDA::test_tacotron2_inference_torchscript_consistency_1 2023-08-09T12:17:24.9892497Z code/__torch__/torchaudio/models/tacotron2/___torch_mangle_104.py:124: UserWarning: Reached max decoder steps. The generated spectrogram might not cover the whole transcript. 2023-08-09T12:17:24.9892795Z 2023-08-09T12:17:24.9893091Z test/torchaudio_unittest/prototype/functional/autograd_cuda_test.py::TestAutogradCUDAFloat64::test_freq_ir 2023-08-09T12:17:24.9893524Z /work/torchaudio/prototype/functional/_dsp.py:304: UserWarning: The input frequency response should not contain negative values. 2023-08-09T12:17:24.9893906Z warnings.warn("The input frequency response should not contain negative values.") 2023-08-09T12:17:24.9894099Z 2023-08-09T12:17:24.9894313Z test/torchaudio_unittest/prototype/functional/autograd_cuda_test.py::TestAutogradCUDAFloat64::test_oscillator_bank_0 2023-08-09T12:17:24.9894752Z test/torchaudio_unittest/prototype/functional/autograd_cuda_test.py::TestAutogradCUDAFloat64::test_oscillator_bank_1 2023-08-09T12:17:24.9895206Z test/torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_1000_4_8000 2023-08-09T12:17:24.9895683Z test/torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_1000_8_16000 2023-08-09T12:17:24.9896148Z test/torchaudio_unittest/prototype/functional/functional_cuda_test.py::FunctionalFloat64OnlyCUDATest::test_oscillator_ref_1000_8_8000 2023-08-09T12:17:24.9896675Z /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:17:24.9897057Z warnings.warn( 2023-08-09T12:17:24.9897178Z 2023-08-09T12:17:24.9897375Z test/torchaudio_unittest/prototype/hifi_gan/hifi_gan_gpu_test.py::HiFiGANFloat32CPUTest::test_mel_transform 2023-08-09T12:17:24.9898062Z /work/ci_env/lib/python3.9/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:17:24.9898885Z 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_1691480502664/work/aten/src/ATen/native/SpectralOps.cpp:863.) 2023-08-09T12:17:24.9899418Z return _VF.stft(input, n_fft, hop_length, win_length, window, # type: ignore[attr-defined] 2023-08-09T12:17:24.9899611Z 2023-08-09T12:17:24.9899832Z test/torchaudio_unittest/prototype/hifi_gan/hifi_gan_gpu_test.py::HiFiGANFloat32CPUTest::test_original_implementation_match 2023-08-09T12:17:24.9900269Z test/torchaudio_unittest/prototype/hifi_gan/hifi_gan_gpu_test.py::HiFiGANFloat64CPUTest::test_original_implementation_match 2023-08-09T12:17:24.9900972Z /work/ci_env/lib/python3.9/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:17:24.9901547Z warnings.warn("torch.nn.utils.weight_norm is deprecated in favor of torch.nn.utils.parametrizations.weight_norm.") 2023-08-09T12:17:24.9901870Z 2023-08-09T12:17:24.9902140Z test/torchaudio_unittest/prototype/transforms/autograd_cuda_test.py::AutogradCUDATest::test_barkscale 2023-08-09T12:17:24.9902751Z /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:17:24.9903206Z warnings.warn( 2023-08-09T12:17:24.9903350Z 2023-08-09T12:17:24.9903597Z test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_00 2023-08-09T12:17:24.9904107Z test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_01 2023-08-09T12:17:24.9904593Z test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_02 2023-08-09T12:17:24.9905097Z test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_03 2023-08-09T12:17:24.9905740Z test/torchaudio_unittest/transforms/librosa_compatibility_cuda_test.py::TestTransforms::test_Spectrogram_complex 2023-08-09T12:17:24.9906336Z test/torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_Spectrogram_return_complex 2023-08-09T12:17:24.9906907Z test/torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_Spectrogram_return_complex 2023-08-09T12:17:24.9907637Z /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:17:24.9908186Z warnings.warn( 2023-08-09T12:17:24.9908308Z 2023-08-09T12:17:24.9908534Z test/torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_InverseSpectrogram 2023-08-09T12:17:24.9909147Z test/torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_InverseSpectrogram 2023-08-09T12:17:24.9909933Z /work/ci_env/lib/python3.9/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:17:24.9910342Z warnings.warn( 2023-08-09T12:17:24.9910466Z 2023-08-09T12:17:24.9910735Z test/torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_MFCC 2023-08-09T12:17:24.9911267Z test/torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_MelScale 2023-08-09T12:17:24.9911883Z test/torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_MelSpectrogram 2023-08-09T12:17:24.9912441Z test/torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_MFCC 2023-08-09T12:17:24.9913104Z test/torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_MelScale 2023-08-09T12:17:24.9913645Z test/torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_MelSpectrogram 2023-08-09T12:17:24.9914147Z /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:17:24.9914511Z warnings.warn( 2023-08-09T12:17:24.9914631Z 2023-08-09T12:17:24.9914841Z test/torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat32::test_PitchShift 2023-08-09T12:17:24.9915258Z test/torchaudio_unittest/transforms/torchscript_consistency_cuda_test.py::TestTransformsFloat64::test_PitchShift 2023-08-09T12:17:24.9915690Z test/torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat32Test::test_pitch_shift_resample_kernel 2023-08-09T12:17:24.9916144Z test/torchaudio_unittest/transforms/transforms_cuda_test.py::TransformsCUDAFloat64Test::test_pitch_shift_resample_kernel 2023-08-09T12:17:24.9916800Z /work/ci_env/lib/python3.9/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:17:24.9917298Z warnings.warn('Lazy modules are a new feature under heavy development ' 2023-08-09T12:17:24.9917485Z 2023-08-09T12:17:24.9917718Z -- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html 2023-08-09T12:17:24.9918144Z ----------------- generated xml file: /test-results/junit.xml ------------------ 2023-08-09T12:17:24.9918345Z 2023-08-09T12:17:24.9918552Z ---------- coverage: platform linux, python 3.9.17-final-0 ----------- 2023-08-09T12:17:24.9918851Z Name Stmts Miss Cover 2023-08-09T12:17:24.9919236Z -------------------------------------------------------------------------------------- 2023-08-09T12:17:24.9919620Z /work/torchaudio/__init__.py 7 2 71% 2023-08-09T12:17:24.9919909Z /work/torchaudio/_backend/__init__.py 4 0 100% 2023-08-09T12:17:24.9920206Z /work/torchaudio/_backend/ffmpeg.py 143 122 15% 2023-08-09T12:17:24.9920511Z /work/torchaudio/_backend/utils.py 166 79 52% 2023-08-09T12:17:24.9920800Z /work/torchaudio/_extension/__init__.py 50 9 82% 2023-08-09T12:17:24.9921082Z /work/torchaudio/_extension/utils.py 108 35 68% 2023-08-09T12:17:24.9921367Z /work/torchaudio/_internal/__init__.py 5 0 100% 2023-08-09T12:17:24.9921658Z /work/torchaudio/_internal/module_utils.py 50 20 60% 2023-08-09T12:17:24.9921947Z /work/torchaudio/backend/__init__.py 9 1 89% 2023-08-09T12:17:24.9922246Z /work/torchaudio/backend/common.py 9 6 33% 2023-08-09T12:17:24.9922537Z /work/torchaudio/backend/no_backend.py 9 3 67% 2023-08-09T12:17:24.9922863Z /work/torchaudio/backend/soundfile_backend.py 132 107 19% 2023-08-09T12:17:24.9923182Z /work/torchaudio/backend/sox_io_backend.py 27 16 41% 2023-08-09T12:17:24.9923719Z /work/torchaudio/backend/utils.py 51 27 47% 2023-08-09T12:17:24.9924004Z /work/torchaudio/compliance/__init__.py 2 0 100% 2023-08-09T12:17:24.9924299Z /work/torchaudio/compliance/kaldi.py 228 194 15% 2023-08-09T12:17:24.9924582Z /work/torchaudio/datasets/__init__.py 22 0 100% 2023-08-09T12:17:24.9924948Z /work/torchaudio/datasets/cmuarctic.py 54 33 39% 2023-08-09T12:17:24.9925247Z /work/torchaudio/datasets/cmudict.py 56 41 27% 2023-08-09T12:17:24.9925533Z /work/torchaudio/datasets/commonvoice.py 33 18 45% 2023-08-09T12:17:24.9925822Z /work/torchaudio/datasets/dr_vctk.py 52 36 31% 2023-08-09T12:17:24.9926117Z /work/torchaudio/datasets/fluentcommands.py 35 22 37% 2023-08-09T12:17:24.9926409Z /work/torchaudio/datasets/gtzan.py 70 49 30% 2023-08-09T12:17:24.9926692Z /work/torchaudio/datasets/iemocap.py 73 59 19% 2023-08-09T12:17:24.9926993Z /work/torchaudio/datasets/librilight_limited.py 45 25 44% 2023-08-09T12:17:24.9927292Z /work/torchaudio/datasets/librimix.py 49 36 27% 2023-08-09T12:17:24.9927589Z /work/torchaudio/datasets/librispeech.py 59 38 36% 2023-08-09T12:17:24.9927898Z /work/torchaudio/datasets/librispeech_biasing.py 65 44 32% 2023-08-09T12:17:24.9928195Z /work/torchaudio/datasets/libritts.py 55 36 35% 2023-08-09T12:17:24.9928488Z /work/torchaudio/datasets/ljspeech.py 40 25 38% 2023-08-09T12:17:24.9928767Z /work/torchaudio/datasets/musdb_hq.py 70 50 29% 2023-08-09T12:17:24.9929052Z /work/torchaudio/datasets/quesst14.py 56 38 32% 2023-08-09T12:17:24.9929337Z /work/torchaudio/datasets/snips.py 56 41 27% 2023-08-09T12:17:24.9929625Z /work/torchaudio/datasets/speechcommands.py 71 51 28% 2023-08-09T12:17:24.9929929Z /work/torchaudio/datasets/tedlium.py 74 57 23% 2023-08-09T12:17:24.9930279Z /work/torchaudio/datasets/utils.py 42 33 21% 2023-08-09T12:17:24.9930561Z /work/torchaudio/datasets/vctk.py 56 39 30% 2023-08-09T12:17:24.9930846Z /work/torchaudio/datasets/voxceleb1.py 109 78 28% 2023-08-09T12:17:24.9931133Z /work/torchaudio/datasets/yesno.py 37 22 41% 2023-08-09T12:17:24.9931416Z /work/torchaudio/functional/__init__.py 4 0 100% 2023-08-09T12:17:24.9931789Z /work/torchaudio/functional/_alignment.py 49 7 86% 2023-08-09T12:17:24.9932084Z /work/torchaudio/functional/filtering.py 592 81 86% 2023-08-09T12:17:24.9932371Z /work/torchaudio/functional/functional.py 730 64 91% 2023-08-09T12:17:24.9932660Z /work/torchaudio/io/__init__.py 5 0 100% 2023-08-09T12:17:24.9932944Z /work/torchaudio/io/_effector.py 105 84 20% 2023-08-09T12:17:24.9933227Z /work/torchaudio/io/_playback.py 29 21 28% 2023-08-09T12:17:24.9933503Z /work/torchaudio/io/_stream_reader.py 202 62 69% 2023-08-09T12:17:24.9933785Z /work/torchaudio/io/_stream_writer.py 68 25 63% 2023-08-09T12:17:24.9934063Z /work/torchaudio/kaldi_io.py 32 14 56% 2023-08-09T12:17:24.9934337Z /work/torchaudio/models/__init__.py 13 0 100% 2023-08-09T12:17:24.9934614Z /work/torchaudio/models/_hdemucs.py 480 20 96% 2023-08-09T12:17:24.9934902Z /work/torchaudio/models/conformer.py 72 1 99% 2023-08-09T12:17:24.9935239Z /work/torchaudio/models/conv_tasnet.py 85 72 15% 2023-08-09T12:17:24.9935528Z /work/torchaudio/models/decoder/__init__.py 23 5 78% 2023-08-09T12:17:24.9935824Z /work/torchaudio/models/decoder/_ctc_decoder.py 143 101 29% 2023-08-09T12:17:24.9936125Z /work/torchaudio/models/decoder/_cuda_ctc_decoder.py 64 8 88% 2023-08-09T12:17:24.9936434Z /work/torchaudio/models/deepspeech.py 38 30 21% 2023-08-09T12:17:24.9936726Z /work/torchaudio/models/emformer.py 281 18 94% 2023-08-09T12:17:24.9937012Z /work/torchaudio/models/rnnt.py 151 6 96% 2023-08-09T12:17:24.9937302Z /work/torchaudio/models/rnnt_decoder.py 151 8 95% 2023-08-09T12:17:24.9937584Z /work/torchaudio/models/squim/__init__.py 3 0 100% 2023-08-09T12:17:24.9937887Z /work/torchaudio/models/squim/objective.py 139 1 99% 2023-08-09T12:17:24.9938188Z /work/torchaudio/models/squim/subjective.py 54 2 96% 2023-08-09T12:17:24.9938484Z /work/torchaudio/models/tacotron2.py 256 10 96% 2023-08-09T12:17:24.9938769Z /work/torchaudio/models/wav2letter.py 16 11 31% 2023-08-09T12:17:24.9939058Z /work/torchaudio/models/wav2vec2/__init__.py 3 0 100% 2023-08-09T12:17:24.9939356Z /work/torchaudio/models/wav2vec2/components.py 381 65 83% 2023-08-09T12:17:24.9939645Z /work/torchaudio/models/wav2vec2/model.py 125 16 87% 2023-08-09T12:17:24.9939944Z /work/torchaudio/models/wav2vec2/utils/__init__.py 3 0 100% 2023-08-09T12:17:24.9940246Z /work/torchaudio/models/wav2vec2/utils/import_fairseq.py 104 93 11% 2023-08-09T12:17:24.9940567Z /work/torchaudio/models/wav2vec2/utils/import_huggingface.py 56 45 20% 2023-08-09T12:17:24.9940965Z /work/torchaudio/models/wav2vec2/wavlm_attention.py 81 4 95% 2023-08-09T12:17:24.9941263Z /work/torchaudio/models/wavernn.py 144 121 16% 2023-08-09T12:17:24.9941548Z /work/torchaudio/pipelines/__init__.py 6 0 100% 2023-08-09T12:17:24.9941847Z /work/torchaudio/pipelines/_source_separation_pipeline.py 27 7 74% 2023-08-09T12:17:24.9942164Z /work/torchaudio/pipelines/_squim_pipeline.py 41 18 56% 2023-08-09T12:17:24.9942463Z /work/torchaudio/pipelines/_tts/__init__.py 3 0 100% 2023-08-09T12:17:24.9942754Z /work/torchaudio/pipelines/_tts/impl.py 136 66 51% 2023-08-09T12:17:24.9943047Z /work/torchaudio/pipelines/_tts/interface.py 25 0 100% 2023-08-09T12:17:24.9943357Z /work/torchaudio/pipelines/_tts/utils.py 38 25 34% 2023-08-09T12:17:24.9943653Z /work/torchaudio/pipelines/_wav2vec2/__init__.py 0 0 100% 2023-08-09T12:17:24.9943953Z /work/torchaudio/pipelines/_wav2vec2/aligner.py 44 23 48% 2023-08-09T12:17:24.9944247Z /work/torchaudio/pipelines/_wav2vec2/impl.py 113 22 81% 2023-08-09T12:17:24.9944543Z /work/torchaudio/pipelines/_wav2vec2/utils.py 61 33 46% 2023-08-09T12:17:24.9944848Z /work/torchaudio/pipelines/rnnt_pipeline.py 114 47 59% 2023-08-09T12:17:24.9945136Z /work/torchaudio/prototype/__init__.py 0 0 100% 2023-08-09T12:17:24.9945428Z /work/torchaudio/prototype/datasets/__init__.py 2 0 100% 2023-08-09T12:17:24.9945780Z /work/torchaudio/prototype/datasets/musan.py 22 10 55% 2023-08-09T12:17:24.9946094Z /work/torchaudio/prototype/functional/__init__.py 4 0 100% 2023-08-09T12:17:24.9946395Z /work/torchaudio/prototype/functional/_dsp.py 123 11 91% 2023-08-09T12:17:24.9946699Z /work/torchaudio/prototype/functional/_rir.py 82 72 12% 2023-08-09T12:17:24.9947007Z /work/torchaudio/prototype/functional/functional.py 61 10 84% 2023-08-09T12:17:24.9947306Z /work/torchaudio/prototype/models/__init__.py 7 0 100% 2023-08-09T12:17:24.9947612Z /work/torchaudio/prototype/models/_conformer_wav2vec2.py 149 84 44% 2023-08-09T12:17:24.9947924Z /work/torchaudio/prototype/models/_emformer_hubert.py 69 26 62% 2023-08-09T12:17:24.9948235Z /work/torchaudio/prototype/models/conv_emformer.py 162 17 90% 2023-08-09T12:17:24.9948540Z /work/torchaudio/prototype/models/hifi_gan.py 75 1 99% 2023-08-09T12:17:24.9948940Z /work/torchaudio/prototype/models/rnnt.py 203 161 21% 2023-08-09T12:17:24.9949242Z /work/torchaudio/prototype/models/rnnt_decoder.py 190 158 17% 2023-08-09T12:17:24.9949539Z /work/torchaudio/prototype/pipelines/__init__.py 4 0 100% 2023-08-09T12:17:24.9949849Z /work/torchaudio/prototype/pipelines/_vggish/__init__.py 2 0 100% 2023-08-09T12:17:24.9950168Z /work/torchaudio/prototype/pipelines/_vggish/_vggish_impl.py 83 57 31% 2023-08-09T12:17:24.9950491Z /work/torchaudio/prototype/pipelines/_vggish/_vggish_pipeline.py 28 9 68% 2023-08-09T12:17:24.9950810Z /work/torchaudio/prototype/pipelines/hifigan_pipeline.py 50 9 82% 2023-08-09T12:17:24.9951129Z /work/torchaudio/prototype/pipelines/rnnt_pipeline.py 7 0 100% 2023-08-09T12:17:24.9951445Z /work/torchaudio/prototype/transforms/__init__.py 2 0 100% 2023-08-09T12:17:24.9951807Z /work/torchaudio/prototype/transforms/_transforms.py 98 3 97% 2023-08-09T12:17:24.9952106Z /work/torchaudio/sox_effects/__init__.py 2 0 100% 2023-08-09T12:17:24.9952392Z /work/torchaudio/sox_effects/sox_effects.py 25 9 64% 2023-08-09T12:17:24.9952692Z /work/torchaudio/transforms/__init__.py 3 0 100% 2023-08-09T12:17:24.9953015Z /work/torchaudio/transforms/_multi_channel.py 103 22 79% 2023-08-09T12:17:24.9953309Z /work/torchaudio/transforms/_transforms.py 510 21 96% 2023-08-09T12:17:24.9953594Z /work/torchaudio/utils/__init__.py 3 0 100% 2023-08-09T12:17:24.9953873Z /work/torchaudio/utils/download.py 36 24 33% 2023-08-09T12:17:24.9954160Z /work/torchaudio/utils/ffmpeg_utils.py 47 13 72% 2023-08-09T12:17:24.9954451Z /work/torchaudio/utils/sox_utils.py 26 6 77% 2023-08-09T12:17:24.9954731Z /work/torchaudio/version.py 2 0 100% 2023-08-09T12:17:24.9955125Z -------------------------------------------------------------------------------------- 2023-08-09T12:17:24.9955427Z TOTAL 9749 3451 65% 2023-08-09T12:17:24.9955565Z 2023-08-09T12:17:24.9955690Z ============================ slowest 100 durations ============================= 2023-08-09T12:17:24.9956046Z 167.70s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_mvdr_0_ref_channel 2023-08-09T12:17:24.9956444Z 104.47s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_rtf_mvdr 2023-08-09T12:17:24.9956896Z 98.16s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_souden_mvdr 2023-08-09T12:17:24.9957328Z 73.42s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_apply_beamforming 2023-08-09T12:17:24.9957748Z 46.59s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_psd_with_mask_0 2023-08-09T12:17:24.9958149Z 44.12s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_flanger 2023-08-09T12:17:24.9958551Z 36.70s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_psd_with_mask_1 2023-08-09T12:17:24.9958960Z 33.18s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_phaser_1 2023-08-09T12:17:24.9959365Z 33.01s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_phaser_0 2023-08-09T12:17:24.9959775Z 22.62s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_masking_iid_1 2023-08-09T12:17:24.9960184Z 22.01s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_masking_iid_0 2023-08-09T12:17:24.9960590Z 20.54s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_inverse_spectrogram 2023-08-09T12:17:24.9961004Z 20.24s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_add_noise 2023-08-09T12:17:24.9961403Z 19.52s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_psd 2023-08-09T12:17:24.9961827Z 15.88s call test/torchaudio_unittest/prototype/functional/autograd_cuda_test.py::TestAutogradCUDAFloat64::test_oscillator_bank_1 2023-08-09T12:17:24.9962283Z 14.26s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_mvdr_weights_rtf_with_tensor 2023-08-09T12:17:24.9962720Z 12.26s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_mvdr_weights_rtf 2023-08-09T12:17:24.9963192Z 10.64s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_timestretch_non_zero_0_7 2023-08-09T12:17:24.9963771Z 10.17s call test/torchaudio_unittest/prototype/rnnt_gpu_test.py::ConformerRNNTFloat64GPUTest::test_torchscript_consistency_forward 2023-08-09T12:17:24.9964238Z 9.82s call test/torchaudio_unittest/prototype/rnnt_gpu_test.py::ConformerRNNTFloat32GPUTest::test_torchscript_consistency_forward 2023-08-09T12:17:24.9964690Z 9.77s call test/torchaudio_unittest/prototype/rnnt_gpu_test.py::ConformerRNNTFloat64GPUTest::test_torchscript_consistency_predict 2023-08-09T12:17:24.9965147Z 9.38s call test/torchaudio_unittest/prototype/rnnt_gpu_test.py::ConformerRNNTFloat32GPUTest::test_torchscript_consistency_predict 2023-08-09T12:17:24.9965585Z 9.30s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_timestretch_non_zero_0_8 2023-08-09T12:17:24.9966012Z 9.02s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_griffinlim_0_99_True 2023-08-09T12:17:24.9966421Z 9.01s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_timestretch_non_zero_0_9 2023-08-09T12:17:24.9966839Z 8.98s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_griffinlim_0_99_False 2023-08-09T12:17:24.9967249Z 8.88s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_03 2023-08-09T12:17:24.9967647Z 8.83s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_07 2023-08-09T12:17:24.9968059Z 8.78s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_lfilter_filterbanks 2023-08-09T12:17:24.9968485Z 8.75s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_griffinlim_0_False 2023-08-09T12:17:24.9968972Z 8.71s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_griffinlim_0_True 2023-08-09T12:17:24.9969401Z 8.51s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_convolve_fftconvolve_full 2023-08-09T12:17:24.9969823Z 8.46s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_06 2023-08-09T12:17:24.9970221Z 8.21s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_02 2023-08-09T12:17:24.9970632Z 8.12s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_convolve_FFTConvolve_full 2023-08-09T12:17:24.9971053Z 7.86s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_timestretch_non_zero_1_3 2023-08-09T12:17:24.9971472Z 7.75s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_filtfilt_all_inputs 2023-08-09T12:17:24.9971910Z 7.59s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_filtfilt_batching 2023-08-09T12:17:24.9972329Z 7.45s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_speed 2023-08-09T12:17:24.9972736Z 7.19s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_01 2023-08-09T12:17:24.9973150Z 7.14s call test/torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat64GPUTest::test_torchscript_consistency_forward 2023-08-09T12:17:24.9973563Z 7.14s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_05 2023-08-09T12:17:24.9973978Z 6.93s call test/torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat32GPUTest::test_torchscript_consistency_forward 2023-08-09T12:17:24.9974410Z 6.93s call test/torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat64GPUTest::test_torchscript_consistency_predict 2023-08-09T12:17:24.9974873Z 6.88s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_15 2023-08-09T12:17:24.9975268Z 6.83s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_mfcc_0 2023-08-09T12:17:24.9975680Z 6.71s call test/torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat32::test_phaser 2023-08-09T12:17:24.9976087Z 6.66s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_masking_1 2023-08-09T12:17:24.9976496Z 6.61s call test/torchaudio_unittest/models/rnnt/rnnt_gpu_test.py::RNNTFloat32GPUTest::test_torchscript_consistency_predict 2023-08-09T12:17:24.9976904Z 6.60s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_masking_0 2023-08-09T12:17:24.9977297Z 6.54s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_14 2023-08-09T12:17:24.9977698Z 6.53s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_04 2023-08-09T12:17:24.9978092Z 6.52s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_00 2023-08-09T12:17:24.9978510Z 6.48s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_convolve_convolve_full 2023-08-09T12:17:24.9978952Z 6.45s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_convolve_fftconvolve_same 2023-08-09T12:17:24.9979388Z 6.43s call test/torchaudio_unittest/functional/torchscript_consistency_cuda_test.py::TestFunctionalFloat64::test_phaser 2023-08-09T12:17:24.9979805Z 6.42s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_11 2023-08-09T12:17:24.9980254Z 6.38s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_lfcc_0 2023-08-09T12:17:24.9980666Z 6.25s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_convolve_FFTConvolve_same 2023-08-09T12:17:24.9981100Z 6.17s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_convolve_fftconvolve_valid 2023-08-09T12:17:24.9981525Z 6.08s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_10 2023-08-09T12:17:24.9981935Z 6.01s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_convolve_Convolve_full 2023-08-09T12:17:24.9982355Z 6.00s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_convolve_FFTConvolve_valid 2023-08-09T12:17:24.9982758Z 5.81s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_13 2023-08-09T12:17:24.9983177Z 5.76s call test/torchaudio_unittest/prototype/transforms/autograd_cuda_test.py::AutogradCUDATest::test_barkspectrogram 2023-08-09T12:17:24.9983615Z 5.67s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_speed_perturbation 2023-08-09T12:17:24.9984061Z 5.57s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_melspectrogram 2023-08-09T12:17:24.9984460Z 5.52s call test/torchaudio_unittest/prototype/transforms/autograd_cuda_test.py::AutogradCUDATest::test_barkscale 2023-08-09T12:17:24.9984870Z 5.35s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_12 2023-08-09T12:17:24.9985268Z 5.25s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_09 2023-08-09T12:17:24.9985689Z 5.17s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_convolve_convolve_same 2023-08-09T12:17:24.9986101Z 5.08s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_speed 2023-08-09T12:17:24.9986563Z 4.95s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_convolve_convolve_valid 2023-08-09T12:17:24.9986979Z 4.92s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_mfcc_1 2023-08-09T12:17:24.9987371Z 4.91s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_convolve_Convolve_same 2023-08-09T12:17:24.9987776Z 4.89s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectrogram_08 2023-08-09T12:17:24.9988189Z 4.79s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_bass_biquad_0 2023-08-09T12:17:24.9988609Z 4.78s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_bass_biquad_1 2023-08-09T12:17:24.9989102Z 4.77s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_resample_2 2023-08-09T12:17:24.9989520Z 4.73s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_convolve_Convolve_valid 2023-08-09T12:17:24.9989922Z 4.62s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_melscale 2023-08-09T12:17:29.9937429Z 4.54s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_lfcc_1 2023-08-09T12:17:29.9938127Z 4.44s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_mvdr_weights_souden_with_tensor 2023-08-09T12:17:29.9938722Z 4.37s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_treble_biquad_1 2023-08-09T12:17:29.9939243Z 4.36s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_treble_biquad_0 2023-08-09T12:17:29.9939785Z 4.33s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_psd_0 2023-08-09T12:17:29.9940618Z 4.19s call test/torchaudio_unittest/functional/librosa_compatibility_cuda_test.py::TestFunctionalCUDA::test_griffinlim_0 2023-08-09T12:17:29.9941083Z 4.11s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_rtf_power_with_tensor_0 2023-08-09T12:17:29.9941517Z 4.11s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_band_biquad_0 2023-08-09T12:17:29.9941947Z 4.00s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_lfilter_all_inputs 2023-08-09T12:17:29.9942375Z 3.85s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_lfilter_batching 2023-08-09T12:17:29.9942808Z 3.72s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_rtf_power_with_tensor_1 2023-08-09T12:17:29.9943253Z 3.65s call test/torchaudio_unittest/prototype/transforms/autograd_cuda_test.py::AutogradCUDATest::test_chroma_spectrogram 2023-08-09T12:17:29.9943694Z 3.54s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_mvdr_weights_souden 2023-08-09T12:17:29.9944119Z 3.52s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_equalizer_biquad_1 2023-08-09T12:17:29.9944559Z 3.51s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_equalizer_biquad_0 2023-08-09T12:17:29.9945013Z 3.45s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_time_masking_p 2023-08-09T12:17:29.9945420Z 3.43s call test/torchaudio_unittest/functional/autograd_cuda_test.py::TestAutogradLfilterCUDA::test_band_biquad_1 2023-08-09T12:17:29.9945836Z 3.42s call test/torchaudio_unittest/transforms/autograd_cuda_test.py::AutogradCUDATest::test_spectral_centroid 2023-08-09T12:17:29.9946278Z 3.34s call test/torchaudio_unittest/models/hdemucs/hdemucs_gpu_test.py::CompareHDemucsOriginal::test_import_recreate_high_model_0 2023-08-09T12:17:29.9947044Z = 2015 passed, 684 skipped, 8860 deselected, 2 xfailed, 4224 warnings in 1524.49s (0:25:24) = 2023-08-09T12:17:29.9947330Z + coverage html 2023-08-09T12:17:29.9947691Z Wrote HTML report to ]8;;file:///work/test/htmlcov/index.htmlhtmlcov/index.html]8;; 2023-08-09T12:17:30.0007431Z ##[group]Run pmeier/pytest-results-action@v0.3.0 2023-08-09T12:17:30.0007694Z with: 2023-08-09T12:17:30.0007950Z path: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-08-09T12:17:30.0008209Z fail-on-empty: false 2023-08-09T12:17:30.0008403Z env: 2023-08-09T12:17:30.0008620Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T12:17:30.0008865Z REPOSITORY: pytorch/audio 2023-08-09T12:17:30.0009070Z PR_NUMBER: 2023-08-09T12:17:30.0011732Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.9" 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:17:30.0014564Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-08-09T12:17:30.0014907Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-08-09T12:17:30.0015230Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-08-09T12:17:30.0015524Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-08-09T12:17:30.0015767Z ##[endgroup] 2023-08-09T12:17:30.1204994Z Prepare all required actions 2023-08-09T12:17:30.1224750Z ##[group]Run ./test-infra/.github/actions/chown-directory 2023-08-09T12:17:30.1225037Z with: 2023-08-09T12:17:30.1225317Z directory: /home/ec2-user/actions-runner/_work/audio/audio/ 2023-08-09T12:17:30.1225690Z ALPINE_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2023-08-09T12:17:30.1225988Z env: 2023-08-09T12:17:30.1226260Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T12:17:30.1226549Z REPOSITORY: pytorch/audio 2023-08-09T12:17:30.1226816Z PR_NUMBER: 2023-08-09T12:17:30.1229660Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.9" 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:17:30.1232657Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-08-09T12:17:30.1233047Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-08-09T12:17:30.1233410Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-08-09T12:17:30.1233759Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-08-09T12:17:30.1234056Z ##[endgroup] 2023-08-09T12:17:30.1247487Z ##[group]Run docker run --rm -v "${DIRECTORY}":/v -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" . 2023-08-09T12:17:30.1247923Z docker run --rm -v "${DIRECTORY}":/v -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" . 2023-08-09T12:17:30.1258993Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2023-08-09T12:17:30.1259279Z env: 2023-08-09T12:17:30.1259666Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T12:17:30.1259974Z REPOSITORY: pytorch/audio 2023-08-09T12:17:30.1260232Z PR_NUMBER: 2023-08-09T12:17:30.1262872Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.9" 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:17:30.1265759Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-08-09T12:17:30.1266148Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-08-09T12:17:30.1266525Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-08-09T12:17:30.1266877Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-08-09T12:17:30.1267243Z ALPINE_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2023-08-09T12:17:30.1267611Z DIRECTORY: /home/ec2-user/actions-runner/_work/audio/audio/ 2023-08-09T12:17:30.1267895Z ##[endgroup] 2023-08-09T12:17:30.1454712Z Unable to find image '308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine:latest' locally 2023-08-09T12:17:30.3806393Z latest: Pulling from tool/alpine 2023-08-09T12:17:30.3806641Z 540db60ca938: Pulling fs layer 2023-08-09T12:17:30.5024248Z 540db60ca938: Verifying Checksum 2023-08-09T12:17:30.5024611Z 540db60ca938: Download complete 2023-08-09T12:17:30.6289224Z 540db60ca938: Pull complete 2023-08-09T12:17:30.6362866Z Digest: sha256:def822f9851ca422481ec6fee59a9966f12b351c62ccb9aca841526ffaa9f748 2023-08-09T12:17:30.6394140Z Status: Downloaded newer image for 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine:latest 2023-08-09T12:17:31.9699344Z Prepare all required actions 2023-08-09T12:17:31.9716758Z ##[group]Run ./test-infra/.github/actions/chown-directory 2023-08-09T12:17:31.9717000Z with: 2023-08-09T12:17:31.9717246Z ALPINE_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2023-08-09T12:17:31.9717493Z env: 2023-08-09T12:17:31.9717709Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T12:17:31.9717945Z REPOSITORY: pytorch/audio 2023-08-09T12:17:31.9718155Z PR_NUMBER: 2023-08-09T12:17:31.9720798Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.9" 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:17:31.9723964Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-08-09T12:17:31.9724302Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-08-09T12:17:31.9724635Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-08-09T12:17:31.9724974Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-08-09T12:17:31.9725211Z ##[endgroup] 2023-08-09T12:17:31.9736578Z ##[group]Run docker run --rm -v "${DIRECTORY}":/v -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" . 2023-08-09T12:17:31.9736963Z docker run --rm -v "${DIRECTORY}":/v -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" . 2023-08-09T12:17:31.9747780Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2023-08-09T12:17:31.9748023Z env: 2023-08-09T12:17:31.9748249Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T12:17:31.9748600Z REPOSITORY: pytorch/audio 2023-08-09T12:17:31.9748934Z PR_NUMBER: 2023-08-09T12:17:31.9751532Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.9" 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:17:31.9754316Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-08-09T12:17:31.9754670Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-08-09T12:17:31.9754992Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-08-09T12:17:31.9755310Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-08-09T12:17:31.9755633Z ALPINE_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2023-08-09T12:17:31.9755891Z DIRECTORY: 2023-08-09T12:17:31.9756083Z ##[endgroup] 2023-08-09T12:17:32.8047613Z ##[group]Run # Only do these steps if we actually want to upload an artifact 2023-08-09T12:17:32.8047984Z # Only do these steps if we actually want to upload an artifact 2023-08-09T12:17:32.8048280Z if [[ -n "${UPLOAD_ARTIFACT_NAME}" ]]; then 2023-08-09T12:17:32.8048609Z  # If the default execution path is followed then we should get a wheel in the dist/ folder 2023-08-09T12:17:32.8048957Z  # attempt to just grab whatever is in there and scoop it all up 2023-08-09T12:17:32.8049264Z  if find "dist/" -name "*.whl" >/dev/null 2>/dev/null; then 2023-08-09T12:17:32.8065058Z  mv -v dist/*.whl "${RUNNER_ARTIFACT_DIR}/" 2023-08-09T12:17:32.8065333Z  fi 2023-08-09T12:17:32.8065625Z  # Set to fail upload step if there are no files for upload and expected files for upload 2023-08-09T12:17:32.8065969Z  echo 'if-no-files-found=error' >> "${GITHUB_OUTPUT}" 2023-08-09T12:17:32.8066236Z fi 2023-08-09T12:17:32.8066418Z  2023-08-09T12:17:32.8066610Z upload_docs=0 2023-08-09T12:17:32.8066875Z # Check if there are things in the documentation folder to uplaod 2023-08-09T12:17:32.8067204Z if find "${RUNNER_DOCS_DIR}" -mindepth 1 -maxdepth 1 | read -r; then 2023-08-09T12:17:32.8067537Z  # TODO: Add a check here to test if on ec2 because if we're not on ec2 then this 2023-08-09T12:17:32.8067846Z  # upload will probably not work correctly 2023-08-09T12:17:32.8068080Z  upload_docs=1 2023-08-09T12:17:32.8068283Z fi 2023-08-09T12:17:32.8068529Z echo "upload-docs=${upload_docs}" >> "${GITHUB_OUTPUT}" 2023-08-09T12:17:32.8079626Z shell: /usr/bin/bash -e {0} 2023-08-09T12:17:32.8079828Z env: 2023-08-09T12:17:32.8080052Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T12:17:32.8080290Z REPOSITORY: pytorch/audio 2023-08-09T12:17:32.8080500Z PR_NUMBER: 2023-08-09T12:17:32.8083189Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.9" 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:17:32.8086417Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-08-09T12:17:32.8086761Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-08-09T12:17:32.8087097Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-08-09T12:17:32.8087399Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-08-09T12:17:32.8087653Z UPLOAD_ARTIFACT_NAME: 2023-08-09T12:17:32.8087855Z ##[endgroup] 2023-08-09T12:17:32.8150459Z Prepare all required actions 2023-08-09T12:17:32.8168871Z ##[group]Run ./test-infra/.github/actions/teardown-linux 2023-08-09T12:17:32.8169112Z with: 2023-08-09T12:17:32.8169283Z env: 2023-08-09T12:17:32.8169498Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T12:17:32.8169749Z REPOSITORY: pytorch/audio 2023-08-09T12:17:32.8169963Z PR_NUMBER: 2023-08-09T12:17:32.8172599Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.9" 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:17:32.8175563Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-08-09T12:17:32.8175902Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-08-09T12:17:32.8176220Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-08-09T12:17:32.8176511Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-08-09T12:17:32.8176747Z ##[endgroup] 2023-08-09T12:17:32.8189306Z ##[group]Run set -eou pipefail 2023-08-09T12:17:32.8189547Z set -eou pipefail 2023-08-09T12:17:32.8189752Z  2023-08-09T12:17:32.8190012Z echo "Holding runner for 2 hours until all ssh sessions have logged out" 2023-08-09T12:17:32.8190286Z for _ in $(seq 1440); do 2023-08-09T12:17:32.8190531Z  # Break if no ssh session exists anymore 2023-08-09T12:17:32.8190783Z  if [ "$(who)" = "" ]; then 2023-08-09T12:17:32.8190982Z  break 2023-08-09T12:17:32.8191169Z  fi 2023-08-09T12:17:32.8191440Z  echo "." 2023-08-09T12:17:32.8191628Z  sleep 5 2023-08-09T12:17:32.8191813Z done 2023-08-09T12:17:32.8202393Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2023-08-09T12:17:32.8202624Z env: 2023-08-09T12:17:32.8202844Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T12:17:32.8203091Z REPOSITORY: pytorch/audio 2023-08-09T12:17:32.8203553Z PR_NUMBER: 2023-08-09T12:17:32.8206174Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.9" 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:17:32.8209003Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-08-09T12:17:32.8209340Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-08-09T12:17:32.8209651Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-08-09T12:17:32.8209949Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-08-09T12:17:32.8210190Z ##[endgroup] 2023-08-09T12:17:32.8230651Z Holding runner for 2 hours until all ssh sessions have logged out 2023-08-09T12:17:32.8274646Z ##[group]Run # ignore expansion of "docker ps -q" since it could be empty 2023-08-09T12:17:32.8275009Z # ignore expansion of "docker ps -q" since it could be empty 2023-08-09T12:17:32.8275291Z # shellcheck disable=SC2046 2023-08-09T12:17:32.8275545Z docker stop $(docker ps -q) || true 2023-08-09T12:17:32.8275793Z # Prune all of the docker images 2023-08-09T12:17:32.8276152Z docker system prune -af 2023-08-09T12:17:32.8286538Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2023-08-09T12:17:32.8286771Z env: 2023-08-09T12:17:32.8286991Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-08-09T12:17:32.8287244Z REPOSITORY: pytorch/audio 2023-08-09T12:17:32.8287446Z PR_NUMBER: 2023-08-09T12:17:32.8290074Z SCRIPT: set -ex # Set up Environment Variables export PYTHON_VERSION="3.9" 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:17:32.8292934Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-08-09T12:17:32.8293270Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-08-09T12:17:32.8293598Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-08-09T12:17:32.8293898Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-08-09T12:17:32.8294140Z ##[endgroup] 2023-08-09T12:17:43.1801289Z e8f4676321b0 2023-08-09T12:17:44.8763519Z Deleted Containers: 2023-08-09T12:17:44.8763947Z e8f4676321b0d971ecd6815b340373ff3c12aad5a369aea39362481d6166228d 2023-08-09T12:17:44.8764164Z 2023-08-09T12:17:47.2491918Z Deleted Images: 2023-08-09T12:17:47.2492480Z untagged: pytorch/conda-builder:cuda11.8 2023-08-09T12:17:47.2493097Z untagged: pytorch/conda-builder@sha256:5fee47bc124a0ed44d8d74af710d4825c9f96a5454399b86028e45592dbc8c3f 2023-08-09T12:17:47.2493518Z deleted: sha256:0803663685900d71dc6eedbb2aebc10e845b93f3154f6f1c95b5f32cfa40a452 2023-08-09T12:17:47.2494057Z deleted: sha256:0fb4203b62a572c05612c2a50c85da3ad4720fcb5ec17fde82b88ed2dfdab956 2023-08-09T12:17:47.2494452Z deleted: sha256:6445c6f6f89631e951f3c94206ecc2214ee011c670c22e74b57e285eeb55a68d 2023-08-09T12:17:47.2494900Z deleted: sha256:54959cf4a4cfafc419fa02a4e8d12ab154f5d82a337ddc61a127657c5487364e 2023-08-09T12:17:47.2495345Z deleted: sha256:839b1e46bcacbd72a976f7d9cdb62a425c3b0c186d52b510198da2243258319c 2023-08-09T12:17:47.2495791Z deleted: sha256:2b0c8de7c2abf284dc9de45a5e170dc8fbf8943998767cf44146ae1277e04db6 2023-08-09T12:17:47.2496165Z deleted: sha256:fcf23081db516fd88a9ff3cd47ddd31bc7fe19894642c0cc9eb1a1745dc5ae6a 2023-08-09T12:17:47.2496610Z deleted: sha256:03bb51ef2389e190c138a23b93ed1a394e24c136cbd018adb0bbde6511319d5b 2023-08-09T12:17:47.2497066Z deleted: sha256:c8926ad2398010e39eb990df332ab8eb6010cac3ac70b11f123957c6d994533c 2023-08-09T12:17:47.2497444Z deleted: sha256:844c416bbe739ec4fd800cc5d8065a52a345d9dd4f7c8b6820cf38f30fb8e925 2023-08-09T12:17:47.2497784Z deleted: sha256:6528d2d84f5899bf8fec5ccc3848942f3d132b6a5bc9f5fd97e34d413dd56149 2023-08-09T12:17:47.2498122Z deleted: sha256:41ab98c841092d917439cefabf46c0d688ac80958ae99b268ff008cb7616d0b9 2023-08-09T12:17:47.2498458Z deleted: sha256:1088639d3f053fc9d55f3ef6f41dbc29466d2bb46d8aa80378145fdeb421b037 2023-08-09T12:17:47.2498801Z deleted: sha256:48291a42ab986da9103f064d8a2ae1290b1b3be97baede9351ac7ee44f9713ed 2023-08-09T12:17:47.2499139Z deleted: sha256:d60fc98270a40439f44025e75ebca7860dc1641c70eac7a6fb7f44c7775e8bc1 2023-08-09T12:17:47.2499524Z deleted: sha256:621caabbbb5679e6f469a027ea8a8db1fa8729ab5c944eb1d3000f42eb53aede 2023-08-09T12:17:47.2499856Z deleted: sha256:62530fc546e75b1b3f71135012a24fa3f4203975bc7e28a38b7254dfaf3d9079 2023-08-09T12:17:47.2500192Z deleted: sha256:051c101eb3cb2d61b8eea3ad5aac843a83f9239a4babc2a1d9c98391c182805c 2023-08-09T12:17:47.2500909Z deleted: sha256:16e7770e5d221bed660fe7d8c77e14ab566675de45a6e15313f0e94f56fd66fe 2023-08-09T12:17:47.2501234Z deleted: sha256:7786634cbc71898b12c27aa6ca5a2e35c91353c660234c6c8272c8de94bbeea6 2023-08-09T12:17:47.2501572Z deleted: sha256:2c764404cda355f281887f6fd7f7cf04f42e240dfb2e0c05e9534493ea4e9c5a 2023-08-09T12:17:47.2501883Z deleted: sha256:174f5685490326fc0a1c0f5570b8663732189b327007e47ff13d2ca59673db02 2023-08-09T12:17:47.2502284Z untagged: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine:latest 2023-08-09T12:17:47.2502806Z untagged: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine@sha256:def822f9851ca422481ec6fee59a9966f12b351c62ccb9aca841526ffaa9f748 2023-08-09T12:17:47.2503220Z deleted: sha256:6dbb9cc54074106d46d4ccb330f2a40a682d49dda5f4844962b7dce9fe44aaec 2023-08-09T12:17:47.2503564Z deleted: sha256:b2d5eeeaba3a22b9b8aa97261957974a6bd65274ebd43e1d81d0a7b8b752b116 2023-08-09T12:17:47.2503768Z 2023-08-09T12:17:47.2507781Z Total reclaimed space: 22.86GB 2023-08-09T12:17:47.2560537Z Post job cleanup. 2023-08-09T12:17:47.3335409Z [command]/usr/bin/git version 2023-08-09T12:17:47.3376389Z git version 2.40.1 2023-08-09T12:17:47.3414836Z Temporarily overriding HOME='/home/ec2-user/actions-runner/_work/_temp/f703f74e-569b-41a9-90a7-7a95df9a0c35' before making global git config changes 2023-08-09T12:17:47.3415584Z Adding repository directory to the temporary git global config as a safe directory 2023-08-09T12:17:47.3420458Z [command]/usr/bin/git config --global --add safe.directory /home/ec2-user/actions-runner/_work/audio/audio/pytorch/audio 2023-08-09T12:17:47.3449301Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2023-08-09T12:17:47.3470637Z [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:17:47.3683259Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2023-08-09T12:17:47.3704121Z http.https://github.com/.extraheader 2023-08-09T12:17:47.3712390Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader 2023-08-09T12:17:47.3738539Z [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:17:47.4024387Z Post job cleanup. 2023-08-09T12:17:47.4813022Z [command]/usr/bin/git version 2023-08-09T12:17:47.4852284Z git version 2.40.1 2023-08-09T12:17:47.4890008Z Temporarily overriding HOME='/home/ec2-user/actions-runner/_work/_temp/960d1607-f259-475d-9df5-5b19dfb56839' before making global git config changes 2023-08-09T12:17:47.4890726Z Adding repository directory to the temporary git global config as a safe directory 2023-08-09T12:17:47.4895677Z [command]/usr/bin/git config --global --add safe.directory /home/ec2-user/actions-runner/_work/audio/audio/test-infra 2023-08-09T12:17:47.4924901Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2023-08-09T12:17:47.4945602Z [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:17:47.5145740Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2023-08-09T12:17:47.5166447Z http.https://github.com/.extraheader 2023-08-09T12:17:47.5175865Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader 2023-08-09T12:17:47.5201421Z [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:17:47.5598270Z Cleaning up orphan processes