2023-07-13T14:16:04.5016662Z Requested labels: linux.g5.4xlarge.nvidia.gpu 2023-07-13T14:16:04.5016869Z Job defined at: pytorch/test-infra/.github/workflows/linux_job.yml@refs/heads/main 2023-07-13T14:16:04.5017145Z Reusable workflow chain: 2023-07-13T14:16:04.5017305Z pytorch/audio/.github/workflows/build_docs.yml@refs/pull/306/merge (7182816322bf05c53164d9767907a1dc4818bc40) 2023-07-13T14:16:04.5017440Z -> pytorch/test-infra/.github/workflows/linux_job.yml@refs/heads/main (f1766167e55a3952a5eef0755a94cc78aaabbdc2) 2023-07-13T14:16:04.5017585Z Waiting for a runner to pick up this job... 2023-07-13T14:16:06.1418077Z Job is about to start running on the runner: i-0c6a50c554952fc6d (organization) 2023-07-13T14:16:10.7747370Z Current runner version: '2.306.0' 2023-07-13T14:16:10.7752736Z Runner name: 'i-0c6a50c554952fc6d' 2023-07-13T14:16:10.7753329Z Runner group name: 'Default' 2023-07-13T14:16:10.7753999Z Machine name: 'ip-10-0-0-183' 2023-07-13T14:16:10.7756164Z ##[group]GITHUB_TOKEN Permissions 2023-07-13T14:16:10.7756931Z Actions: write 2023-07-13T14:16:10.7757296Z Checks: write 2023-07-13T14:16:10.7757656Z Contents: write 2023-07-13T14:16:10.7758031Z Deployments: write 2023-07-13T14:16:10.7758556Z Discussions: write 2023-07-13T14:16:10.7758897Z Issues: write 2023-07-13T14:16:10.7759249Z Metadata: read 2023-07-13T14:16:10.7759645Z Packages: write 2023-07-13T14:16:10.7759983Z Pages: write 2023-07-13T14:16:10.7760395Z PullRequests: write 2023-07-13T14:16:10.7760805Z RepositoryProjects: write 2023-07-13T14:16:10.7761189Z SecurityEvents: write 2023-07-13T14:16:10.7761587Z Statuses: write 2023-07-13T14:16:10.7761945Z ##[endgroup] 2023-07-13T14:16:10.7765038Z Secret source: Actions 2023-07-13T14:16:10.7765744Z Prepare workflow directory 2023-07-13T14:16:10.9176594Z Prepare all required actions 2023-07-13T14:16:10.9350056Z Getting action download info 2023-07-13T14:16:11.2601331Z Download action repository 'actions/checkout@v3' (SHA:c85c95e3d7251135ab7dc9ce3241c5835cc595a9) 2023-07-13T14:16:11.4772848Z Download action repository 'actions/download-artifact@v3' (SHA:9bc31d5ccc31df68ecc42ccf4149144866c47d8a) 2023-07-13T14:16:11.9197240Z Download action repository 'pmeier/pytest-results-action@v0.3.0' (SHA:a2c1430e2bddadbad9f49a6f9b879f062c6b19b1) 2023-07-13T14:16:12.1052829Z Download action repository 'actions/upload-artifact@v3' (SHA:0b7f8abb1508181956e8e162db84b466c27e18ce) 2023-07-13T14:16:12.2533784Z Download action repository 'seemethere/upload-artifact-s3@v5' (SHA:baba72d0712b404f646cebe0730933554ebce96a) 2023-07-13T14:16:12.5478652Z Uses: pytorch/test-infra/.github/workflows/linux_job.yml@refs/heads/main (f1766167e55a3952a5eef0755a94cc78aaabbdc2) 2023-07-13T14:16:12.5480121Z ##[group] Inputs 2023-07-13T14:16:12.5483582Z script: # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export FFMPEG_VERSION=6.0 export CODEC_HEADER_VERSION=n12.0.16.0 export COMPUTE_CAPABILITY=86 export BUILD_VERSION="$( cut -f 1 -d a version.txt )".dev"$(date "+%Y%m%d")" # 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 # Create Conda Env conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env # Install PyTorch / TorchAudio first set -ex set +u # don't know why conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" # Install torchaudio conda install --quiet --yes pkg-config cmake>=3.18.0 ninja pip install --progress-bar off -v -e . --no-use-pep517 # Install FFmpeg-dependencies conda install --quiet --yes -c conda-forge yasm x264 gnutls pkg-config lame libopus libvpx openh264 openssl x264 # Build FFmpeg with NVIDIA Video Codec SDK # TODO cache this ( git clone --quiet https://git.videolan.org/git/ffmpeg/nv-codec-headers.git cd nv-codec-headers git checkout ${CODEC_HEADER_VERSION} make PREFIX=${CONDA_PREFIX} install ) ( wget -q https://github.com/FFmpeg/FFmpeg/archive/refs/tags/n${FFMPEG_VERSION}.tar.gz tar -xf n${FFMPEG_VERSION}.tar.gz cd ./FFmpeg-n${FFMPEG_VERSION} export revision=${FFMPEG_VERSION} ./configure \ --prefix=${CONDA_PREFIX} \ --extra-cflags="-I${CONDA_PREFIX}/include" \ --extra-ldflags="-L${CONDA_PREFIX}/lib" \ --nvccflags="-gencode arch=compute_${COMPUTE_CAPABILITY},code=sm_${COMPUTE_CAPABILITY} -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 make clean make -j > /dev/null 2>&1 make install # test # src="https://download.pytorch.org/torchaudio/tutorial-assets/stream-api/NASAs_Most_Scientifically_Complex_Space_Observatory_Requires_Precision-MP4_small.mp4" # ffmpeg -y -vsync 0 -hwaccel cuvid -hwaccel_output_format cuda -c:v h264_cuvid -resize 360x240 -i "${src}" -c:a copy -c:v h264_nvenc -b:v 5M test.mp4 ) # Install runtime dependencies pip --quiet install git+https://github.com/kpu/kenlm/ flashlight-text # Install build tools conda install --quiet -y -c conda-forge pandoc doxygen pysoundfile pip install --quiet -r docs/requirements.txt -r docs/requirements-tutorials.txt # Build docs export BUILD_GALLERY=true (cd docs && make html) cp -rf docs/build/html/* "${RUNNER_DOCS_DIR}" mv docs/build/html /artifacts/ 2023-07-13T14:16:12.5487488Z timeout: 120 2023-07-13T14:16:12.5487766Z runner: linux.g5.4xlarge.nvidia.gpu 2023-07-13T14:16:12.5488050Z upload-artifact: docs 2023-07-13T14:16:12.5488303Z download-artifact: 2023-07-13T14:16:12.5488578Z repository: pytorch/audio 2023-07-13T14:16:12.5488846Z fetch-depth: 1 2023-07-13T14:16:12.5489071Z ref: 2023-07-13T14:16:12.5489346Z test-infra-repository: pytorch/test-infra 2023-07-13T14:16:12.5489634Z test-infra-ref: 2023-07-13T14:16:12.5489895Z docker-image: pytorch/conda-builder 2023-07-13T14:16:12.5490173Z gpu-arch-type: cuda 2023-07-13T14:16:12.5490433Z gpu-arch-version: 11.8 2023-07-13T14:16:12.5490681Z job-name: Build doc 2023-07-13T14:16:12.5491236Z continue-on-error: false 2023-07-13T14:16:12.5491506Z binary-matrix: 2023-07-13T14:16:12.5491755Z run-with-docker: true 2023-07-13T14:16:12.5492012Z secrets-env: 2023-07-13T14:16:12.5492269Z no-sudo: false 2023-07-13T14:16:12.5492526Z ##[endgroup] 2023-07-13T14:16:12.5492996Z Complete job name: build (3.10, 11.8) / Build doc 2023-07-13T14:16:12.6192488Z ##[group]Run if [[ "${NO_SUDO}" == "false" ]]; then 2023-07-13T14:16:12.6192999Z if [[ "${NO_SUDO}" == "false" ]]; then 2023-07-13T14:16:12.6193381Z  echo "::group::Cleanup with-sudo debug output" 2023-07-13T14:16:12.6193786Z  sudo rm -rfv "${GITHUB_WORKSPACE}" 2023-07-13T14:16:12.6194074Z else 2023-07-13T14:16:12.6194391Z  echo "::group::Cleanup no-sudo debug output" 2023-07-13T14:16:12.6194699Z  rm -rfv "${GITHUB_WORKSPACE}" 2023-07-13T14:16:12.6195014Z fi 2023-07-13T14:16:12.6195259Z  2023-07-13T14:16:12.6195520Z mkdir -p "${GITHUB_WORKSPACE}" 2023-07-13T14:16:12.6195929Z echo "::endgroup::" 2023-07-13T14:16:12.6209850Z shell: /usr/bin/bash -e {0} 2023-07-13T14:16:12.6210146Z env: 2023-07-13T14:16:12.6210442Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-07-13T14:16:12.6210838Z REPOSITORY: pytorch/audio 2023-07-13T14:16:12.6211138Z PR_NUMBER: 306 2023-07-13T14:16:12.6214583Z SCRIPT: # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export FFMPEG_VERSION=6.0 export CODEC_HEADER_VERSION=n12.0.16.0 export COMPUTE_CAPABILITY=86 export BUILD_VERSION="$( cut -f 1 -d a version.txt )".dev"$(date "+%Y%m%d")" # 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 # Create Conda Env conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env # Install PyTorch / TorchAudio first set -ex set +u # don't know why conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" # Install torchaudio conda install --quiet --yes pkg-config cmake>=3.18.0 ninja pip install --progress-bar off -v -e . --no-use-pep517 # Install FFmpeg-dependencies conda install --quiet --yes -c conda-forge yasm x264 gnutls pkg-config lame libopus libvpx openh264 openssl x264 # Build FFmpeg with NVIDIA Video Codec SDK # TODO cache this ( git clone --quiet https://git.videolan.org/git/ffmpeg/nv-codec-headers.git cd nv-codec-headers git checkout ${CODEC_HEADER_VERSION} make PREFIX=${CONDA_PREFIX} install ) ( wget -q https://github.com/FFmpeg/FFmpeg/archive/refs/tags/n${FFMPEG_VERSION}.tar.gz tar -xf n${FFMPEG_VERSION}.tar.gz cd ./FFmpeg-n${FFMPEG_VERSION} export revision=${FFMPEG_VERSION} ./configure \ --prefix=${CONDA_PREFIX} \ --extra-cflags="-I${CONDA_PREFIX}/include" \ --extra-ldflags="-L${CONDA_PREFIX}/lib" \ --nvccflags="-gencode arch=compute_${COMPUTE_CAPABILITY},code=sm_${COMPUTE_CAPABILITY} -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 make clean make -j > /dev/null 2>&1 make install # test # src="https://download.pytorch.org/torchaudio/tutorial-assets/stream-api/NASAs_Most_Scientifically_Complex_Space_Observatory_Requires_Precision-MP4_small.mp4" # ffmpeg -y -vsync 0 -hwaccel cuvid -hwaccel_output_format cuda -c:v h264_cuvid -resize 360x240 -i "${src}" -c:a copy -c:v h264_nvenc -b:v 5M test.mp4 ) # Install runtime dependencies pip --quiet install git+https://github.com/kpu/kenlm/ flashlight-text # Install build tools conda install --quiet -y -c conda-forge pandoc doxygen pysoundfile pip install --quiet -r docs/requirements.txt -r docs/requirements-tutorials.txt # Build docs export BUILD_GALLERY=true (cd docs && make html) cp -rf docs/build/html/* "${RUNNER_DOCS_DIR}" mv docs/build/html /artifacts/ 2023-07-13T14:16:12.6218029Z NO_SUDO: false 2023-07-13T14:16:12.6218300Z ##[endgroup] 2023-07-13T14:16:12.6412173Z ##[group]Cleanup with-sudo debug output 2023-07-13T14:16:12.6428412Z removed directory: ‘/home/ec2-user/actions-runner/_work/audio/audio’ 2023-07-13T14:16:12.6449824Z ##[endgroup] 2023-07-13T14:16:12.6772153Z ##[group]Run actions/checkout@v3 2023-07-13T14:16:12.6772414Z with: 2023-07-13T14:16:12.6772621Z repository: pytorch/test-infra 2023-07-13T14:16:12.6772836Z path: test-infra 2023-07-13T14:16:12.6773035Z submodules: recursive 2023-07-13T14:16:12.6773465Z token: *** 2023-07-13T14:16:12.6773644Z ssh-strict: true 2023-07-13T14:16:12.6773847Z persist-credentials: true 2023-07-13T14:16:12.6774056Z clean: true 2023-07-13T14:16:12.6774264Z sparse-checkout-cone-mode: true 2023-07-13T14:16:12.6774482Z fetch-depth: 1 2023-07-13T14:16:12.6774661Z lfs: false 2023-07-13T14:16:12.6774868Z set-safe-directory: true 2023-07-13T14:16:12.6775067Z env: 2023-07-13T14:16:12.6775280Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-07-13T14:16:12.6775511Z REPOSITORY: pytorch/audio 2023-07-13T14:16:12.6775715Z PR_NUMBER: 306 2023-07-13T14:16:12.6778875Z SCRIPT: # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export FFMPEG_VERSION=6.0 export CODEC_HEADER_VERSION=n12.0.16.0 export COMPUTE_CAPABILITY=86 export BUILD_VERSION="$( cut -f 1 -d a version.txt )".dev"$(date "+%Y%m%d")" # 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 # Create Conda Env conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env # Install PyTorch / TorchAudio first set -ex set +u # don't know why conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" # Install torchaudio conda install --quiet --yes pkg-config cmake>=3.18.0 ninja pip install --progress-bar off -v -e . --no-use-pep517 # Install FFmpeg-dependencies conda install --quiet --yes -c conda-forge yasm x264 gnutls pkg-config lame libopus libvpx openh264 openssl x264 # Build FFmpeg with NVIDIA Video Codec SDK # TODO cache this ( git clone --quiet https://git.videolan.org/git/ffmpeg/nv-codec-headers.git cd nv-codec-headers git checkout ${CODEC_HEADER_VERSION} make PREFIX=${CONDA_PREFIX} install ) ( wget -q https://github.com/FFmpeg/FFmpeg/archive/refs/tags/n${FFMPEG_VERSION}.tar.gz tar -xf n${FFMPEG_VERSION}.tar.gz cd ./FFmpeg-n${FFMPEG_VERSION} export revision=${FFMPEG_VERSION} ./configure \ --prefix=${CONDA_PREFIX} \ --extra-cflags="-I${CONDA_PREFIX}/include" \ --extra-ldflags="-L${CONDA_PREFIX}/lib" \ --nvccflags="-gencode arch=compute_${COMPUTE_CAPABILITY},code=sm_${COMPUTE_CAPABILITY} -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 make clean make -j > /dev/null 2>&1 make install # test # src="https://download.pytorch.org/torchaudio/tutorial-assets/stream-api/NASAs_Most_Scientifically_Complex_Space_Observatory_Requires_Precision-MP4_small.mp4" # ffmpeg -y -vsync 0 -hwaccel cuvid -hwaccel_output_format cuda -c:v h264_cuvid -resize 360x240 -i "${src}" -c:a copy -c:v h264_nvenc -b:v 5M test.mp4 ) # Install runtime dependencies pip --quiet install git+https://github.com/kpu/kenlm/ flashlight-text # Install build tools conda install --quiet -y -c conda-forge pandoc doxygen pysoundfile pip install --quiet -r docs/requirements.txt -r docs/requirements-tutorials.txt # Build docs export BUILD_GALLERY=true (cd docs && make html) cp -rf docs/build/html/* "${RUNNER_DOCS_DIR}" mv docs/build/html /artifacts/ 2023-07-13T14:16:12.6782158Z ##[endgroup] 2023-07-13T14:16:12.7768462Z Syncing repository: pytorch/test-infra 2023-07-13T14:16:12.7769092Z ##[group]Getting Git version info 2023-07-13T14:16:12.7769511Z Working directory is '/home/ec2-user/actions-runner/_work/audio/audio/test-infra' 2023-07-13T14:16:12.7769965Z [command]/usr/bin/git version 2023-07-13T14:16:12.7770183Z git version 2.40.1 2023-07-13T14:16:12.7771058Z ##[endgroup] 2023-07-13T14:16:12.7781525Z Temporarily overriding HOME='/home/ec2-user/actions-runner/_work/_temp/4766d424-6944-4f53-be5e-d815a11466a0' before making global git config changes 2023-07-13T14:16:12.7781967Z Adding repository directory to the temporary git global config as a safe directory 2023-07-13T14:16:12.7786038Z [command]/usr/bin/git config --global --add safe.directory /home/ec2-user/actions-runner/_work/audio/audio/test-infra 2023-07-13T14:16:12.7815057Z ##[group]Initializing the repository 2023-07-13T14:16:12.7818475Z [command]/usr/bin/git init /home/ec2-user/actions-runner/_work/audio/audio/test-infra 2023-07-13T14:16:12.7838790Z hint: Using 'master' as the name for the initial branch. This default branch name 2023-07-13T14:16:12.7839175Z hint: is subject to change. To configure the initial branch name to use in all 2023-07-13T14:16:12.7839644Z hint: of your new repositories, which will suppress this warning, call: 2023-07-13T14:16:12.7839902Z hint: 2023-07-13T14:16:12.7840200Z hint: git config --global init.defaultBranch 2023-07-13T14:16:12.7840422Z hint: 2023-07-13T14:16:12.7840732Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and 2023-07-13T14:16:12.7841123Z hint: 'development'. The just-created branch can be renamed via this command: 2023-07-13T14:16:12.7841545Z hint: 2023-07-13T14:16:12.7841766Z hint: git branch -m 2023-07-13T14:16:12.7842173Z Initialized empty Git repository in /home/ec2-user/actions-runner/_work/audio/audio/test-infra/.git/ 2023-07-13T14:16:12.7847870Z [command]/usr/bin/git remote add origin https://github.com/pytorch/test-infra 2023-07-13T14:16:12.7874574Z ##[endgroup] 2023-07-13T14:16:12.7875109Z ##[group]Disabling automatic garbage collection 2023-07-13T14:16:12.7878512Z [command]/usr/bin/git config --local gc.auto 0 2023-07-13T14:16:12.7902470Z ##[endgroup] 2023-07-13T14:16:12.7902827Z ##[group]Setting up auth 2023-07-13T14:16:12.7907766Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2023-07-13T14:16:12.7933356Z [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-07-13T14:16:12.8137647Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2023-07-13T14:16:12.8161179Z [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-07-13T14:16:12.8359479Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** 2023-07-13T14:16:12.8395626Z ##[endgroup] 2023-07-13T14:16:12.8396007Z ##[group]Determining the default branch 2023-07-13T14:16:12.8399839Z Retrieving the default branch name 2023-07-13T14:16:13.0589805Z Default branch 'main' 2023-07-13T14:16:13.0590356Z ##[endgroup] 2023-07-13T14:16:13.0590753Z ##[group]Fetching the repository 2023-07-13T14:16:13.0595580Z [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-07-13T14:16:13.4685283Z remote: Enumerating objects: 1049, done. 2023-07-13T14:16:13.4685671Z remote: Counting objects: 0% (1/1049) 2023-07-13T14:16:13.4686055Z remote: Counting objects: 1% (11/1049) 2023-07-13T14:16:13.4686444Z remote: Counting objects: 2% (21/1049) 2023-07-13T14:16:13.4686864Z remote: Counting objects: 3% (32/1049) 2023-07-13T14:16:13.4687267Z remote: Counting objects: 4% (42/1049) 2023-07-13T14:16:13.4687946Z remote: Counting objects: 5% (53/1049) 2023-07-13T14:16:13.4688358Z remote: Counting objects: 6% (63/1049) 2023-07-13T14:16:13.4688756Z remote: Counting objects: 7% (74/1049) 2023-07-13T14:16:13.4689144Z remote: Counting objects: 8% (84/1049) 2023-07-13T14:16:13.4689520Z remote: Counting objects: 9% (95/1049) 2023-07-13T14:16:13.4689908Z remote: Counting objects: 10% (105/1049) 2023-07-13T14:16:13.4690295Z remote: Counting objects: 11% (116/1049) 2023-07-13T14:16:13.4690662Z remote: Counting objects: 12% (126/1049) 2023-07-13T14:16:13.4690931Z remote: Counting objects: 13% (137/1049) 2023-07-13T14:16:13.4691186Z remote: Counting objects: 14% (147/1049) 2023-07-13T14:16:13.4691427Z remote: Counting objects: 15% (158/1049) 2023-07-13T14:16:13.4691682Z remote: Counting objects: 16% (168/1049) 2023-07-13T14:16:13.4691932Z remote: Counting objects: 17% (179/1049) 2023-07-13T14:16:13.4692187Z remote: Counting objects: 18% (189/1049) 2023-07-13T14:16:13.4692431Z remote: Counting objects: 19% (200/1049) 2023-07-13T14:16:13.4692679Z remote: Counting objects: 20% (210/1049) 2023-07-13T14:16:13.4692931Z remote: Counting objects: 21% (221/1049) 2023-07-13T14:16:13.4693171Z remote: Counting objects: 22% (231/1049) 2023-07-13T14:16:13.4693416Z remote: Counting objects: 23% (242/1049) 2023-07-13T14:16:13.4693663Z remote: Counting objects: 24% (252/1049) 2023-07-13T14:16:13.4693926Z remote: Counting objects: 25% (263/1049) 2023-07-13T14:16:13.4694329Z remote: Counting objects: 26% (273/1049) 2023-07-13T14:16:13.4694588Z remote: Counting objects: 27% (284/1049) 2023-07-13T14:16:13.4694838Z remote: Counting objects: 28% (294/1049) 2023-07-13T14:16:13.4695081Z remote: Counting objects: 29% (305/1049) 2023-07-13T14:16:13.4695332Z remote: Counting objects: 30% (315/1049) 2023-07-13T14:16:13.4695587Z remote: Counting objects: 31% (326/1049) 2023-07-13T14:16:13.4695829Z remote: Counting objects: 32% (336/1049) 2023-07-13T14:16:13.4696078Z remote: Counting objects: 33% (347/1049) 2023-07-13T14:16:13.4696325Z remote: Counting objects: 34% (357/1049) 2023-07-13T14:16:13.4696601Z remote: Counting objects: 35% (368/1049) 2023-07-13T14:16:13.4696839Z remote: Counting objects: 36% (378/1049) 2023-07-13T14:16:13.4697085Z remote: Counting objects: 37% (389/1049) 2023-07-13T14:16:13.4697332Z remote: Counting objects: 38% (399/1049) 2023-07-13T14:16:13.4697580Z remote: Counting objects: 39% (410/1049) 2023-07-13T14:16:13.4697836Z remote: Counting objects: 40% (420/1049) 2023-07-13T14:16:13.4698090Z remote: Counting objects: 41% (431/1049) 2023-07-13T14:16:13.4698341Z remote: Counting objects: 42% (441/1049) 2023-07-13T14:16:13.4698592Z remote: Counting objects: 43% (452/1049) 2023-07-13T14:16:13.4698844Z remote: Counting objects: 44% (462/1049) 2023-07-13T14:16:13.4699101Z remote: Counting objects: 45% (473/1049) 2023-07-13T14:16:13.4699347Z remote: Counting objects: 46% (483/1049) 2023-07-13T14:16:13.4699603Z remote: Counting objects: 47% (494/1049) 2023-07-13T14:16:13.4699853Z remote: Counting objects: 48% (504/1049) 2023-07-13T14:16:13.4700095Z remote: Counting objects: 49% (515/1049) 2023-07-13T14:16:13.4700348Z remote: Counting objects: 50% (525/1049) 2023-07-13T14:16:13.4700606Z remote: Counting objects: 51% (535/1049) 2023-07-13T14:16:13.4700868Z remote: Counting objects: 52% (546/1049) 2023-07-13T14:16:13.4701116Z remote: Counting objects: 53% (556/1049) 2023-07-13T14:16:13.4701368Z remote: Counting objects: 54% (567/1049) 2023-07-13T14:16:13.4701621Z remote: Counting objects: 55% (577/1049) 2023-07-13T14:16:13.4701922Z remote: Counting objects: 56% (588/1049) 2023-07-13T14:16:13.4702176Z remote: Counting objects: 57% (598/1049) 2023-07-13T14:16:13.4702424Z remote: Counting objects: 58% (609/1049) 2023-07-13T14:16:13.4702664Z remote: Counting objects: 59% (619/1049) 2023-07-13T14:16:13.4702918Z remote: Counting objects: 60% (630/1049) 2023-07-13T14:16:13.4703165Z remote: Counting objects: 61% (640/1049) 2023-07-13T14:16:13.4703404Z remote: Counting objects: 62% (651/1049) 2023-07-13T14:16:13.4703651Z remote: Counting objects: 63% (661/1049) 2023-07-13T14:16:13.4703947Z remote: Counting objects: 64% (672/1049) 2023-07-13T14:16:13.4704242Z remote: Counting objects: 65% (682/1049) 2023-07-13T14:16:13.4704511Z remote: Counting objects: 66% (693/1049) 2023-07-13T14:16:13.4704765Z remote: Counting objects: 67% (703/1049) 2023-07-13T14:16:13.4705022Z remote: Counting objects: 68% (714/1049) 2023-07-13T14:16:13.4705283Z remote: Counting objects: 69% (724/1049) 2023-07-13T14:16:13.4705527Z remote: Counting objects: 70% (735/1049) 2023-07-13T14:16:13.4705789Z remote: Counting objects: 71% (745/1049) 2023-07-13T14:16:13.4706049Z remote: Counting objects: 72% (756/1049) 2023-07-13T14:16:13.4706294Z remote: Counting objects: 73% (766/1049) 2023-07-13T14:16:13.4706550Z remote: Counting objects: 74% (777/1049) 2023-07-13T14:16:13.4706802Z remote: Counting objects: 75% (787/1049) 2023-07-13T14:16:13.4707048Z remote: Counting objects: 76% (798/1049) 2023-07-13T14:16:13.4707306Z remote: Counting objects: 77% (808/1049) 2023-07-13T14:16:13.4707628Z remote: Counting objects: 78% (819/1049) 2023-07-13T14:16:13.4707881Z remote: Counting objects: 79% (829/1049) 2023-07-13T14:16:13.4708127Z remote: Counting objects: 80% (840/1049) 2023-07-13T14:16:13.4708381Z remote: Counting objects: 81% (850/1049) 2023-07-13T14:16:13.4708643Z remote: Counting objects: 82% (861/1049) 2023-07-13T14:16:13.4708890Z remote: Counting objects: 83% (871/1049) 2023-07-13T14:16:13.4709142Z remote: Counting objects: 84% (882/1049) 2023-07-13T14:16:13.4709397Z remote: Counting objects: 85% (892/1049) 2023-07-13T14:16:13.4709644Z remote: Counting objects: 86% (903/1049) 2023-07-13T14:16:13.4709897Z remote: Counting objects: 87% (913/1049) 2023-07-13T14:16:13.4710152Z remote: Counting objects: 88% (924/1049) 2023-07-13T14:16:13.4710408Z remote: Counting objects: 89% (934/1049) 2023-07-13T14:16:13.4710654Z remote: Counting objects: 90% (945/1049) 2023-07-13T14:16:13.4710913Z remote: Counting objects: 91% (955/1049) 2023-07-13T14:16:13.4711170Z remote: Counting objects: 92% (966/1049) 2023-07-13T14:16:13.4711418Z remote: Counting objects: 93% (976/1049) 2023-07-13T14:16:13.4711773Z remote: Counting objects: 94% (987/1049) 2023-07-13T14:16:13.4712035Z remote: Counting objects: 95% (997/1049) 2023-07-13T14:16:13.4712286Z remote: Counting objects: 96% (1008/1049) 2023-07-13T14:16:13.4712552Z remote: Counting objects: 97% (1018/1049) 2023-07-13T14:16:13.4712826Z remote: Counting objects: 98% (1029/1049) 2023-07-13T14:16:13.4713079Z remote: Counting objects: 99% (1039/1049) 2023-07-13T14:16:13.4713342Z remote: Counting objects: 100% (1049/1049) 2023-07-13T14:16:13.4713622Z remote: Counting objects: 100% (1049/1049), done. 2023-07-13T14:16:13.4713904Z remote: Compressing objects: 0% (1/848) 2023-07-13T14:16:13.4731135Z remote: Compressing objects: 1% (9/848) 2023-07-13T14:16:13.4731494Z remote: Compressing objects: 2% (17/848) 2023-07-13T14:16:13.4731861Z remote: Compressing objects: 3% (26/848) 2023-07-13T14:16:13.4732208Z remote: Compressing objects: 4% (34/848) 2023-07-13T14:16:13.4732550Z remote: Compressing objects: 5% (43/848) 2023-07-13T14:16:13.4733084Z remote: Compressing objects: 6% (51/848) 2023-07-13T14:16:13.4733519Z remote: Compressing objects: 7% (60/848) 2023-07-13T14:16:13.4733966Z remote: Compressing objects: 8% (68/848) 2023-07-13T14:16:13.4734384Z remote: Compressing objects: 9% (77/848) 2023-07-13T14:16:13.4734664Z remote: Compressing objects: 10% (85/848) 2023-07-13T14:16:13.4734944Z remote: Compressing objects: 11% (94/848) 2023-07-13T14:16:13.4735212Z remote: Compressing objects: 12% (102/848) 2023-07-13T14:16:13.4735499Z remote: Compressing objects: 13% (111/848) 2023-07-13T14:16:13.4735793Z remote: Compressing objects: 14% (119/848) 2023-07-13T14:16:13.4736062Z remote: Compressing objects: 15% (128/848) 2023-07-13T14:16:13.4736349Z remote: Compressing objects: 16% (136/848) 2023-07-13T14:16:13.4736634Z remote: Compressing objects: 17% (145/848) 2023-07-13T14:16:13.4736904Z remote: Compressing objects: 18% (153/848) 2023-07-13T14:16:13.4737189Z remote: Compressing objects: 19% (162/848) 2023-07-13T14:16:13.4737466Z remote: Compressing objects: 20% (170/848) 2023-07-13T14:16:13.4737743Z remote: Compressing objects: 21% (179/848) 2023-07-13T14:16:13.4738003Z remote: Compressing objects: 22% (187/848) 2023-07-13T14:16:13.4738282Z remote: Compressing objects: 23% (196/848) 2023-07-13T14:16:13.4738555Z remote: Compressing objects: 24% (204/848) 2023-07-13T14:16:13.4738816Z remote: Compressing objects: 25% (212/848) 2023-07-13T14:16:13.4739095Z remote: Compressing objects: 26% (221/848) 2023-07-13T14:16:13.4739463Z remote: Compressing objects: 27% (229/848) 2023-07-13T14:16:13.4739721Z remote: Compressing objects: 28% (238/848) 2023-07-13T14:16:13.4739987Z remote: Compressing objects: 29% (246/848) 2023-07-13T14:16:13.4740258Z remote: Compressing objects: 30% (255/848) 2023-07-13T14:16:13.4740532Z remote: Compressing objects: 31% (263/848) 2023-07-13T14:16:13.4740791Z remote: Compressing objects: 32% (272/848) 2023-07-13T14:16:13.4741058Z remote: Compressing objects: 33% (280/848) 2023-07-13T14:16:13.4741324Z remote: Compressing objects: 34% (289/848) 2023-07-13T14:16:13.4741580Z remote: Compressing objects: 35% (297/848) 2023-07-13T14:16:13.4741843Z remote: Compressing objects: 36% (306/848) 2023-07-13T14:16:13.4742106Z remote: Compressing objects: 37% (314/848) 2023-07-13T14:16:13.4742359Z remote: Compressing objects: 38% (323/848) 2023-07-13T14:16:13.4742633Z remote: Compressing objects: 39% (331/848) 2023-07-13T14:16:13.4742908Z remote: Compressing objects: 40% (340/848) 2023-07-13T14:16:13.4743171Z remote: Compressing objects: 41% (348/848) 2023-07-13T14:16:13.4743463Z remote: Compressing objects: 42% (357/848) 2023-07-13T14:16:13.4743756Z remote: Compressing objects: 43% (365/848) 2023-07-13T14:16:13.4744040Z remote: Compressing objects: 44% (374/848) 2023-07-13T14:16:13.4744300Z remote: Compressing objects: 45% (382/848) 2023-07-13T14:16:13.4744570Z remote: Compressing objects: 46% (391/848) 2023-07-13T14:16:13.4744836Z remote: Compressing objects: 47% (399/848) 2023-07-13T14:16:13.4745096Z remote: Compressing objects: 48% (408/848) 2023-07-13T14:16:13.4745369Z remote: Compressing objects: 49% (416/848) 2023-07-13T14:16:13.4745642Z remote: Compressing objects: 50% (424/848) 2023-07-13T14:16:13.4745903Z remote: Compressing objects: 51% (433/848) 2023-07-13T14:16:13.4746180Z remote: Compressing objects: 52% (441/848) 2023-07-13T14:16:13.4746524Z remote: Compressing objects: 53% (450/848) 2023-07-13T14:16:13.4746873Z remote: Compressing objects: 54% (458/848) 2023-07-13T14:16:13.4747199Z remote: Compressing objects: 55% (467/848) 2023-07-13T14:16:13.4747469Z remote: Compressing objects: 56% (475/848) 2023-07-13T14:16:13.4747825Z remote: Compressing objects: 57% (484/848) 2023-07-13T14:16:13.4748079Z remote: Compressing objects: 58% (492/848) 2023-07-13T14:16:13.4748340Z remote: Compressing objects: 59% (501/848) 2023-07-13T14:16:13.4748601Z remote: Compressing objects: 60% (509/848) 2023-07-13T14:16:13.4748861Z remote: Compressing objects: 61% (518/848) 2023-07-13T14:16:13.4749201Z remote: Compressing objects: 62% (526/848) 2023-07-13T14:16:13.4749545Z remote: Compressing objects: 63% (535/848) 2023-07-13T14:16:13.4749851Z remote: Compressing objects: 64% (543/848) 2023-07-13T14:16:13.4750116Z remote: Compressing objects: 65% (552/848) 2023-07-13T14:16:13.4750384Z remote: Compressing objects: 66% (560/848) 2023-07-13T14:16:13.4750648Z remote: Compressing objects: 67% (569/848) 2023-07-13T14:16:13.4750903Z remote: Compressing objects: 68% (577/848) 2023-07-13T14:16:13.4751173Z remote: Compressing objects: 69% (586/848) 2023-07-13T14:16:13.4751460Z remote: Compressing objects: 70% (594/848) 2023-07-13T14:16:13.4751874Z remote: Compressing objects: 71% (603/848) 2023-07-13T14:16:13.4752213Z remote: Compressing objects: 72% (611/848) 2023-07-13T14:16:13.4752504Z remote: Compressing objects: 73% (620/848) 2023-07-13T14:16:13.4752760Z remote: Compressing objects: 74% (628/848) 2023-07-13T14:16:13.4753026Z remote: Compressing objects: 75% (636/848) 2023-07-13T14:16:13.4753292Z remote: Compressing objects: 76% (645/848) 2023-07-13T14:16:13.4753646Z remote: Compressing objects: 77% (653/848) 2023-07-13T14:16:13.4753904Z remote: Compressing objects: 78% (662/848) 2023-07-13T14:16:13.4754167Z remote: Compressing objects: 79% (670/848) 2023-07-13T14:16:13.4754429Z remote: Compressing objects: 80% (679/848) 2023-07-13T14:16:13.4754687Z remote: Compressing objects: 81% (687/848) 2023-07-13T14:16:13.4754962Z remote: Compressing objects: 82% (696/848) 2023-07-13T14:16:13.4755228Z remote: Compressing objects: 83% (704/848) 2023-07-13T14:16:13.4755484Z remote: Compressing objects: 84% (713/848) 2023-07-13T14:16:13.4755749Z remote: Compressing objects: 85% (721/848) 2023-07-13T14:16:13.4756013Z remote: Compressing objects: 86% (730/848) 2023-07-13T14:16:13.4756283Z remote: Compressing objects: 87% (738/848) 2023-07-13T14:16:13.4756539Z remote: Compressing objects: 88% (747/848) 2023-07-13T14:16:13.4756808Z remote: Compressing objects: 89% (755/848) 2023-07-13T14:16:13.4757087Z remote: Compressing objects: 90% (764/848) 2023-07-13T14:16:13.4757356Z remote: Compressing objects: 91% (772/848) 2023-07-13T14:16:13.4757625Z remote: Compressing objects: 92% (781/848) 2023-07-13T14:16:13.4757888Z remote: Compressing objects: 93% (789/848) 2023-07-13T14:16:13.4758344Z remote: Compressing objects: 94% (798/848) 2023-07-13T14:16:13.4758618Z remote: Compressing objects: 95% (806/848) 2023-07-13T14:16:13.4758874Z remote: Compressing objects: 96% (815/848) 2023-07-13T14:16:13.4759147Z remote: Compressing objects: 97% (823/848) 2023-07-13T14:16:13.4759416Z remote: Compressing objects: 98% (832/848) 2023-07-13T14:16:13.4759670Z remote: Compressing objects: 99% (840/848) 2023-07-13T14:16:13.4759944Z remote: Compressing objects: 100% (848/848) 2023-07-13T14:16:13.4760228Z remote: Compressing objects: 100% (848/848), done. 2023-07-13T14:16:13.4760504Z Receiving objects: 0% (1/1049) 2023-07-13T14:16:13.4760742Z Receiving objects: 1% (11/1049) 2023-07-13T14:16:13.4760986Z Receiving objects: 2% (21/1049) 2023-07-13T14:16:13.4836529Z Receiving objects: 3% (32/1049) 2023-07-13T14:16:13.4837921Z Receiving objects: 4% (42/1049) 2023-07-13T14:16:13.4848078Z Receiving objects: 5% (53/1049) 2023-07-13T14:16:13.4850439Z Receiving objects: 6% (63/1049) 2023-07-13T14:16:13.4852342Z Receiving objects: 7% (74/1049) 2023-07-13T14:16:13.4855107Z Receiving objects: 8% (84/1049) 2023-07-13T14:16:13.4856339Z Receiving objects: 9% (95/1049) 2023-07-13T14:16:13.4856810Z Receiving objects: 10% (105/1049) 2023-07-13T14:16:13.4862083Z Receiving objects: 11% (116/1049) 2023-07-13T14:16:13.4864813Z Receiving objects: 12% (126/1049) 2023-07-13T14:16:13.4866358Z Receiving objects: 13% (137/1049) 2023-07-13T14:16:13.4868447Z Receiving objects: 14% (147/1049) 2023-07-13T14:16:13.4869938Z Receiving objects: 15% (158/1049) 2023-07-13T14:16:13.4872923Z Receiving objects: 16% (168/1049) 2023-07-13T14:16:13.4881954Z Receiving objects: 17% (179/1049) 2023-07-13T14:16:13.4884866Z Receiving objects: 18% (189/1049) 2023-07-13T14:16:13.4893102Z Receiving objects: 19% (200/1049) 2023-07-13T14:16:13.4893890Z Receiving objects: 20% (210/1049) 2023-07-13T14:16:13.4895156Z Receiving objects: 21% (221/1049) 2023-07-13T14:16:13.4930739Z Receiving objects: 22% (231/1049) 2023-07-13T14:16:13.4932408Z Receiving objects: 23% (242/1049) 2023-07-13T14:16:13.4941716Z Receiving objects: 24% (252/1049) 2023-07-13T14:16:13.4942107Z Receiving objects: 25% (263/1049) 2023-07-13T14:16:13.4947572Z Receiving objects: 26% (273/1049) 2023-07-13T14:16:13.4949176Z Receiving objects: 27% (284/1049) 2023-07-13T14:16:13.4951261Z Receiving objects: 28% (294/1049) 2023-07-13T14:16:13.4952504Z Receiving objects: 29% (305/1049) 2023-07-13T14:16:13.4953971Z Receiving objects: 30% (315/1049) 2023-07-13T14:16:13.4961634Z Receiving objects: 31% (326/1049) 2023-07-13T14:16:13.4971753Z Receiving objects: 32% (336/1049) 2023-07-13T14:16:13.4978890Z Receiving objects: 33% (347/1049) 2023-07-13T14:16:13.4980375Z Receiving objects: 34% (357/1049) 2023-07-13T14:16:13.4981599Z Receiving objects: 35% (368/1049) 2023-07-13T14:16:13.4981937Z Receiving objects: 36% (378/1049) 2023-07-13T14:16:13.4985685Z Receiving objects: 37% (389/1049) 2023-07-13T14:16:13.4986400Z Receiving objects: 38% (399/1049) 2023-07-13T14:16:13.4988401Z Receiving objects: 39% (410/1049) 2023-07-13T14:16:13.4996257Z Receiving objects: 40% (420/1049) 2023-07-13T14:16:13.4999804Z Receiving objects: 41% (431/1049) 2023-07-13T14:16:13.5002934Z Receiving objects: 42% (441/1049) 2023-07-13T14:16:13.5007593Z Receiving objects: 43% (452/1049) 2023-07-13T14:16:13.5011210Z Receiving objects: 44% (462/1049) 2023-07-13T14:16:13.5015803Z Receiving objects: 45% (473/1049) 2023-07-13T14:16:13.5017109Z Receiving objects: 46% (483/1049) 2023-07-13T14:16:13.5018296Z Receiving objects: 47% (494/1049) 2023-07-13T14:16:13.5021478Z Receiving objects: 48% (504/1049) 2023-07-13T14:16:13.5023355Z Receiving objects: 49% (515/1049) 2023-07-13T14:16:13.5024944Z Receiving objects: 50% (525/1049) 2023-07-13T14:16:13.5025267Z Receiving objects: 51% (535/1049) 2023-07-13T14:16:13.5026141Z Receiving objects: 52% (546/1049) 2023-07-13T14:16:13.5026455Z Receiving objects: 53% (556/1049) 2023-07-13T14:16:13.5028527Z Receiving objects: 54% (567/1049) 2023-07-13T14:16:13.5030633Z Receiving objects: 55% (577/1049) 2023-07-13T14:16:13.5032323Z Receiving objects: 56% (588/1049) 2023-07-13T14:16:13.5034839Z Receiving objects: 57% (598/1049) 2023-07-13T14:16:13.5037604Z Receiving objects: 58% (609/1049) 2023-07-13T14:16:13.5040161Z Receiving objects: 59% (619/1049) 2023-07-13T14:16:13.5042632Z Receiving objects: 60% (630/1049) 2023-07-13T14:16:13.5049356Z Receiving objects: 61% (640/1049) 2023-07-13T14:16:13.5054071Z Receiving objects: 62% (651/1049) 2023-07-13T14:16:13.5088978Z Receiving objects: 63% (661/1049) 2023-07-13T14:16:13.5091464Z Receiving objects: 64% (672/1049) 2023-07-13T14:16:13.5093873Z Receiving objects: 65% (682/1049) 2023-07-13T14:16:13.5172655Z Receiving objects: 66% (693/1049) 2023-07-13T14:16:13.5175267Z Receiving objects: 67% (703/1049) 2023-07-13T14:16:13.5177007Z Receiving objects: 68% (714/1049) 2023-07-13T14:16:13.5178957Z Receiving objects: 69% (724/1049) 2023-07-13T14:16:13.5179507Z Receiving objects: 70% (735/1049) 2023-07-13T14:16:13.5180948Z Receiving objects: 71% (745/1049) 2023-07-13T14:16:13.5186817Z Receiving objects: 72% (756/1049) 2023-07-13T14:16:13.5190051Z Receiving objects: 73% (766/1049) 2023-07-13T14:16:13.5194859Z Receiving objects: 74% (777/1049) 2023-07-13T14:16:13.5197094Z Receiving objects: 75% (787/1049) 2023-07-13T14:16:13.5198740Z Receiving objects: 76% (798/1049) 2023-07-13T14:16:13.5200476Z Receiving objects: 77% (808/1049) 2023-07-13T14:16:13.5202362Z Receiving objects: 78% (819/1049) 2023-07-13T14:16:13.5203541Z Receiving objects: 79% (829/1049) 2023-07-13T14:16:13.5203887Z Receiving objects: 80% (840/1049) 2023-07-13T14:16:13.5204243Z Receiving objects: 81% (850/1049) 2023-07-13T14:16:13.5204749Z Receiving objects: 82% (861/1049) 2023-07-13T14:16:13.5205461Z Receiving objects: 83% (871/1049) 2023-07-13T14:16:13.5207381Z Receiving objects: 84% (882/1049) 2023-07-13T14:16:13.5208592Z Receiving objects: 85% (892/1049) 2023-07-13T14:16:13.5210006Z Receiving objects: 86% (903/1049) 2023-07-13T14:16:13.5210338Z Receiving objects: 87% (913/1049) 2023-07-13T14:16:13.5210654Z Receiving objects: 88% (924/1049) 2023-07-13T14:16:13.5210975Z Receiving objects: 89% (934/1049) 2023-07-13T14:16:13.5211584Z Receiving objects: 90% (945/1049) 2023-07-13T14:16:13.5212793Z Receiving objects: 91% (955/1049) 2023-07-13T14:16:13.5213982Z Receiving objects: 92% (966/1049) 2023-07-13T14:16:13.5214336Z Receiving objects: 93% (976/1049) 2023-07-13T14:16:13.5221447Z Receiving objects: 94% (987/1049) 2023-07-13T14:16:13.5225058Z Receiving objects: 95% (997/1049) 2023-07-13T14:16:13.5231114Z Receiving objects: 96% (1008/1049) 2023-07-13T14:16:13.5240537Z Receiving objects: 97% (1018/1049) 2023-07-13T14:16:13.5244583Z Receiving objects: 98% (1029/1049) 2023-07-13T14:16:13.5268167Z Receiving objects: 99% (1039/1049) 2023-07-13T14:16:13.5268819Z remote: Total 1049 (delta 174), reused 606 (delta 91), pack-reused 0 2023-07-13T14:16:13.5282560Z Receiving objects: 100% (1049/1049) 2023-07-13T14:16:13.5282968Z Receiving objects: 100% (1049/1049), 1.42 MiB | 26.41 MiB/s, done. 2023-07-13T14:16:13.5287812Z Resolving deltas: 0% (0/174) 2023-07-13T14:16:13.5288044Z Resolving deltas: 1% (2/174) 2023-07-13T14:16:13.5288336Z Resolving deltas: 3% (6/174) 2023-07-13T14:16:13.5288674Z Resolving deltas: 4% (7/174) 2023-07-13T14:16:13.5289191Z Resolving deltas: 5% (9/174) 2023-07-13T14:16:13.5289925Z Resolving deltas: 6% (11/174) 2023-07-13T14:16:13.5290397Z Resolving deltas: 7% (13/174) 2023-07-13T14:16:13.5290697Z Resolving deltas: 8% (14/174) 2023-07-13T14:16:13.5291031Z Resolving deltas: 9% (16/174) 2023-07-13T14:16:13.5291391Z Resolving deltas: 10% (18/174) 2023-07-13T14:16:13.5291728Z Resolving deltas: 11% (20/174) 2023-07-13T14:16:13.5292431Z Resolving deltas: 12% (21/174) 2023-07-13T14:16:13.5293459Z Resolving deltas: 13% (23/174) 2023-07-13T14:16:13.5293716Z Resolving deltas: 14% (25/174) 2023-07-13T14:16:13.5294744Z Resolving deltas: 15% (27/174) 2023-07-13T14:16:13.5295511Z Resolving deltas: 17% (30/174) 2023-07-13T14:16:13.5296039Z Resolving deltas: 18% (33/174) 2023-07-13T14:16:13.5296267Z Resolving deltas: 19% (34/174) 2023-07-13T14:16:13.5297571Z Resolving deltas: 20% (35/174) 2023-07-13T14:16:13.5298114Z Resolving deltas: 21% (37/174) 2023-07-13T14:16:13.5298598Z Resolving deltas: 22% (39/174) 2023-07-13T14:16:13.5299371Z Resolving deltas: 23% (41/174) 2023-07-13T14:16:13.5301835Z Resolving deltas: 24% (43/174) 2023-07-13T14:16:13.5302516Z Resolving deltas: 25% (45/174) 2023-07-13T14:16:13.5311372Z Resolving deltas: 27% (47/174) 2023-07-13T14:16:13.5312156Z Resolving deltas: 28% (49/174) 2023-07-13T14:16:13.5312718Z Resolving deltas: 29% (51/174) 2023-07-13T14:16:13.5314010Z Resolving deltas: 30% (53/174) 2023-07-13T14:16:13.5318014Z Resolving deltas: 31% (54/174) 2023-07-13T14:16:13.5318603Z Resolving deltas: 32% (57/174) 2023-07-13T14:16:13.5320110Z Resolving deltas: 33% (58/174) 2023-07-13T14:16:13.5320388Z Resolving deltas: 34% (60/174) 2023-07-13T14:16:13.5323367Z Resolving deltas: 35% (61/174) 2023-07-13T14:16:13.5323723Z Resolving deltas: 37% (65/174) 2023-07-13T14:16:13.5323949Z Resolving deltas: 38% (67/174) 2023-07-13T14:16:13.5325038Z Resolving deltas: 39% (68/174) 2023-07-13T14:16:13.5325273Z Resolving deltas: 40% (70/174) 2023-07-13T14:16:13.5325503Z Resolving deltas: 41% (72/174) 2023-07-13T14:16:13.5326020Z Resolving deltas: 42% (74/174) 2023-07-13T14:16:13.5326368Z Resolving deltas: 43% (75/174) 2023-07-13T14:16:13.5326709Z Resolving deltas: 44% (77/174) 2023-07-13T14:16:13.5327043Z Resolving deltas: 45% (79/174) 2023-07-13T14:16:13.5327364Z Resolving deltas: 46% (81/174) 2023-07-13T14:16:13.5327706Z Resolving deltas: 47% (83/174) 2023-07-13T14:16:13.5328038Z Resolving deltas: 48% (85/174) 2023-07-13T14:16:13.5328373Z Resolving deltas: 49% (86/174) 2023-07-13T14:16:13.5328691Z Resolving deltas: 50% (87/174) 2023-07-13T14:16:13.5329018Z Resolving deltas: 51% (89/174) 2023-07-13T14:16:13.5329344Z Resolving deltas: 52% (91/174) 2023-07-13T14:16:13.5329668Z Resolving deltas: 53% (93/174) 2023-07-13T14:16:13.5329996Z Resolving deltas: 54% (94/174) 2023-07-13T14:16:13.5330325Z Resolving deltas: 55% (96/174) 2023-07-13T14:16:13.5330641Z Resolving deltas: 56% (98/174) 2023-07-13T14:16:13.5330975Z Resolving deltas: 58% (102/174) 2023-07-13T14:16:13.5331334Z Resolving deltas: 59% (103/174) 2023-07-13T14:16:13.5331660Z Resolving deltas: 60% (105/174) 2023-07-13T14:16:13.5331990Z Resolving deltas: 61% (107/174) 2023-07-13T14:16:13.5332328Z Resolving deltas: 62% (109/174) 2023-07-13T14:16:13.5332648Z Resolving deltas: 63% (110/174) 2023-07-13T14:16:13.5333117Z Resolving deltas: 64% (112/174) 2023-07-13T14:16:13.5333341Z Resolving deltas: 66% (116/174) 2023-07-13T14:16:13.5333558Z Resolving deltas: 67% (117/174) 2023-07-13T14:16:13.5333771Z Resolving deltas: 68% (119/174) 2023-07-13T14:16:13.5334052Z Resolving deltas: 69% (121/174) 2023-07-13T14:16:13.5334366Z Resolving deltas: 70% (122/174) 2023-07-13T14:16:13.5334691Z Resolving deltas: 71% (125/174) 2023-07-13T14:16:13.5335033Z Resolving deltas: 72% (126/174) 2023-07-13T14:16:13.5335368Z Resolving deltas: 74% (129/174) 2023-07-13T14:16:13.5335681Z Resolving deltas: 75% (131/174) 2023-07-13T14:16:13.5335917Z Resolving deltas: 76% (133/174) 2023-07-13T14:16:13.5336144Z Resolving deltas: 77% (134/174) 2023-07-13T14:16:13.5336363Z Resolving deltas: 78% (136/174) 2023-07-13T14:16:13.5336627Z Resolving deltas: 79% (138/174) 2023-07-13T14:16:13.5336885Z Resolving deltas: 80% (140/174) 2023-07-13T14:16:13.5337121Z Resolving deltas: 81% (142/174) 2023-07-13T14:16:13.5337368Z Resolving deltas: 82% (143/174) 2023-07-13T14:16:13.5337635Z Resolving deltas: 83% (145/174) 2023-07-13T14:16:13.5337886Z Resolving deltas: 85% (149/174) 2023-07-13T14:16:13.5338160Z Resolving deltas: 86% (151/174) 2023-07-13T14:16:13.5338469Z Resolving deltas: 87% (152/174) 2023-07-13T14:16:13.5338782Z Resolving deltas: 88% (154/174) 2023-07-13T14:16:13.5339094Z Resolving deltas: 89% (155/174) 2023-07-13T14:16:13.5339423Z Resolving deltas: 90% (157/174) 2023-07-13T14:16:13.5339740Z Resolving deltas: 91% (159/174) 2023-07-13T14:16:13.5340050Z Resolving deltas: 92% (161/174) 2023-07-13T14:16:13.5340375Z Resolving deltas: 95% (166/174) 2023-07-13T14:16:13.5340708Z Resolving deltas: 96% (168/174) 2023-07-13T14:16:13.5341386Z Resolving deltas: 97% (169/174) 2023-07-13T14:16:13.5342885Z Resolving deltas: 98% (171/174) 2023-07-13T14:16:13.5344262Z Resolving deltas: 99% (173/174) 2023-07-13T14:16:13.5345283Z Resolving deltas: 100% (174/174) 2023-07-13T14:16:13.5345778Z Resolving deltas: 100% (174/174), done. 2023-07-13T14:16:13.5463186Z From https://github.com/pytorch/test-infra 2023-07-13T14:16:13.5463574Z * [new branch] main -> origin/main 2023-07-13T14:16:13.5480069Z ##[endgroup] 2023-07-13T14:16:13.5480470Z ##[group]Determining the checkout info 2023-07-13T14:16:13.5482789Z ##[endgroup] 2023-07-13T14:16:13.5483212Z ##[group]Checking out the ref 2023-07-13T14:16:13.5486784Z [command]/usr/bin/git checkout --progress --force -B main refs/remotes/origin/main 2023-07-13T14:16:13.5904043Z Switched to a new branch 'main' 2023-07-13T14:16:13.5904679Z branch 'main' set up to track 'origin/main'. 2023-07-13T14:16:13.5910243Z ##[endgroup] 2023-07-13T14:16:13.5910650Z ##[group]Setting up auth for fetching submodules 2023-07-13T14:16:13.5915415Z [command]/usr/bin/git config --global http.https://github.com/.extraheader AUTHORIZATION: basic *** 2023-07-13T14:16:13.5954622Z [command]/usr/bin/git config --global --unset-all url.https://github.com/.insteadOf 2023-07-13T14:16:13.5976287Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf git@github.com: 2023-07-13T14:16:13.5996397Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf org-21003710@github.com: 2023-07-13T14:16:13.6020510Z ##[endgroup] 2023-07-13T14:16:13.6020904Z ##[group]Fetching submodules 2023-07-13T14:16:13.6024085Z [command]/usr/bin/git submodule sync --recursive 2023-07-13T14:16:13.6231321Z [command]/usr/bin/git -c protocol.version=2 submodule update --init --force --depth=1 --recursive 2023-07-13T14:16:13.6430074Z [command]/usr/bin/git submodule foreach --recursive git config --local gc.auto 0 2023-07-13T14:16:13.6625961Z ##[endgroup] 2023-07-13T14:16:13.6626472Z ##[group]Persisting credentials for submodules 2023-07-13T14:16:13.6630660Z [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-07-13T14:16:13.6827443Z [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-07-13T14:16:13.7027401Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'git@github.com:' 2023-07-13T14:16:13.7225374Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'org-21003710@github.com:' 2023-07-13T14:16:13.7424192Z ##[endgroup] 2023-07-13T14:16:13.7454112Z [command]/usr/bin/git log -1 --format='%H' 2023-07-13T14:16:13.7475730Z 'f1766167e55a3952a5eef0755a94cc78aaabbdc2' 2023-07-13T14:16:13.7707148Z Prepare all required actions 2023-07-13T14:16:13.7707444Z Getting action download info 2023-07-13T14:16:13.9174355Z Download action repository 'pytorch/test-infra@main' (SHA:f1766167e55a3952a5eef0755a94cc78aaabbdc2) 2023-07-13T14:16:14.1533650Z Getting action download info 2023-07-13T14:16:14.2908238Z Download action repository 'nick-fields/retry@3e91a01664abd3c5cd539100d10d33b9c5b68482' (SHA:3e91a01664abd3c5cd539100d10d33b9c5b68482) 2023-07-13T14:16:14.5057015Z ##[group]Run ./test-infra/.github/actions/setup-linux 2023-07-13T14:16:14.5057260Z env: 2023-07-13T14:16:14.5057485Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-07-13T14:16:14.5057730Z REPOSITORY: pytorch/audio 2023-07-13T14:16:14.5057944Z PR_NUMBER: 306 2023-07-13T14:16:14.5061327Z SCRIPT: # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export FFMPEG_VERSION=6.0 export CODEC_HEADER_VERSION=n12.0.16.0 export COMPUTE_CAPABILITY=86 export BUILD_VERSION="$( cut -f 1 -d a version.txt )".dev"$(date "+%Y%m%d")" # 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 # Create Conda Env conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env # Install PyTorch / TorchAudio first set -ex set +u # don't know why conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" # Install torchaudio conda install --quiet --yes pkg-config cmake>=3.18.0 ninja pip install --progress-bar off -v -e . --no-use-pep517 # Install FFmpeg-dependencies conda install --quiet --yes -c conda-forge yasm x264 gnutls pkg-config lame libopus libvpx openh264 openssl x264 # Build FFmpeg with NVIDIA Video Codec SDK # TODO cache this ( git clone --quiet https://git.videolan.org/git/ffmpeg/nv-codec-headers.git cd nv-codec-headers git checkout ${CODEC_HEADER_VERSION} make PREFIX=${CONDA_PREFIX} install ) ( wget -q https://github.com/FFmpeg/FFmpeg/archive/refs/tags/n${FFMPEG_VERSION}.tar.gz tar -xf n${FFMPEG_VERSION}.tar.gz cd ./FFmpeg-n${FFMPEG_VERSION} export revision=${FFMPEG_VERSION} ./configure \ --prefix=${CONDA_PREFIX} \ --extra-cflags="-I${CONDA_PREFIX}/include" \ --extra-ldflags="-L${CONDA_PREFIX}/lib" \ --nvccflags="-gencode arch=compute_${COMPUTE_CAPABILITY},code=sm_${COMPUTE_CAPABILITY} -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 make clean make -j > /dev/null 2>&1 make install # test # src="https://download.pytorch.org/torchaudio/tutorial-assets/stream-api/NASAs_Most_Scientifically_Complex_Space_Observatory_Requires_Precision-MP4_small.mp4" # ffmpeg -y -vsync 0 -hwaccel cuvid -hwaccel_output_format cuda -c:v h264_cuvid -resize 360x240 -i "${src}" -c:a copy -c:v h264_nvenc -b:v 5M test.mp4 ) # Install runtime dependencies pip --quiet install git+https://github.com/kpu/kenlm/ flashlight-text # Install build tools conda install --quiet -y -c conda-forge pandoc doxygen pysoundfile pip install --quiet -r docs/requirements.txt -r docs/requirements-tutorials.txt # Build docs export BUILD_GALLERY=true (cd docs && make html) cp -rf docs/build/html/* "${RUNNER_DOCS_DIR}" mv docs/build/html /artifacts/ 2023-07-13T14:16:14.5064956Z ##[endgroup] 2023-07-13T14:16:14.5254039Z ##[group]Run set -euo pipefail 2023-07-13T14:16:14.5254352Z set -euo pipefail 2023-07-13T14:16:14.5254715Z function get_ec2_metadata() { 2023-07-13T14:16:14.5254998Z  # Pulled from instance metadata endpoint for EC2 2023-07-13T14:16:14.5255377Z  # see https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-data-retrieval.html 2023-07-13T14:16:14.5255707Z  category=$1 2023-07-13T14:16:14.5255997Z  curl -fsSL "http://169.254.169.254/latest/meta-data/${category}" 2023-07-13T14:16:14.5256253Z } 2023-07-13T14:16:14.5256477Z echo "ami-id: $(get_ec2_metadata ami-id)" 2023-07-13T14:16:14.5256769Z echo "instance-id: $(get_ec2_metadata instance-id)" 2023-07-13T14:16:14.5257083Z echo "instance-type: $(get_ec2_metadata instance-type)" 2023-07-13T14:16:14.5257355Z echo "system info $(uname -a)" 2023-07-13T14:16:14.5269915Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2023-07-13T14:16:14.5270160Z env: 2023-07-13T14:16:14.5270385Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-07-13T14:16:14.5270635Z REPOSITORY: pytorch/audio 2023-07-13T14:16:14.5270847Z PR_NUMBER: 306 2023-07-13T14:16:14.5274425Z SCRIPT: # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export FFMPEG_VERSION=6.0 export CODEC_HEADER_VERSION=n12.0.16.0 export COMPUTE_CAPABILITY=86 export BUILD_VERSION="$( cut -f 1 -d a version.txt )".dev"$(date "+%Y%m%d")" # 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 # Create Conda Env conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env # Install PyTorch / TorchAudio first set -ex set +u # don't know why conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" # Install torchaudio conda install --quiet --yes pkg-config cmake>=3.18.0 ninja pip install --progress-bar off -v -e . --no-use-pep517 # Install FFmpeg-dependencies conda install --quiet --yes -c conda-forge yasm x264 gnutls pkg-config lame libopus libvpx openh264 openssl x264 # Build FFmpeg with NVIDIA Video Codec SDK # TODO cache this ( git clone --quiet https://git.videolan.org/git/ffmpeg/nv-codec-headers.git cd nv-codec-headers git checkout ${CODEC_HEADER_VERSION} make PREFIX=${CONDA_PREFIX} install ) ( wget -q https://github.com/FFmpeg/FFmpeg/archive/refs/tags/n${FFMPEG_VERSION}.tar.gz tar -xf n${FFMPEG_VERSION}.tar.gz cd ./FFmpeg-n${FFMPEG_VERSION} export revision=${FFMPEG_VERSION} ./configure \ --prefix=${CONDA_PREFIX} \ --extra-cflags="-I${CONDA_PREFIX}/include" \ --extra-ldflags="-L${CONDA_PREFIX}/lib" \ --nvccflags="-gencode arch=compute_${COMPUTE_CAPABILITY},code=sm_${COMPUTE_CAPABILITY} -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 make clean make -j > /dev/null 2>&1 make install # test # src="https://download.pytorch.org/torchaudio/tutorial-assets/stream-api/NASAs_Most_Scientifically_Complex_Space_Observatory_Requires_Precision-MP4_small.mp4" # ffmpeg -y -vsync 0 -hwaccel cuvid -hwaccel_output_format cuda -c:v h264_cuvid -resize 360x240 -i "${src}" -c:a copy -c:v h264_nvenc -b:v 5M test.mp4 ) # Install runtime dependencies pip --quiet install git+https://github.com/kpu/kenlm/ flashlight-text # Install build tools conda install --quiet -y -c conda-forge pandoc doxygen pysoundfile pip install --quiet -r docs/requirements.txt -r docs/requirements-tutorials.txt # Build docs export BUILD_GALLERY=true (cd docs && make html) cp -rf docs/build/html/* "${RUNNER_DOCS_DIR}" mv docs/build/html /artifacts/ 2023-07-13T14:16:14.5277984Z ##[endgroup] 2023-07-13T14:16:14.5350628Z ami-id: ami-096198a0bccc6bad4 2023-07-13T14:16:14.5392492Z instance-id: i-0c6a50c554952fc6d 2023-07-13T14:16:14.5439693Z instance-type: g5.4xlarge 2023-07-13T14:16:14.5444684Z system info Linux ip-10-0-0-183.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-07-13T14:16:14.5468888Z ##[group]Run if systemctl is-active --quiet docker; then 2023-07-13T14:16:14.5469208Z if systemctl is-active --quiet docker; then 2023-07-13T14:16:14.5469492Z  echo "Docker daemon is running..."; 2023-07-13T14:16:14.5469727Z else 2023-07-13T14:16:14.5469982Z  echo "Starting docker deamon..." && sudo systemctl start docker; 2023-07-13T14:16:14.5470243Z fi 2023-07-13T14:16:14.5481531Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2023-07-13T14:16:14.5481767Z env: 2023-07-13T14:16:14.5482002Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-07-13T14:16:14.5482262Z REPOSITORY: pytorch/audio 2023-07-13T14:16:14.5482472Z PR_NUMBER: 306 2023-07-13T14:16:14.5485947Z SCRIPT: # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export FFMPEG_VERSION=6.0 export CODEC_HEADER_VERSION=n12.0.16.0 export COMPUTE_CAPABILITY=86 export BUILD_VERSION="$( cut -f 1 -d a version.txt )".dev"$(date "+%Y%m%d")" # 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 # Create Conda Env conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env # Install PyTorch / TorchAudio first set -ex set +u # don't know why conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" # Install torchaudio conda install --quiet --yes pkg-config cmake>=3.18.0 ninja pip install --progress-bar off -v -e . --no-use-pep517 # Install FFmpeg-dependencies conda install --quiet --yes -c conda-forge yasm x264 gnutls pkg-config lame libopus libvpx openh264 openssl x264 # Build FFmpeg with NVIDIA Video Codec SDK # TODO cache this ( git clone --quiet https://git.videolan.org/git/ffmpeg/nv-codec-headers.git cd nv-codec-headers git checkout ${CODEC_HEADER_VERSION} make PREFIX=${CONDA_PREFIX} install ) ( wget -q https://github.com/FFmpeg/FFmpeg/archive/refs/tags/n${FFMPEG_VERSION}.tar.gz tar -xf n${FFMPEG_VERSION}.tar.gz cd ./FFmpeg-n${FFMPEG_VERSION} export revision=${FFMPEG_VERSION} ./configure \ --prefix=${CONDA_PREFIX} \ --extra-cflags="-I${CONDA_PREFIX}/include" \ --extra-ldflags="-L${CONDA_PREFIX}/lib" \ --nvccflags="-gencode arch=compute_${COMPUTE_CAPABILITY},code=sm_${COMPUTE_CAPABILITY} -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 make clean make -j > /dev/null 2>&1 make install # test # src="https://download.pytorch.org/torchaudio/tutorial-assets/stream-api/NASAs_Most_Scientifically_Complex_Space_Observatory_Requires_Precision-MP4_small.mp4" # ffmpeg -y -vsync 0 -hwaccel cuvid -hwaccel_output_format cuda -c:v h264_cuvid -resize 360x240 -i "${src}" -c:a copy -c:v h264_nvenc -b:v 5M test.mp4 ) # Install runtime dependencies pip --quiet install git+https://github.com/kpu/kenlm/ flashlight-text # Install build tools conda install --quiet -y -c conda-forge pandoc doxygen pysoundfile pip install --quiet -r docs/requirements.txt -r docs/requirements-tutorials.txt # Build docs export BUILD_GALLERY=true (cd docs && make html) cp -rf docs/build/html/* "${RUNNER_DOCS_DIR}" mv docs/build/html /artifacts/ 2023-07-13T14:16:14.5489549Z ##[endgroup] 2023-07-13T14:16:14.5531527Z Docker daemon is running... 2023-07-13T14:16:14.5548596Z ##[group]Run AWS_ACCOUNT_ID=$(aws sts get-caller-identity|grep Account|cut -f4 -d\") 2023-07-13T14:16:14.5548994Z AWS_ACCOUNT_ID=$(aws sts get-caller-identity|grep Account|cut -f4 -d\") 2023-07-13T14:16:14.5549316Z retry () { "$@" || (sleep 1 && "$@") || (sleep 2 && "$@") } 2023-07-13T14:16:14.5549741Z retry aws ecr get-login*** "$AWS_DEFAULT_REGION" | docker login --username AWS \ 2023-07-13T14:16:14.5550126Z  --password-stdin "$AWS_ACCOUNT_ID.dkr.ecr.$AWS_DEFAULT_REGION.amazonaws.com" 2023-07-13T14:16:14.5560426Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2023-07-13T14:16:14.5560673Z env: 2023-07-13T14:16:14.5560902Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-07-13T14:16:14.5561152Z REPOSITORY: pytorch/audio 2023-07-13T14:16:14.5561376Z PR_NUMBER: 306 2023-07-13T14:16:14.5564909Z SCRIPT: # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export FFMPEG_VERSION=6.0 export CODEC_HEADER_VERSION=n12.0.16.0 export COMPUTE_CAPABILITY=86 export BUILD_VERSION="$( cut -f 1 -d a version.txt )".dev"$(date "+%Y%m%d")" # 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 # Create Conda Env conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env # Install PyTorch / TorchAudio first set -ex set +u # don't know why conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" # Install torchaudio conda install --quiet --yes pkg-config cmake>=3.18.0 ninja pip install --progress-bar off -v -e . --no-use-pep517 # Install FFmpeg-dependencies conda install --quiet --yes -c conda-forge yasm x264 gnutls pkg-config lame libopus libvpx openh264 openssl x264 # Build FFmpeg with NVIDIA Video Codec SDK # TODO cache this ( git clone --quiet https://git.videolan.org/git/ffmpeg/nv-codec-headers.git cd nv-codec-headers git checkout ${CODEC_HEADER_VERSION} make PREFIX=${CONDA_PREFIX} install ) ( wget -q https://github.com/FFmpeg/FFmpeg/archive/refs/tags/n${FFMPEG_VERSION}.tar.gz tar -xf n${FFMPEG_VERSION}.tar.gz cd ./FFmpeg-n${FFMPEG_VERSION} export revision=${FFMPEG_VERSION} ./configure \ --prefix=${CONDA_PREFIX} \ --extra-cflags="-I${CONDA_PREFIX}/include" \ --extra-ldflags="-L${CONDA_PREFIX}/lib" \ --nvccflags="-gencode arch=compute_${COMPUTE_CAPABILITY},code=sm_${COMPUTE_CAPABILITY} -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 make clean make -j > /dev/null 2>&1 make install # test # src="https://download.pytorch.org/torchaudio/tutorial-assets/stream-api/NASAs_Most_Scientifically_Complex_Space_Observatory_Requires_Precision-MP4_small.mp4" # ffmpeg -y -vsync 0 -hwaccel cuvid -hwaccel_output_format cuda -c:v h264_cuvid -resize 360x240 -i "${src}" -c:a copy -c:v h264_nvenc -b:v 5M test.mp4 ) # Install runtime dependencies pip --quiet install git+https://github.com/kpu/kenlm/ flashlight-text # Install build tools conda install --quiet -y -c conda-forge pandoc doxygen pysoundfile pip install --quiet -r docs/requirements.txt -r docs/requirements-tutorials.txt # Build docs export BUILD_GALLERY=true (cd docs && make html) cp -rf docs/build/html/* "${RUNNER_DOCS_DIR}" mv docs/build/html /artifacts/ 2023-07-13T14:16:14.5568521Z AWS_RETRY_MODE: standard 2023-07-13T14:16:14.5568731Z AWS_MAX_ATTEMPTS: 5 2023-07-13T14:16:14.5568957Z AWS_DEFAULT_REGION: us-east-1 2023-07-13T14:16:14.5569173Z ##[endgroup] 2023-07-13T14:16:15.3659820Z WARNING! Your password will be stored unencrypted in /home/ec2-user/.docker/config.json. 2023-07-13T14:16:15.3660205Z Configure a credential helper to remove this warning. See 2023-07-13T14:16:15.3660641Z https://docs.docker.com/engine/reference/commandline/login/#credentials-store 2023-07-13T14:16:15.3660848Z 2023-07-13T14:16:15.3665836Z Login Succeeded 2023-07-13T14:16:15.3696599Z ##[group]Run env | grep '^GITHUB' >> "${RUNNER_TEMP}/github_env_${GITHUB_RUN_ID}" 2023-07-13T14:16:15.3696953Z env | grep '^GITHUB' >> "${RUNNER_TEMP}/github_env_${GITHUB_RUN_ID}" 2023-07-13T14:16:15.3697276Z env | grep '^CI' >> "${RUNNER_TEMP}/github_env_${GITHUB_RUN_ID}" 2023-07-13T14:16:15.3708270Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2023-07-13T14:16:15.3708522Z env: 2023-07-13T14:16:15.3708748Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-07-13T14:16:15.3709005Z REPOSITORY: pytorch/audio 2023-07-13T14:16:15.3709215Z PR_NUMBER: 306 2023-07-13T14:16:15.3712859Z SCRIPT: # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export FFMPEG_VERSION=6.0 export CODEC_HEADER_VERSION=n12.0.16.0 export COMPUTE_CAPABILITY=86 export BUILD_VERSION="$( cut -f 1 -d a version.txt )".dev"$(date "+%Y%m%d")" # 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 # Create Conda Env conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env # Install PyTorch / TorchAudio first set -ex set +u # don't know why conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" # Install torchaudio conda install --quiet --yes pkg-config cmake>=3.18.0 ninja pip install --progress-bar off -v -e . --no-use-pep517 # Install FFmpeg-dependencies conda install --quiet --yes -c conda-forge yasm x264 gnutls pkg-config lame libopus libvpx openh264 openssl x264 # Build FFmpeg with NVIDIA Video Codec SDK # TODO cache this ( git clone --quiet https://git.videolan.org/git/ffmpeg/nv-codec-headers.git cd nv-codec-headers git checkout ${CODEC_HEADER_VERSION} make PREFIX=${CONDA_PREFIX} install ) ( wget -q https://github.com/FFmpeg/FFmpeg/archive/refs/tags/n${FFMPEG_VERSION}.tar.gz tar -xf n${FFMPEG_VERSION}.tar.gz cd ./FFmpeg-n${FFMPEG_VERSION} export revision=${FFMPEG_VERSION} ./configure \ --prefix=${CONDA_PREFIX} \ --extra-cflags="-I${CONDA_PREFIX}/include" \ --extra-ldflags="-L${CONDA_PREFIX}/lib" \ --nvccflags="-gencode arch=compute_${COMPUTE_CAPABILITY},code=sm_${COMPUTE_CAPABILITY} -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 make clean make -j > /dev/null 2>&1 make install # test # src="https://download.pytorch.org/torchaudio/tutorial-assets/stream-api/NASAs_Most_Scientifically_Complex_Space_Observatory_Requires_Precision-MP4_small.mp4" # ffmpeg -y -vsync 0 -hwaccel cuvid -hwaccel_output_format cuda -c:v h264_cuvid -resize 360x240 -i "${src}" -c:a copy -c:v h264_nvenc -b:v 5M test.mp4 ) # Install runtime dependencies pip --quiet install git+https://github.com/kpu/kenlm/ flashlight-text # Install build tools conda install --quiet -y -c conda-forge pandoc doxygen pysoundfile pip install --quiet -r docs/requirements.txt -r docs/requirements-tutorials.txt # Build docs export BUILD_GALLERY=true (cd docs && make html) cp -rf docs/build/html/* "${RUNNER_DOCS_DIR}" mv docs/build/html /artifacts/ 2023-07-13T14:16:15.3716453Z ##[endgroup] 2023-07-13T14:16:15.3771852Z ##[group]Run RUNNER_ARTIFACT_DIR="${RUNNER_TEMP}/artifacts" 2023-07-13T14:16:15.3772165Z RUNNER_ARTIFACT_DIR="${RUNNER_TEMP}/artifacts" 2023-07-13T14:16:15.3772444Z mkdir -p "${RUNNER_ARTIFACT_DIR}" 2023-07-13T14:16:15.3773161Z echo "RUNNER_ARTIFACT_DIR=${RUNNER_ARTIFACT_DIR}" >> "${GITHUB_ENV}" 2023-07-13T14:16:15.3773429Z  2023-07-13T14:16:15.3773679Z RUNNER_TEST_RESULTS_DIR="${RUNNER_TEMP}/test-results" 2023-07-13T14:16:15.3773971Z mkdir -p "${RUNNER_TEST_RESULTS_DIR}" 2023-07-13T14:16:15.3774282Z echo "RUNNER_TEST_RESULTS_DIR=${RUNNER_TEST_RESULTS_DIR}" >> "${GITHUB_ENV}" 2023-07-13T14:16:15.3774546Z  2023-07-13T14:16:15.3774765Z RUNNER_DOCS_DIR="${RUNNER_TEMP}/docs" 2023-07-13T14:16:15.3775020Z mkdir -p "${RUNNER_DOCS_DIR}" 2023-07-13T14:16:15.3775289Z echo "RUNNER_DOCS_DIR=${RUNNER_DOCS_DIR}" >> "${GITHUB_ENV}" 2023-07-13T14:16:15.3784148Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2023-07-13T14:16:15.3784401Z env: 2023-07-13T14:16:15.3784657Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-07-13T14:16:15.3784915Z REPOSITORY: pytorch/audio 2023-07-13T14:16:15.3785132Z PR_NUMBER: 306 2023-07-13T14:16:15.3788628Z SCRIPT: # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export FFMPEG_VERSION=6.0 export CODEC_HEADER_VERSION=n12.0.16.0 export COMPUTE_CAPABILITY=86 export BUILD_VERSION="$( cut -f 1 -d a version.txt )".dev"$(date "+%Y%m%d")" # 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 # Create Conda Env conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env # Install PyTorch / TorchAudio first set -ex set +u # don't know why conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" # Install torchaudio conda install --quiet --yes pkg-config cmake>=3.18.0 ninja pip install --progress-bar off -v -e . --no-use-pep517 # Install FFmpeg-dependencies conda install --quiet --yes -c conda-forge yasm x264 gnutls pkg-config lame libopus libvpx openh264 openssl x264 # Build FFmpeg with NVIDIA Video Codec SDK # TODO cache this ( git clone --quiet https://git.videolan.org/git/ffmpeg/nv-codec-headers.git cd nv-codec-headers git checkout ${CODEC_HEADER_VERSION} make PREFIX=${CONDA_PREFIX} install ) ( wget -q https://github.com/FFmpeg/FFmpeg/archive/refs/tags/n${FFMPEG_VERSION}.tar.gz tar -xf n${FFMPEG_VERSION}.tar.gz cd ./FFmpeg-n${FFMPEG_VERSION} export revision=${FFMPEG_VERSION} ./configure \ --prefix=${CONDA_PREFIX} \ --extra-cflags="-I${CONDA_PREFIX}/include" \ --extra-ldflags="-L${CONDA_PREFIX}/lib" \ --nvccflags="-gencode arch=compute_${COMPUTE_CAPABILITY},code=sm_${COMPUTE_CAPABILITY} -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 make clean make -j > /dev/null 2>&1 make install # test # src="https://download.pytorch.org/torchaudio/tutorial-assets/stream-api/NASAs_Most_Scientifically_Complex_Space_Observatory_Requires_Precision-MP4_small.mp4" # ffmpeg -y -vsync 0 -hwaccel cuvid -hwaccel_output_format cuda -c:v h264_cuvid -resize 360x240 -i "${src}" -c:a copy -c:v h264_nvenc -b:v 5M test.mp4 ) # Install runtime dependencies pip --quiet install git+https://github.com/kpu/kenlm/ flashlight-text # Install build tools conda install --quiet -y -c conda-forge pandoc doxygen pysoundfile pip install --quiet -r docs/requirements.txt -r docs/requirements-tutorials.txt # Build docs export BUILD_GALLERY=true (cd docs && make html) cp -rf docs/build/html/* "${RUNNER_DOCS_DIR}" mv docs/build/html /artifacts/ 2023-07-13T14:16:15.3792291Z ##[endgroup] 2023-07-13T14:16:15.3855016Z ##[group]Run needs=0 2023-07-13T14:16:15.3855245Z needs=0 2023-07-13T14:16:15.3855521Z if lspci -v | grep -e 'controller.*NVIDIA' >/dev/null 2>/dev/null; then 2023-07-13T14:16:15.3855782Z  needs=1 2023-07-13T14:16:15.3855973Z fi 2023-07-13T14:16:15.3856210Z echo "does=${needs}" >> $GITHUB_OUTPUT 2023-07-13T14:16:15.3867079Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2023-07-13T14:16:15.3867315Z env: 2023-07-13T14:16:15.3867542Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-07-13T14:16:15.3867802Z REPOSITORY: pytorch/audio 2023-07-13T14:16:15.3868012Z PR_NUMBER: 306 2023-07-13T14:16:15.3871490Z SCRIPT: # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export FFMPEG_VERSION=6.0 export CODEC_HEADER_VERSION=n12.0.16.0 export COMPUTE_CAPABILITY=86 export BUILD_VERSION="$( cut -f 1 -d a version.txt )".dev"$(date "+%Y%m%d")" # 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 # Create Conda Env conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env # Install PyTorch / TorchAudio first set -ex set +u # don't know why conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" # Install torchaudio conda install --quiet --yes pkg-config cmake>=3.18.0 ninja pip install --progress-bar off -v -e . --no-use-pep517 # Install FFmpeg-dependencies conda install --quiet --yes -c conda-forge yasm x264 gnutls pkg-config lame libopus libvpx openh264 openssl x264 # Build FFmpeg with NVIDIA Video Codec SDK # TODO cache this ( git clone --quiet https://git.videolan.org/git/ffmpeg/nv-codec-headers.git cd nv-codec-headers git checkout ${CODEC_HEADER_VERSION} make PREFIX=${CONDA_PREFIX} install ) ( wget -q https://github.com/FFmpeg/FFmpeg/archive/refs/tags/n${FFMPEG_VERSION}.tar.gz tar -xf n${FFMPEG_VERSION}.tar.gz cd ./FFmpeg-n${FFMPEG_VERSION} export revision=${FFMPEG_VERSION} ./configure \ --prefix=${CONDA_PREFIX} \ --extra-cflags="-I${CONDA_PREFIX}/include" \ --extra-ldflags="-L${CONDA_PREFIX}/lib" \ --nvccflags="-gencode arch=compute_${COMPUTE_CAPABILITY},code=sm_${COMPUTE_CAPABILITY} -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 make clean make -j > /dev/null 2>&1 make install # test # src="https://download.pytorch.org/torchaudio/tutorial-assets/stream-api/NASAs_Most_Scientifically_Complex_Space_Observatory_Requires_Precision-MP4_small.mp4" # ffmpeg -y -vsync 0 -hwaccel cuvid -hwaccel_output_format cuda -c:v h264_cuvid -resize 360x240 -i "${src}" -c:a copy -c:v h264_nvenc -b:v 5M test.mp4 ) # Install runtime dependencies pip --quiet install git+https://github.com/kpu/kenlm/ flashlight-text # Install build tools conda install --quiet -y -c conda-forge pandoc doxygen pysoundfile pip install --quiet -r docs/requirements.txt -r docs/requirements-tutorials.txt # Build docs export BUILD_GALLERY=true (cd docs && make html) cp -rf docs/build/html/* "${RUNNER_DOCS_DIR}" mv docs/build/html /artifacts/ 2023-07-13T14:16:15.3875270Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-07-13T14:16:15.3875623Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-07-13T14:16:15.3875959Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-07-13T14:16:15.3876212Z ##[endgroup] 2023-07-13T14:16:15.4056603Z ##[group]Run pytorch/test-infra/.github/actions/setup-nvidia@main 2023-07-13T14:16:15.4056867Z with: 2023-07-13T14:16:15.4057063Z driver-version: 535.54.03 2023-07-13T14:16:15.4057255Z env: 2023-07-13T14:16:15.4057502Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-07-13T14:16:15.4057753Z REPOSITORY: pytorch/audio 2023-07-13T14:16:15.4057961Z PR_NUMBER: 306 2023-07-13T14:16:15.4061462Z SCRIPT: # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export FFMPEG_VERSION=6.0 export CODEC_HEADER_VERSION=n12.0.16.0 export COMPUTE_CAPABILITY=86 export BUILD_VERSION="$( cut -f 1 -d a version.txt )".dev"$(date "+%Y%m%d")" # 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 # Create Conda Env conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env # Install PyTorch / TorchAudio first set -ex set +u # don't know why conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" # Install torchaudio conda install --quiet --yes pkg-config cmake>=3.18.0 ninja pip install --progress-bar off -v -e . --no-use-pep517 # Install FFmpeg-dependencies conda install --quiet --yes -c conda-forge yasm x264 gnutls pkg-config lame libopus libvpx openh264 openssl x264 # Build FFmpeg with NVIDIA Video Codec SDK # TODO cache this ( git clone --quiet https://git.videolan.org/git/ffmpeg/nv-codec-headers.git cd nv-codec-headers git checkout ${CODEC_HEADER_VERSION} make PREFIX=${CONDA_PREFIX} install ) ( wget -q https://github.com/FFmpeg/FFmpeg/archive/refs/tags/n${FFMPEG_VERSION}.tar.gz tar -xf n${FFMPEG_VERSION}.tar.gz cd ./FFmpeg-n${FFMPEG_VERSION} export revision=${FFMPEG_VERSION} ./configure \ --prefix=${CONDA_PREFIX} \ --extra-cflags="-I${CONDA_PREFIX}/include" \ --extra-ldflags="-L${CONDA_PREFIX}/lib" \ --nvccflags="-gencode arch=compute_${COMPUTE_CAPABILITY},code=sm_${COMPUTE_CAPABILITY} -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 make clean make -j > /dev/null 2>&1 make install # test # src="https://download.pytorch.org/torchaudio/tutorial-assets/stream-api/NASAs_Most_Scientifically_Complex_Space_Observatory_Requires_Precision-MP4_small.mp4" # ffmpeg -y -vsync 0 -hwaccel cuvid -hwaccel_output_format cuda -c:v h264_cuvid -resize 360x240 -i "${src}" -c:a copy -c:v h264_nvenc -b:v 5M test.mp4 ) # Install runtime dependencies pip --quiet install git+https://github.com/kpu/kenlm/ flashlight-text # Install build tools conda install --quiet -y -c conda-forge pandoc doxygen pysoundfile pip install --quiet -r docs/requirements.txt -r docs/requirements-tutorials.txt # Build docs export BUILD_GALLERY=true (cd docs && make html) cp -rf docs/build/html/* "${RUNNER_DOCS_DIR}" mv docs/build/html /artifacts/ 2023-07-13T14:16:15.4065158Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-07-13T14:16:15.4065518Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-07-13T14:16:15.4065845Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-07-13T14:16:15.4066100Z ##[endgroup] 2023-07-13T14:16:15.4093194Z ##[group]Run nick-fields/retry@3e91a01664abd3c5cd539100d10d33b9c5b68482 2023-07-13T14:16:15.4093457Z with: 2023-07-13T14:16:15.4093636Z timeout_minutes: 10 2023-07-13T14:16:15.4093839Z max_attempts: 3 2023-07-13T14:16:15.4101247Z 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-07-13T14:16:15.4108576Z retry_wait_seconds: 10 2023-07-13T14:16:15.4108808Z polling_interval_seconds: 1 2023-07-13T14:16:15.4109032Z warning_on_retry: true 2023-07-13T14:16:15.4109242Z continue_on_error: false 2023-07-13T14:16:15.4109459Z env: 2023-07-13T14:16:15.4109749Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-07-13T14:16:15.4110006Z REPOSITORY: pytorch/audio 2023-07-13T14:16:15.4110210Z PR_NUMBER: 306 2023-07-13T14:16:15.4113699Z SCRIPT: # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export FFMPEG_VERSION=6.0 export CODEC_HEADER_VERSION=n12.0.16.0 export COMPUTE_CAPABILITY=86 export BUILD_VERSION="$( cut -f 1 -d a version.txt )".dev"$(date "+%Y%m%d")" # 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 # Create Conda Env conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env # Install PyTorch / TorchAudio first set -ex set +u # don't know why conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" # Install torchaudio conda install --quiet --yes pkg-config cmake>=3.18.0 ninja pip install --progress-bar off -v -e . --no-use-pep517 # Install FFmpeg-dependencies conda install --quiet --yes -c conda-forge yasm x264 gnutls pkg-config lame libopus libvpx openh264 openssl x264 # Build FFmpeg with NVIDIA Video Codec SDK # TODO cache this ( git clone --quiet https://git.videolan.org/git/ffmpeg/nv-codec-headers.git cd nv-codec-headers git checkout ${CODEC_HEADER_VERSION} make PREFIX=${CONDA_PREFIX} install ) ( wget -q https://github.com/FFmpeg/FFmpeg/archive/refs/tags/n${FFMPEG_VERSION}.tar.gz tar -xf n${FFMPEG_VERSION}.tar.gz cd ./FFmpeg-n${FFMPEG_VERSION} export revision=${FFMPEG_VERSION} ./configure \ --prefix=${CONDA_PREFIX} \ --extra-cflags="-I${CONDA_PREFIX}/include" \ --extra-ldflags="-L${CONDA_PREFIX}/lib" \ --nvccflags="-gencode arch=compute_${COMPUTE_CAPABILITY},code=sm_${COMPUTE_CAPABILITY} -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 make clean make -j > /dev/null 2>&1 make install # test # src="https://download.pytorch.org/torchaudio/tutorial-assets/stream-api/NASAs_Most_Scientifically_Complex_Space_Observatory_Requires_Precision-MP4_small.mp4" # ffmpeg -y -vsync 0 -hwaccel cuvid -hwaccel_output_format cuda -c:v h264_cuvid -resize 360x240 -i "${src}" -c:a copy -c:v h264_nvenc -b:v 5M test.mp4 ) # Install runtime dependencies pip --quiet install git+https://github.com/kpu/kenlm/ flashlight-text # Install build tools conda install --quiet -y -c conda-forge pandoc doxygen pysoundfile pip install --quiet -r docs/requirements.txt -r docs/requirements-tutorials.txt # Build docs export BUILD_GALLERY=true (cd docs && make html) cp -rf docs/build/html/* "${RUNNER_DOCS_DIR}" mv docs/build/html /artifacts/ 2023-07-13T14:16:15.4117295Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-07-13T14:16:15.4117645Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-07-13T14:16:15.4117972Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-07-13T14:16:15.4118441Z DRIVER_VERSION: 535.54.03 2023-07-13T14:16:15.4118668Z ##[endgroup] 2023-07-13T14:16:15.4612138Z == Installing nvidia driver NVIDIA-Linux-x86_64-535.54.03.run == 2023-07-13T14:16:15.4613626Z + pre_install_nvidia_driver_amzn2 2023-07-13T14:16:15.4614086Z + sudo yum remove -y nvidia-driver-latest-dkms 2023-07-13T14:16:15.7359481Z Loaded plugins: extras_suggestions, langpacks, priorities, update-motd 2023-07-13T14:16:15.7762125Z No Match for argument: nvidia-driver-latest-dkms 2023-07-13T14:16:15.8002942Z No Packages marked for removal 2023-07-13T14:16:15.8135581Z + install_nvidia_driver_common 2023-07-13T14:16:15.8138495Z + echo 'Before installing NVIDIA driver' 2023-07-13T14:16:15.8139702Z Before installing NVIDIA driver 2023-07-13T14:16:15.8140553Z + lspci 2023-07-13T14:16:15.8221676Z 00:00.0 Host bridge: Intel Corporation 440FX - 82441FX PMC [Natoma] 2023-07-13T14:16:15.8222140Z 00:01.0 ISA bridge: Intel Corporation 82371SB PIIX3 ISA [Natoma/Triton II] 2023-07-13T14:16:15.8222814Z 00:01.3 Non-VGA unclassified device: Intel Corporation 82371AB/EB/MB PIIX4 ACPI (rev 08) 2023-07-13T14:16:15.8223202Z 00:03.0 VGA compatible controller: Amazon.com, Inc. Device 1111 2023-07-13T14:16:15.8223691Z 00:04.0 Non-Volatile memory controller: Amazon.com, Inc. Device 8061 2023-07-13T14:16:15.8224078Z 00:05.0 Ethernet controller: Amazon.com, Inc. Elastic Network Adapter (ENA) 2023-07-13T14:16:15.8224447Z 00:1e.0 3D controller: NVIDIA Corporation Device 2237 (rev a1) 2023-07-13T14:16:15.8224900Z 00:1f.0 Non-Volatile memory controller: Amazon.com, Inc. NVMe SSD Controller 2023-07-13T14:16:15.8225209Z + lsmod 2023-07-13T14:16:15.8235772Z Module Size Used by 2023-07-13T14:16:15.8236261Z nvidia_modeset 1306624 0 2023-07-13T14:16:15.8236583Z veth 16384 0 2023-07-13T14:16:15.8236807Z nvidia_uvm 1466368 0 2023-07-13T14:16:15.8237109Z nvidia 56422400 2 nvidia_uvm,nvidia_modeset 2023-07-13T14:16:15.8237382Z drm 425984 1 nvidia 2023-07-13T14:16:15.8237661Z i2c_core 77824 2 nvidia,drm 2023-07-13T14:16:15.8237917Z backlight 16384 1 nvidia_modeset 2023-07-13T14:16:15.8238474Z xt_conntrack 16384 1 2023-07-13T14:16:15.8238729Z ipt_MASQUERADE 16384 1 2023-07-13T14:16:15.8238987Z nf_nat_masquerade_ipv4 16384 1 ipt_MASQUERADE 2023-07-13T14:16:15.8239437Z nf_conntrack_netlink 49152 0 2023-07-13T14:16:15.8239730Z nfnetlink 16384 2 nf_conntrack_netlink 2023-07-13T14:16:15.8239970Z xfrm_user 45056 1 2023-07-13T14:16:15.8240385Z xfrm_algo 16384 1 xfrm_user 2023-07-13T14:16:15.8240652Z iptable_nat 16384 1 2023-07-13T14:16:15.8240919Z nf_conntrack_ipv4 16384 3 2023-07-13T14:16:15.8241510Z nf_defrag_ipv4 16384 1 nf_conntrack_ipv4 2023-07-13T14:16:15.8242298Z nf_nat_ipv4 16384 1 iptable_nat 2023-07-13T14:16:15.8242604Z nf_nat 36864 2 nf_nat_masquerade_ipv4,nf_nat_ipv4 2023-07-13T14:16:15.8243079Z nf_conntrack 155648 7 xt_conntrack,nf_nat_masquerade_ipv4,nf_conntrack_ipv4,nf_nat,ipt_MASQUERADE,nf_nat_ipv4,nf_conntrack_netlink 2023-07-13T14:16:15.8243453Z xt_addrtype 16384 2 2023-07-13T14:16:15.8243707Z iptable_filter 16384 1 2023-07-13T14:16:15.8243939Z br_netfilter 24576 0 2023-07-13T14:16:15.8244306Z bridge 172032 1 br_netfilter 2023-07-13T14:16:15.8244661Z stp 16384 1 bridge 2023-07-13T14:16:15.8306981Z llc 16384 2 bridge,stp 2023-07-13T14:16:15.8307446Z overlay 86016 0 2023-07-13T14:16:15.8307736Z sunrpc 393216 1 2023-07-13T14:16:15.8308014Z dm_mirror 28672 0 2023-07-13T14:16:15.8308334Z dm_region_hash 20480 1 dm_mirror 2023-07-13T14:16:15.8308600Z dm_log 20480 2 dm_region_hash,dm_mirror 2023-07-13T14:16:15.8308849Z dm_mod 143360 2 dm_log,dm_mirror 2023-07-13T14:16:15.8309069Z dax 69632 1 dm_mod 2023-07-13T14:16:15.8309273Z crc32_pclmul 16384 0 2023-07-13T14:16:15.8309492Z ghash_clmulni_intel 16384 0 2023-07-13T14:16:15.8309712Z pcbc 16384 0 2023-07-13T14:16:15.8309995Z mousedev 24576 0 2023-07-13T14:16:15.8310200Z aesni_intel 188416 0 2023-07-13T14:16:15.8310420Z aes_x86_64 20480 1 aesni_intel 2023-07-13T14:16:15.8310658Z crypto_simd 16384 1 aesni_intel 2023-07-13T14:16:15.8310882Z glue_helper 16384 1 aesni_intel 2023-07-13T14:16:15.8311103Z psmouse 32768 0 2023-07-13T14:16:15.8311302Z evdev 20480 3 2023-07-13T14:16:15.8311553Z cryptd 28672 3 crypto_simd,ghash_clmulni_intel,aesni_intel 2023-07-13T14:16:15.8311911Z button 16384 0 2023-07-13T14:16:15.8312109Z ena 114688 0 2023-07-13T14:16:15.8312351Z crc32c_intel 24576 0 2023-07-13T14:16:15.8312551Z autofs4 49152 2 2023-07-13T14:16:15.8312777Z + modinfo nvidia 2023-07-13T14:16:15.8313281Z filename: /lib/modules/4.14.252-195.483.amzn2.x86_64/kernel/drivers/video/nvidia.ko 2023-07-13T14:16:15.8313580Z firmware: nvidia/535.54.03/gsp_tu10x.bin 2023-07-13T14:16:15.8313832Z firmware: nvidia/535.54.03/gsp_ga10x.bin 2023-07-13T14:16:15.8314102Z alias: char-major-195-* 2023-07-13T14:16:15.8314325Z version: 535.54.03 2023-07-13T14:16:15.8314535Z supported: external 2023-07-13T14:16:15.8314735Z license: NVIDIA 2023-07-13T14:16:15.8314968Z srcversion: EA9C7EF32617E104C8240C4 2023-07-13T14:16:15.8315225Z alias: pci:v000010DEd*sv*sd*bc06sc80i00* 2023-07-13T14:16:15.8315470Z alias: pci:v000010DEd*sv*sd*bc03sc02i00* 2023-07-13T14:16:15.8316094Z alias: pci:v000010DEd*sv*sd*bc03sc00i00* 2023-07-13T14:16:15.8316372Z depends: i2c-core,drm 2023-07-13T14:16:15.8316657Z retpoline: Y 2023-07-13T14:16:15.8316845Z name: nvidia 2023-07-13T14:16:15.8317163Z vermagic: 4.14.252-195.483.amzn2.x86_64 SMP mod_unload modversions 2023-07-13T14:16:15.8317475Z parm: NvSwitchRegDwords:NvSwitch regkey (charp) 2023-07-13T14:16:15.8317792Z parm: NvSwitchBlacklist:NvSwitchBlacklist=uuid[,uuid...] (charp) 2023-07-13T14:16:15.8318255Z parm: NVreg_ResmanDebugLevel:int 2023-07-13T14:16:15.8318541Z parm: NVreg_RmLogonRC:int 2023-07-13T14:16:15.8318908Z parm: NVreg_ModifyDeviceFiles:int 2023-07-13T14:16:15.8319150Z parm: NVreg_DeviceFileUID:int 2023-07-13T14:16:15.8319383Z parm: NVreg_DeviceFileGID:int 2023-07-13T14:16:15.8319615Z parm: NVreg_DeviceFileMode:int 2023-07-13T14:16:15.8319956Z parm: NVreg_InitializeSystemMemoryAllocations:int 2023-07-13T14:16:15.8320266Z parm: NVreg_UsePageAttributeTable:int 2023-07-13T14:16:15.8320520Z parm: NVreg_EnablePCIeGen3:int 2023-07-13T14:16:15.8320743Z parm: NVreg_EnableMSI:int 2023-07-13T14:16:15.8320971Z parm: NVreg_TCEBypassMode:int 2023-07-13T14:16:15.8321224Z parm: NVreg_EnableStreamMemOPs:int 2023-07-13T14:16:15.8321510Z parm: NVreg_RestrictProfilingToAdminUsers:int 2023-07-13T14:16:15.8321874Z parm: NVreg_PreserveVideoMemoryAllocations:int 2023-07-13T14:16:15.8322177Z parm: NVreg_EnableS0ixPowerManagement:int 2023-07-13T14:16:15.8322503Z parm: NVreg_S0ixPowerManagementVideoMemoryThreshold:int 2023-07-13T14:16:15.8322845Z parm: NVreg_DynamicPowerManagement:int 2023-07-13T14:16:15.8323231Z parm: NVreg_DynamicPowerManagementVideoMemoryThreshold:int 2023-07-13T14:16:15.8323592Z parm: NVreg_EnableGpuFirmware:int 2023-07-13T14:16:15.8323859Z parm: NVreg_EnableGpuFirmwareLogs:int 2023-07-13T14:16:15.8324157Z parm: NVreg_OpenRmEnableUnsupportedGpus:int 2023-07-13T14:16:15.8324489Z parm: NVreg_EnableUserNUMAManagement:int 2023-07-13T14:16:15.8324873Z parm: NVreg_MemoryPoolSize:int 2023-07-13T14:16:15.8325171Z parm: NVreg_KMallocHeapMaxSize:int 2023-07-13T14:16:15.8325436Z parm: NVreg_VMallocHeapMaxSize:int 2023-07-13T14:16:15.8325683Z parm: NVreg_IgnoreMMIOCheck:int 2023-07-13T14:16:15.8325950Z parm: NVreg_NvLinkDisable:int 2023-07-13T14:16:15.8326296Z parm: NVreg_EnablePCIERelaxedOrderingMode:int 2023-07-13T14:16:15.8326664Z parm: NVreg_RegisterPCIDriver:int 2023-07-13T14:16:15.8327001Z parm: NVreg_EnableResizableBar:int 2023-07-13T14:16:15.8327265Z parm: NVreg_EnableDbgBreakpoint:int 2023-07-13T14:16:15.8327516Z parm: NVreg_RegistryDwords:charp 2023-07-13T14:16:15.8327823Z parm: NVreg_RegistryDwordsPerDevice:charp 2023-07-13T14:16:15.8328146Z parm: NVreg_RmMsg:charp 2023-07-13T14:16:15.8328406Z parm: NVreg_GpuBlacklist:charp 2023-07-13T14:16:15.8328665Z parm: NVreg_TemporaryFilePath:charp 2023-07-13T14:16:15.8328923Z parm: NVreg_ExcludedGpus:charp 2023-07-13T14:16:15.8329222Z parm: NVreg_DmaRemapPeerMmio:int 2023-07-13T14:16:15.8329475Z parm: NVreg_RmNvlinkBandwidth:charp 2023-07-13T14:16:15.8329744Z parm: rm_firmware_active:charp 2023-07-13T14:16:15.8329967Z + HAS_NVIDIA_DRIVER=0 2023-07-13T14:16:15.8330259Z ++ command -v nvidia-smi 2023-07-13T14:16:15.8330523Z + '[' -x /usr/bin/nvidia-smi ']' 2023-07-13T14:16:15.8330756Z + set +e 2023-07-13T14:16:15.8331114Z ++ nvidia-smi --query-gpu=driver_version --format=csv,noheader --id=0 2023-07-13T14:16:17.9311061Z + INSTALLED_DRIVER_VERSION=535.54.03 2023-07-13T14:16:17.9311365Z + NVIDIA_SMI_STATUS=0 2023-07-13T14:16:17.9312025Z + '[' 0 -ne 0 ']' 2023-07-13T14:16:17.9312371Z + '[' 535.54.03 '!=' 535.54.03 ']' 2023-07-13T14:16:17.9313069Z + HAS_NVIDIA_DRIVER=1 2023-07-13T14:16:17.9313549Z + echo 'NVIDIA driver (535.54.03) has already been installed. Skipping NVIDIA driver installation' 2023-07-13T14:16:17.9313872Z + set -e 2023-07-13T14:16:17.9314090Z + '[' 1 -eq 0 ']' 2023-07-13T14:16:17.9314380Z NVIDIA driver (535.54.03) has already been installed. Skipping NVIDIA driver installation 2023-07-13T14:16:17.9314700Z + post_install_nvidia_driver_common 2023-07-13T14:16:17.9314977Z + sudo modprobe nvidia 2023-07-13T14:16:17.9400595Z + echo 'After installing NVIDIA driver' 2023-07-13T14:16:17.9400941Z + lspci 2023-07-13T14:16:17.9402493Z After installing NVIDIA driver 2023-07-13T14:16:17.9482942Z 00:00.0 Host bridge: Intel Corporation 440FX - 82441FX PMC [Natoma] 2023-07-13T14:16:17.9483355Z 00:01.0 ISA bridge: Intel Corporation 82371SB PIIX3 ISA [Natoma/Triton II] 2023-07-13T14:16:17.9483884Z 00:01.3 Non-VGA unclassified device: Intel Corporation 82371AB/EB/MB PIIX4 ACPI (rev 08) 2023-07-13T14:16:17.9484225Z 00:03.0 VGA compatible controller: Amazon.com, Inc. Device 1111 2023-07-13T14:16:17.9484601Z 00:04.0 Non-Volatile memory controller: Amazon.com, Inc. Device 8061 2023-07-13T14:16:17.9484941Z 00:05.0 Ethernet controller: Amazon.com, Inc. Elastic Network Adapter (ENA) 2023-07-13T14:16:17.9485260Z 00:1e.0 3D controller: NVIDIA Corporation Device 2237 (rev a1) 2023-07-13T14:16:17.9485689Z 00:1f.0 Non-Volatile memory controller: Amazon.com, Inc. NVMe SSD Controller 2023-07-13T14:16:17.9485942Z + lsmod 2023-07-13T14:16:17.9495668Z Module Size Used by 2023-07-13T14:16:17.9495898Z nvidia_modeset 1306624 0 2023-07-13T14:16:17.9496101Z veth 16384 0 2023-07-13T14:16:17.9496327Z nvidia_uvm 1466368 2 2023-07-13T14:16:17.9496667Z nvidia 56422400 18 nvidia_uvm,nvidia_modeset 2023-07-13T14:16:17.9496988Z drm 425984 1 nvidia 2023-07-13T14:16:17.9497276Z i2c_core 77824 2 nvidia,drm 2023-07-13T14:16:17.9497598Z backlight 16384 1 nvidia_modeset 2023-07-13T14:16:17.9497916Z xt_conntrack 16384 1 2023-07-13T14:16:17.9498201Z ipt_MASQUERADE 16384 1 2023-07-13T14:16:17.9498534Z nf_nat_masquerade_ipv4 16384 1 ipt_MASQUERADE 2023-07-13T14:16:17.9498873Z nf_conntrack_netlink 49152 0 2023-07-13T14:16:17.9499166Z nfnetlink 16384 2 nf_conntrack_netlink 2023-07-13T14:16:17.9499409Z xfrm_user 45056 1 2023-07-13T14:16:17.9499630Z xfrm_algo 16384 1 xfrm_user 2023-07-13T14:16:17.9499843Z iptable_nat 16384 1 2023-07-13T14:16:17.9500130Z nf_conntrack_ipv4 16384 3 2023-07-13T14:16:17.9500455Z nf_defrag_ipv4 16384 1 nf_conntrack_ipv4 2023-07-13T14:16:17.9500796Z nf_nat_ipv4 16384 1 iptable_nat 2023-07-13T14:16:17.9501155Z nf_nat 36864 2 nf_nat_masquerade_ipv4,nf_nat_ipv4 2023-07-13T14:16:17.9501606Z nf_conntrack 155648 7 xt_conntrack,nf_nat_masquerade_ipv4,nf_conntrack_ipv4,nf_nat,ipt_MASQUERADE,nf_nat_ipv4,nf_conntrack_netlink 2023-07-13T14:16:17.9501947Z xt_addrtype 16384 2 2023-07-13T14:16:17.9502157Z iptable_filter 16384 1 2023-07-13T14:16:17.9502375Z br_netfilter 24576 0 2023-07-13T14:16:17.9502604Z bridge 172032 1 br_netfilter 2023-07-13T14:16:17.9502823Z stp 16384 1 bridge 2023-07-13T14:16:17.9503046Z llc 16384 2 bridge,stp 2023-07-13T14:16:17.9503262Z overlay 86016 0 2023-07-13T14:16:17.9503471Z sunrpc 393216 1 2023-07-13T14:16:17.9503676Z dm_mirror 28672 0 2023-07-13T14:16:17.9503897Z dm_region_hash 20480 1 dm_mirror 2023-07-13T14:16:17.9504160Z dm_log 20480 2 dm_region_hash,dm_mirror 2023-07-13T14:16:17.9504424Z dm_mod 143360 2 dm_log,dm_mirror 2023-07-13T14:16:17.9504705Z dax 69632 1 dm_mod 2023-07-13T14:16:17.9504984Z crc32_pclmul 16384 0 2023-07-13T14:16:17.9505297Z ghash_clmulni_intel 16384 0 2023-07-13T14:16:17.9505771Z pcbc 16384 0 2023-07-13T14:16:17.9506043Z mousedev 24576 0 2023-07-13T14:16:17.9506313Z aesni_intel 188416 0 2023-07-13T14:16:17.9506603Z aes_x86_64 20480 1 aesni_intel 2023-07-13T14:16:17.9506863Z crypto_simd 16384 1 aesni_intel 2023-07-13T14:16:17.9507095Z glue_helper 16384 1 aesni_intel 2023-07-13T14:16:17.9507321Z psmouse 32768 0 2023-07-13T14:16:17.9507527Z evdev 20480 3 2023-07-13T14:16:17.9507786Z cryptd 28672 3 crypto_simd,ghash_clmulni_intel,aesni_intel 2023-07-13T14:16:17.9508047Z button 16384 0 2023-07-13T14:16:17.9508341Z ena 114688 0 2023-07-13T14:16:17.9508543Z crc32c_intel 24576 0 2023-07-13T14:16:17.9508753Z autofs4 49152 2 2023-07-13T14:16:17.9508950Z + modinfo nvidia 2023-07-13T14:16:17.9509353Z filename: /lib/modules/4.14.252-195.483.amzn2.x86_64/kernel/drivers/video/nvidia.ko 2023-07-13T14:16:17.9509654Z firmware: nvidia/535.54.03/gsp_tu10x.bin 2023-07-13T14:16:17.9509906Z firmware: nvidia/535.54.03/gsp_ga10x.bin 2023-07-13T14:16:17.9510186Z alias: char-major-195-* 2023-07-13T14:16:17.9510397Z version: 535.54.03 2023-07-13T14:16:17.9510606Z supported: external 2023-07-13T14:16:17.9510816Z license: NVIDIA 2023-07-13T14:16:17.9511036Z srcversion: EA9C7EF32617E104C8240C4 2023-07-13T14:16:17.9511293Z alias: pci:v000010DEd*sv*sd*bc06sc80i00* 2023-07-13T14:16:17.9511551Z alias: pci:v000010DEd*sv*sd*bc03sc02i00* 2023-07-13T14:16:17.9511938Z alias: pci:v000010DEd*sv*sd*bc03sc00i00* 2023-07-13T14:16:17.9512212Z depends: i2c-core,drm 2023-07-13T14:16:17.9512428Z retpoline: Y 2023-07-13T14:16:17.9512625Z name: nvidia 2023-07-13T14:16:17.9512945Z vermagic: 4.14.252-195.483.amzn2.x86_64 SMP mod_unload modversions 2023-07-13T14:16:17.9513256Z parm: NvSwitchRegDwords:NvSwitch regkey (charp) 2023-07-13T14:16:17.9513595Z parm: NvSwitchBlacklist:NvSwitchBlacklist=uuid[,uuid...] (charp) 2023-07-13T14:16:17.9513888Z parm: NVreg_ResmanDebugLevel:int 2023-07-13T14:16:17.9514135Z parm: NVreg_RmLogonRC:int 2023-07-13T14:16:17.9514389Z parm: NVreg_ModifyDeviceFiles:int 2023-07-13T14:16:17.9514634Z parm: NVreg_DeviceFileUID:int 2023-07-13T14:16:17.9514876Z parm: NVreg_DeviceFileGID:int 2023-07-13T14:16:17.9515121Z parm: NVreg_DeviceFileMode:int 2023-07-13T14:16:17.9515434Z parm: NVreg_InitializeSystemMemoryAllocations:int 2023-07-13T14:16:17.9515766Z parm: NVreg_UsePageAttributeTable:int 2023-07-13T14:16:17.9516034Z parm: NVreg_EnablePCIeGen3:int 2023-07-13T14:16:17.9516274Z parm: NVreg_EnableMSI:int 2023-07-13T14:16:17.9516505Z parm: NVreg_TCEBypassMode:int 2023-07-13T14:16:17.9516762Z parm: NVreg_EnableStreamMemOPs:int 2023-07-13T14:16:17.9517056Z parm: NVreg_RestrictProfilingToAdminUsers:int 2023-07-13T14:16:17.9517373Z parm: NVreg_PreserveVideoMemoryAllocations:int 2023-07-13T14:16:17.9517676Z parm: NVreg_EnableS0ixPowerManagement:int 2023-07-13T14:16:17.9518007Z parm: NVreg_S0ixPowerManagementVideoMemoryThreshold:int 2023-07-13T14:16:17.9518727Z parm: NVreg_DynamicPowerManagement:int 2023-07-13T14:16:17.9519075Z parm: NVreg_DynamicPowerManagementVideoMemoryThreshold:int 2023-07-13T14:16:17.9519408Z parm: NVreg_EnableGpuFirmware:int 2023-07-13T14:16:17.9519677Z parm: NVreg_EnableGpuFirmwareLogs:int 2023-07-13T14:16:17.9519978Z parm: NVreg_OpenRmEnableUnsupportedGpus:int 2023-07-13T14:16:17.9520291Z parm: NVreg_EnableUserNUMAManagement:int 2023-07-13T14:16:17.9520566Z parm: NVreg_MemoryPoolSize:int 2023-07-13T14:16:17.9520828Z parm: NVreg_KMallocHeapMaxSize:int 2023-07-13T14:16:17.9521099Z parm: NVreg_VMallocHeapMaxSize:int 2023-07-13T14:16:17.9521451Z parm: NVreg_IgnoreMMIOCheck:int 2023-07-13T14:16:17.9521693Z parm: NVreg_NvLinkDisable:int 2023-07-13T14:16:17.9521981Z parm: NVreg_EnablePCIERelaxedOrderingMode:int 2023-07-13T14:16:17.9522274Z parm: NVreg_RegisterPCIDriver:int 2023-07-13T14:16:17.9522532Z parm: NVreg_EnableResizableBar:int 2023-07-13T14:16:17.9522803Z parm: NVreg_EnableDbgBreakpoint:int 2023-07-13T14:16:17.9523071Z parm: NVreg_RegistryDwords:charp 2023-07-13T14:16:17.9523348Z parm: NVreg_RegistryDwordsPerDevice:charp 2023-07-13T14:16:17.9523611Z parm: NVreg_RmMsg:charp 2023-07-13T14:16:17.9523922Z parm: NVreg_GpuBlacklist:charp 2023-07-13T14:16:17.9524185Z parm: NVreg_TemporaryFilePath:charp 2023-07-13T14:16:17.9524530Z parm: NVreg_ExcludedGpus:charp 2023-07-13T14:16:17.9524786Z parm: NVreg_DmaRemapPeerMmio:int 2023-07-13T14:16:17.9525050Z parm: NVreg_RmNvlinkBandwidth:charp 2023-07-13T14:16:17.9525346Z parm: rm_firmware_active:charp 2023-07-13T14:16:17.9525574Z + set +e 2023-07-13T14:16:17.9525791Z + nvidia-smi 2023-07-13T14:16:17.9982894Z Thu Jul 13 14:16:17 2023 2023-07-13T14:16:17.9983741Z +---------------------------------------------------------------------------------------+ 2023-07-13T14:16:17.9984338Z | NVIDIA-SMI 535.54.03 Driver Version: 535.54.03 CUDA Version: 12.2 | 2023-07-13T14:16:17.9984757Z |-----------------------------------------+----------------------+----------------------+ 2023-07-13T14:16:17.9985218Z | GPU Name Persistence-M | Bus-Id Disp.A | Volatile Uncorr. ECC | 2023-07-13T14:16:17.9985689Z | Fan Temp Perf Pwr:Usage/Cap | Memory-Usage | GPU-Util Compute M. | 2023-07-13T14:16:17.9985989Z | | | MIG M. | 2023-07-13T14:16:17.9986245Z |=========================================+======================+======================| 2023-07-13T14:16:18.0127119Z | 0 NVIDIA A10G Off | 00000000:00:1E.0 Off | 0 | 2023-07-13T14:16:18.0127548Z | 0% 36C P0 63W / 300W | 4MiB / 23028MiB | 4% Default | 2023-07-13T14:16:18.0127924Z | | | N/A | 2023-07-13T14:16:18.0128385Z +-----------------------------------------+----------------------+----------------------+ 2023-07-13T14:16:18.0131507Z 2023-07-13T14:16:18.0132095Z +---------------------------------------------------------------------------------------+ 2023-07-13T14:16:18.0132519Z | Processes: | 2023-07-13T14:16:18.0132815Z | GPU GI CI PID Type Process name GPU Memory | 2023-07-13T14:16:18.0133096Z | ID ID Usage | 2023-07-13T14:16:18.0133355Z |=======================================================================================| 2023-07-13T14:16:18.0140898Z | No running processes found | 2023-07-13T14:16:18.0141446Z +---------------------------------------------------------------------------------------+ 2023-07-13T14:16:18.2041481Z + nvidia-smi --query-gpu=gpu_name --format=csv,noheader --id=0 2023-07-13T14:16:18.2208431Z NVIDIA A10G 2023-07-13T14:16:18.5222182Z + NVIDIA_SMI_STATUS=0 2023-07-13T14:16:18.5222710Z + '[' 0 -eq 0 ']' 2023-07-13T14:16:18.5223006Z + echo 'INFO: Ignoring allowed status 0' 2023-07-13T14:16:18.5223264Z + set -e 2023-07-13T14:16:18.5223479Z INFO: Ignoring allowed status 0 2023-07-13T14:16:18.5225804Z == Installing nvidia container toolkit for amzn2 == 2023-07-13T14:16:18.5228238Z + sudo yum install -y yum-utils 2023-07-13T14:16:18.7772075Z Loaded plugins: extras_suggestions, langpacks, priorities, update-motd 2023-07-13T14:16:20.1177137Z Package yum-utils-1.1.31-46.amzn2.0.1.noarch already installed and latest version 2023-07-13T14:16:20.1177534Z Nothing to do 2023-07-13T14:16:20.2688621Z + sudo yum-config-manager --add-repo https://nvidia.github.io/nvidia-docker/amzn2/nvidia-docker.repo 2023-07-13T14:16:20.5390696Z Loaded plugins: extras_suggestions, langpacks, priorities, update-motd 2023-07-13T14:16:20.5747704Z adding repo from: https://nvidia.github.io/nvidia-docker/amzn2/nvidia-docker.repo 2023-07-13T14:16:20.5748244Z grabbing file https://nvidia.github.io/nvidia-docker/amzn2/nvidia-docker.repo to /etc/yum.repos.d/nvidia-docker.repo 2023-07-13T14:16:20.5748920Z repo saved to /etc/yum.repos.d/nvidia-docker.repo 2023-07-13T14:16:20.5872845Z + sudo yum install -y nvidia-docker2 2023-07-13T14:16:20.8404369Z Loaded plugins: extras_suggestions, langpacks, priorities, update-motd 2023-07-13T14:16:22.1796381Z Package nvidia-docker2-2.13.0-1.noarch already installed and latest version 2023-07-13T14:16:22.1796894Z Nothing to do 2023-07-13T14:16:22.3331489Z + sudo systemctl restart docker 2023-07-13T14:16:23.4671367Z Command completed after 1 attempt(s). 2023-07-13T14:16:23.4725552Z ##[group]Run # ignore expansion of "docker ps -q" since it could be empty 2023-07-13T14:16:23.4725899Z # ignore expansion of "docker ps -q" since it could be empty 2023-07-13T14:16:23.4726175Z # shellcheck disable=SC2046 2023-07-13T14:16:23.4726421Z docker stop $(docker ps -q) || true 2023-07-13T14:16:23.4726672Z # Prune all of the docker images 2023-07-13T14:16:23.4726914Z docker system prune -af 2023-07-13T14:16:23.4737671Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2023-07-13T14:16:23.4737913Z env: 2023-07-13T14:16:23.4738136Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-07-13T14:16:23.4738387Z REPOSITORY: pytorch/audio 2023-07-13T14:16:23.4738588Z PR_NUMBER: 306 2023-07-13T14:16:23.4742052Z SCRIPT: # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export FFMPEG_VERSION=6.0 export CODEC_HEADER_VERSION=n12.0.16.0 export COMPUTE_CAPABILITY=86 export BUILD_VERSION="$( cut -f 1 -d a version.txt )".dev"$(date "+%Y%m%d")" # 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 # Create Conda Env conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env # Install PyTorch / TorchAudio first set -ex set +u # don't know why conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" # Install torchaudio conda install --quiet --yes pkg-config cmake>=3.18.0 ninja pip install --progress-bar off -v -e . --no-use-pep517 # Install FFmpeg-dependencies conda install --quiet --yes -c conda-forge yasm x264 gnutls pkg-config lame libopus libvpx openh264 openssl x264 # Build FFmpeg with NVIDIA Video Codec SDK # TODO cache this ( git clone --quiet https://git.videolan.org/git/ffmpeg/nv-codec-headers.git cd nv-codec-headers git checkout ${CODEC_HEADER_VERSION} make PREFIX=${CONDA_PREFIX} install ) ( wget -q https://github.com/FFmpeg/FFmpeg/archive/refs/tags/n${FFMPEG_VERSION}.tar.gz tar -xf n${FFMPEG_VERSION}.tar.gz cd ./FFmpeg-n${FFMPEG_VERSION} export revision=${FFMPEG_VERSION} ./configure \ --prefix=${CONDA_PREFIX} \ --extra-cflags="-I${CONDA_PREFIX}/include" \ --extra-ldflags="-L${CONDA_PREFIX}/lib" \ --nvccflags="-gencode arch=compute_${COMPUTE_CAPABILITY},code=sm_${COMPUTE_CAPABILITY} -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 make clean make -j > /dev/null 2>&1 make install # test # src="https://download.pytorch.org/torchaudio/tutorial-assets/stream-api/NASAs_Most_Scientifically_Complex_Space_Observatory_Requires_Precision-MP4_small.mp4" # ffmpeg -y -vsync 0 -hwaccel cuvid -hwaccel_output_format cuda -c:v h264_cuvid -resize 360x240 -i "${src}" -c:a copy -c:v h264_nvenc -b:v 5M test.mp4 ) # Install runtime dependencies pip --quiet install git+https://github.com/kpu/kenlm/ flashlight-text # Install build tools conda install --quiet -y -c conda-forge pandoc doxygen pysoundfile pip install --quiet -r docs/requirements.txt -r docs/requirements-tutorials.txt # Build docs export BUILD_GALLERY=true (cd docs && make html) cp -rf docs/build/html/* "${RUNNER_DOCS_DIR}" mv docs/build/html /artifacts/ 2023-07-13T14:16:23.4745718Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-07-13T14:16:23.4746071Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-07-13T14:16:23.4746396Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-07-13T14:16:23.4746706Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-07-13T14:16:23.4746951Z ##[endgroup] 2023-07-13T14:16:23.5053418Z "docker stop" requires at least 1 argument. 2023-07-13T14:16:23.5053922Z See 'docker stop --help'. 2023-07-13T14:16:23.5054073Z 2023-07-13T14:16:23.5054230Z Usage: docker stop [OPTIONS] CONTAINER [CONTAINER...] 2023-07-13T14:16:23.5054401Z 2023-07-13T14:16:23.5054533Z Stop one or more running containers 2023-07-13T14:16:23.5243560Z Total reclaimed space: 0B 2023-07-13T14:16:23.5285601Z ##[group]Run ./test-infra/.github/actions/setup-ssh 2023-07-13T14:16:23.5285850Z with: 2023-07-13T14:16:23.5286191Z github-secret: *** 2023-07-13T14:16:23.5286434Z activate-with-label: false 2023-07-13T14:16:23.5286649Z label: with-ssh 2023-07-13T14:16:23.5286867Z remove-existing-keys: true 2023-07-13T14:16:23.5287079Z env: 2023-07-13T14:16:23.5287293Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-07-13T14:16:23.5287544Z REPOSITORY: pytorch/audio 2023-07-13T14:16:23.5287755Z PR_NUMBER: 306 2023-07-13T14:16:23.5291158Z SCRIPT: # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export FFMPEG_VERSION=6.0 export CODEC_HEADER_VERSION=n12.0.16.0 export COMPUTE_CAPABILITY=86 export BUILD_VERSION="$( cut -f 1 -d a version.txt )".dev"$(date "+%Y%m%d")" # 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 # Create Conda Env conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env # Install PyTorch / TorchAudio first set -ex set +u # don't know why conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" # Install torchaudio conda install --quiet --yes pkg-config cmake>=3.18.0 ninja pip install --progress-bar off -v -e . --no-use-pep517 # Install FFmpeg-dependencies conda install --quiet --yes -c conda-forge yasm x264 gnutls pkg-config lame libopus libvpx openh264 openssl x264 # Build FFmpeg with NVIDIA Video Codec SDK # TODO cache this ( git clone --quiet https://git.videolan.org/git/ffmpeg/nv-codec-headers.git cd nv-codec-headers git checkout ${CODEC_HEADER_VERSION} make PREFIX=${CONDA_PREFIX} install ) ( wget -q https://github.com/FFmpeg/FFmpeg/archive/refs/tags/n${FFMPEG_VERSION}.tar.gz tar -xf n${FFMPEG_VERSION}.tar.gz cd ./FFmpeg-n${FFMPEG_VERSION} export revision=${FFMPEG_VERSION} ./configure \ --prefix=${CONDA_PREFIX} \ --extra-cflags="-I${CONDA_PREFIX}/include" \ --extra-ldflags="-L${CONDA_PREFIX}/lib" \ --nvccflags="-gencode arch=compute_${COMPUTE_CAPABILITY},code=sm_${COMPUTE_CAPABILITY} -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 make clean make -j > /dev/null 2>&1 make install # test # src="https://download.pytorch.org/torchaudio/tutorial-assets/stream-api/NASAs_Most_Scientifically_Complex_Space_Observatory_Requires_Precision-MP4_small.mp4" # ffmpeg -y -vsync 0 -hwaccel cuvid -hwaccel_output_format cuda -c:v h264_cuvid -resize 360x240 -i "${src}" -c:a copy -c:v h264_nvenc -b:v 5M test.mp4 ) # Install runtime dependencies pip --quiet install git+https://github.com/kpu/kenlm/ flashlight-text # Install build tools conda install --quiet -y -c conda-forge pandoc doxygen pysoundfile pip install --quiet -r docs/requirements.txt -r docs/requirements-tutorials.txt # Build docs export BUILD_GALLERY=true (cd docs && make html) cp -rf docs/build/html/* "${RUNNER_DOCS_DIR}" mv docs/build/html /artifacts/ 2023-07-13T14:16:23.5294732Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-07-13T14:16:23.5295088Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-07-13T14:16:23.5295422Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-07-13T14:16:23.5295722Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-07-13T14:16:23.5296017Z ##[endgroup] 2023-07-13T14:16:23.5933900Z Please see https://github.com/pytorch/pytorch/wiki/Debugging-using-with-ssh-for-Github-Actions for more info. 2023-07-13T14:16:24.1008180Z Grabbing public ssh keys from https://github.com/pytorchbot.keys 2023-07-13T14:16:24.1778972Z No SSH keys found for user pytorchbot 2023-07-13T14:16:24.1779365Z Grabbing public ssh keys from https://github.com/ezyang.keys 2023-07-13T14:16:24.2672226Z ~/.ssh/authorized_keys file found on node, removing ~/.ssh and starting fresh 2023-07-13T14:16:24.2686126Z Public keys pulled and installed to /home/ec2-user/.ssh/authorized_keys 2023-07-13T14:16:24.2714631Z Login using: ssh ec2-user@ec2-18-209-163-60.compute-1.amazonaws.com 2023-07-13T14:16:24.2766901Z Prepare all required actions 2023-07-13T14:16:24.2789235Z ##[group]Run ./test-infra/.github/actions/pull-docker-image 2023-07-13T14:16:24.2789487Z with: 2023-07-13T14:16:24.2789709Z docker-image: pytorch/conda-builder:cuda11.8 2023-07-13T14:16:24.2789941Z env: 2023-07-13T14:16:24.2790170Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-07-13T14:16:24.2790423Z REPOSITORY: pytorch/audio 2023-07-13T14:16:24.2790634Z PR_NUMBER: 306 2023-07-13T14:16:24.2794160Z SCRIPT: # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export FFMPEG_VERSION=6.0 export CODEC_HEADER_VERSION=n12.0.16.0 export COMPUTE_CAPABILITY=86 export BUILD_VERSION="$( cut -f 1 -d a version.txt )".dev"$(date "+%Y%m%d")" # 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 # Create Conda Env conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env # Install PyTorch / TorchAudio first set -ex set +u # don't know why conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" # Install torchaudio conda install --quiet --yes pkg-config cmake>=3.18.0 ninja pip install --progress-bar off -v -e . --no-use-pep517 # Install FFmpeg-dependencies conda install --quiet --yes -c conda-forge yasm x264 gnutls pkg-config lame libopus libvpx openh264 openssl x264 # Build FFmpeg with NVIDIA Video Codec SDK # TODO cache this ( git clone --quiet https://git.videolan.org/git/ffmpeg/nv-codec-headers.git cd nv-codec-headers git checkout ${CODEC_HEADER_VERSION} make PREFIX=${CONDA_PREFIX} install ) ( wget -q https://github.com/FFmpeg/FFmpeg/archive/refs/tags/n${FFMPEG_VERSION}.tar.gz tar -xf n${FFMPEG_VERSION}.tar.gz cd ./FFmpeg-n${FFMPEG_VERSION} export revision=${FFMPEG_VERSION} ./configure \ --prefix=${CONDA_PREFIX} \ --extra-cflags="-I${CONDA_PREFIX}/include" \ --extra-ldflags="-L${CONDA_PREFIX}/lib" \ --nvccflags="-gencode arch=compute_${COMPUTE_CAPABILITY},code=sm_${COMPUTE_CAPABILITY} -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 make clean make -j > /dev/null 2>&1 make install # test # src="https://download.pytorch.org/torchaudio/tutorial-assets/stream-api/NASAs_Most_Scientifically_Complex_Space_Observatory_Requires_Precision-MP4_small.mp4" # ffmpeg -y -vsync 0 -hwaccel cuvid -hwaccel_output_format cuda -c:v h264_cuvid -resize 360x240 -i "${src}" -c:a copy -c:v h264_nvenc -b:v 5M test.mp4 ) # Install runtime dependencies pip --quiet install git+https://github.com/kpu/kenlm/ flashlight-text # Install build tools conda install --quiet -y -c conda-forge pandoc doxygen pysoundfile pip install --quiet -r docs/requirements.txt -r docs/requirements-tutorials.txt # Build docs export BUILD_GALLERY=true (cd docs && make html) cp -rf docs/build/html/* "${RUNNER_DOCS_DIR}" mv docs/build/html /artifacts/ 2023-07-13T14:16:24.2797839Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-07-13T14:16:24.2798325Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-07-13T14:16:24.2798667Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-07-13T14:16:24.2798970Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-07-13T14:16:24.2799220Z ##[endgroup] 2023-07-13T14:16:24.2812636Z ##[group]Run retry () { "$@" || (sleep 1 && "$@") || (sleep 2 && "$@") } 2023-07-13T14:16:24.2812946Z retry () { "$@" || (sleep 1 && "$@") || (sleep 2 && "$@") } 2023-07-13T14:16:24.2813251Z # ignore output since only exit code is used for conditional 2023-07-13T14:16:24.2813578Z # only pull docker image if it's not available locally 2023-07-13T14:16:24.2813909Z if ! docker inspect --type=image "${DOCKER_IMAGE}" >/dev/null 2>/dev/null; then 2023-07-13T14:16:24.2814236Z  retry docker pull "${DOCKER_IMAGE}" 2023-07-13T14:16:24.2814464Z fi 2023-07-13T14:16:24.2825453Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2023-07-13T14:16:24.2825698Z env: 2023-07-13T14:16:24.2825922Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-07-13T14:16:24.2826178Z REPOSITORY: pytorch/audio 2023-07-13T14:16:24.2826384Z PR_NUMBER: 306 2023-07-13T14:16:24.2829813Z SCRIPT: # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export FFMPEG_VERSION=6.0 export CODEC_HEADER_VERSION=n12.0.16.0 export COMPUTE_CAPABILITY=86 export BUILD_VERSION="$( cut -f 1 -d a version.txt )".dev"$(date "+%Y%m%d")" # 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 # Create Conda Env conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env # Install PyTorch / TorchAudio first set -ex set +u # don't know why conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" # Install torchaudio conda install --quiet --yes pkg-config cmake>=3.18.0 ninja pip install --progress-bar off -v -e . --no-use-pep517 # Install FFmpeg-dependencies conda install --quiet --yes -c conda-forge yasm x264 gnutls pkg-config lame libopus libvpx openh264 openssl x264 # Build FFmpeg with NVIDIA Video Codec SDK # TODO cache this ( git clone --quiet https://git.videolan.org/git/ffmpeg/nv-codec-headers.git cd nv-codec-headers git checkout ${CODEC_HEADER_VERSION} make PREFIX=${CONDA_PREFIX} install ) ( wget -q https://github.com/FFmpeg/FFmpeg/archive/refs/tags/n${FFMPEG_VERSION}.tar.gz tar -xf n${FFMPEG_VERSION}.tar.gz cd ./FFmpeg-n${FFMPEG_VERSION} export revision=${FFMPEG_VERSION} ./configure \ --prefix=${CONDA_PREFIX} \ --extra-cflags="-I${CONDA_PREFIX}/include" \ --extra-ldflags="-L${CONDA_PREFIX}/lib" \ --nvccflags="-gencode arch=compute_${COMPUTE_CAPABILITY},code=sm_${COMPUTE_CAPABILITY} -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 make clean make -j > /dev/null 2>&1 make install # test # src="https://download.pytorch.org/torchaudio/tutorial-assets/stream-api/NASAs_Most_Scientifically_Complex_Space_Observatory_Requires_Precision-MP4_small.mp4" # ffmpeg -y -vsync 0 -hwaccel cuvid -hwaccel_output_format cuda -c:v h264_cuvid -resize 360x240 -i "${src}" -c:a copy -c:v h264_nvenc -b:v 5M test.mp4 ) # Install runtime dependencies pip --quiet install git+https://github.com/kpu/kenlm/ flashlight-text # Install build tools conda install --quiet -y -c conda-forge pandoc doxygen pysoundfile pip install --quiet -r docs/requirements.txt -r docs/requirements-tutorials.txt # Build docs export BUILD_GALLERY=true (cd docs && make html) cp -rf docs/build/html/* "${RUNNER_DOCS_DIR}" mv docs/build/html /artifacts/ 2023-07-13T14:16:24.2833565Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-07-13T14:16:24.2833925Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-07-13T14:16:24.2834250Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-07-13T14:16:24.2834561Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-07-13T14:16:24.2834809Z ##[endgroup] 2023-07-13T14:16:24.4628303Z cuda11.8: Pulling from pytorch/conda-builder 2023-07-13T14:16:24.4628703Z 2d473b07cdd5: Pulling fs layer 2023-07-13T14:16:24.4629041Z c465e63dcd7b: Pulling fs layer 2023-07-13T14:16:24.4629348Z a7f6430c8a00: Pulling fs layer 2023-07-13T14:16:24.4629638Z 06ba10ca5c81: Pulling fs layer 2023-07-13T14:16:24.4629930Z 2388e8dd226d: Pulling fs layer 2023-07-13T14:16:24.4630251Z 62ba1c2b4591: Pulling fs layer 2023-07-13T14:16:24.4630559Z b09cb1ee2eff: Pulling fs layer 2023-07-13T14:16:24.4630781Z 63ff7b8d20e2: Pulling fs layer 2023-07-13T14:16:24.4631014Z 270053ceedab: Pulling fs layer 2023-07-13T14:16:24.4631266Z 4f4fb700ef54: Pulling fs layer 2023-07-13T14:16:24.4631556Z 83391fa0c49e: Pulling fs layer 2023-07-13T14:16:24.4631946Z 63ff7b8d20e2: Waiting 2023-07-13T14:16:24.4632243Z 9337207c4d02: Pulling fs layer 2023-07-13T14:16:24.4632544Z 93aaaef2fa05: Pulling fs layer 2023-07-13T14:16:24.4632842Z 2388e8dd226d: Waiting 2023-07-13T14:16:24.4633101Z 06ba10ca5c81: Waiting 2023-07-13T14:16:24.4633404Z 8aca3975db6d: Pulling fs layer 2023-07-13T14:16:24.4633633Z 6c98ad6aee13: Pulling fs layer 2023-07-13T14:16:24.4634140Z 4f4fb700ef54: Waiting 2023-07-13T14:16:24.4634343Z 2e33826627e5: Pulling fs layer 2023-07-13T14:16:24.4634554Z 270053ceedab: Waiting 2023-07-13T14:16:24.4634760Z 843a9af61985: Pulling fs layer 2023-07-13T14:16:24.4634967Z 8aca3975db6d: Waiting 2023-07-13T14:16:24.4635195Z bdb161d9acc8: Pulling fs layer 2023-07-13T14:16:24.4635420Z fe807f8a9f46: Pulling fs layer 2023-07-13T14:16:24.4635631Z 83391fa0c49e: Waiting 2023-07-13T14:16:24.4635829Z a393777e5737: Pulling fs layer 2023-07-13T14:16:24.4636039Z 2e33826627e5: Waiting 2023-07-13T14:16:24.4636239Z 843a9af61985: Waiting 2023-07-13T14:16:24.4636419Z 9337207c4d02: Waiting 2023-07-13T14:16:24.4636617Z fe807f8a9f46: Waiting 2023-07-13T14:16:24.5017459Z a7f6430c8a00: Verifying Checksum 2023-07-13T14:16:24.5017794Z a7f6430c8a00: Download complete 2023-07-13T14:16:24.5950586Z 06ba10ca5c81: Verifying Checksum 2023-07-13T14:16:24.5950830Z 06ba10ca5c81: Download complete 2023-07-13T14:16:24.6532730Z 2388e8dd226d: Verifying Checksum 2023-07-13T14:16:24.6533111Z 2388e8dd226d: Download complete 2023-07-13T14:16:25.2542487Z 2d473b07cdd5: Verifying Checksum 2023-07-13T14:16:25.2542776Z 2d473b07cdd5: Download complete 2023-07-13T14:16:25.3503247Z b09cb1ee2eff: Verifying Checksum 2023-07-13T14:16:25.3503849Z b09cb1ee2eff: Download complete 2023-07-13T14:16:25.4753079Z c465e63dcd7b: Verifying Checksum 2023-07-13T14:16:25.4753349Z c465e63dcd7b: Download complete 2023-07-13T14:16:25.6141441Z 270053ceedab: Verifying Checksum 2023-07-13T14:16:25.6141794Z 270053ceedab: Download complete 2023-07-13T14:16:25.6784732Z 4f4fb700ef54: Download complete 2023-07-13T14:16:25.7061476Z 62ba1c2b4591: Verifying Checksum 2023-07-13T14:16:25.7061781Z 62ba1c2b4591: Download complete 2023-07-13T14:16:25.7215343Z 83391fa0c49e: Verifying Checksum 2023-07-13T14:16:25.7215684Z 83391fa0c49e: Download complete 2023-07-13T14:16:25.8542675Z 93aaaef2fa05: Verifying Checksum 2023-07-13T14:16:25.8543311Z 93aaaef2fa05: Download complete 2023-07-13T14:16:25.9052085Z 63ff7b8d20e2: Verifying Checksum 2023-07-13T14:16:25.9052376Z 63ff7b8d20e2: Download complete 2023-07-13T14:16:25.9270347Z 8aca3975db6d: Verifying Checksum 2023-07-13T14:16:25.9270714Z 8aca3975db6d: Download complete 2023-07-13T14:16:26.0092259Z 2e33826627e5: Download complete 2023-07-13T14:16:26.1999308Z 843a9af61985: Verifying Checksum 2023-07-13T14:16:26.1999710Z 843a9af61985: Download complete 2023-07-13T14:16:26.2448351Z bdb161d9acc8: Verifying Checksum 2023-07-13T14:16:26.2448733Z bdb161d9acc8: Download complete 2023-07-13T14:16:26.2974601Z fe807f8a9f46: Verifying Checksum 2023-07-13T14:16:26.2974946Z fe807f8a9f46: Download complete 2023-07-13T14:16:28.5253423Z 2d473b07cdd5: Pull complete 2023-07-13T14:16:29.7160177Z 6c98ad6aee13: Verifying Checksum 2023-07-13T14:16:29.7160930Z 6c98ad6aee13: Download complete 2023-07-13T14:16:30.2157580Z c465e63dcd7b: Pull complete 2023-07-13T14:16:30.3008109Z a7f6430c8a00: Pull complete 2023-07-13T14:16:30.5209282Z 06ba10ca5c81: Pull complete 2023-07-13T14:16:30.6201563Z 2388e8dd226d: Pull complete 2023-07-13T14:16:31.5731763Z a393777e5737: Verifying Checksum 2023-07-13T14:16:31.5732053Z a393777e5737: Download complete 2023-07-13T14:16:32.3942715Z 62ba1c2b4591: Pull complete 2023-07-13T14:16:32.6199592Z b09cb1ee2eff: Pull complete 2023-07-13T14:16:33.8907172Z 63ff7b8d20e2: Pull complete 2023-07-13T14:16:34.1703633Z 270053ceedab: Pull complete 2023-07-13T14:16:34.2630886Z 4f4fb700ef54: Pull complete 2023-07-13T14:17:09.8896778Z 9337207c4d02: Verifying Checksum 2023-07-13T14:17:09.8897071Z 9337207c4d02: Download complete 2023-07-13T14:17:13.4754715Z 83391fa0c49e: Pull complete 2023-07-13T14:18:00.5962087Z 9337207c4d02: Pull complete 2023-07-13T14:18:01.0064837Z 93aaaef2fa05: Pull complete 2023-07-13T14:18:01.2530826Z 8aca3975db6d: Pull complete 2023-07-13T14:18:09.1537526Z 6c98ad6aee13: Pull complete 2023-07-13T14:18:09.2668345Z 2e33826627e5: Pull complete 2023-07-13T14:18:09.7360084Z 843a9af61985: Pull complete 2023-07-13T14:18:09.9603286Z bdb161d9acc8: Pull complete 2023-07-13T14:18:10.1864576Z fe807f8a9f46: Pull complete 2023-07-13T14:18:20.3534403Z a393777e5737: Pull complete 2023-07-13T14:18:20.4599418Z Digest: sha256:5fee47bc124a0ed44d8d74af710d4825c9f96a5454399b86028e45592dbc8c3f 2023-07-13T14:18:20.5023632Z Status: Downloaded newer image for pytorch/conda-builder:cuda11.8 2023-07-13T14:18:20.5223390Z docker.io/pytorch/conda-builder:cuda11.8 2023-07-13T14:18:20.5280729Z ##[group]Run actions/checkout@v3 2023-07-13T14:18:20.5280954Z with: 2023-07-13T14:18:20.5281146Z repository: pytorch/audio 2023-07-13T14:18:20.5281368Z ref: refs/pull/306/merge 2023-07-13T14:18:20.5281581Z path: pytorch/audio 2023-07-13T14:18:20.5281782Z fetch-depth: 1 2023-07-13T14:18:20.5282070Z token: *** 2023-07-13T14:18:20.5282264Z ssh-strict: true 2023-07-13T14:18:20.5282475Z persist-credentials: true 2023-07-13T14:18:20.5282689Z clean: true 2023-07-13T14:18:20.5282919Z sparse-checkout-cone-mode: true 2023-07-13T14:18:20.5283137Z lfs: false 2023-07-13T14:18:20.5283331Z submodules: false 2023-07-13T14:18:20.5283572Z set-safe-directory: true 2023-07-13T14:18:20.5283804Z env: 2023-07-13T14:18:20.5284061Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-07-13T14:18:20.5284313Z REPOSITORY: pytorch/audio 2023-07-13T14:18:20.5284519Z PR_NUMBER: 306 2023-07-13T14:18:20.5287951Z SCRIPT: # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export FFMPEG_VERSION=6.0 export CODEC_HEADER_VERSION=n12.0.16.0 export COMPUTE_CAPABILITY=86 export BUILD_VERSION="$( cut -f 1 -d a version.txt )".dev"$(date "+%Y%m%d")" # 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 # Create Conda Env conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env # Install PyTorch / TorchAudio first set -ex set +u # don't know why conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" # Install torchaudio conda install --quiet --yes pkg-config cmake>=3.18.0 ninja pip install --progress-bar off -v -e . --no-use-pep517 # Install FFmpeg-dependencies conda install --quiet --yes -c conda-forge yasm x264 gnutls pkg-config lame libopus libvpx openh264 openssl x264 # Build FFmpeg with NVIDIA Video Codec SDK # TODO cache this ( git clone --quiet https://git.videolan.org/git/ffmpeg/nv-codec-headers.git cd nv-codec-headers git checkout ${CODEC_HEADER_VERSION} make PREFIX=${CONDA_PREFIX} install ) ( wget -q https://github.com/FFmpeg/FFmpeg/archive/refs/tags/n${FFMPEG_VERSION}.tar.gz tar -xf n${FFMPEG_VERSION}.tar.gz cd ./FFmpeg-n${FFMPEG_VERSION} export revision=${FFMPEG_VERSION} ./configure \ --prefix=${CONDA_PREFIX} \ --extra-cflags="-I${CONDA_PREFIX}/include" \ --extra-ldflags="-L${CONDA_PREFIX}/lib" \ --nvccflags="-gencode arch=compute_${COMPUTE_CAPABILITY},code=sm_${COMPUTE_CAPABILITY} -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 make clean make -j > /dev/null 2>&1 make install # test # src="https://download.pytorch.org/torchaudio/tutorial-assets/stream-api/NASAs_Most_Scientifically_Complex_Space_Observatory_Requires_Precision-MP4_small.mp4" # ffmpeg -y -vsync 0 -hwaccel cuvid -hwaccel_output_format cuda -c:v h264_cuvid -resize 360x240 -i "${src}" -c:a copy -c:v h264_nvenc -b:v 5M test.mp4 ) # Install runtime dependencies pip --quiet install git+https://github.com/kpu/kenlm/ flashlight-text # Install build tools conda install --quiet -y -c conda-forge pandoc doxygen pysoundfile pip install --quiet -r docs/requirements.txt -r docs/requirements-tutorials.txt # Build docs export BUILD_GALLERY=true (cd docs && make html) cp -rf docs/build/html/* "${RUNNER_DOCS_DIR}" mv docs/build/html /artifacts/ 2023-07-13T14:18:20.5291612Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-07-13T14:18:20.5291969Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-07-13T14:18:20.5292310Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-07-13T14:18:20.5292622Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-07-13T14:18:20.5292868Z ##[endgroup] 2023-07-13T14:18:20.6110458Z Syncing repository: pytorch/audio 2023-07-13T14:18:20.6120261Z ##[group]Getting Git version info 2023-07-13T14:18:20.6120893Z Working directory is '/home/ec2-user/actions-runner/_work/audio/audio/pytorch/audio' 2023-07-13T14:18:20.6144421Z [command]/usr/bin/git version 2023-07-13T14:18:20.6182644Z git version 2.40.1 2023-07-13T14:18:20.6204741Z ##[endgroup] 2023-07-13T14:18:20.6217561Z Temporarily overriding HOME='/home/ec2-user/actions-runner/_work/_temp/04344376-5d76-4d59-913b-505ce1ae9934' before making global git config changes 2023-07-13T14:18:20.6218185Z Adding repository directory to the temporary git global config as a safe directory 2023-07-13T14:18:20.6223395Z [command]/usr/bin/git config --global --add safe.directory /home/ec2-user/actions-runner/_work/audio/audio/pytorch/audio 2023-07-13T14:18:20.6245234Z ##[group]Initializing the repository 2023-07-13T14:18:20.6248104Z [command]/usr/bin/git init /home/ec2-user/actions-runner/_work/audio/audio/pytorch/audio 2023-07-13T14:18:20.6265428Z hint: Using 'master' as the name for the initial branch. This default branch name 2023-07-13T14:18:20.6266362Z hint: is subject to change. To configure the initial branch name to use in all 2023-07-13T14:18:20.6266742Z hint: of your new repositories, which will suppress this warning, call: 2023-07-13T14:18:20.6267088Z hint: 2023-07-13T14:18:20.6267407Z hint: git config --global init.defaultBranch 2023-07-13T14:18:20.6284986Z hint: 2023-07-13T14:18:20.6285459Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and 2023-07-13T14:18:20.6285881Z hint: 'development'. The just-created branch can be renamed via this command: 2023-07-13T14:18:20.6286146Z hint: 2023-07-13T14:18:20.6287160Z hint: git branch -m 2023-07-13T14:18:20.6287867Z Initialized empty Git repository in /home/ec2-user/actions-runner/_work/audio/audio/pytorch/audio/.git/ 2023-07-13T14:18:20.6289214Z [command]/usr/bin/git remote add origin https://github.com/pytorch/audio 2023-07-13T14:18:20.6300457Z ##[endgroup] 2023-07-13T14:18:20.6301175Z ##[group]Disabling automatic garbage collection 2023-07-13T14:18:20.6304494Z [command]/usr/bin/git config --local gc.auto 0 2023-07-13T14:18:20.6328386Z ##[endgroup] 2023-07-13T14:18:20.6328763Z ##[group]Setting up auth 2023-07-13T14:18:20.6334199Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2023-07-13T14:18:20.6359804Z [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-07-13T14:18:20.6563623Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2023-07-13T14:18:20.6583748Z [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-07-13T14:18:20.6788341Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** 2023-07-13T14:18:20.6905325Z ##[endgroup] 2023-07-13T14:18:20.6905720Z ##[group]Fetching the repository 2023-07-13T14:18:20.6912025Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --progress --no-recurse-submodules --depth=1 origin +refs/pull/306/merge:refs/remotes/pull/306/merge 2023-07-13T14:18:20.9682820Z remote: Enumerating objects: 985, done. 2023-07-13T14:18:20.9690745Z remote: Counting objects: 0% (1/985) 2023-07-13T14:18:20.9691020Z remote: Counting objects: 1% (10/985) 2023-07-13T14:18:20.9691474Z remote: Counting objects: 2% (20/985) 2023-07-13T14:18:20.9691853Z remote: Counting objects: 3% (30/985) 2023-07-13T14:18:20.9692113Z remote: Counting objects: 4% (40/985) 2023-07-13T14:18:20.9694028Z remote: Counting objects: 5% (50/985) 2023-07-13T14:18:20.9694587Z remote: Counting objects: 6% (60/985) 2023-07-13T14:18:20.9695015Z remote: Counting objects: 7% (69/985) 2023-07-13T14:18:20.9695406Z remote: Counting objects: 8% (79/985) 2023-07-13T14:18:20.9695780Z remote: Counting objects: 9% (89/985) 2023-07-13T14:18:20.9696037Z remote: Counting objects: 10% (99/985) 2023-07-13T14:18:20.9696317Z remote: Counting objects: 11% (109/985) 2023-07-13T14:18:20.9696694Z remote: Counting objects: 12% (119/985) 2023-07-13T14:18:20.9697112Z remote: Counting objects: 13% (129/985) 2023-07-13T14:18:20.9697456Z remote: Counting objects: 14% (138/985) 2023-07-13T14:18:20.9697721Z remote: Counting objects: 15% (148/985) 2023-07-13T14:18:20.9697970Z remote: Counting objects: 16% (158/985) 2023-07-13T14:18:20.9698214Z remote: Counting objects: 17% (168/985) 2023-07-13T14:18:20.9698449Z remote: Counting objects: 18% (178/985) 2023-07-13T14:18:20.9700547Z remote: Counting objects: 19% (188/985) 2023-07-13T14:18:20.9700922Z remote: Counting objects: 20% (197/985) 2023-07-13T14:18:20.9701160Z remote: Counting objects: 21% (207/985) 2023-07-13T14:18:20.9701433Z remote: Counting objects: 22% (217/985) 2023-07-13T14:18:20.9701805Z remote: Counting objects: 23% (227/985) 2023-07-13T14:18:20.9702107Z remote: Counting objects: 24% (237/985) 2023-07-13T14:18:20.9702478Z remote: Counting objects: 25% (247/985) 2023-07-13T14:18:20.9702870Z remote: Counting objects: 26% (257/985) 2023-07-13T14:18:20.9703139Z remote: Counting objects: 27% (266/985) 2023-07-13T14:18:20.9703384Z remote: Counting objects: 28% (276/985) 2023-07-13T14:18:20.9703631Z remote: Counting objects: 29% (286/985) 2023-07-13T14:18:20.9703965Z remote: Counting objects: 30% (296/985) 2023-07-13T14:18:20.9704401Z remote: Counting objects: 31% (306/985) 2023-07-13T14:18:20.9704812Z remote: Counting objects: 32% (316/985) 2023-07-13T14:18:20.9705195Z remote: Counting objects: 33% (326/985) 2023-07-13T14:18:20.9705548Z remote: Counting objects: 34% (335/985) 2023-07-13T14:18:20.9705880Z remote: Counting objects: 35% (345/985) 2023-07-13T14:18:20.9706222Z remote: Counting objects: 36% (355/985) 2023-07-13T14:18:20.9706586Z remote: Counting objects: 37% (365/985) 2023-07-13T14:18:20.9706919Z remote: Counting objects: 38% (375/985) 2023-07-13T14:18:20.9707267Z remote: Counting objects: 39% (385/985) 2023-07-13T14:18:20.9707523Z remote: Counting objects: 40% (394/985) 2023-07-13T14:18:20.9707769Z remote: Counting objects: 41% (404/985) 2023-07-13T14:18:20.9708034Z remote: Counting objects: 42% (414/985) 2023-07-13T14:18:20.9708359Z remote: Counting objects: 43% (424/985) 2023-07-13T14:18:20.9708707Z remote: Counting objects: 44% (434/985) 2023-07-13T14:18:20.9709040Z remote: Counting objects: 45% (444/985) 2023-07-13T14:18:20.9709370Z remote: Counting objects: 46% (454/985) 2023-07-13T14:18:20.9709634Z remote: Counting objects: 47% (463/985) 2023-07-13T14:18:20.9709952Z remote: Counting objects: 48% (473/985) 2023-07-13T14:18:20.9710294Z remote: Counting objects: 49% (483/985) 2023-07-13T14:18:20.9710851Z remote: Counting objects: 50% (493/985) 2023-07-13T14:18:20.9711086Z remote: Counting objects: 51% (503/985) 2023-07-13T14:18:20.9711330Z remote: Counting objects: 52% (513/985) 2023-07-13T14:18:20.9711570Z remote: Counting objects: 53% (523/985) 2023-07-13T14:18:20.9712020Z remote: Counting objects: 54% (532/985) 2023-07-13T14:18:20.9712281Z remote: Counting objects: 55% (542/985) 2023-07-13T14:18:20.9712603Z remote: Counting objects: 56% (552/985) 2023-07-13T14:18:20.9712948Z remote: Counting objects: 57% (562/985) 2023-07-13T14:18:20.9713294Z remote: Counting objects: 58% (572/985) 2023-07-13T14:18:20.9713662Z remote: Counting objects: 59% (582/985) 2023-07-13T14:18:20.9713955Z remote: Counting objects: 60% (591/985) 2023-07-13T14:18:20.9714205Z remote: Counting objects: 61% (601/985) 2023-07-13T14:18:20.9714487Z remote: Counting objects: 62% (611/985) 2023-07-13T14:18:20.9714730Z remote: Counting objects: 63% (621/985) 2023-07-13T14:18:20.9714982Z remote: Counting objects: 64% (631/985) 2023-07-13T14:18:20.9715224Z remote: Counting objects: 65% (641/985) 2023-07-13T14:18:20.9715489Z remote: Counting objects: 66% (651/985) 2023-07-13T14:18:20.9715744Z remote: Counting objects: 67% (660/985) 2023-07-13T14:18:20.9715979Z remote: Counting objects: 68% (670/985) 2023-07-13T14:18:20.9716221Z remote: Counting objects: 69% (680/985) 2023-07-13T14:18:20.9716467Z remote: Counting objects: 70% (690/985) 2023-07-13T14:18:20.9716702Z remote: Counting objects: 71% (700/985) 2023-07-13T14:18:20.9716943Z remote: Counting objects: 72% (710/985) 2023-07-13T14:18:20.9717185Z remote: Counting objects: 73% (720/985) 2023-07-13T14:18:20.9717431Z remote: Counting objects: 74% (729/985) 2023-07-13T14:18:20.9717675Z remote: Counting objects: 75% (739/985) 2023-07-13T14:18:20.9717914Z remote: Counting objects: 76% (749/985) 2023-07-13T14:18:20.9718445Z remote: Counting objects: 77% (759/985) 2023-07-13T14:18:20.9718679Z remote: Counting objects: 78% (769/985) 2023-07-13T14:18:20.9718921Z remote: Counting objects: 79% (779/985) 2023-07-13T14:18:20.9719164Z remote: Counting objects: 80% (788/985) 2023-07-13T14:18:20.9719405Z remote: Counting objects: 81% (798/985) 2023-07-13T14:18:20.9719645Z remote: Counting objects: 82% (808/985) 2023-07-13T14:18:20.9719884Z remote: Counting objects: 83% (818/985) 2023-07-13T14:18:20.9720116Z remote: Counting objects: 84% (828/985) 2023-07-13T14:18:20.9720354Z remote: Counting objects: 85% (838/985) 2023-07-13T14:18:20.9720597Z remote: Counting objects: 86% (848/985) 2023-07-13T14:18:20.9720839Z remote: Counting objects: 87% (857/985) 2023-07-13T14:18:20.9721069Z remote: Counting objects: 88% (867/985) 2023-07-13T14:18:20.9721306Z remote: Counting objects: 89% (877/985) 2023-07-13T14:18:20.9721551Z remote: Counting objects: 90% (887/985) 2023-07-13T14:18:20.9721782Z remote: Counting objects: 91% (897/985) 2023-07-13T14:18:20.9722021Z remote: Counting objects: 92% (907/985) 2023-07-13T14:18:20.9722262Z remote: Counting objects: 93% (917/985) 2023-07-13T14:18:20.9722499Z remote: Counting objects: 94% (926/985) 2023-07-13T14:18:20.9722740Z remote: Counting objects: 95% (936/985) 2023-07-13T14:18:20.9722984Z remote: Counting objects: 96% (946/985) 2023-07-13T14:18:20.9723217Z remote: Counting objects: 97% (956/985) 2023-07-13T14:18:20.9723460Z remote: Counting objects: 98% (966/985) 2023-07-13T14:18:20.9723708Z remote: Counting objects: 99% (976/985) 2023-07-13T14:18:20.9723985Z remote: Counting objects: 100% (985/985) 2023-07-13T14:18:20.9724231Z remote: Counting objects: 100% (985/985), done. 2023-07-13T14:18:20.9728302Z remote: Compressing objects: 0% (1/855) 2023-07-13T14:18:20.9729924Z remote: Compressing objects: 1% (9/855) 2023-07-13T14:18:20.9746000Z remote: Compressing objects: 2% (18/855) 2023-07-13T14:18:20.9769452Z remote: Compressing objects: 3% (26/855) 2023-07-13T14:18:20.9774593Z remote: Compressing objects: 4% (35/855) 2023-07-13T14:18:20.9777339Z remote: Compressing objects: 5% (43/855) 2023-07-13T14:18:20.9779606Z remote: Compressing objects: 6% (52/855) 2023-07-13T14:18:20.9789566Z remote: Compressing objects: 7% (60/855) 2023-07-13T14:18:20.9865231Z remote: Compressing objects: 8% (69/855) 2023-07-13T14:18:20.9865512Z remote: Compressing objects: 9% (77/855) 2023-07-13T14:18:20.9865773Z remote: Compressing objects: 10% (86/855) 2023-07-13T14:18:20.9882531Z remote: Compressing objects: 11% (95/855) 2023-07-13T14:18:20.9896371Z remote: Compressing objects: 12% (103/855) 2023-07-13T14:18:20.9909097Z remote: Compressing objects: 13% (112/855) 2023-07-13T14:18:20.9915765Z remote: Compressing objects: 14% (120/855) 2023-07-13T14:18:20.9919457Z remote: Compressing objects: 15% (129/855) 2023-07-13T14:18:20.9937193Z remote: Compressing objects: 16% (137/855) 2023-07-13T14:18:20.9960351Z remote: Compressing objects: 17% (146/855) 2023-07-13T14:18:21.0001380Z remote: Compressing objects: 18% (154/855) 2023-07-13T14:18:21.0034743Z remote: Compressing objects: 19% (163/855) 2023-07-13T14:18:21.0055260Z remote: Compressing objects: 20% (171/855) 2023-07-13T14:18:21.0067363Z remote: Compressing objects: 21% (180/855) 2023-07-13T14:18:21.0079049Z remote: Compressing objects: 22% (189/855) 2023-07-13T14:18:21.0093731Z remote: Compressing objects: 23% (197/855) 2023-07-13T14:18:21.0113579Z remote: Compressing objects: 24% (206/855) 2023-07-13T14:18:21.0147613Z remote: Compressing objects: 25% (214/855) 2023-07-13T14:18:21.0192964Z remote: Compressing objects: 26% (223/855) 2023-07-13T14:18:21.0243686Z remote: Compressing objects: 27% (231/855) 2023-07-13T14:18:21.0291548Z remote: Compressing objects: 28% (240/855) 2023-07-13T14:18:21.0307888Z remote: Compressing objects: 29% (248/855) 2023-07-13T14:18:21.0332154Z remote: Compressing objects: 30% (257/855) 2023-07-13T14:18:21.0350163Z remote: Compressing objects: 31% (266/855) 2023-07-13T14:18:21.0371762Z remote: Compressing objects: 32% (274/855) 2023-07-13T14:18:21.0425262Z remote: Compressing objects: 33% (283/855) 2023-07-13T14:18:21.0466376Z remote: Compressing objects: 34% (291/855) 2023-07-13T14:18:21.0523470Z remote: Compressing objects: 35% (300/855) 2023-07-13T14:18:21.0562891Z remote: Compressing objects: 36% (308/855) 2023-07-13T14:18:21.0650968Z remote: Compressing objects: 37% (317/855) 2023-07-13T14:18:21.0746837Z remote: Compressing objects: 38% (325/855) 2023-07-13T14:18:21.0868737Z remote: Compressing objects: 39% (334/855) 2023-07-13T14:18:21.0911838Z remote: Compressing objects: 40% (342/855) 2023-07-13T14:18:21.0960859Z remote: Compressing objects: 41% (351/855) 2023-07-13T14:18:21.0976083Z remote: Compressing objects: 42% (360/855) 2023-07-13T14:18:21.0995400Z remote: Compressing objects: 43% (368/855) 2023-07-13T14:18:21.1024280Z remote: Compressing objects: 44% (377/855) 2023-07-13T14:18:21.1049728Z remote: Compressing objects: 45% (385/855) 2023-07-13T14:18:21.1052343Z remote: Compressing objects: 46% (394/855) 2023-07-13T14:18:21.1053474Z remote: Compressing objects: 47% (402/855) 2023-07-13T14:18:21.1059122Z remote: Compressing objects: 48% (411/855) 2023-07-13T14:18:21.1061473Z remote: Compressing objects: 49% (419/855) 2023-07-13T14:18:21.1067018Z remote: Compressing objects: 50% (428/855) 2023-07-13T14:18:21.1091526Z remote: Compressing objects: 51% (437/855) 2023-07-13T14:18:21.1096408Z remote: Compressing objects: 52% (445/855) 2023-07-13T14:18:21.1099404Z remote: Compressing objects: 53% (454/855) 2023-07-13T14:18:21.1116005Z remote: Compressing objects: 54% (462/855) 2023-07-13T14:18:21.1120891Z remote: Compressing objects: 55% (471/855) 2023-07-13T14:18:21.1123523Z remote: Compressing objects: 56% (479/855) 2023-07-13T14:18:21.1157052Z remote: Compressing objects: 57% (488/855) 2023-07-13T14:18:21.1158624Z remote: Compressing objects: 58% (496/855) 2023-07-13T14:18:21.1175680Z remote: Compressing objects: 59% (505/855) 2023-07-13T14:18:21.1196788Z remote: Compressing objects: 60% (513/855) 2023-07-13T14:18:21.1211078Z remote: Compressing objects: 61% (522/855) 2023-07-13T14:18:21.1241561Z remote: Compressing objects: 62% (531/855) 2023-07-13T14:18:21.1258679Z remote: Compressing objects: 63% (539/855) 2023-07-13T14:18:21.1263625Z remote: Compressing objects: 64% (548/855) 2023-07-13T14:18:21.1281550Z remote: Compressing objects: 65% (556/855) 2023-07-13T14:18:21.1296291Z remote: Compressing objects: 66% (565/855) 2023-07-13T14:18:21.1302277Z remote: Compressing objects: 67% (573/855) 2023-07-13T14:18:21.1306471Z remote: Compressing objects: 68% (582/855) 2023-07-13T14:18:21.1307279Z remote: Compressing objects: 69% (590/855) 2023-07-13T14:18:21.1315515Z remote: Compressing objects: 70% (599/855) 2023-07-13T14:18:21.1326004Z remote: Compressing objects: 71% (608/855) 2023-07-13T14:18:21.1335597Z remote: Compressing objects: 72% (616/855) 2023-07-13T14:18:21.1442523Z remote: Compressing objects: 73% (625/855) 2023-07-13T14:18:21.1456015Z remote: Compressing objects: 74% (633/855) 2023-07-13T14:18:21.1462876Z remote: Compressing objects: 75% (642/855) 2023-07-13T14:18:21.1469811Z remote: Compressing objects: 76% (650/855) 2023-07-13T14:18:21.1477123Z remote: Compressing objects: 77% (659/855) 2023-07-13T14:18:21.1489361Z remote: Compressing objects: 78% (667/855) 2023-07-13T14:18:21.1493000Z remote: Compressing objects: 79% (676/855) 2023-07-13T14:18:21.1509694Z remote: Compressing objects: 80% (684/855) 2023-07-13T14:18:21.1511330Z remote: Compressing objects: 81% (693/855) 2023-07-13T14:18:21.1512956Z remote: Compressing objects: 82% (702/855) 2023-07-13T14:18:21.1513228Z remote: Compressing objects: 83% (710/855) 2023-07-13T14:18:21.1515395Z remote: Compressing objects: 84% (719/855) 2023-07-13T14:18:21.1515664Z remote: Compressing objects: 85% (727/855) 2023-07-13T14:18:21.1516325Z remote: Compressing objects: 86% (736/855) 2023-07-13T14:18:21.1517657Z remote: Compressing objects: 87% (744/855) 2023-07-13T14:18:21.1518845Z remote: Compressing objects: 88% (753/855) 2023-07-13T14:18:21.1520630Z remote: Compressing objects: 89% (761/855) 2023-07-13T14:18:21.1521290Z remote: Compressing objects: 90% (770/855) 2023-07-13T14:18:21.1521541Z remote: Compressing objects: 91% (779/855) 2023-07-13T14:18:21.1524771Z remote: Compressing objects: 92% (787/855) 2023-07-13T14:18:21.1526057Z remote: Compressing objects: 93% (796/855) 2023-07-13T14:18:21.1527459Z remote: Compressing objects: 94% (804/855) 2023-07-13T14:18:21.1529046Z remote: Compressing objects: 95% (813/855) 2023-07-13T14:18:21.1529319Z remote: Compressing objects: 96% (821/855) 2023-07-13T14:18:21.1529586Z remote: Compressing objects: 97% (830/855) 2023-07-13T14:18:21.1529852Z remote: Compressing objects: 98% (838/855) 2023-07-13T14:18:21.1530106Z remote: Compressing objects: 99% (847/855) 2023-07-13T14:18:21.1530794Z remote: Compressing objects: 100% (855/855) 2023-07-13T14:18:21.1531079Z remote: Compressing objects: 100% (855/855), done. 2023-07-13T14:18:21.1554832Z Receiving objects: 0% (1/985) 2023-07-13T14:18:21.1557045Z Receiving objects: 1% (10/985) 2023-07-13T14:18:21.1559129Z Receiving objects: 2% (20/985) 2023-07-13T14:18:21.1560890Z Receiving objects: 3% (30/985) 2023-07-13T14:18:21.1562799Z Receiving objects: 4% (40/985) 2023-07-13T14:18:21.1567600Z Receiving objects: 5% (50/985) 2023-07-13T14:18:21.1590885Z Receiving objects: 6% (60/985) 2023-07-13T14:18:21.1601124Z Receiving objects: 7% (69/985) 2023-07-13T14:18:21.1603264Z Receiving objects: 8% (79/985) 2023-07-13T14:18:21.1964036Z Receiving objects: 9% (89/985) 2023-07-13T14:18:21.2140610Z Receiving objects: 10% (99/985) 2023-07-13T14:18:21.2142164Z Receiving objects: 11% (109/985) 2023-07-13T14:18:21.2146481Z Receiving objects: 12% (119/985) 2023-07-13T14:18:21.2147696Z Receiving objects: 13% (129/985) 2023-07-13T14:18:21.2149904Z Receiving objects: 14% (138/985) 2023-07-13T14:18:21.2154732Z Receiving objects: 15% (148/985) 2023-07-13T14:18:21.2157784Z Receiving objects: 16% (158/985) 2023-07-13T14:18:21.2160208Z Receiving objects: 17% (168/985) 2023-07-13T14:18:21.2163280Z Receiving objects: 18% (178/985) 2023-07-13T14:18:21.2164915Z Receiving objects: 19% (188/985) 2023-07-13T14:18:21.2167354Z Receiving objects: 20% (197/985) 2023-07-13T14:18:21.2171257Z Receiving objects: 21% (207/985) 2023-07-13T14:18:21.2177098Z Receiving objects: 22% (217/985) 2023-07-13T14:18:21.2179770Z Receiving objects: 23% (227/985) 2023-07-13T14:18:21.2181012Z Receiving objects: 24% (237/985) 2023-07-13T14:18:21.2199070Z Receiving objects: 25% (247/985) 2023-07-13T14:18:21.2202332Z Receiving objects: 26% (257/985) 2023-07-13T14:18:21.2208213Z Receiving objects: 27% (266/985) 2023-07-13T14:18:21.2210832Z Receiving objects: 28% (276/985) 2023-07-13T14:18:21.2212482Z Receiving objects: 29% (286/985) 2023-07-13T14:18:21.2213984Z Receiving objects: 30% (296/985) 2023-07-13T14:18:21.2218049Z Receiving objects: 31% (306/985) 2023-07-13T14:18:21.2224025Z Receiving objects: 32% (316/985) 2023-07-13T14:18:21.2233363Z Receiving objects: 33% (326/985) 2023-07-13T14:18:21.2244239Z Receiving objects: 34% (335/985) 2023-07-13T14:18:21.2247873Z Receiving objects: 35% (345/985) 2023-07-13T14:18:21.2249483Z Receiving objects: 36% (355/985) 2023-07-13T14:18:21.2251014Z Receiving objects: 37% (365/985) 2023-07-13T14:18:21.2257953Z Receiving objects: 38% (375/985) 2023-07-13T14:18:21.2307634Z Receiving objects: 39% (385/985) 2023-07-13T14:18:21.2307864Z Receiving objects: 40% (394/985) 2023-07-13T14:18:21.2323790Z Receiving objects: 41% (404/985) 2023-07-13T14:18:21.2553535Z Receiving objects: 42% (414/985) 2023-07-13T14:18:21.2836555Z Receiving objects: 43% (424/985) 2023-07-13T14:18:21.2838274Z Receiving objects: 44% (434/985) 2023-07-13T14:18:21.2838504Z Receiving objects: 45% (444/985) 2023-07-13T14:18:21.2838728Z Receiving objects: 46% (454/985) 2023-07-13T14:18:21.2840555Z Receiving objects: 47% (463/985) 2023-07-13T14:18:21.2844450Z Receiving objects: 48% (473/985) 2023-07-13T14:18:21.2847227Z Receiving objects: 49% (483/985) 2023-07-13T14:18:21.2848841Z Receiving objects: 50% (493/985) 2023-07-13T14:18:21.2851734Z Receiving objects: 51% (503/985) 2023-07-13T14:18:21.2854751Z Receiving objects: 52% (513/985) 2023-07-13T14:18:21.2858557Z Receiving objects: 53% (523/985) 2023-07-13T14:18:21.2861942Z Receiving objects: 54% (532/985) 2023-07-13T14:18:21.2863745Z Receiving objects: 55% (542/985) 2023-07-13T14:18:21.2865298Z Receiving objects: 56% (552/985) 2023-07-13T14:18:21.2868759Z Receiving objects: 57% (562/985) 2023-07-13T14:18:21.2874598Z Receiving objects: 58% (572/985) 2023-07-13T14:18:21.2882666Z Receiving objects: 59% (582/985) 2023-07-13T14:18:21.2884076Z Receiving objects: 60% (591/985) 2023-07-13T14:18:21.2885448Z Receiving objects: 61% (601/985) 2023-07-13T14:18:21.2886855Z Receiving objects: 62% (611/985) 2023-07-13T14:18:21.2890788Z Receiving objects: 63% (621/985) 2023-07-13T14:18:21.2892378Z Receiving objects: 64% (631/985) 2023-07-13T14:18:21.2894737Z Receiving objects: 65% (641/985) 2023-07-13T14:18:21.2897256Z Receiving objects: 66% (651/985) 2023-07-13T14:18:21.2899457Z Receiving objects: 67% (660/985) 2023-07-13T14:18:21.2902358Z Receiving objects: 68% (670/985) 2023-07-13T14:18:21.2904216Z Receiving objects: 69% (680/985) 2023-07-13T14:18:21.2906691Z Receiving objects: 70% (690/985) 2023-07-13T14:18:21.2915993Z Receiving objects: 71% (700/985) 2023-07-13T14:18:21.2918490Z Receiving objects: 72% (710/985) 2023-07-13T14:18:21.2921809Z Receiving objects: 73% (720/985) 2023-07-13T14:18:21.2927878Z Receiving objects: 74% (729/985) 2023-07-13T14:18:21.2929274Z Receiving objects: 75% (739/985) 2023-07-13T14:18:21.2938076Z Receiving objects: 76% (749/985) 2023-07-13T14:18:21.2941371Z Receiving objects: 77% (759/985) 2023-07-13T14:18:21.2945166Z Receiving objects: 78% (769/985) 2023-07-13T14:18:21.2951505Z Receiving objects: 79% (779/985) 2023-07-13T14:18:21.2958246Z Receiving objects: 80% (788/985) 2023-07-13T14:18:21.2960915Z Receiving objects: 81% (798/985) 2023-07-13T14:18:21.2963394Z Receiving objects: 82% (808/985) 2023-07-13T14:18:21.2966507Z Receiving objects: 83% (818/985) 2023-07-13T14:18:21.2968506Z Receiving objects: 84% (828/985) 2023-07-13T14:18:21.2970328Z Receiving objects: 85% (838/985) 2023-07-13T14:18:21.2973123Z Receiving objects: 86% (848/985) 2023-07-13T14:18:21.2976575Z Receiving objects: 87% (857/985) 2023-07-13T14:18:21.2981083Z Receiving objects: 88% (867/985) 2023-07-13T14:18:21.2985562Z Receiving objects: 89% (877/985) 2023-07-13T14:18:21.3001415Z Receiving objects: 90% (887/985) 2023-07-13T14:18:21.3008691Z Receiving objects: 91% (897/985) 2023-07-13T14:18:21.3018158Z Receiving objects: 92% (907/985) 2023-07-13T14:18:21.3029613Z Receiving objects: 93% (917/985) 2023-07-13T14:18:21.3037252Z Receiving objects: 94% (926/985) 2023-07-13T14:18:21.3044139Z Receiving objects: 95% (936/985) 2023-07-13T14:18:21.3047846Z Receiving objects: 96% (946/985) 2023-07-13T14:18:21.3055283Z Receiving objects: 97% (956/985) 2023-07-13T14:18:21.3072802Z Receiving objects: 98% (966/985) 2023-07-13T14:18:21.3078705Z Receiving objects: 99% (976/985) 2023-07-13T14:18:21.3079205Z remote: Total 985 (delta 164), reused 463 (delta 95), pack-reused 0 2023-07-13T14:18:21.3079493Z Receiving objects: 100% (985/985) 2023-07-13T14:18:21.3079761Z Receiving objects: 100% (985/985), 4.96 MiB | 32.55 MiB/s, done. 2023-07-13T14:18:21.3119676Z Resolving deltas: 0% (0/164) 2023-07-13T14:18:21.3121623Z Resolving deltas: 1% (2/164) 2023-07-13T14:18:21.3121968Z Resolving deltas: 2% (4/164) 2023-07-13T14:18:21.3123692Z Resolving deltas: 3% (6/164) 2023-07-13T14:18:21.3124064Z Resolving deltas: 4% (8/164) 2023-07-13T14:18:21.3124425Z Resolving deltas: 5% (9/164) 2023-07-13T14:18:21.3124857Z Resolving deltas: 6% (11/164) 2023-07-13T14:18:21.3126326Z Resolving deltas: 7% (12/164) 2023-07-13T14:18:21.3126795Z Resolving deltas: 8% (14/164) 2023-07-13T14:18:21.3127729Z Resolving deltas: 9% (15/164) 2023-07-13T14:18:21.3129727Z Resolving deltas: 10% (17/164) 2023-07-13T14:18:21.3130638Z Resolving deltas: 12% (20/164) 2023-07-13T14:18:21.3130870Z Resolving deltas: 13% (22/164) 2023-07-13T14:18:21.3131148Z Resolving deltas: 14% (23/164) 2023-07-13T14:18:21.3132890Z Resolving deltas: 15% (25/164) 2023-07-13T14:18:21.3134028Z Resolving deltas: 16% (27/164) 2023-07-13T14:18:21.3134288Z Resolving deltas: 17% (28/164) 2023-07-13T14:18:21.3134499Z Resolving deltas: 18% (31/164) 2023-07-13T14:18:21.3135074Z Resolving deltas: 19% (32/164) 2023-07-13T14:18:21.3136375Z Resolving deltas: 20% (33/164) 2023-07-13T14:18:21.3137719Z Resolving deltas: 21% (35/164) 2023-07-13T14:18:21.3138308Z Resolving deltas: 22% (37/164) 2023-07-13T14:18:21.3139013Z Resolving deltas: 23% (38/164) 2023-07-13T14:18:21.3140195Z Resolving deltas: 24% (40/164) 2023-07-13T14:18:21.3141632Z Resolving deltas: 25% (41/164) 2023-07-13T14:18:21.3142969Z Resolving deltas: 26% (43/164) 2023-07-13T14:18:21.3143290Z Resolving deltas: 27% (45/164) 2023-07-13T14:18:21.3146455Z Resolving deltas: 28% (47/164) 2023-07-13T14:18:21.3146814Z Resolving deltas: 29% (48/164) 2023-07-13T14:18:21.3147120Z Resolving deltas: 30% (50/164) 2023-07-13T14:18:21.3147440Z Resolving deltas: 31% (51/164) 2023-07-13T14:18:21.3147753Z Resolving deltas: 32% (53/164) 2023-07-13T14:18:21.3148269Z Resolving deltas: 33% (55/164) 2023-07-13T14:18:21.3148586Z Resolving deltas: 34% (57/164) 2023-07-13T14:18:21.3148871Z Resolving deltas: 35% (58/164) 2023-07-13T14:18:21.3149079Z Resolving deltas: 37% (61/164) 2023-07-13T14:18:21.3149353Z Resolving deltas: 38% (63/164) 2023-07-13T14:18:21.3149643Z Resolving deltas: 39% (65/164) 2023-07-13T14:18:21.3149921Z Resolving deltas: 40% (67/164) 2023-07-13T14:18:21.3150144Z Resolving deltas: 41% (68/164) 2023-07-13T14:18:21.3150361Z Resolving deltas: 42% (69/164) 2023-07-13T14:18:21.3151855Z Resolving deltas: 43% (71/164) 2023-07-13T14:18:21.3152151Z Resolving deltas: 44% (73/164) 2023-07-13T14:18:21.3153370Z Resolving deltas: 45% (74/164) 2023-07-13T14:18:21.3153681Z Resolving deltas: 46% (76/164) 2023-07-13T14:18:21.3155701Z Resolving deltas: 47% (78/164) 2023-07-13T14:18:21.3156031Z Resolving deltas: 48% (79/164) 2023-07-13T14:18:21.3156322Z Resolving deltas: 49% (81/164) 2023-07-13T14:18:21.3156614Z Resolving deltas: 50% (82/164) 2023-07-13T14:18:21.3156904Z Resolving deltas: 51% (84/164) 2023-07-13T14:18:21.3157186Z Resolving deltas: 52% (86/164) 2023-07-13T14:18:21.3157485Z Resolving deltas: 53% (87/164) 2023-07-13T14:18:21.3157785Z Resolving deltas: 54% (89/164) 2023-07-13T14:18:21.3158423Z Resolving deltas: 55% (91/164) 2023-07-13T14:18:21.3158931Z Resolving deltas: 56% (93/164) 2023-07-13T14:18:21.3159368Z Resolving deltas: 57% (94/164) 2023-07-13T14:18:21.3160032Z Resolving deltas: 59% (97/164) 2023-07-13T14:18:21.3160938Z Resolving deltas: 60% (99/164) 2023-07-13T14:18:21.3161470Z Resolving deltas: 61% (101/164) 2023-07-13T14:18:21.3161912Z Resolving deltas: 62% (102/164) 2023-07-13T14:18:21.3162558Z Resolving deltas: 63% (104/164) 2023-07-13T14:18:21.3163374Z Resolving deltas: 64% (105/164) 2023-07-13T14:18:21.3163678Z Resolving deltas: 65% (108/164) 2023-07-13T14:18:21.3164486Z Resolving deltas: 66% (109/164) 2023-07-13T14:18:21.3164829Z Resolving deltas: 67% (110/164) 2023-07-13T14:18:21.3165128Z Resolving deltas: 68% (112/164) 2023-07-13T14:18:21.3165423Z Resolving deltas: 69% (114/164) 2023-07-13T14:18:21.3165672Z Resolving deltas: 70% (115/164) 2023-07-13T14:18:21.3165894Z Resolving deltas: 71% (118/164) 2023-07-13T14:18:21.3166112Z Resolving deltas: 72% (119/164) 2023-07-13T14:18:21.3167740Z Resolving deltas: 73% (121/164) 2023-07-13T14:18:21.3170526Z Resolving deltas: 74% (122/164) 2023-07-13T14:18:21.3170757Z Resolving deltas: 75% (123/164) 2023-07-13T14:18:21.3170984Z Resolving deltas: 76% (125/164) 2023-07-13T14:18:21.3171226Z Resolving deltas: 77% (127/164) 2023-07-13T14:18:21.3172460Z Resolving deltas: 78% (128/164) 2023-07-13T14:18:21.3172688Z Resolving deltas: 79% (130/164) 2023-07-13T14:18:21.3172915Z Resolving deltas: 80% (132/164) 2023-07-13T14:18:21.3173143Z Resolving deltas: 81% (134/164) 2023-07-13T14:18:21.3173363Z Resolving deltas: 82% (135/164) 2023-07-13T14:18:21.3173577Z Resolving deltas: 83% (137/164) 2023-07-13T14:18:21.3173971Z Resolving deltas: 84% (138/164) 2023-07-13T14:18:21.3174285Z Resolving deltas: 85% (140/164) 2023-07-13T14:18:21.3174567Z Resolving deltas: 86% (142/164) 2023-07-13T14:18:21.3174863Z Resolving deltas: 87% (143/164) 2023-07-13T14:18:21.3175130Z Resolving deltas: 88% (145/164) 2023-07-13T14:18:21.3175422Z Resolving deltas: 89% (146/164) 2023-07-13T14:18:21.3175805Z Resolving deltas: 90% (148/164) 2023-07-13T14:18:21.3176084Z Resolving deltas: 91% (150/164) 2023-07-13T14:18:21.3176820Z Resolving deltas: 92% (151/164) 2023-07-13T14:18:21.3177794Z Resolving deltas: 93% (153/164) 2023-07-13T14:18:21.3178097Z Resolving deltas: 94% (155/164) 2023-07-13T14:18:21.3180275Z Resolving deltas: 95% (156/164) 2023-07-13T14:18:21.3181871Z Resolving deltas: 96% (158/164) 2023-07-13T14:18:21.3183104Z Resolving deltas: 97% (160/164) 2023-07-13T14:18:21.3186003Z Resolving deltas: 98% (162/164) 2023-07-13T14:18:21.3188131Z Resolving deltas: 99% (163/164) 2023-07-13T14:18:21.3189723Z Resolving deltas: 100% (164/164) 2023-07-13T14:18:21.3190087Z Resolving deltas: 100% (164/164), done. 2023-07-13T14:18:21.4184451Z From https://github.com/pytorch/audio 2023-07-13T14:18:21.4184994Z * [new ref] refs/pull/306/merge -> pull/306/merge 2023-07-13T14:18:21.4200248Z ##[endgroup] 2023-07-13T14:18:21.4200774Z ##[group]Determining the checkout info 2023-07-13T14:18:21.4203089Z ##[endgroup] 2023-07-13T14:18:21.4203670Z ##[group]Checking out the ref 2023-07-13T14:18:21.4206881Z [command]/usr/bin/git checkout --progress --force refs/remotes/pull/306/merge 2023-07-13T14:18:21.4815285Z Note: switching to 'refs/remotes/pull/306/merge'. 2023-07-13T14:18:21.4815562Z 2023-07-13T14:18:21.4815872Z You are in 'detached HEAD' state. You can look around, make experimental 2023-07-13T14:18:21.4816334Z changes and commit them, and you can discard any commits you make in this 2023-07-13T14:18:21.4816739Z state without impacting any branches by switching back to a branch. 2023-07-13T14:18:21.4816993Z 2023-07-13T14:18:21.4817228Z If you want to create a new branch to retain commits you create, you may 2023-07-13T14:18:21.4817830Z do so (now or later) by using -c with the switch command. Example: 2023-07-13T14:18:21.4818084Z 2023-07-13T14:18:21.4818288Z git switch -c 2023-07-13T14:18:21.4818493Z 2023-07-13T14:18:21.4818619Z Or undo this operation with: 2023-07-13T14:18:21.4818824Z 2023-07-13T14:18:21.4818948Z git switch - 2023-07-13T14:18:21.4819130Z 2023-07-13T14:18:21.4819370Z Turn off this advice by setting config variable advice.detachedHead to false 2023-07-13T14:18:21.4819674Z 2023-07-13T14:18:21.4819932Z HEAD is now at 7182816 Merge 83d75edafc2f9246e62b01722f52eb5484fbe13e into 155d1baeb22ecbcd8f15c86a76918c35dc1b754b 2023-07-13T14:18:21.4828078Z ##[endgroup] 2023-07-13T14:18:21.4855483Z [command]/usr/bin/git log -1 --format='%H' 2023-07-13T14:18:21.4878249Z '7182816322bf05c53164d9767907a1dc4818bc40' 2023-07-13T14:18:21.5006553Z ##[group]Run set -ex 2023-07-13T14:18:21.5006796Z set -ex 2023-07-13T14:18:21.5006979Z { 2023-07-13T14:18:21.5007186Z  echo "#!/usr/bin/env bash"; 2023-07-13T14:18:21.5007427Z  echo "set -eou pipefail"; 2023-07-13T14:18:21.5007659Z  # shellcheck disable=SC2016 2023-07-13T14:18:21.5007912Z  echo 'eval "$(conda shell.bash hook)"'; 2023-07-13T14:18:21.5008145Z  echo "set -x"; 2023-07-13T14:18:21.5008354Z  echo "${SCRIPT}"; 2023-07-13T14:18:21.5008586Z } > "${RUNNER_TEMP}/exec_script" 2023-07-13T14:18:21.5008841Z chmod +x "${RUNNER_TEMP}/exec_script" 2023-07-13T14:18:21.5009215Z python3 "/home/ec2-user/actions-runner/_work/audio/audio/test-infra/.github/scripts/run_docker_with_env_secrets.py" "" 2023-07-13T14:18:21.5020062Z shell: /usr/bin/bash -e {0} 2023-07-13T14:18:21.5020273Z env: 2023-07-13T14:18:21.5020504Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-07-13T14:18:21.5020786Z REPOSITORY: pytorch/audio 2023-07-13T14:18:21.5020994Z PR_NUMBER: 306 2023-07-13T14:18:21.5024498Z SCRIPT: # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export FFMPEG_VERSION=6.0 export CODEC_HEADER_VERSION=n12.0.16.0 export COMPUTE_CAPABILITY=86 export BUILD_VERSION="$( cut -f 1 -d a version.txt )".dev"$(date "+%Y%m%d")" # 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 # Create Conda Env conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env # Install PyTorch / TorchAudio first set -ex set +u # don't know why conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" # Install torchaudio conda install --quiet --yes pkg-config cmake>=3.18.0 ninja pip install --progress-bar off -v -e . --no-use-pep517 # Install FFmpeg-dependencies conda install --quiet --yes -c conda-forge yasm x264 gnutls pkg-config lame libopus libvpx openh264 openssl x264 # Build FFmpeg with NVIDIA Video Codec SDK # TODO cache this ( git clone --quiet https://git.videolan.org/git/ffmpeg/nv-codec-headers.git cd nv-codec-headers git checkout ${CODEC_HEADER_VERSION} make PREFIX=${CONDA_PREFIX} install ) ( wget -q https://github.com/FFmpeg/FFmpeg/archive/refs/tags/n${FFMPEG_VERSION}.tar.gz tar -xf n${FFMPEG_VERSION}.tar.gz cd ./FFmpeg-n${FFMPEG_VERSION} export revision=${FFMPEG_VERSION} ./configure \ --prefix=${CONDA_PREFIX} \ --extra-cflags="-I${CONDA_PREFIX}/include" \ --extra-ldflags="-L${CONDA_PREFIX}/lib" \ --nvccflags="-gencode arch=compute_${COMPUTE_CAPABILITY},code=sm_${COMPUTE_CAPABILITY} -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 make clean make -j > /dev/null 2>&1 make install # test # src="https://download.pytorch.org/torchaudio/tutorial-assets/stream-api/NASAs_Most_Scientifically_Complex_Space_Observatory_Requires_Precision-MP4_small.mp4" # ffmpeg -y -vsync 0 -hwaccel cuvid -hwaccel_output_format cuda -c:v h264_cuvid -resize 360x240 -i "${src}" -c:a copy -c:v h264_nvenc -b:v 5M test.mp4 ) # Install runtime dependencies pip --quiet install git+https://github.com/kpu/kenlm/ flashlight-text # Install build tools conda install --quiet -y -c conda-forge pandoc doxygen pysoundfile pip install --quiet -r docs/requirements.txt -r docs/requirements-tutorials.txt # Build docs export BUILD_GALLERY=true (cd docs && make html) cp -rf docs/build/html/* "${RUNNER_DOCS_DIR}" mv docs/build/html /artifacts/ 2023-07-13T14:18:21.5028114Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-07-13T14:18:21.5028466Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-07-13T14:18:21.5028794Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-07-13T14:18:21.5029103Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-07-13T14:18:21.5029507Z ALL_SECRETS: { "github_token": "***" } 2023-07-13T14:18:21.5029733Z ##[endgroup] 2023-07-13T14:18:21.5051998Z + echo '#!/usr/bin/env bash' 2023-07-13T14:18:21.5052282Z + echo 'set -eou pipefail' 2023-07-13T14:18:21.5052572Z + echo 'eval "$(conda shell.bash hook)"' 2023-07-13T14:18:21.5052844Z + echo 'set -x' 2023-07-13T14:18:21.5053182Z + echo '# Mark Build Directory Safe 2023-07-13T14:18:21.5053585Z git config --global --add safe.directory /__w/audio/audio 2023-07-13T14:18:21.5053770Z 2023-07-13T14:18:21.5053867Z # Set up Environment Variables 2023-07-13T14:18:21.5054168Z export PYTHON_VERSION="3.10" 2023-07-13T14:18:21.5054478Z export CU_VERSION="11.8" 2023-07-13T14:18:21.5054885Z export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" 2023-07-13T14:18:21.5055223Z export FFMPEG_VERSION=6.0 2023-07-13T14:18:21.5055579Z export CODEC_HEADER_VERSION=n12.0.16.0 2023-07-13T14:18:21.5055911Z export COMPUTE_CAPABILITY=86 2023-07-13T14:18:21.5056380Z export BUILD_VERSION="$( cut -f 1 -d a version.txt )".dev"$(date "+%Y%m%d")" 2023-07-13T14:18:21.5056635Z 2023-07-13T14:18:21.5056738Z # Set CHANNEL 2023-07-13T14:18:21.5057324Z if [[(${GITHUB_EVENT_NAME} = '\''pull_request'\'' && (${GITHUB_BASE_REF} = '\''release'\''*)) || (${GITHUB_REF} = '\''refs/heads/release'\''*) ]]; then 2023-07-13T14:18:21.5057916Z export CHANNEL=test 2023-07-13T14:18:21.5058177Z else 2023-07-13T14:18:21.5058439Z export CHANNEL=nightly 2023-07-13T14:18:21.5058710Z fi 2023-07-13T14:18:21.5058847Z 2023-07-13T14:18:21.5058971Z # Create Conda Env 2023-07-13T14:18:21.5059445Z conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" 2023-07-13T14:18:21.5059758Z conda activate ./ci_env 2023-07-13T14:18:21.5059891Z 2023-07-13T14:18:21.5059993Z # Install PyTorch / TorchAudio first 2023-07-13T14:18:21.5060242Z set -ex 2023-07-13T14:18:21.5060464Z set +u # don'\''t know why 2023-07-13T14:18:21.5060663Z conda install \ 2023-07-13T14:18:21.5060872Z --yes \ 2023-07-13T14:18:21.5061072Z --quiet \ 2023-07-13T14:18:21.5061303Z -c "pytorch-${CHANNEL}" \ 2023-07-13T14:18:21.5071551Z -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ 2023-07-13T14:18:21.5071959Z "${CUDATOOLKIT}" 2023-07-13T14:18:21.5072086Z 2023-07-13T14:18:21.5072171Z # Install torchaudio 2023-07-13T14:18:21.5072478Z conda install --quiet --yes pkg-config cmake>=3.18.0 ninja 2023-07-13T14:18:21.5072855Z pip install --progress-bar off -v -e . --no-use-pep517 2023-07-13T14:18:21.5073044Z 2023-07-13T14:18:21.5073182Z # Install FFmpeg-dependencies 2023-07-13T14:18:21.5073604Z conda install --quiet --yes -c conda-forge yasm x264 gnutls pkg-config lame libopus libvpx openh264 openssl x264 2023-07-13T14:18:21.5073847Z 2023-07-13T14:18:21.5073967Z # Build FFmpeg with NVIDIA Video Codec SDK 2023-07-13T14:18:21.5074192Z # TODO cache this 2023-07-13T14:18:21.5074391Z ( 2023-07-13T14:18:21.5074753Z git clone --quiet https://git.videolan.org/git/ffmpeg/nv-codec-headers.git 2023-07-13T14:18:21.5075074Z cd nv-codec-headers 2023-07-13T14:18:21.5075303Z git checkout ${CODEC_HEADER_VERSION} 2023-07-13T14:18:21.5075543Z make PREFIX=${CONDA_PREFIX} install 2023-07-13T14:18:21.5075749Z ) 2023-07-13T14:18:21.5075846Z 2023-07-13T14:18:21.5075935Z ( 2023-07-13T14:18:21.5076268Z wget -q https://github.com/FFmpeg/FFmpeg/archive/refs/tags/n${FFMPEG_VERSION}.tar.gz 2023-07-13T14:18:21.5076617Z tar -xf n${FFMPEG_VERSION}.tar.gz 2023-07-13T14:18:21.5077052Z cd ./FFmpeg-n${FFMPEG_VERSION} 2023-07-13T14:18:21.5077297Z export revision=${FFMPEG_VERSION} 2023-07-13T14:18:21.5077504Z ./configure \ 2023-07-13T14:18:21.5077748Z --prefix=${CONDA_PREFIX} \ 2023-07-13T14:18:21.5078049Z --extra-cflags="-I${CONDA_PREFIX}/include" \ 2023-07-13T14:18:21.5078730Z --extra-ldflags="-L${CONDA_PREFIX}/lib" \ 2023-07-13T14:18:21.5079152Z --nvccflags="-gencode arch=compute_${COMPUTE_CAPABILITY},code=sm_${COMPUTE_CAPABILITY} -O2" \ 2023-07-13T14:18:21.5079478Z --disable-doc \ 2023-07-13T14:18:21.5079704Z --enable-rpath \ 2023-07-13T14:18:21.5079951Z --disable-static \ 2023-07-13T14:18:21.5080213Z --enable-protocol=https \ 2023-07-13T14:18:21.5080457Z --enable-gnutls \ 2023-07-13T14:18:21.5080694Z --enable-shared \ 2023-07-13T14:18:21.5080923Z --enable-gpl \ 2023-07-13T14:18:21.5081164Z --enable-nonfree \ 2023-07-13T14:18:21.5081415Z --enable-libmp3lame \ 2023-07-13T14:18:21.5081670Z --enable-libx264 \ 2023-07-13T14:18:21.5081912Z --enable-cuda-nvcc \ 2023-07-13T14:18:21.5082151Z --enable-nvenc \ 2023-07-13T14:18:21.5082382Z --enable-cuvid \ 2023-07-13T14:18:21.5082602Z --enable-nvdec 2023-07-13T14:18:21.5082791Z make clean 2023-07-13T14:18:21.5083017Z make -j > /dev/null 2>&1 2023-07-13T14:18:21.5083214Z make install 2023-07-13T14:18:21.5083398Z # test 2023-07-13T14:18:21.5083897Z # src="https://download.pytorch.org/torchaudio/tutorial-assets/stream-api/NASAs_Most_Scientifically_Complex_Space_Observatory_Requires_Precision-MP4_small.mp4" 2023-07-13T14:18:21.5084561Z # ffmpeg -y -vsync 0 -hwaccel cuvid -hwaccel_output_format cuda -c:v h264_cuvid -resize 360x240 -i "${src}" -c:a copy -c:v h264_nvenc -b:v 5M test.mp4 2023-07-13T14:18:21.5084891Z ) 2023-07-13T14:18:21.5084993Z 2023-07-13T14:18:21.5085208Z # Install runtime dependencies 2023-07-13T14:18:21.5085574Z pip --quiet install git+https://github.com/kpu/kenlm/ flashlight-text 2023-07-13T14:18:21.5085792Z 2023-07-13T14:18:21.5085871Z # Install build tools 2023-07-13T14:18:21.5086196Z conda install --quiet -y -c conda-forge pandoc doxygen pysoundfile 2023-07-13T14:18:21.5086616Z pip install --quiet -r docs/requirements.txt -r docs/requirements-tutorials.txt 2023-07-13T14:18:21.5086830Z 2023-07-13T14:18:21.5086909Z # Build docs 2023-07-13T14:18:21.5087104Z export BUILD_GALLERY=true 2023-07-13T14:18:21.5087324Z (cd docs && make html) 2023-07-13T14:18:21.5087450Z 2023-07-13T14:18:21.5087611Z cp -rf docs/build/html/* "${RUNNER_DOCS_DIR}" 2023-07-13T14:18:21.5087847Z mv docs/build/html /artifacts/ 2023-07-13T14:18:21.5088061Z ' 2023-07-13T14:18:21.5088356Z + chmod +x /home/ec2-user/actions-runner/_work/_temp/exec_script 2023-07-13T14:18:21.5088819Z + python3 /home/ec2-user/actions-runner/_work/audio/audio/test-infra/.github/scripts/run_docker_with_env_secrets.py '' 2023-07-13T14:19:27.4404493Z Running command: 2023-07-13T14:19:27.4408338Z 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_5544197656" `# 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_550304d6-fb6a-43f7-8500-9aa021e4af4f":"/home/ec2-user/actions-runner/_work/_temp/_runner_file_commands/step_summary_550304d6-fb6a-43f7-8500-9aa021e4af4f" -w /work "pytorch/conda-builder:cuda11.8" 2023-07-13T14:19:27.4410600Z 2023-07-13T14:19:27.4410974Z b6e1be200814fd95b0f05ebb49b85b4bf553e8c5b2b727604c60f3868a266852 2023-07-13T14:19:27.4411732Z Running command: docker exec -t b6e1be200814fd95b0f05ebb49b85b4bf553e8c5b2b727604c60f3868a266852 /exec 2023-07-13T14:19:27.4412393Z + git config --global --add safe.directory /__w/audio/audio 2023-07-13T14:19:27.4412810Z + export PYTHON_VERSION=3.10 2023-07-13T14:19:27.4413155Z + PYTHON_VERSION=3.10 2023-07-13T14:19:27.4413486Z + export CU_VERSION=11.8 2023-07-13T14:19:27.4413816Z + CU_VERSION=11.8 2023-07-13T14:19:27.4414246Z + export CUDATOOLKIT=pytorch-cuda=11.8 2023-07-13T14:19:27.4414706Z + CUDATOOLKIT=pytorch-cuda=11.8 2023-07-13T14:19:27.4415085Z + export FFMPEG_VERSION=6.0 2023-07-13T14:19:27.4415444Z + FFMPEG_VERSION=6.0 2023-07-13T14:19:27.4415801Z + export CODEC_HEADER_VERSION=n12.0.16.0 2023-07-13T14:19:27.4416162Z + CODEC_HEADER_VERSION=n12.0.16.0 2023-07-13T14:19:27.4416529Z + export COMPUTE_CAPABILITY=86 2023-07-13T14:19:27.4416895Z + COMPUTE_CAPABILITY=86 2023-07-13T14:19:27.4417312Z ++ cut -f 1 -d a version.txt 2023-07-13T14:19:27.4417627Z ++ date +%Y%m%d 2023-07-13T14:19:27.4417969Z + export BUILD_VERSION=2.1.0.dev20230713 2023-07-13T14:19:27.4418333Z + BUILD_VERSION=2.1.0.dev20230713 2023-07-13T14:19:27.4420751Z + [[ pull_request = \p\u\l\l\_\r\e\q\u\e\s\t ]] 2023-07-13T14:19:27.4421378Z + [[ main = \r\e\l\e\a\s\e* ]] 2023-07-13T14:19:27.4422580Z + [[ refs/pull/306/merge = \r\e\f\s\/\h\e\a\d\s\/\r\e\l\e\a\s\e* ]] 2023-07-13T14:19:27.4422988Z + export CHANNEL=nightly 2023-07-13T14:19:27.4423552Z + CHANNEL=nightly 2023-07-13T14:19:27.4424051Z + conda create --quiet -y --prefix ci_env python=3.10 2023-07-13T14:19:27.4424441Z + local cmd=create 2023-07-13T14:19:27.4424728Z + case "$cmd" in 2023-07-13T14:19:27.4425221Z + __conda_exe create --quiet -y --prefix ci_env python=3.10 2023-07-13T14:19:27.4425782Z + /opt/conda/bin/conda create --quiet -y --prefix ci_env python=3.10 2023-07-13T14:19:27.4426274Z Collecting package metadata (current_repodata.json): ...working... done 2023-07-13T14:19:27.4426733Z Solving environment: ...working... done 2023-07-13T14:19:27.4426958Z 2023-07-13T14:19:27.4427084Z ## Package Plan ## 2023-07-13T14:19:27.4427273Z 2023-07-13T14:19:27.4427435Z environment location: /work/ci_env 2023-07-13T14:19:27.4427653Z 2023-07-13T14:19:27.4427792Z added / updated specs: 2023-07-13T14:19:27.4431457Z - python=3.10 2023-07-13T14:19:27.4431655Z 2023-07-13T14:19:27.4431663Z 2023-07-13T14:19:27.4431836Z The following packages will be downloaded: 2023-07-13T14:19:27.4432186Z 2023-07-13T14:19:27.4432328Z package | build 2023-07-13T14:19:27.4432749Z ---------------------------|----------------- 2023-07-13T14:19:27.4433206Z libffi-3.4.4 | h6a678d5_0 142 KB 2023-07-13T14:19:27.4433624Z openssl-3.0.9 | h7f8727e_0 5.2 MB 2023-07-13T14:19:27.4434060Z pip-23.1.2 | py310h06a4308_0 2.6 MB 2023-07-13T14:19:27.4434508Z python-3.10.12 | h955ad1f_0 26.8 MB 2023-07-13T14:19:27.4435008Z setuptools-67.8.0 | py310h06a4308_0 1.0 MB 2023-07-13T14:19:27.4435455Z sqlite-3.41.2 | h5eee18b_0 1.2 MB 2023-07-13T14:19:27.4435891Z xz-5.4.2 | h5eee18b_0 642 KB 2023-07-13T14:19:27.4436334Z ------------------------------------------------------------ 2023-07-13T14:19:27.4436715Z Total: 37.6 MB 2023-07-13T14:19:27.4436914Z 2023-07-13T14:19:27.4437091Z The following NEW packages will be INSTALLED: 2023-07-13T14:19:27.4437317Z 2023-07-13T14:19:27.4437857Z _libgcc_mutex pkgs/main/linux-64::_libgcc_mutex-0.1-main 2023-07-13T14:19:27.4438664Z _openmp_mutex pkgs/main/linux-64::_openmp_mutex-5.1-1_gnu 2023-07-13T14:19:27.4439215Z bzip2 pkgs/main/linux-64::bzip2-1.0.8-h7b6447c_0 2023-07-13T14:19:27.4439822Z ca-certificates pkgs/main/linux-64::ca-certificates-2023.05.30-h06a4308_0 2023-07-13T14:19:27.4440439Z ld_impl_linux-64 pkgs/main/linux-64::ld_impl_linux-64-2.38-h1181459_1 2023-07-13T14:19:27.4440948Z libffi pkgs/main/linux-64::libffi-3.4.4-h6a678d5_0 2023-07-13T14:19:27.4441358Z libgcc-ng pkgs/main/linux-64::libgcc-ng-11.2.0-h1234567_1 2023-07-13T14:19:27.4441761Z libgomp pkgs/main/linux-64::libgomp-11.2.0-h1234567_1 2023-07-13T14:19:27.4444514Z libstdcxx-ng pkgs/main/linux-64::libstdcxx-ng-11.2.0-h1234567_1 2023-07-13T14:19:27.4445035Z libuuid pkgs/main/linux-64::libuuid-1.41.5-h5eee18b_0 2023-07-13T14:19:27.4445658Z ncurses pkgs/main/linux-64::ncurses-6.4-h6a678d5_0 2023-07-13T14:19:27.4448982Z openssl pkgs/main/linux-64::openssl-3.0.9-h7f8727e_0 2023-07-13T14:19:27.4449403Z pip pkgs/main/linux-64::pip-23.1.2-py310h06a4308_0 2023-07-13T14:19:27.4449880Z python pkgs/main/linux-64::python-3.10.12-h955ad1f_0 2023-07-13T14:19:27.4450274Z readline pkgs/main/linux-64::readline-8.2-h5eee18b_0 2023-07-13T14:19:27.4450700Z setuptools pkgs/main/linux-64::setuptools-67.8.0-py310h06a4308_0 2023-07-13T14:19:27.4451108Z sqlite pkgs/main/linux-64::sqlite-3.41.2-h5eee18b_0 2023-07-13T14:19:27.4451470Z tk pkgs/main/linux-64::tk-8.6.12-h1ccaba5_0 2023-07-13T14:19:27.4451825Z tzdata pkgs/main/noarch::tzdata-2023c-h04d1e81_0 2023-07-13T14:19:27.4452218Z wheel pkgs/main/linux-64::wheel-0.38.4-py310h06a4308_0 2023-07-13T14:19:27.4452790Z xz pkgs/main/linux-64::xz-5.4.2-h5eee18b_0 2023-07-13T14:19:27.4453160Z zlib pkgs/main/linux-64::zlib-1.2.13-h5eee18b_0 2023-07-13T14:19:27.4453333Z 2023-07-13T14:19:27.4453338Z 2023-07-13T14:19:27.4453461Z Preparing transaction: ...working... done 2023-07-13T14:19:27.4453738Z Verifying transaction: ...working... done 2023-07-13T14:19:27.4453996Z Executing transaction: ...working... done 2023-07-13T14:19:27.4454239Z + conda activate ./ci_env 2023-07-13T14:19:27.4454454Z + local cmd=activate 2023-07-13T14:19:27.4454649Z + case "$cmd" in 2023-07-13T14:19:27.4454877Z + __conda_activate activate ./ci_env 2023-07-13T14:19:27.4455135Z + '[' -n '' ']' 2023-07-13T14:19:27.4455351Z + local ask_conda 2023-07-13T14:19:27.4455588Z ++ PS1='(base) ' 2023-07-13T14:19:27.4455827Z ++ __conda_exe shell.posix activate ./ci_env 2023-07-13T14:19:27.4456102Z ++ /opt/conda/bin/conda shell.posix activate ./ci_env 2023-07-13T14:19:27.4456416Z + ask_conda='PS1='\''(/work/ci_env) '\'' 2023-07-13T14:19:27.4456962Z 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-07-13T14:19:27.4457416Z export CONDA_PREFIX='\''/work/ci_env'\'' 2023-07-13T14:19:27.4457684Z export CONDA_SHLVL='\''2'\'' 2023-07-13T14:19:27.4457978Z export CONDA_DEFAULT_ENV='\''/work/ci_env'\'' 2023-07-13T14:19:27.4458302Z export CONDA_PROMPT_MODIFIER='\''(/work/ci_env) '\'' 2023-07-13T14:19:27.4458605Z export CONDA_PREFIX_1='\''/opt/conda'\'' 2023-07-13T14:19:27.4458911Z export CONDA_EXE='\''/opt/conda/bin/conda'\'' 2023-07-13T14:19:27.4459179Z export _CE_M='\'''\'' 2023-07-13T14:19:27.4459413Z export _CE_CONDA='\'''\'' 2023-07-13T14:19:27.4459726Z export CONDA_PYTHON_EXE='\''/opt/conda/bin/python'\''' 2023-07-13T14:19:27.4460033Z + eval 'PS1='\''(/work/ci_env) '\'' 2023-07-13T14:19:27.4460562Z 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-07-13T14:19:27.4461087Z export CONDA_PREFIX='\''/work/ci_env'\'' 2023-07-13T14:19:27.4461367Z export CONDA_SHLVL='\''2'\'' 2023-07-13T14:19:27.4461659Z export CONDA_DEFAULT_ENV='\''/work/ci_env'\'' 2023-07-13T14:19:27.4461975Z export CONDA_PROMPT_MODIFIER='\''(/work/ci_env) '\'' 2023-07-13T14:19:27.4462286Z export CONDA_PREFIX_1='\''/opt/conda'\'' 2023-07-13T14:19:27.4462594Z export CONDA_EXE='\''/opt/conda/bin/conda'\'' 2023-07-13T14:19:27.4462851Z export _CE_M='\'''\'' 2023-07-13T14:19:27.4463091Z export _CE_CONDA='\'''\'' 2023-07-13T14:19:27.4463396Z export CONDA_PYTHON_EXE='\''/opt/conda/bin/python'\''' 2023-07-13T14:19:27.4463675Z ++ PS1='(/work/ci_env) ' 2023-07-13T14:19:27.4464182Z ++ 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-07-13T14:19:27.4464854Z ++ 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-07-13T14:19:27.4465233Z ++ export CONDA_PREFIX=/work/ci_env 2023-07-13T14:19:27.4465463Z ++ CONDA_PREFIX=/work/ci_env 2023-07-13T14:19:27.4465686Z ++ export CONDA_SHLVL=2 2023-07-13T14:19:27.4465896Z ++ CONDA_SHLVL=2 2023-07-13T14:19:27.4466118Z ++ export CONDA_DEFAULT_ENV=/work/ci_env 2023-07-13T14:19:27.4466372Z ++ CONDA_DEFAULT_ENV=/work/ci_env 2023-07-13T14:19:27.4466682Z ++ export 'CONDA_PROMPT_MODIFIER=(/work/ci_env) ' 2023-07-13T14:19:27.4466989Z ++ CONDA_PROMPT_MODIFIER='(/work/ci_env) ' 2023-07-13T14:19:27.4467243Z ++ export CONDA_PREFIX_1=/opt/conda 2023-07-13T14:19:27.4467478Z ++ CONDA_PREFIX_1=/opt/conda 2023-07-13T14:19:27.4467715Z ++ export CONDA_EXE=/opt/conda/bin/conda 2023-07-13T14:19:27.4467962Z ++ CONDA_EXE=/opt/conda/bin/conda 2023-07-13T14:19:27.4468181Z ++ export _CE_M= 2023-07-13T14:19:27.4468428Z ++ _CE_M= 2023-07-13T14:19:27.4468630Z ++ export _CE_CONDA= 2023-07-13T14:19:27.4468832Z ++ _CE_CONDA= 2023-07-13T14:19:27.4469069Z ++ export CONDA_PYTHON_EXE=/opt/conda/bin/python 2023-07-13T14:19:27.4469340Z ++ CONDA_PYTHON_EXE=/opt/conda/bin/python 2023-07-13T14:19:27.4469576Z + __conda_hashr 2023-07-13T14:19:27.4469795Z + '[' -n '' ']' 2023-07-13T14:19:27.4469997Z + '[' -n '' ']' 2023-07-13T14:19:27.4470193Z + hash -r 2023-07-13T14:19:27.4470396Z + set -ex 2023-07-13T14:19:27.4470566Z + set +u 2023-07-13T14:19:27.4471027Z + conda install --yes --quiet -c pytorch-nightly -c nvidia 'pytorch-nightly::pytorch[build=*11.8*]' pytorch-cuda=11.8 2023-07-13T14:19:27.4471361Z + local cmd=install 2023-07-13T14:19:27.4471552Z + case "$cmd" in 2023-07-13T14:19:27.4472170Z + __conda_exe install --yes --quiet -c pytorch-nightly -c nvidia 'pytorch-nightly::pytorch[build=*11.8*]' pytorch-cuda=11.8 2023-07-13T14:19:27.4472812Z + /opt/conda/bin/conda install --yes --quiet -c pytorch-nightly -c nvidia 'pytorch-nightly::pytorch[build=*11.8*]' pytorch-cuda=11.8 2023-07-13T14:19:27.4473237Z Collecting package metadata (current_repodata.json): ...working... done 2023-07-13T14:19:27.4473631Z Solving environment: ...working... unsuccessful initial attempt using frozen solve. Retrying with flexible solve. 2023-07-13T14:19:27.4474086Z Solving environment: ...working... unsuccessful attempt using repodata from current_repodata.json, retrying with next repodata source. 2023-07-13T14:23:04.3132085Z Collecting package metadata (repodata.json): ...working... done 2023-07-13T14:23:04.3132469Z Solving environment: ...working... done 2023-07-13T14:23:04.3132647Z 2023-07-13T14:23:04.3132754Z ## Package Plan ## 2023-07-13T14:23:04.3132895Z 2023-07-13T14:23:04.3132998Z environment location: /work/ci_env 2023-07-13T14:23:04.3133572Z 2023-07-13T14:23:04.3137292Z added / updated specs: 2023-07-13T14:23:04.3138093Z - pytorch-cuda=11.8 2023-07-13T14:23:04.3138730Z - pytorch-nightly::pytorch[build=*11.8*] 2023-07-13T14:23:04.3138952Z 2023-07-13T14:23:04.3138957Z 2023-07-13T14:23:04.3139712Z The following packages will be downloaded: 2023-07-13T14:23:04.3140214Z 2023-07-13T14:23:04.3140422Z package | build 2023-07-13T14:23:04.3140909Z ---------------------------|----------------- 2023-07-13T14:23:04.3156152Z blas-1.0 | mkl 6 KB 2023-07-13T14:23:04.3156650Z cuda-cudart-11.8.89 | 0 197 KB nvidia 2023-07-13T14:23:04.3157123Z cuda-cupti-11.8.87 | 0 25.3 MB nvidia 2023-07-13T14:23:04.3157577Z cuda-libraries-11.8.0 | 0 1 KB nvidia 2023-07-13T14:23:04.3158026Z cuda-nvrtc-11.8.89 | 0 19.1 MB nvidia 2023-07-13T14:23:04.3158711Z cuda-nvtx-11.8.86 | 0 57 KB nvidia 2023-07-13T14:23:04.3159166Z cuda-runtime-11.8.0 | 0 1 KB nvidia 2023-07-13T14:23:04.3159625Z gmp-6.2.1 | h295c915_3 544 KB 2023-07-13T14:23:04.3160005Z gmpy2-2.1.2 | py310heeb90bb_0 517 KB 2023-07-13T14:23:04.3160343Z intel-openmp-2023.1.0 | hdb19cb5_46305 17.1 MB 2023-07-13T14:23:04.3160690Z libcublas-11.11.3.6 | 0 364.0 MB nvidia 2023-07-13T14:23:04.3161017Z libcufft-10.9.0.58 | 0 142.8 MB nvidia 2023-07-13T14:23:04.3161349Z libcufile-1.7.0.149 | 0 1021 KB nvidia 2023-07-13T14:23:04.3161682Z libcurand-10.3.3.53 | 0 51.6 MB nvidia 2023-07-13T14:23:04.3162011Z libcusolver-11.4.1.48 | 0 96.5 MB nvidia 2023-07-13T14:23:04.3162350Z libcusparse-11.7.5.86 | 0 176.3 MB nvidia 2023-07-13T14:23:04.3162682Z libnpp-11.8.0.86 | 0 147.8 MB nvidia 2023-07-13T14:23:04.3163275Z libnvjpeg-11.9.0.86 | 0 2.4 MB nvidia 2023-07-13T14:23:04.3163594Z mkl-2023.1.0 | h6d00ec8_46342 171.5 MB 2023-07-13T14:23:04.3163902Z mpc-1.1.0 | h10f8cd9_1 90 KB 2023-07-13T14:23:04.3164212Z mpfr-4.0.2 | hb69a4c5_1 487 KB 2023-07-13T14:23:04.3164520Z mpmath-1.2.1 | py310h06a4308_0 769 KB 2023-07-13T14:23:04.3164848Z networkx-2.8.4 | py310h06a4308_1 2.7 MB 2023-07-13T14:23:04.3165231Z pytorch-2.1.0.dev20230713 |py3.10_cuda11.8_cudnn8.7.0_0 1.42 GB pytorch-nightly 2023-07-13T14:23:04.3165624Z pytorch-cuda-11.8 | h7e8668a_5 3 KB pytorch-nightly 2023-07-13T14:23:04.3166098Z pytorch-mutex-1.0 | cuda 3 KB pytorch-nightly 2023-07-13T14:23:04.3166577Z sympy-1.11.1 | py310h06a4308_0 11.8 MB 2023-07-13T14:23:04.3166999Z tbb-2021.8.0 | hdb19cb5_0 1.6 MB 2023-07-13T14:23:04.3167461Z torchtriton-2.1.0+3c400e7818| py310 95.0 MB pytorch-nightly 2023-07-13T14:23:04.3167976Z typing_extensions-4.6.3 | py310h06a4308_0 53 KB 2023-07-13T14:23:04.3168362Z ------------------------------------------------------------ 2023-07-13T14:23:04.3168640Z Total: 2.72 GB 2023-07-13T14:23:04.3168779Z 2023-07-13T14:23:04.3168897Z The following NEW packages will be INSTALLED: 2023-07-13T14:23:04.3169062Z 2023-07-13T14:23:04.3169294Z blas pkgs/main/linux-64::blas-1.0-mkl 2023-07-13T14:23:04.3169669Z cuda-cudart nvidia/linux-64::cuda-cudart-11.8.89-0 2023-07-13T14:23:04.3170059Z cuda-cupti nvidia/linux-64::cuda-cupti-11.8.87-0 2023-07-13T14:23:04.3170447Z cuda-libraries nvidia/linux-64::cuda-libraries-11.8.0-0 2023-07-13T14:23:04.3170837Z cuda-nvrtc nvidia/linux-64::cuda-nvrtc-11.8.89-0 2023-07-13T14:23:04.3171215Z cuda-nvtx nvidia/linux-64::cuda-nvtx-11.8.86-0 2023-07-13T14:23:04.3171719Z cuda-runtime nvidia/linux-64::cuda-runtime-11.8.0-0 2023-07-13T14:23:04.3172128Z filelock pkgs/main/linux-64::filelock-3.9.0-py310h06a4308_0 2023-07-13T14:23:04.3172518Z gmp pkgs/main/linux-64::gmp-6.2.1-h295c915_3 2023-07-13T14:23:04.3172901Z gmpy2 pkgs/main/linux-64::gmpy2-2.1.2-py310heeb90bb_0 2023-07-13T14:23:04.3173323Z intel-openmp pkgs/main/linux-64::intel-openmp-2023.1.0-hdb19cb5_46305 2023-07-13T14:23:04.3173749Z jinja2 pkgs/main/linux-64::jinja2-3.1.2-py310h06a4308_0 2023-07-13T14:23:04.3174133Z libcublas nvidia/linux-64::libcublas-11.11.3.6-0 2023-07-13T14:23:04.3174507Z libcufft nvidia/linux-64::libcufft-10.9.0.58-0 2023-07-13T14:23:04.3174873Z libcufile nvidia/linux-64::libcufile-1.7.0.149-0 2023-07-13T14:23:04.3175242Z libcurand nvidia/linux-64::libcurand-10.3.3.53-0 2023-07-13T14:23:04.3175632Z libcusolver nvidia/linux-64::libcusolver-11.4.1.48-0 2023-07-13T14:23:04.3176016Z libcusparse nvidia/linux-64::libcusparse-11.7.5.86-0 2023-07-13T14:23:04.3176390Z libnpp nvidia/linux-64::libnpp-11.8.0.86-0 2023-07-13T14:23:04.3176765Z libnvjpeg nvidia/linux-64::libnvjpeg-11.9.0.86-0 2023-07-13T14:23:04.3177174Z markupsafe pkgs/main/linux-64::markupsafe-2.1.1-py310h7f8727e_0 2023-07-13T14:23:04.3177571Z mkl pkgs/main/linux-64::mkl-2023.1.0-h6d00ec8_46342 2023-07-13T14:23:04.3177938Z mpc pkgs/main/linux-64::mpc-1.1.0-h10f8cd9_1 2023-07-13T14:23:04.3178302Z mpfr pkgs/main/linux-64::mpfr-4.0.2-hb69a4c5_1 2023-07-13T14:23:04.3178680Z mpmath pkgs/main/linux-64::mpmath-1.2.1-py310h06a4308_0 2023-07-13T14:23:04.3179083Z networkx pkgs/main/linux-64::networkx-2.8.4-py310h06a4308_1 2023-07-13T14:23:04.3179552Z pytorch pytorch-nightly/linux-64::pytorch-2.1.0.dev20230713-py3.10_cuda11.8_cudnn8.7.0_0 2023-07-13T14:23:04.3180103Z pytorch-cuda pytorch-nightly/linux-64::pytorch-cuda-11.8-h7e8668a_5 2023-07-13T14:23:04.3180536Z pytorch-mutex pytorch-nightly/noarch::pytorch-mutex-1.0-cuda 2023-07-13T14:23:04.3180954Z pyyaml pkgs/main/linux-64::pyyaml-6.0-py310h5eee18b_1 2023-07-13T14:23:04.3181348Z sympy pkgs/main/linux-64::sympy-1.11.1-py310h06a4308_0 2023-07-13T14:23:04.3181724Z tbb pkgs/main/linux-64::tbb-2021.8.0-hdb19cb5_0 2023-07-13T14:23:04.3182141Z torchtriton pytorch-nightly/linux-64::torchtriton-2.1.0+3c400e7818-py310 2023-07-13T14:23:04.3182600Z typing_extensions pkgs/main/linux-64::typing_extensions-4.6.3-py310h06a4308_0 2023-07-13T14:23:04.3183036Z yaml pkgs/main/linux-64::yaml-0.2.5-h7b6447c_0 2023-07-13T14:23:04.3183222Z 2023-07-13T14:23:04.3183227Z 2023-07-13T14:23:04.3183344Z Preparing transaction: ...working... done 2023-07-13T14:23:04.3183607Z Verifying transaction: ...working... done 2023-07-13T14:23:04.3183858Z Executing transaction: ...working... done 2023-07-13T14:23:04.3184089Z + __conda_reactivate 2023-07-13T14:23:04.3184280Z + local ask_conda 2023-07-13T14:23:04.3184513Z ++ PS1='(/work/ci_env) ' 2023-07-13T14:23:04.3184741Z ++ __conda_exe shell.posix reactivate 2023-07-13T14:23:04.3184993Z ++ /opt/conda/bin/conda shell.posix reactivate 2023-07-13T14:23:04.3185289Z + ask_conda='PS1='\''(/work/ci_env) '\'' 2023-07-13T14:23:04.3185820Z 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-07-13T14:23:04.3186227Z export CONDA_SHLVL='\''2'\'' 2023-07-13T14:23:04.3186531Z export CONDA_PROMPT_MODIFIER='\''(/work/ci_env) '\''' 2023-07-13T14:23:04.3186823Z + eval 'PS1='\''(/work/ci_env) '\'' 2023-07-13T14:23:04.3187339Z 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-07-13T14:23:04.3187858Z export CONDA_SHLVL='\''2'\'' 2023-07-13T14:23:04.3188164Z export CONDA_PROMPT_MODIFIER='\''(/work/ci_env) '\''' 2023-07-13T14:23:04.3188436Z ++ PS1='(/work/ci_env) ' 2023-07-13T14:23:04.3188925Z ++ 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-07-13T14:23:04.3189567Z ++ 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-07-13T14:23:04.3189921Z ++ export CONDA_SHLVL=2 2023-07-13T14:23:04.3190121Z ++ CONDA_SHLVL=2 2023-07-13T14:23:04.3190401Z ++ export 'CONDA_PROMPT_MODIFIER=(/work/ci_env) ' 2023-07-13T14:23:04.3190710Z ++ CONDA_PROMPT_MODIFIER='(/work/ci_env) ' 2023-07-13T14:23:04.3190943Z + __conda_hashr 2023-07-13T14:23:04.3191146Z + '[' -n '' ']' 2023-07-13T14:23:04.3191353Z + '[' -n '' ']' 2023-07-13T14:23:04.3191688Z + hash -r 2023-07-13T14:23:04.3191974Z + conda install --quiet --yes pkg-config cmake ninja 2023-07-13T14:23:04.3192217Z + local cmd=install 2023-07-13T14:23:04.3192408Z + case "$cmd" in 2023-07-13T14:23:04.3192696Z + __conda_exe install --quiet --yes pkg-config cmake ninja 2023-07-13T14:23:04.3193063Z + /opt/conda/bin/conda install --quiet --yes pkg-config cmake ninja 2023-07-13T14:23:04.3193327Z + __conda_reactivate 2023-07-13T14:23:04.3193516Z + local ask_conda 2023-07-13T14:23:04.3193746Z ++ PS1='(/work/ci_env) ' 2023-07-13T14:23:04.3193974Z ++ __conda_exe shell.posix reactivate 2023-07-13T14:23:04.3194228Z ++ /opt/conda/bin/conda shell.posix reactivate 2023-07-13T14:23:04.3194524Z + ask_conda='PS1='\''(/work/ci_env) '\'' 2023-07-13T14:23:04.3195046Z 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-07-13T14:23:04.3195537Z export CONDA_SHLVL='\''2'\'' 2023-07-13T14:23:04.3195842Z export CONDA_PROMPT_MODIFIER='\''(/work/ci_env) '\''' 2023-07-13T14:23:04.3196138Z + eval 'PS1='\''(/work/ci_env) '\'' 2023-07-13T14:23:04.3196653Z 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-07-13T14:23:04.3197052Z export CONDA_SHLVL='\''2'\'' 2023-07-13T14:23:04.3197352Z export CONDA_PROMPT_MODIFIER='\''(/work/ci_env) '\''' 2023-07-13T14:23:04.3197626Z ++ PS1='(/work/ci_env) ' 2023-07-13T14:23:04.3198340Z ++ 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-07-13T14:23:04.3198997Z ++ 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-07-13T14:23:04.3199404Z ++ export CONDA_SHLVL=2 2023-07-13T14:23:04.3199617Z ++ CONDA_SHLVL=2 2023-07-13T14:23:04.3199900Z ++ export 'CONDA_PROMPT_MODIFIER=(/work/ci_env) ' 2023-07-13T14:23:04.3200218Z ++ CONDA_PROMPT_MODIFIER='(/work/ci_env) ' 2023-07-13T14:23:04.3200450Z + __conda_hashr 2023-07-13T14:23:04.3200662Z + '[' -n '' ']' 2023-07-13T14:23:04.3200874Z + '[' -n '' ']' 2023-07-13T14:23:04.3201074Z + hash -r 2023-07-13T14:23:04.3201368Z + pip install --progress-bar off -v -e . --no-use-pep517 2023-07-13T14:23:31.5144467Z Using pip 23.1.2 from /work/ci_env/lib/python3.10/site-packages/pip (python 3.10) 2023-07-13T14:23:31.5146168Z Obtaining file:///work 2023-07-13T14:23:31.5146530Z Running command python setup.py egg_info 2023-07-13T14:23:31.5521599Z -- Git branch: HEAD 2023-07-13T14:23:31.5522106Z -- Git SHA: 7182816322bf05c53164d9767907a1dc4818bc40 2023-07-13T14:23:31.5524387Z -- Git tag: None 2023-07-13T14:23:31.5524900Z -- PyTorch dependency: torch 2023-07-13T14:23:31.5525322Z -- Building version 2.1.0.dev20230713 2023-07-13T14:23:31.5526113Z --- Fetching opencore-amr-0.1.5.tar.gz 2023-07-13T14:23:31.5640764Z --- Fetching lame-3.99.5.tar.gz 2023-07-13T14:23:31.5641242Z --- Fetching libogg-1.3.3.tar.gz 2023-07-13T14:23:31.5642197Z --- Fetching flac-1.3.2.tar.xz 2023-07-13T14:23:31.5680018Z --- Fetching libvorbis-1.3.6.tar.gz 2023-07-13T14:23:31.5680476Z --- Fetching opus-1.3.1.tar.gz 2023-07-13T14:23:31.5680881Z --- Fetching opusfile-0.12.tar.gz 2023-07-13T14:23:31.5681280Z --- Fetching sox-14.4.2.tar.bz2 2023-07-13T14:23:31.5681611Z running egg_info 2023-07-13T14:23:31.5682054Z creating /tmp/pip-pip-egg-info-iqfiydox/torchaudio.egg-info 2023-07-13T14:23:31.5682572Z writing /tmp/pip-pip-egg-info-iqfiydox/torchaudio.egg-info/PKG-INFO 2023-07-13T14:23:31.5683162Z writing dependency_links to /tmp/pip-pip-egg-info-iqfiydox/torchaudio.egg-info/dependency_links.txt 2023-07-13T14:23:31.6920949Z writing requirements to /tmp/pip-pip-egg-info-iqfiydox/torchaudio.egg-info/requires.txt 2023-07-13T14:23:31.7001672Z writing top-level names to /tmp/pip-pip-egg-info-iqfiydox/torchaudio.egg-info/top_level.txt 2023-07-13T14:23:31.7081898Z writing manifest file '/tmp/pip-pip-egg-info-iqfiydox/torchaudio.egg-info/SOURCES.txt' 2023-07-13T14:23:31.7161235Z reading manifest file '/tmp/pip-pip-egg-info-iqfiydox/torchaudio.egg-info/SOURCES.txt' 2023-07-13T14:23:31.7241033Z adding license file 'LICENSE' 2023-07-13T14:23:31.7321691Z writing manifest file '/tmp/pip-pip-egg-info-iqfiydox/torchaudio.egg-info/SOURCES.txt' 2023-07-13T14:23:31.7361278Z Preparing metadata (setup.py) ... [?25l[?25hdone 2023-07-13T14:23:31.7401355Z Requirement already satisfied: torch in ./ci_env/lib/python3.10/site-packages (from torchaudio==2.1.0.dev20230713) (2.1.0.dev20230713) 2023-07-13T14:23:31.7441205Z Requirement already satisfied: filelock in ./ci_env/lib/python3.10/site-packages (from torch->torchaudio==2.1.0.dev20230713) (3.9.0) 2023-07-13T14:23:31.7521239Z Requirement already satisfied: typing-extensions in ./ci_env/lib/python3.10/site-packages (from torch->torchaudio==2.1.0.dev20230713) (4.6.3) 2023-07-13T14:23:31.7601324Z Requirement already satisfied: sympy in ./ci_env/lib/python3.10/site-packages (from torch->torchaudio==2.1.0.dev20230713) (1.11.1) 2023-07-13T14:23:31.7681626Z Requirement already satisfied: networkx in ./ci_env/lib/python3.10/site-packages (from torch->torchaudio==2.1.0.dev20230713) (2.8.4) 2023-07-13T14:23:31.7761357Z Requirement already satisfied: jinja2 in ./ci_env/lib/python3.10/site-packages (from torch->torchaudio==2.1.0.dev20230713) (3.1.2) 2023-07-13T14:23:31.7841066Z Collecting fsspec (from torch->torchaudio==2.1.0.dev20230713) 2023-07-13T14:23:31.7921064Z Downloading fsspec-2023.6.0-py3-none-any.whl (163 kB) 2023-07-13T14:23:31.8001287Z Requirement already satisfied: MarkupSafe>=2.0 in ./ci_env/lib/python3.10/site-packages (from jinja2->torch->torchaudio==2.1.0.dev20230713) (2.1.1) 2023-07-13T14:23:31.8080991Z Requirement already satisfied: mpmath>=0.19 in ./ci_env/lib/python3.10/site-packages/mpmath-1.2.1-py3.10.egg (from sympy->torch->torchaudio==2.1.0.dev20230713) (1.2.1) 2023-07-13T14:23:31.8081711Z Installing collected packages: fsspec, torchaudio 2023-07-13T14:23:31.8082107Z Running setup.py develop for torchaudio 2023-07-13T14:23:31.8082466Z Running command python setup.py develop 2023-07-13T14:23:31.8082849Z -- Git branch: HEAD 2023-07-13T14:23:31.8083285Z -- Git SHA: 7182816322bf05c53164d9767907a1dc4818bc40 2023-07-13T14:23:31.8083667Z -- Git tag: None 2023-07-13T14:23:31.8084024Z -- PyTorch dependency: torch 2023-07-13T14:23:31.8084451Z -- Building version 2.1.0.dev20230713 2023-07-13T14:23:31.8084770Z running develop 2023-07-13T14:23:31.8085445Z /work/ci_env/lib/python3.10/site-packages/setuptools/command/develop.py:40: EasyInstallDeprecationWarning: easy_install command is deprecated. 2023-07-13T14:23:31.8085940Z !! 2023-07-13T14:23:31.8086105Z 2023-07-13T14:23:31.8086253Z ******************************************************************************** 2023-07-13T14:23:31.8087041Z Please avoid running ``setup.py`` and ``easy_install``. 2023-07-13T14:23:31.8087475Z Instead, use pypa/build, pypa/installer, pypa/build or 2023-07-13T14:23:31.8087922Z other standards-based tools. 2023-07-13T14:23:31.8088116Z 2023-07-13T14:23:31.8088340Z See https://github.com/pypa/setuptools/issues/917 for details. 2023-07-13T14:23:31.8088763Z ******************************************************************************** 2023-07-13T14:23:31.8088967Z 2023-07-13T14:23:31.8089070Z !! 2023-07-13T14:23:31.8089391Z easy_install.initialize_options(self) 2023-07-13T14:23:31.8090120Z /work/ci_env/lib/python3.10/site-packages/setuptools/_distutils/cmd.py:66: SetuptoolsDeprecationWarning: setup.py install is deprecated. 2023-07-13T14:23:31.8090613Z !! 2023-07-13T14:23:31.8090788Z 2023-07-13T14:23:31.8090952Z ******************************************************************************** 2023-07-13T14:23:31.8091360Z Please avoid running ``setup.py`` directly. 2023-07-13T14:23:31.8091790Z Instead, use pypa/build, pypa/installer, pypa/build or 2023-07-13T14:23:31.8092272Z other standards-based tools. 2023-07-13T14:23:31.8092561Z 2023-07-13T14:23:31.8092967Z See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details. 2023-07-13T14:23:31.8093443Z ******************************************************************************** 2023-07-13T14:23:31.8093659Z 2023-07-13T14:23:31.8093766Z !! 2023-07-13T14:23:31.8094049Z self.initialize_options() 2023-07-13T14:23:31.8094358Z running egg_info 2023-07-13T14:23:31.8094750Z creating torchaudio.egg-info 2023-07-13T14:23:31.8095187Z writing torchaudio.egg-info/PKG-INFO 2023-07-13T14:23:31.8095757Z writing dependency_links to torchaudio.egg-info/dependency_links.txt 2023-07-13T14:23:31.8096631Z writing requirements to torchaudio.egg-info/requires.txt 2023-07-13T14:23:31.8097179Z writing top-level names to torchaudio.egg-info/top_level.txt 2023-07-13T14:23:31.8097746Z writing manifest file 'torchaudio.egg-info/SOURCES.txt' 2023-07-13T14:23:31.8098287Z reading manifest file 'torchaudio.egg-info/SOURCES.txt' 2023-07-13T14:23:31.8098726Z adding license file 'LICENSE' 2023-07-13T14:23:31.8099210Z writing manifest file 'torchaudio.egg-info/SOURCES.txt' 2023-07-13T14:23:31.8099580Z running build_ext 2023-07-13T14:23:31.8100012Z -- The C compiler identification is GNU 9.3.1 2023-07-13T14:23:31.8100520Z -- The CXX compiler identification is GNU 9.3.1 2023-07-13T14:23:31.8100950Z -- Detecting C compiler ABI info 2023-07-13T14:23:31.8101388Z -- Detecting C compiler ABI info - done 2023-07-13T14:23:31.8101948Z -- Check for working C compiler: /opt/rh/devtoolset-9/root/usr/bin/cc - skipped 2023-07-13T14:23:31.8102454Z -- Detecting C compile features 2023-07-13T14:23:31.8102853Z -- Detecting C compile features - done 2023-07-13T14:23:31.8103266Z -- Detecting CXX compiler ABI info 2023-07-13T14:23:31.8103700Z -- Detecting CXX compiler ABI info - done 2023-07-13T14:23:31.8104263Z -- Check for working CXX compiler: /opt/rh/devtoolset-9/root/usr/bin/c++ - skipped 2023-07-13T14:23:31.8104766Z -- Detecting CXX compile features 2023-07-13T14:23:31.8105195Z -- Detecting CXX compile features - done 2023-07-13T14:23:31.8105689Z -- The CUDA compiler identification is NVIDIA 11.8.89 2023-07-13T14:23:31.8106095Z -- Detecting CUDA compiler ABI info 2023-07-13T14:23:31.8106521Z -- Detecting CUDA compiler ABI info - done 2023-07-13T14:23:31.8107037Z -- Check for working CUDA compiler: /usr/local/cuda-11.8/bin/nvcc - skipped 2023-07-13T14:23:31.8107510Z -- Detecting CUDA compile features 2023-07-13T14:23:31.8107952Z -- Detecting CUDA compile features - done 2023-07-13T14:23:31.8108481Z -- Found CUDA: /usr/local/cuda-11.8 (found version "11.8") 2023-07-13T14:23:31.8109280Z -- Found CUDAToolkit: /usr/local/cuda-11.8/include (found version "11.8.89") 2023-07-13T14:23:31.8109835Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD 2023-07-13T14:23:31.8110338Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Failed 2023-07-13T14:23:31.8110810Z -- Looking for pthread_create in pthreads 2023-07-13T14:23:31.8111244Z -- Looking for pthread_create in pthreads - not found 2023-07-13T14:23:31.8111988Z -- Looking for pthread_create in pthread 2023-07-13T14:23:31.8112474Z -- Looking for pthread_create in pthread - found 2023-07-13T14:23:31.8112883Z -- Found Threads: TRUE 2023-07-13T14:23:31.8113288Z -- Caffe2: CUDA detected: 11.8 2023-07-13T14:23:31.8113764Z -- Caffe2: CUDA nvcc is: /usr/local/cuda-11.8/bin/nvcc 2023-07-13T14:23:31.8114284Z -- Caffe2: CUDA toolkit directory: /usr/local/cuda-11.8 2023-07-13T14:23:31.8114742Z -- Caffe2: Header version is: 11.8 2023-07-13T14:23:31.8115266Z -- /usr/local/cuda-11.8/lib64/libnvrtc.so shorthash is 672ee683 2023-07-13T14:23:31.8115784Z -- USE_CUDNN is set to 0. Compiling without cuDNN support 2023-07-13T14:23:31.8116242Z -- Autodetected CUDA architecture(s): 8.6 2023-07-13T14:23:31.8116757Z -- Added CUDA NVCC flags for: -gencode;arch=compute_86,code=sm_86 2023-07-13T14:23:31.8117407Z CMake Warning at ci_env/lib/python3.10/site-packages/torch/share/cmake/Torch/TorchConfig.cmake:22 (message): 2023-07-13T14:23:31.8117992Z static library kineto_LIBRARY-NOTFOUND not found. 2023-07-13T14:23:31.8118668Z Call Stack (most recent call first): 2023-07-13T14:23:31.8119295Z ci_env/lib/python3.10/site-packages/torch/share/cmake/Torch/TorchConfig.cmake:127 (append_torchlib_if_found) 2023-07-13T14:23:31.8119809Z cmake/TorchAudioHelper.cmake:1 (find_package) 2023-07-13T14:23:31.8120180Z CMakeLists.txt:93 (include) 2023-07-13T14:23:31.8120388Z 2023-07-13T14:23:31.8120761Z 2023-07-13T14:23:31.8121132Z -- Found Torch: /work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch.so 2023-07-13T14:23:31.8121685Z -- Found OpenMP_C: -fopenmp (found version "4.5") 2023-07-13T14:23:31.8122122Z -- Found OpenMP_CXX: -fopenmp (found version "4.5") 2023-07-13T14:23:31.8122550Z -- Found OpenMP: TRUE (found version "4.5") 2023-07-13T14:23:31.8123089Z -- Could not find ccache. Consider installing ccache to speed up compilation. 2023-07-13T14:23:31.8123692Z -- Found PkgConfig: /work/ci_env/bin/pkg-config (found version "0.29.2") 2023-07-13T14:23:31.8124234Z -- Building FFmpeg integration with multi version support 2023-07-13T14:23:31.8124674Z -- Configuring done (3.5s) 2023-07-13T14:23:31.8125029Z -- Generating done (0.0s) 2023-07-13T14:23:31.8125532Z -- Build files have been written to: /work/build/temp.linux-x86_64-cpython-310 2023-07-13T14:23:31.8127547Z [1/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DINCLUDE_ALIGN -DINCLUDE_RIR -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_EXPORTS -I/work -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -fopenmp -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/utils.cpp.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/utils.cpp.o.d -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/utils.cpp.o -c /work/torchaudio/csrc/utils.cpp 2023-07-13T14:23:39.4883870Z [2/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DINCLUDE_ALIGN -DINCLUDE_RIR -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_EXPORTS -I/work -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -fopenmp -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/compute_alphas.cpp.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/compute_alphas.cpp.o.d -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/compute_alphas.cpp.o -c /work/torchaudio/csrc/rnnt/compute_alphas.cpp 2023-07-13T14:23:39.4886980Z [3/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox && /work/ci_env/bin/cmake -Dcfgdir= -P /work/build/temp.linux-x86_64-cpython-310/third_party/sox/tmp/amr-mkdirs.cmake && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/amr-stamp/amr-mkdir 2023-07-13T14:23:39.4890099Z [4/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DINCLUDE_ALIGN -DINCLUDE_RIR -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_EXPORTS -I/work -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -fopenmp -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/forced_align/compute.cpp.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/forced_align/compute.cpp.o.d -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/forced_align/compute.cpp.o -c /work/torchaudio/csrc/forced_align/compute.cpp 2023-07-13T14:23:39.4892716Z [5/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox && /work/ci_env/bin/cmake -Dcfgdir= -P /work/build/temp.linux-x86_64-cpython-310/third_party/sox/tmp/lame-mkdirs.cmake && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/lame-stamp/lame-mkdir 2023-07-13T14:23:39.4894793Z [6/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src && /work/ci_env/bin/cmake -P /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/amr-stamp/amr-download-Release.cmake && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/amr-stamp/amr-download 2023-07-13T14:23:39.4897005Z [7/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox && /work/ci_env/bin/cmake -E echo_append && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/amr-stamp/amr-update 2023-07-13T14:23:39.4898915Z [8/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/amr && cp /work/third_party/patches/config.guess /work/third_party/patches/config.sub /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/amr/ && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/amr-stamp/amr-patch 2023-07-13T14:23:39.4901045Z [9/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src && /work/ci_env/bin/cmake -P /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/lame-stamp/lame-download-Release.cmake && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/lame-stamp/lame-download 2023-07-13T14:23:39.4902975Z [10/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox && /work/ci_env/bin/cmake -E echo_append && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/lame-stamp/lame-update 2023-07-13T14:23:39.4904968Z [11/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/lame && cp /work/third_party/patches/config.guess /work/third_party/patches/config.sub /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/lame/ && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/lame-stamp/lame-patch 2023-07-13T14:23:39.4908581Z [12/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DINCLUDE_ALIGN -DINCLUDE_RIR -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_EXPORTS -I/work -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -fopenmp -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/autograd.cpp.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/autograd.cpp.o.d -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/autograd.cpp.o -c /work/torchaudio/csrc/rnnt/autograd.cpp 2023-07-13T14:23:39.4911334Z [13/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox && /work/ci_env/bin/cmake -Dcfgdir= -P /work/build/temp.linux-x86_64-cpython-310/third_party/sox/tmp/ogg-mkdirs.cmake && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/ogg-stamp/ogg-mkdir 2023-07-13T14:23:39.4914770Z [14/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DINCLUDE_ALIGN -DINCLUDE_RIR -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_EXPORTS -I/work -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -fopenmp -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/cpu/compute_betas.cpp.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/cpu/compute_betas.cpp.o.d -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/cpu/compute_betas.cpp.o -c /work/torchaudio/csrc/rnnt/cpu/compute_betas.cpp 2023-07-13T14:23:39.4917469Z [15/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src && /work/ci_env/bin/cmake -P /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/ogg-stamp/ogg-download-Release.cmake && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/ogg-stamp/ogg-download 2023-07-13T14:23:39.4919721Z [16/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox && /work/ci_env/bin/cmake -E echo_append && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/ogg-stamp/ogg-update 2023-07-13T14:23:39.4921816Z [17/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/ogg && cp /work/third_party/patches/config.guess /work/third_party/patches/config.sub /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/ogg/ && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/ogg-stamp/ogg-patch 2023-07-13T14:23:39.4924183Z [18/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DINCLUDE_ALIGN -DINCLUDE_RIR -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_EXPORTS -I/work -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -fopenmp -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/compute_betas.cpp.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/compute_betas.cpp.o.d -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/compute_betas.cpp.o -c /work/torchaudio/csrc/rnnt/compute_betas.cpp 2023-07-13T14:23:39.4927460Z [19/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DINCLUDE_ALIGN -DINCLUDE_RIR -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_EXPORTS -I/work -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -fopenmp -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/compute.cpp.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/compute.cpp.o.d -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/compute.cpp.o -c /work/torchaudio/csrc/rnnt/compute.cpp 2023-07-13T14:23:50.4762815Z [20/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DINCLUDE_ALIGN -DINCLUDE_RIR -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_EXPORTS -I/work -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -fopenmp -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/cpu/compute_alphas.cpp.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/cpu/compute_alphas.cpp.o.d -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/cpu/compute_alphas.cpp.o -c /work/torchaudio/csrc/rnnt/cpu/compute_alphas.cpp 2023-07-13T14:23:50.4765977Z [21/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DINCLUDE_ALIGN -DINCLUDE_RIR -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_EXPORTS -I/work -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -fopenmp -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/cpu/compute.cpp.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/cpu/compute.cpp.o.d -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/cpu/compute.cpp.o -c /work/torchaudio/csrc/rnnt/cpu/compute.cpp 2023-07-13T14:23:50.4769292Z [22/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg4_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f4-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/ffmpeg.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/ffmpeg.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/ffmpeg.cpp.o -c /work/torchaudio/csrc/ffmpeg/ffmpeg.cpp 2023-07-13T14:23:50.4772032Z [23/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/ogg-build && /work/ci_env/bin/cmake -P /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/ogg-stamp/ogg-configure-Release.cmake && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/ogg-stamp/ogg-configure 2023-07-13T14:23:50.4774764Z [24/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DINCLUDE_ALIGN -DINCLUDE_RIR -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_EXPORTS -I/work -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -fopenmp -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/forced_align/cpu/compute.cpp.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/forced_align/cpu/compute.cpp.o.d -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/forced_align/cpu/compute.cpp.o -c /work/torchaudio/csrc/forced_align/cpu/compute.cpp 2023-07-13T14:23:50.4778566Z [25/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg4_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f4-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/hw_context.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/hw_context.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/hw_context.cpp.o -c /work/torchaudio/csrc/ffmpeg/hw_context.cpp 2023-07-13T14:23:50.4781994Z [26/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg4_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f4-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/filter_graph.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/filter_graph.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/filter_graph.cpp.o -c /work/torchaudio/csrc/ffmpeg/filter_graph.cpp 2023-07-13T14:23:50.4785216Z [27/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DINCLUDE_ALIGN -DINCLUDE_RIR -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_EXPORTS -I/work -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -fopenmp -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/overdrive.cpp.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/overdrive.cpp.o.d -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/overdrive.cpp.o -c /work/torchaudio/csrc/overdrive.cpp 2023-07-13T14:23:50.4788184Z [28/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DINCLUDE_ALIGN -DINCLUDE_RIR -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_EXPORTS -I/work -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -fopenmp -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rir.cpp.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rir.cpp.o.d -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rir.cpp.o -c /work/torchaudio/csrc/rir.cpp 2023-07-13T14:23:50.4790788Z [29/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DINCLUDE_ALIGN -DINCLUDE_RIR -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_EXPORTS -I/work -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -fopenmp -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/lfilter.cpp.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/lfilter.cpp.o.d -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/lfilter.cpp.o -c /work/torchaudio/csrc/lfilter.cpp 2023-07-13T14:23:50.4794399Z [30/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg4_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f4-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/buffer/unchunked_buffer.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/buffer/unchunked_buffer.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/buffer/unchunked_buffer.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_reader/buffer/unchunked_buffer.cpp 2023-07-13T14:23:58.1240541Z [31/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg4_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f4-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/buffer/chunked_buffer.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/buffer/chunked_buffer.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/buffer/chunked_buffer.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_reader/buffer/chunked_buffer.cpp 2023-07-13T14:23:58.1242884Z /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-07-13T14:23:58.1444632Z /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-07-13T14:23:58.1445560Z 97 | if (num_chunks > 0 && chunks.size() > num_chunks) { 2023-07-13T14:23:58.1446484Z | ~~~~~~~~~~~~~~^~~~~~~~~~~~ 2023-07-13T14:23:58.1447710Z [32/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/amr-build && /work/ci_env/bin/cmake -P /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/amr-stamp/amr-configure-Release.cmake && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/amr-stamp/amr-configure 2023-07-13T14:23:58.1449164Z [33/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/ogg-build && /work/ci_env/bin/cmake -P /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/ogg-stamp/ogg-build-Release.cmake && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/ogg-stamp/ogg-build 2023-07-13T14:23:58.1450573Z [34/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/ogg-build && /work/ci_env/bin/cmake -P /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/ogg-stamp/ogg-install-Release.cmake && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/ogg-stamp/ogg-install 2023-07-13T14:23:58.1452248Z [35/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox && /work/ci_env/bin/cmake -E make_directory /work/build/temp.linux-x86_64-cpython-310/third_party/sox/CMakeFiles && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/CMakeFiles/ogg-complete && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/ogg-stamp/ogg-done 2023-07-13T14:23:58.1453689Z [36/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox && /work/ci_env/bin/cmake -Dcfgdir= -P /work/build/temp.linux-x86_64-cpython-310/third_party/sox/tmp/flac-mkdirs.cmake && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/flac-stamp/flac-mkdir 2023-07-13T14:23:58.1455301Z [37/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src && /work/ci_env/bin/cmake -P /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/flac-stamp/flac-download-Release.cmake && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/flac-stamp/flac-download 2023-07-13T14:23:58.1456545Z [38/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox && /work/ci_env/bin/cmake -E echo_append && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/flac-stamp/flac-update 2023-07-13T14:23:58.1457981Z [39/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/flac && cp /work/third_party/patches/config.guess /work/third_party/patches/config.sub /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/flac/ && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/flac-stamp/flac-patch 2023-07-13T14:23:58.1459699Z [40/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/lame-build && /work/ci_env/bin/cmake -P /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/lame-stamp/lame-configure-Release.cmake && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/lame-stamp/lame-configure 2023-07-13T14:23:58.1462493Z [41/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg4_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f4-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/packet_buffer.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/packet_buffer.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/packet_buffer.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_reader/packet_buffer.cpp 2023-07-13T14:23:58.1464989Z [42/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox && /work/ci_env/bin/cmake -Dcfgdir= -P /work/build/temp.linux-x86_64-cpython-310/third_party/sox/tmp/vorbis-mkdirs.cmake && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/vorbis-stamp/vorbis-mkdir 2023-07-13T14:23:58.1466487Z [43/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src && /work/ci_env/bin/cmake -P /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/vorbis-stamp/vorbis-download-Release.cmake && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/vorbis-stamp/vorbis-download 2023-07-13T14:23:58.1467699Z [44/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox && /work/ci_env/bin/cmake -E echo_append && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/vorbis-stamp/vorbis-update 2023-07-13T14:23:58.1469118Z [45/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/vorbis && cp /work/third_party/patches/config.guess /work/third_party/patches/config.sub /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/vorbis/ && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/vorbis-stamp/vorbis-patch 2023-07-13T14:23:58.1473384Z [46/156] /usr/local/cuda-11.8/bin/nvcc -forward-unknown-to-host-compiler -DINCLUDE_ALIGN -DINCLUDE_RIR -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_EXPORTS -I/work -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -DCUDA_HAS_FP16=1 -D__CUDA_NO_HALF_OPERATORS__ -D__CUDA_NO_HALF_CONVERSIONS__ -D__CUDA_NO_HALF2_OPERATORS__ -DONNX_NAMESPACE=onnx_c2 -gencode arch=compute_86,code=sm_86 -Xcudafe --diag_suppress=cc_clobber_ignored,--diag_suppress=set_but_not_used,--diag_suppress=field_without_dll_interface,--diag_suppress=base_class_has_different_dll_interface,--diag_suppress=dll_interface_conflict_none_assumed,--diag_suppress=dll_interface_conflict_dllexport_assumed,--diag_suppress=bad_friend_decl --expt-relaxed-constexpr --expt-extended-lambda -O3 -DNDEBUG -std=c++17 -Xcompiler=-fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/gpu/compute_betas.cu.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/gpu/compute_betas.cu.o.d -x cu -c /work/torchaudio/csrc/rnnt/gpu/compute_betas.cu -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/gpu/compute_betas.cu.o 2023-07-13T14:23:58.1476238Z [47/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox && /work/ci_env/bin/cmake -Dcfgdir= -P /work/build/temp.linux-x86_64-cpython-310/third_party/sox/tmp/opus-mkdirs.cmake && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opus-stamp/opus-mkdir 2023-07-13T14:24:00.4486555Z [48/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src && /work/ci_env/bin/cmake -P /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opus-stamp/opus-download-Release.cmake && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opus-stamp/opus-download 2023-07-13T14:24:00.4487978Z [49/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox && /work/ci_env/bin/cmake -E echo_append && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opus-stamp/opus-update 2023-07-13T14:24:00.4490374Z [50/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opus && cp /work/third_party/patches/config.guess /work/third_party/patches/config.sub /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opus/ && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opus-stamp/opus-patch 2023-07-13T14:24:00.4494527Z [51/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg4_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f4-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/stream_processor.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/stream_processor.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/stream_processor.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp 2023-07-13T14:24:00.4498913Z [52/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg4_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f4-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_writer/encoder.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_writer/encoder.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_writer/encoder.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_writer/encoder.cpp 2023-07-13T14:24:00.4504217Z [53/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg4_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f4-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_writer/packet_writer.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_writer/packet_writer.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_writer/packet_writer.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_writer/packet_writer.cpp 2023-07-13T14:24:00.4510116Z [54/156] /usr/local/cuda-11.8/bin/nvcc -forward-unknown-to-host-compiler -DINCLUDE_ALIGN -DINCLUDE_RIR -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_EXPORTS -I/work -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -DCUDA_HAS_FP16=1 -D__CUDA_NO_HALF_OPERATORS__ -D__CUDA_NO_HALF_CONVERSIONS__ -D__CUDA_NO_HALF2_OPERATORS__ -DONNX_NAMESPACE=onnx_c2 -gencode arch=compute_86,code=sm_86 -Xcudafe --diag_suppress=cc_clobber_ignored,--diag_suppress=set_but_not_used,--diag_suppress=field_without_dll_interface,--diag_suppress=base_class_has_different_dll_interface,--diag_suppress=dll_interface_conflict_none_assumed,--diag_suppress=dll_interface_conflict_dllexport_assumed,--diag_suppress=bad_friend_decl --expt-relaxed-constexpr --expt-extended-lambda -O3 -DNDEBUG -std=c++17 -Xcompiler=-fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/gpu/compute_alphas.cu.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/gpu/compute_alphas.cu.o.d -x cu -c /work/torchaudio/csrc/rnnt/gpu/compute_alphas.cu -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/gpu/compute_alphas.cu.o 2023-07-13T14:24:00.4515839Z [55/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg4_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f4-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/stream_reader.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/stream_reader.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/stream_reader.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_reader/stream_reader.cpp 2023-07-13T14:24:00.4519598Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_reader.cpp: In constructor ‘torchaudio::io::StreamReader::StreamReader(AVFormatContext*)’: 2023-07-13T14:24:00.4520661Z /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-07-13T14:24:00.4523320Z 61 | for (int i = 0; i < format_ctx->nb_streams; ++i) { 2023-07-13T14:24:00.4523756Z | ~~^~~~~~~~~~~~~~~~~~~~~~~~ 2023-07-13T14:24:00.4526563Z [56/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -D_torchaudio_EXPORTS -I/work -I/work/ci_env/include/python3.10 -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -fopenmp -MD -MT torchaudio/csrc/CMakeFiles/_torchaudio.dir/pybind/pybind.cpp.o -MF torchaudio/csrc/CMakeFiles/_torchaudio.dir/pybind/pybind.cpp.o.d -o torchaudio/csrc/CMakeFiles/_torchaudio.dir/pybind/pybind.cpp.o -c /work/torchaudio/csrc/pybind/pybind.cpp 2023-07-13T14:24:00.4530179Z [57/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg4_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f4-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_writer/encode_process.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_writer/encode_process.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_writer/encode_process.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp 2023-07-13T14:24:00.4533874Z [58/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg4_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f4-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_writer/stream_writer.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_writer/stream_writer.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_writer/stream_writer.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp 2023-07-13T14:24:03.9478867Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/util/Exception.h:4, 2023-07-13T14:24:03.9479658Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Generator.h:11, 2023-07-13T14:24:03.9480359Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/CPUGeneratorImpl.h:3, 2023-07-13T14:24:03.9480982Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Context.h:3, 2023-07-13T14:24:03.9481612Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/ATen.h:7, 2023-07-13T14:24:03.9482283Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/types.h:3, 2023-07-13T14:24:03.9482816Z from /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.h:3, 2023-07-13T14:24:03.9483311Z from /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp:1: 2023-07-13T14:24:03.9484807Z /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-07-13T14:24:03.9486181Z /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-07-13T14:24:03.9486882Z 69 | format_ctx->nb_streams == num_output_streams(), 2023-07-13T14:24:03.9487281Z | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ 2023-07-13T14:24:03.9489304Z /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-07-13T14:24:03.9490813Z /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-07-13T14:24:03.9491517Z 105 | format_ctx->nb_streams == num_output_streams(), 2023-07-13T14:24:03.9493146Z | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ 2023-07-13T14:24:03.9494672Z /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-07-13T14:24:03.9496170Z /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-07-13T14:24:03.9496881Z 149 | format_ctx->nb_streams == num_output_streams(), 2023-07-13T14:24:03.9497258Z | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ 2023-07-13T14:24:03.9499234Z /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-07-13T14:24:03.9500689Z /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-07-13T14:24:03.9501394Z 186 | format_ctx->nb_streams == num_output_streams(), 2023-07-13T14:24:03.9501765Z | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ 2023-07-13T14:24:03.9502674Z /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp: In member function ‘void torchaudio::io::StreamWriter::open(const c10::optional, std::basic_string > >&)’: 2023-07-13T14:24:03.9503683Z /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-07-13T14:24:03.9504331Z 223 | format_ctx->nb_streams == num_output_streams(), 2023-07-13T14:24:03.9504685Z | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ 2023-07-13T14:24:03.9508204Z [59/156] /usr/local/cuda-11.8/bin/nvcc -forward-unknown-to-host-compiler -DINCLUDE_ALIGN -DINCLUDE_RIR -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_EXPORTS -I/work -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -DCUDA_HAS_FP16=1 -D__CUDA_NO_HALF_OPERATORS__ -D__CUDA_NO_HALF_CONVERSIONS__ -D__CUDA_NO_HALF2_OPERATORS__ -DONNX_NAMESPACE=onnx_c2 -gencode arch=compute_86,code=sm_86 -Xcudafe --diag_suppress=cc_clobber_ignored,--diag_suppress=set_but_not_used,--diag_suppress=field_without_dll_interface,--diag_suppress=base_class_has_different_dll_interface,--diag_suppress=dll_interface_conflict_none_assumed,--diag_suppress=dll_interface_conflict_dllexport_assumed,--diag_suppress=bad_friend_decl --expt-relaxed-constexpr --expt-extended-lambda -O3 -DNDEBUG -std=c++17 -Xcompiler=-fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/gpu/compute.cu.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/gpu/compute.cu.o.d -x cu -c /work/torchaudio/csrc/rnnt/gpu/compute.cu -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/gpu/compute.cu.o 2023-07-13T14:24:03.9512307Z [60/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/lame-build && /work/ci_env/bin/cmake -P /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/lame-stamp/lame-build-Release.cmake && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/lame-stamp/lame-build 2023-07-13T14:24:03.9513752Z [61/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/lame-build && /work/ci_env/bin/cmake -P /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/lame-stamp/lame-install-Release.cmake && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/lame-stamp/lame-install 2023-07-13T14:24:03.9516547Z [62/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg4_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f4-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/post_process.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/post_process.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/post_process.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_reader/post_process.cpp 2023-07-13T14:24:03.9519712Z [63/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox && /work/ci_env/bin/cmake -E make_directory /work/build/temp.linux-x86_64-cpython-310/third_party/sox/CMakeFiles && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/CMakeFiles/lame-complete && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/lame-stamp/lame-done 2023-07-13T14:24:03.9521442Z [64/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/vorbis-build && /work/ci_env/bin/cmake -P /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/vorbis-stamp/vorbis-configure-Release.cmake && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/vorbis-stamp/vorbis-configure 2023-07-13T14:24:10.5496290Z [65/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opus-build && /work/ci_env/bin/cmake -P /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opus-stamp/opus-configure-Release.cmake && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opus-stamp/opus-configure 2023-07-13T14:24:10.5497821Z [66/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/flac-build && /work/ci_env/bin/cmake -P /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/flac-stamp/flac-configure-Release.cmake && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/flac-stamp/flac-configure 2023-07-13T14:24:10.5500733Z [67/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg5_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f5-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/ffmpeg.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/ffmpeg.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/ffmpeg.cpp.o -c /work/torchaudio/csrc/ffmpeg/ffmpeg.cpp 2023-07-13T14:24:10.5503869Z [68/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg5_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f5-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/hw_context.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/hw_context.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/hw_context.cpp.o -c /work/torchaudio/csrc/ffmpeg/hw_context.cpp 2023-07-13T14:24:10.5506800Z [69/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg5_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f5-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/filter_graph.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/filter_graph.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/filter_graph.cpp.o -c /work/torchaudio/csrc/ffmpeg/filter_graph.cpp 2023-07-13T14:24:10.5509989Z [70/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg4_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f4-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_writer/tensor_converter.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_writer/tensor_converter.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_writer/tensor_converter.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp 2023-07-13T14:24:10.5513688Z [71/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg5_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f5-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/buffer/unchunked_buffer.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/buffer/unchunked_buffer.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/buffer/unchunked_buffer.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_reader/buffer/unchunked_buffer.cpp 2023-07-13T14:24:10.5516962Z [72/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg5_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f5-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/packet_buffer.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/packet_buffer.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/packet_buffer.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_reader/packet_buffer.cpp 2023-07-13T14:24:10.5520934Z [73/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg5_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f5-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/buffer/chunked_buffer.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/buffer/chunked_buffer.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/buffer/chunked_buffer.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_reader/buffer/chunked_buffer.cpp 2023-07-13T14:24:10.5523178Z /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-07-13T14:24:10.5524522Z /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-07-13T14:24:10.5525265Z 97 | if (num_chunks > 0 && chunks.size() > num_chunks) { 2023-07-13T14:24:10.5525634Z | ~~~~~~~~~~~~~~^~~~~~~~~~~~ 2023-07-13T14:24:10.5528062Z [74/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg4_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f4-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/conversion.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/conversion.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/conversion.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp 2023-07-13T14:24:18.2964411Z [75/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg5_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f5-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/stream_processor.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/stream_processor.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/stream_processor.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp 2023-07-13T14:24:18.2968360Z [76/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg5_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f5-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/post_process.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/post_process.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/post_process.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_reader/post_process.cpp 2023-07-13T14:24:18.2971724Z [77/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg4_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f4-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/compat.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/compat.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/compat.cpp.o -c /work/torchaudio/csrc/ffmpeg/compat.cpp 2023-07-13T14:24:18.2979808Z [78/156] : && /opt/rh/devtoolset-9/root/usr/bin/c++ -fPIC -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -shared -Wl,-soname,libtorchaudio_ffmpeg4.so -o torchaudio/csrc/ffmpeg/libtorchaudio_ffmpeg4.so torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/ffmpeg.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/filter_graph.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/hw_context.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/buffer/chunked_buffer.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/buffer/unchunked_buffer.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/conversion.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/packet_buffer.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/post_process.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/stream_processor.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_reader/stream_reader.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_writer/encode_process.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_writer/encoder.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_writer/packet_writer.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_writer/stream_writer.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/stream_writer/tensor_converter.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg4.dir/compat.cpp.o -Wl,-rpath,/work/ci_env/lib/python3.10/site-packages/torch/lib:/usr/local/cuda-11.8/lib64:/work/build/temp.linux-x86_64-cpython-310/_deps/f4-src/lib: /work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch.so -Wl,--no-as-needed,"/work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_cpu.so" -Wl,--as-needed -Wl,--no-as-needed,"/work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_cuda.so" -Wl,--as-needed /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10_cuda.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10.so /usr/local/cuda-11.8/lib64/libcudart.so /usr/local/cuda-11.8/lib64/libnvToolsExt.so /usr/local/cuda-11.8/lib64/libcufft.so /usr/local/cuda-11.8/lib64/libcurand.so /usr/local/cuda-11.8/lib64/libcublas.so /usr/local/cuda-11.8/lib64/libcublasLt.so _deps/f4-src/lib/libavutil.so.56 _deps/f4-src/lib/libavcodec.so.58 _deps/f4-src/lib/libavformat.so.58 _deps/f4-src/lib/libavdevice.so.58 _deps/f4-src/lib/libavfilter.so.7 /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10_cuda.so /usr/local/cuda-11.8/lib64/libcudart.so && : 2023-07-13T14:24:18.2985052Z [79/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/vorbis-build && /work/ci_env/bin/cmake -P /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/vorbis-stamp/vorbis-build-Release.cmake && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/vorbis-stamp/vorbis-build 2023-07-13T14:24:18.2987847Z [80/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg5_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f5-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_writer/encoder.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_writer/encoder.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_writer/encoder.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_writer/encoder.cpp 2023-07-13T14:24:18.2991854Z [81/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg5_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f5-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/stream_reader.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/stream_reader.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/stream_reader.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_reader/stream_reader.cpp 2023-07-13T14:24:18.2993919Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_reader.cpp: In constructor ‘torchaudio::io::StreamReader::StreamReader(AVFormatContext*)’: 2023-07-13T14:24:18.2994904Z /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-07-13T14:24:18.2995596Z 61 | for (int i = 0; i < format_ctx->nb_streams; ++i) { 2023-07-13T14:24:18.2995981Z | ~~^~~~~~~~~~~~~~~~~~~~~~~~ 2023-07-13T14:24:18.2999212Z [82/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg5_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f5-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_writer/packet_writer.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_writer/packet_writer.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_writer/packet_writer.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_writer/packet_writer.cpp 2023-07-13T14:24:19.6092707Z [83/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/vorbis-build && /work/ci_env/bin/cmake -P /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/vorbis-stamp/vorbis-install-Release.cmake && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/vorbis-stamp/vorbis-install 2023-07-13T14:24:19.6094677Z [84/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox && /work/ci_env/bin/cmake -E make_directory /work/build/temp.linux-x86_64-cpython-310/third_party/sox/CMakeFiles && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/CMakeFiles/vorbis-complete && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/vorbis-stamp/vorbis-done 2023-07-13T14:24:19.6097807Z [85/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg5_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f5-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_writer/stream_writer.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_writer/stream_writer.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_writer/stream_writer.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp 2023-07-13T14:24:19.6099918Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/util/Exception.h:4, 2023-07-13T14:24:19.6100602Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Generator.h:11, 2023-07-13T14:24:19.6101281Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/CPUGeneratorImpl.h:3, 2023-07-13T14:24:19.6101941Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Context.h:3, 2023-07-13T14:24:19.6102550Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/ATen.h:7, 2023-07-13T14:24:19.6103241Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/types.h:3, 2023-07-13T14:24:19.6103767Z from /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.h:3, 2023-07-13T14:24:19.6104207Z from /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp:1: 2023-07-13T14:24:19.6105849Z /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-07-13T14:24:19.6107558Z /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-07-13T14:24:19.6108254Z 69 | format_ctx->nb_streams == num_output_streams(), 2023-07-13T14:24:19.6108630Z | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ 2023-07-13T14:24:19.6110245Z /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-07-13T14:24:19.6111938Z /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-07-13T14:24:19.6112603Z 105 | format_ctx->nb_streams == num_output_streams(), 2023-07-13T14:24:19.6112959Z | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ 2023-07-13T14:24:19.6114322Z /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-07-13T14:24:19.6115656Z /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-07-13T14:24:19.6116503Z 149 | format_ctx->nb_streams == num_output_streams(), 2023-07-13T14:24:19.6116863Z | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ 2023-07-13T14:24:19.6118687Z /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-07-13T14:24:19.6120057Z /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-07-13T14:24:19.6120758Z 186 | format_ctx->nb_streams == num_output_streams(), 2023-07-13T14:24:19.6121110Z | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ 2023-07-13T14:24:19.6121936Z /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp: In member function ‘void torchaudio::io::StreamWriter::open(const c10::optional, std::basic_string > >&)’: 2023-07-13T14:24:19.6122913Z /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-07-13T14:24:19.6123535Z 223 | format_ctx->nb_streams == num_output_streams(), 2023-07-13T14:24:19.6123896Z | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ 2023-07-13T14:24:19.6126297Z [86/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg6_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/filter_graph.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/filter_graph.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/filter_graph.cpp.o -c /work/torchaudio/csrc/ffmpeg/filter_graph.cpp 2023-07-13T14:24:19.6128268Z /work/torchaudio/csrc/ffmpeg/filter_graph.cpp: In member function ‘torchaudio::io::FilterGraphOutputInfo torchaudio::io::FilterGraph::get_output_info() const’: 2023-07-13T14:24:19.6129188Z /work/torchaudio/csrc/ffmpeg/filter_graph.cpp:193:63: warning: ‘AVFilterLink::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:19.6129879Z 193 | ret.num_channels = av_get_channel_layout_nb_channels(l->channel_layout); 2023-07-13T14:24:19.6130284Z | ^~~~~~~~~~~~~~ 2023-07-13T14:24:19.6130691Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:12, 2023-07-13T14:24:19.6131137Z from /work/torchaudio/csrc/ffmpeg/filter_graph.h:3, 2023-07-13T14:24:19.6131556Z from /work/torchaudio/csrc/ffmpeg/filter_graph.cpp:1: 2023-07-13T14:24:19.6132216Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavfilter/avfilter.h:542:14: note: declared here 2023-07-13T14:24:19.6132670Z 542 | uint64_t channel_layout; 2023-07-13T14:24:25.7169868Z | ^~~~~~~~~~~~~~ 2023-07-13T14:24:25.7170862Z /work/torchaudio/csrc/ffmpeg/filter_graph.cpp:193:63: warning: ‘AVFilterLink::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:25.7171830Z 193 | ret.num_channels = av_get_channel_layout_nb_channels(l->channel_layout); 2023-07-13T14:24:25.7172215Z | ^~~~~~~~~~~~~~ 2023-07-13T14:24:25.7172601Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:12, 2023-07-13T14:24:25.7173034Z from /work/torchaudio/csrc/ffmpeg/filter_graph.h:3, 2023-07-13T14:24:25.7173443Z from /work/torchaudio/csrc/ffmpeg/filter_graph.cpp:1: 2023-07-13T14:24:25.7174122Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavfilter/avfilter.h:542:14: note: declared here 2023-07-13T14:24:25.7174569Z 542 | uint64_t channel_layout; 2023-07-13T14:24:25.7174861Z | ^~~~~~~~~~~~~~ 2023-07-13T14:24:25.7175548Z /work/torchaudio/csrc/ffmpeg/filter_graph.cpp:193:63: warning: ‘AVFilterLink::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:25.7176229Z 193 | ret.num_channels = av_get_channel_layout_nb_channels(l->channel_layout); 2023-07-13T14:24:25.7176629Z | ^~~~~~~~~~~~~~ 2023-07-13T14:24:25.7177014Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:12, 2023-07-13T14:24:25.7177392Z from /work/torchaudio/csrc/ffmpeg/filter_graph.h:3, 2023-07-13T14:24:25.7177786Z from /work/torchaudio/csrc/ffmpeg/filter_graph.cpp:1: 2023-07-13T14:24:25.7178393Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavfilter/avfilter.h:542:14: note: declared here 2023-07-13T14:24:25.7178813Z 542 | uint64_t channel_layout; 2023-07-13T14:24:25.7179075Z | ^~~~~~~~~~~~~~ 2023-07-13T14:24:25.7179694Z /work/torchaudio/csrc/ffmpeg/filter_graph.cpp:193:77: warning: ‘int av_get_channel_layout_nb_channels(uint64_t)’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:25.7180338Z 193 | ret.num_channels = av_get_channel_layout_nb_channels(l->channel_layout); 2023-07-13T14:24:25.7180957Z | ^ 2023-07-13T14:24:25.7181539Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:33, 2023-07-13T14:24:25.7182208Z from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:25.7182662Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:25.7183055Z from /work/torchaudio/csrc/ffmpeg/filter_graph.h:3, 2023-07-13T14:24:25.7183509Z from /work/torchaudio/csrc/ffmpeg/filter_graph.cpp:1: 2023-07-13T14:24:25.7184196Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/channel_layout.h:474:5: note: declared here 2023-07-13T14:24:25.7184736Z 474 | int av_get_channel_layout_nb_channels(uint64_t channel_layout); 2023-07-13T14:24:25.7185090Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-07-13T14:24:25.7185723Z /work/torchaudio/csrc/ffmpeg/filter_graph.cpp:193:77: warning: ‘int av_get_channel_layout_nb_channels(uint64_t)’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:25.7186354Z 193 | ret.num_channels = av_get_channel_layout_nb_channels(l->channel_layout); 2023-07-13T14:24:25.7186761Z | ^ 2023-07-13T14:24:25.7187337Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:33, 2023-07-13T14:24:25.7187954Z from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:25.7188399Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:25.7188796Z from /work/torchaudio/csrc/ffmpeg/filter_graph.h:3, 2023-07-13T14:24:25.7189403Z from /work/torchaudio/csrc/ffmpeg/filter_graph.cpp:1: 2023-07-13T14:24:25.7190061Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/channel_layout.h:474:5: note: declared here 2023-07-13T14:24:25.7190534Z 474 | int av_get_channel_layout_nb_channels(uint64_t channel_layout); 2023-07-13T14:24:25.7190894Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-07-13T14:24:25.7193641Z [87/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg5_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f5-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_writer/encode_process.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_writer/encode_process.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_writer/encode_process.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp 2023-07-13T14:24:25.7197080Z [88/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg6_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/ffmpeg.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/ffmpeg.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/ffmpeg.cpp.o -c /work/torchaudio/csrc/ffmpeg/ffmpeg.cpp 2023-07-13T14:24:25.7200875Z [89/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg5_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f5-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_writer/tensor_converter.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_writer/tensor_converter.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_writer/tensor_converter.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp 2023-07-13T14:24:25.7204308Z [90/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg6_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/hw_context.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/hw_context.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/hw_context.cpp.o -c /work/torchaudio/csrc/ffmpeg/hw_context.cpp 2023-07-13T14:24:25.7207807Z [91/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg5_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f5-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/conversion.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/conversion.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/conversion.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp 2023-07-13T14:24:25.7211624Z [92/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg5_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f5-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/compat.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/compat.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/compat.cpp.o -c /work/torchaudio/csrc/ffmpeg/compat.cpp 2023-07-13T14:24:28.8336184Z [93/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg6_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/buffer/chunked_buffer.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/buffer/chunked_buffer.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/buffer/chunked_buffer.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_reader/buffer/chunked_buffer.cpp 2023-07-13T14:24:28.8338402Z /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-07-13T14:24:28.8339684Z /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-07-13T14:24:28.8340377Z 97 | if (num_chunks > 0 && chunks.size() > num_chunks) { 2023-07-13T14:24:28.8340742Z | ~~~~~~~~~~~~~~^~~~~~~~~~~~ 2023-07-13T14:24:28.8347143Z [94/156] : && /opt/rh/devtoolset-9/root/usr/bin/c++ -fPIC -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -shared -Wl,-soname,libtorchaudio_ffmpeg5.so -o torchaudio/csrc/ffmpeg/libtorchaudio_ffmpeg5.so torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/ffmpeg.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/filter_graph.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/hw_context.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/buffer/chunked_buffer.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/buffer/unchunked_buffer.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/conversion.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/packet_buffer.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/post_process.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/stream_processor.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_reader/stream_reader.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_writer/encode_process.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_writer/encoder.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_writer/packet_writer.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_writer/stream_writer.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/stream_writer/tensor_converter.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg5.dir/compat.cpp.o -Wl,-rpath,/work/ci_env/lib/python3.10/site-packages/torch/lib:/usr/local/cuda-11.8/lib64:/work/build/temp.linux-x86_64-cpython-310/_deps/f5-src/lib: /work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch.so -Wl,--no-as-needed,"/work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_cpu.so" -Wl,--as-needed -Wl,--no-as-needed,"/work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_cuda.so" -Wl,--as-needed /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10_cuda.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10.so /usr/local/cuda-11.8/lib64/libcudart.so /usr/local/cuda-11.8/lib64/libnvToolsExt.so /usr/local/cuda-11.8/lib64/libcufft.so /usr/local/cuda-11.8/lib64/libcurand.so /usr/local/cuda-11.8/lib64/libcublas.so /usr/local/cuda-11.8/lib64/libcublasLt.so _deps/f5-src/lib/libavutil.so.57 _deps/f5-src/lib/libavcodec.so.59 _deps/f5-src/lib/libavformat.so.59 _deps/f5-src/lib/libavdevice.so.59 _deps/f5-src/lib/libavfilter.so.8 /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10_cuda.so /usr/local/cuda-11.8/lib64/libcudart.so && : 2023-07-13T14:24:28.8354345Z [95/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg6_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/buffer/unchunked_buffer.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/buffer/unchunked_buffer.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/buffer/unchunked_buffer.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_reader/buffer/unchunked_buffer.cpp 2023-07-13T14:24:28.8357909Z [96/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg6_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/packet_buffer.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/packet_buffer.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/packet_buffer.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_reader/packet_buffer.cpp 2023-07-13T14:24:28.8361640Z [97/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg6_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/stream_processor.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/stream_processor.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/stream_processor.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp 2023-07-13T14:24:28.8364019Z /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-07-13T14:24:28.8365054Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:141:19: warning: ‘AVCodecContext::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:28.8365676Z 141 | if (!codec_ctx->channel_layout) { 2023-07-13T14:24:28.8365974Z | ^~~~~~~~~~~~~~ 2023-07-13T14:24:28.8366334Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:28.8366810Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:28.8367257Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:1: 2023-07-13T14:24:28.8367911Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:1100:14: note: declared here 2023-07-13T14:24:28.8368330Z 1100 | uint64_t channel_layout; 2023-07-13T14:24:28.8368618Z | ^~~~~~~~~~~~~~ 2023-07-13T14:24:28.8369393Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:141:19: warning: ‘AVCodecContext::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:28.8369987Z 141 | if (!codec_ctx->channel_layout) { 2023-07-13T14:24:28.8370455Z | ^~~~~~~~~~~~~~ 2023-07-13T14:24:28.8370815Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:28.8705233Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:28.8705823Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:1: 2023-07-13T14:24:28.8706707Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:1100:14: note: declared here 2023-07-13T14:24:28.8708889Z 1100 | uint64_t channel_layout; 2023-07-13T14:24:28.8709638Z | ^~~~~~~~~~~~~~ 2023-07-13T14:24:28.8710964Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:141:19: warning: ‘AVCodecContext::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:28.8712334Z 141 | if (!codec_ctx->channel_layout) { 2023-07-13T14:24:28.8712939Z | ^~~~~~~~~~~~~~ 2023-07-13T14:24:28.8713557Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:28.8714000Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:28.8714447Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:1: 2023-07-13T14:24:28.8715153Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:1100:14: note: declared here 2023-07-13T14:24:28.8715558Z 1100 | uint64_t channel_layout; 2023-07-13T14:24:28.8715854Z | ^~~~~~~~~~~~~~ 2023-07-13T14:24:28.8716731Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:142:16: warning: ‘AVCodecContext::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:28.8717291Z 142 | codec_ctx->channel_layout = 2023-07-13T14:24:28.8718337Z | ^~~~~~~~~~~~~~ 2023-07-13T14:24:28.8718709Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:28.8720309Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:28.8722473Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:1: 2023-07-13T14:24:28.8723549Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:1100:14: note: declared here 2023-07-13T14:24:28.8724299Z 1100 | uint64_t channel_layout; 2023-07-13T14:24:28.8724866Z | ^~~~~~~~~~~~~~ 2023-07-13T14:24:28.8725898Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:142:16: warning: ‘AVCodecContext::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:28.8726652Z 142 | codec_ctx->channel_layout = 2023-07-13T14:24:28.8726952Z | ^~~~~~~~~~~~~~ 2023-07-13T14:24:28.8727312Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:28.8727744Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:28.8728206Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:1: 2023-07-13T14:24:28.8728854Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:1100:14: note: declared here 2023-07-13T14:24:28.8729311Z 1100 | uint64_t channel_layout; 2023-07-13T14:24:28.8729599Z | ^~~~~~~~~~~~~~ 2023-07-13T14:24:28.8730314Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:142:16: warning: ‘AVCodecContext::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:28.8730895Z 142 | codec_ctx->channel_layout = 2023-07-13T14:24:28.8731184Z | ^~~~~~~~~~~~~~ 2023-07-13T14:24:28.8760659Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:28.8761122Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:28.8762087Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:1: 2023-07-13T14:24:28.8762876Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:1100:14: note: declared here 2023-07-13T14:24:28.8763286Z 1100 | uint64_t channel_layout; 2023-07-13T14:24:28.8763570Z | ^~~~~~~~~~~~~~ 2023-07-13T14:24:28.8764367Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:143:50: warning: ‘AVCodecContext::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:28.8764988Z 143 | av_get_default_channel_layout(codec_ctx->channels); 2023-07-13T14:24:28.8765337Z | ^~~~~~~~ 2023-07-13T14:24:28.8765704Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:28.8766121Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:28.8766593Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:1: 2023-07-13T14:24:28.8767308Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:1042:9: note: declared here 2023-07-13T14:24:28.8767717Z 1042 | int channels; 2023-07-13T14:24:28.8767976Z | ^~~~~~~~ 2023-07-13T14:24:28.8768710Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:143:50: warning: ‘AVCodecContext::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:28.8769474Z 143 | av_get_default_channel_layout(codec_ctx->channels); 2023-07-13T14:24:28.8769902Z | ^~~~~~~~ 2023-07-13T14:24:28.8770262Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:28.8770670Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:28.8771132Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:1: 2023-07-13T14:24:28.8772086Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:1042:9: note: declared here 2023-07-13T14:24:28.8772511Z 1042 | int channels; 2023-07-13T14:24:28.8772795Z | ^~~~~~~~ 2023-07-13T14:24:28.8773588Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:143:50: warning: ‘AVCodecContext::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:28.8774285Z 143 | av_get_default_channel_layout(codec_ctx->channels); 2023-07-13T14:24:28.8774665Z | ^~~~~~~~ 2023-07-13T14:24:28.8775053Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:28.8775471Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:28.8775905Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:1: 2023-07-13T14:24:28.8776574Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:1042:9: note: declared here 2023-07-13T14:24:28.8776983Z 1042 | int channels; 2023-07-13T14:24:28.8777247Z | ^~~~~~~~ 2023-07-13T14:24:28.8777920Z /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-07-13T14:24:28.8778634Z 143 | av_get_default_channel_layout(codec_ctx->channels); 2023-07-13T14:24:28.8779022Z | ^ 2023-07-13T14:24:28.8779571Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:33, 2023-07-13T14:24:28.8780222Z from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:28.8780674Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:28.8781067Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:28.8781666Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:1: 2023-07-13T14:24:28.8782314Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/channel_layout.h:482:9: note: declared here 2023-07-13T14:24:28.8782797Z 482 | int64_t av_get_default_channel_layout(int nb_channels); 2023-07-13T14:24:28.8783131Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-07-13T14:24:28.8783855Z /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-07-13T14:24:28.8784495Z 143 | av_get_default_channel_layout(codec_ctx->channels); 2023-07-13T14:24:28.8784851Z | ^ 2023-07-13T14:24:28.8785410Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:33, 2023-07-13T14:24:28.8786099Z from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:28.8786601Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:28.8787034Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:28.8787510Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:1: 2023-07-13T14:24:28.8788262Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/channel_layout.h:482:9: note: declared here 2023-07-13T14:24:28.8788799Z 482 | int64_t av_get_default_channel_layout(int nb_channels); 2023-07-13T14:24:28.8789129Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-07-13T14:24:28.8789954Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp: In member function ‘int torchaudio::io::StreamProcessor::process_packet(AVPacket*)’: 2023-07-13T14:24:28.8791130Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:335:33: warning: ‘AVCodecContext::frame_number’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:28.8792075Z 335 | frame->pts = codec_ctx->frame_number + 1; 2023-07-13T14:24:28.8792426Z | ^~~~~~~~~~~~ 2023-07-13T14:24:28.8792797Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:28.8793232Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:28.8793693Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:1: 2023-07-13T14:24:28.8794366Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:1076:9: note: declared here 2023-07-13T14:24:28.8794802Z 1076 | int frame_number; 2023-07-13T14:24:28.8795073Z | ^~~~~~~~~~~~ 2023-07-13T14:24:28.8795864Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:335:33: warning: ‘AVCodecContext::frame_number’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:30.6787685Z 335 | frame->pts = codec_ctx->frame_number + 1; 2023-07-13T14:24:30.6788655Z | ^~~~~~~~~~~~ 2023-07-13T14:24:30.6791745Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:30.6792456Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:30.6793256Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:1: 2023-07-13T14:24:30.6796051Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:1076:9: note: declared here 2023-07-13T14:24:30.6796751Z 1076 | int frame_number; 2023-07-13T14:24:30.6797199Z | ^~~~~~~~~~~~ 2023-07-13T14:24:30.6798489Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:335:33: warning: ‘AVCodecContext::frame_number’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:30.6801512Z 335 | frame->pts = codec_ctx->frame_number + 1; 2023-07-13T14:24:30.6802071Z | ^~~~~~~~~~~~ 2023-07-13T14:24:30.6804324Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:30.6804913Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:30.6805845Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_processor.cpp:1: 2023-07-13T14:24:30.6806727Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:1076:9: note: declared here 2023-07-13T14:24:30.6807356Z 1076 | int frame_number; 2023-07-13T14:24:30.6808045Z | ^~~~~~~~~~~~ 2023-07-13T14:24:30.6812815Z [98/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg6_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_writer/encoder.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_writer/encoder.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_writer/encoder.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_writer/encoder.cpp 2023-07-13T14:24:30.6816082Z [99/156] /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-07-13T14:24:30.6819773Z [100/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg6_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_writer/packet_writer.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_writer/packet_writer.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_writer/packet_writer.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_writer/packet_writer.cpp 2023-07-13T14:24:30.6823723Z [101/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg6_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/stream_reader.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/stream_reader.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/stream_reader.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_reader/stream_reader.cpp 2023-07-13T14:24:30.6826253Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_reader.cpp: In constructor ‘torchaudio::io::StreamReader::StreamReader(AVFormatContext*)’: 2023-07-13T14:24:30.6827496Z /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-07-13T14:24:30.6828794Z 61 | for (int i = 0; i < format_ctx->nb_streams; ++i) { 2023-07-13T14:24:30.6832552Z | ~~^~~~~~~~~~~~~~~~~~~~~~~~ 2023-07-13T14:24:30.6833637Z /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-07-13T14:24:30.6834649Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_reader.cpp:163:36: warning: ‘AVCodecParameters::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:30.6835375Z 163 | ret.num_channels = codecpar->channels; 2023-07-13T14:24:30.6835736Z | ^~~~~~~~ 2023-07-13T14:24:30.6836326Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:42, 2023-07-13T14:24:30.6836875Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:30.6837333Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_reader.cpp:1: 2023-07-13T14:24:30.6838090Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/codec_par.h:173:14: note: declared here 2023-07-13T14:24:30.6838865Z 173 | int channels; 2023-07-13T14:24:30.6839171Z | ^~~~~~~~ 2023-07-13T14:24:30.6839967Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_reader.cpp:163:36: warning: ‘AVCodecParameters::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:30.6841141Z 163 | ret.num_channels = codecpar->channels; 2023-07-13T14:24:30.6841516Z | ^~~~~~~~ 2023-07-13T14:24:30.6842133Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:42, 2023-07-13T14:24:30.6842671Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:30.6843123Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_reader.cpp:1: 2023-07-13T14:24:30.6843817Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/codec_par.h:173:14: note: declared here 2023-07-13T14:24:30.6844251Z 173 | int channels; 2023-07-13T14:24:30.6844533Z | ^~~~~~~~ 2023-07-13T14:24:30.6845326Z /work/torchaudio/csrc/ffmpeg/stream_reader/stream_reader.cpp:163:36: warning: ‘AVCodecParameters::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:30.6846021Z 163 | ret.num_channels = codecpar->channels; 2023-07-13T14:24:30.6846405Z | ^~~~~~~~ 2023-07-13T14:24:30.6847020Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:42, 2023-07-13T14:24:30.6847564Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:30.6847999Z from /work/torchaudio/csrc/ffmpeg/stream_reader/stream_reader.cpp:1: 2023-07-13T14:24:30.6848680Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/codec_par.h:173:14: note: declared here 2023-07-13T14:24:30.6849131Z 173 | int channels; 2023-07-13T14:24:30.6849414Z | ^~~~~~~~ 2023-07-13T14:24:30.6852131Z [102/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg6_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_writer/encode_process.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_writer/encode_process.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_writer/encode_process.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp 2023-07-13T14:24:30.7079320Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp: In function ‘std::string torchaudio::io::{anonymous}::get_supported_channels(const uint64_t*)’: 2023-07-13T14:24:30.7081000Z /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-07-13T14:24:30.7081908Z 318 | ss << av_get_channel_layout_nb_channels(*channel_layouts); 2023-07-13T14:24:30.7082742Z | ^ 2023-07-13T14:24:30.7084174Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:33, 2023-07-13T14:24:30.7085024Z from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:30.7085626Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:30.7086169Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:30.7086931Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-07-13T14:24:30.7089151Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/channel_layout.h:474:5: note: declared here 2023-07-13T14:24:30.7092086Z 474 | int av_get_channel_layout_nb_channels(uint64_t channel_layout); 2023-07-13T14:24:30.7092829Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7093939Z /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-07-13T14:24:30.7094972Z 318 | ss << av_get_channel_layout_nb_channels(*channel_layouts); 2023-07-13T14:24:30.7095680Z | ^ 2023-07-13T14:24:30.7096353Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:33, 2023-07-13T14:24:30.7097073Z from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:30.7097573Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:30.7098001Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:30.7098496Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-07-13T14:24:30.7099199Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/channel_layout.h:474:5: note: declared here 2023-07-13T14:24:30.7099764Z 474 | int av_get_channel_layout_nb_channels(uint64_t channel_layout); 2023-07-13T14:24:30.7100148Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7100930Z /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-07-13T14:24:30.7101538Z 319 | ss << " (" << av_get_channel_name(*channel_layouts) << ")"; 2023-07-13T14:24:30.7101922Z | ^ 2023-07-13T14:24:30.7102534Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:33, 2023-07-13T14:24:30.7103624Z from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:30.7104120Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:30.7104537Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:30.7104987Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-07-13T14:24:30.7105662Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/channel_layout.h:515:13: note: declared here 2023-07-13T14:24:30.7106141Z 515 | const char *av_get_channel_name(uint64_t channel); 2023-07-13T14:24:30.7106471Z | ^~~~~~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7107162Z /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-07-13T14:24:30.7107752Z 319 | ss << " (" << av_get_channel_name(*channel_layouts) << ")"; 2023-07-13T14:24:30.7108178Z | ^ 2023-07-13T14:24:30.7108765Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:33, 2023-07-13T14:24:30.7109423Z from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:30.7109955Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:30.7110359Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:30.7110798Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-07-13T14:24:30.7111844Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/channel_layout.h:515:13: note: declared here 2023-07-13T14:24:30.7112339Z 515 | const char *av_get_channel_name(uint64_t channel); 2023-07-13T14:24:30.7112904Z | ^~~~~~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7113856Z /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-07-13T14:24:30.7114911Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:335:17: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:30.7115567Z 335 | if (!codec->channel_layouts) { 2023-07-13T14:24:30.7115883Z | ^~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7116510Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-07-13T14:24:30.7117053Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:30.7117486Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:30.7117957Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-07-13T14:24:30.7118967Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-07-13T14:24:30.7119528Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-07-13T14:24:30.7119979Z | ^~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7120742Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:335:17: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:30.7121318Z 335 | if (!codec->channel_layouts) { 2023-07-13T14:24:30.7121634Z | ^~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7122179Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-07-13T14:24:30.7122670Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:30.7123089Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:30.7123821Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-07-13T14:24:30.7124511Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-07-13T14:24:30.7125111Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-07-13T14:24:30.7125576Z | ^~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7126405Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:335:17: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:30.7126993Z 335 | if (!codec->channel_layouts) { 2023-07-13T14:24:30.7127315Z | ^~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7127888Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-07-13T14:24:30.7128401Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:30.7128846Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:30.7129321Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-07-13T14:24:30.7130067Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-07-13T14:24:30.7130634Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-07-13T14:24:30.7131091Z | ^~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7131845Z /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-07-13T14:24:30.7132480Z 336 | return static_cast(av_get_default_channel_layout(val)); 2023-07-13T14:24:30.7133123Z | ^ 2023-07-13T14:24:30.7133776Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:33, 2023-07-13T14:24:30.7134502Z from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:30.7134985Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:30.7135413Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:30.7135866Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-07-13T14:24:30.7136573Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/channel_layout.h:482:9: note: declared here 2023-07-13T14:24:30.7137078Z 482 | int64_t av_get_default_channel_layout(int nb_channels); 2023-07-13T14:24:30.7137429Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7138218Z /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-07-13T14:24:30.7326372Z 336 | return static_cast(av_get_default_channel_layout(val)); 2023-07-13T14:24:30.7328394Z | ^ 2023-07-13T14:24:30.7330143Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:33, 2023-07-13T14:24:30.7334123Z from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:30.7334610Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:30.7335041Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:30.7335506Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-07-13T14:24:30.7336667Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/channel_layout.h:482:9: note: declared here 2023-07-13T14:24:30.7337208Z 482 | int64_t av_get_default_channel_layout(int nb_channels); 2023-07-13T14:24:30.7337570Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7338470Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:338:38: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:30.7339175Z 338 | for (const uint64_t* it = codec->channel_layouts; *it; ++it) { 2023-07-13T14:24:30.7339589Z | ^~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7340199Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-07-13T14:24:30.7340704Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:30.7341138Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:30.7341595Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-07-13T14:24:30.7342250Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-07-13T14:24:30.7342845Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-07-13T14:24:30.7343289Z | ^~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7344053Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:338:38: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:30.7344741Z 338 | for (const uint64_t* it = codec->channel_layouts; *it; ++it) { 2023-07-13T14:24:30.7345126Z | ^~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7345740Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-07-13T14:24:30.7346469Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:30.7346868Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:30.7347314Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-07-13T14:24:30.7347955Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-07-13T14:24:30.7348508Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-07-13T14:24:30.7348917Z | ^~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7349667Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:338:38: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:30.7350407Z 338 | for (const uint64_t* it = codec->channel_layouts; *it; ++it) { 2023-07-13T14:24:30.7350818Z | ^~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7351629Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-07-13T14:24:30.7352133Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:30.7352542Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:30.7352993Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-07-13T14:24:30.7353664Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-07-13T14:24:30.7354237Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-07-13T14:24:30.7354676Z | ^~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7355572Z /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-07-13T14:24:30.7356167Z 339 | if (av_get_channel_layout_nb_channels(*it) == val) { 2023-07-13T14:24:30.7356528Z | ^ 2023-07-13T14:24:30.7357146Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:33, 2023-07-13T14:24:30.7357809Z from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:30.7358720Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:30.7359128Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:30.7359590Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-07-13T14:24:30.7360355Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/channel_layout.h:474:5: note: declared here 2023-07-13T14:24:30.7360909Z 474 | int av_get_channel_layout_nb_channels(uint64_t channel_layout); 2023-07-13T14:24:30.7361321Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7362218Z /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-07-13T14:24:30.7362931Z 339 | if (av_get_channel_layout_nb_channels(*it) == val) { 2023-07-13T14:24:30.7363344Z | ^ 2023-07-13T14:24:30.7363970Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:33, 2023-07-13T14:24:30.7364736Z from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:30.7365377Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:30.7366089Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:30.7366578Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-07-13T14:24:30.7367350Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/channel_layout.h:474:5: note: declared here 2023-07-13T14:24:30.7367962Z 474 | int av_get_channel_layout_nb_channels(uint64_t channel_layout); 2023-07-13T14:24:30.7368382Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7368983Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Generator.h:11, 2023-07-13T14:24:30.7369768Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/CPUGeneratorImpl.h:3, 2023-07-13T14:24:30.7370526Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Context.h:3, 2023-07-13T14:24:30.7371200Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/ATen.h:7, 2023-07-13T14:24:30.7371957Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/types.h:3, 2023-07-13T14:24:30.7372533Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:3, 2023-07-13T14:24:30.7373007Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:30.7373497Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-07-13T14:24:30.7374538Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:350:39: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:30.7375316Z 350 | get_supported_channels(codec->channel_layouts)); 2023-07-13T14:24:30.7375751Z | ^~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7376415Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-07-13T14:24:30.7377059Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:30.7377735Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:30.7378238Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-07-13T14:24:30.7378992Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-07-13T14:24:30.7379655Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-07-13T14:24:30.7380248Z | ^~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7380902Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Generator.h:11, 2023-07-13T14:24:30.7412087Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/CPUGeneratorImpl.h:3, 2023-07-13T14:24:30.7412715Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Context.h:3, 2023-07-13T14:24:30.7413262Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/ATen.h:7, 2023-07-13T14:24:30.7413834Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/types.h:3, 2023-07-13T14:24:30.7414248Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:3, 2023-07-13T14:24:30.7414611Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:30.7415016Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-07-13T14:24:30.7483766Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:350:39: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:30.7484478Z 350 | get_supported_channels(codec->channel_layouts)); 2023-07-13T14:24:30.7485353Z | ^~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7485949Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-07-13T14:24:30.7486434Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:30.7486793Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:30.7487237Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-07-13T14:24:30.7487881Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-07-13T14:24:30.7488444Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-07-13T14:24:30.7488865Z | ^~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7489423Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Generator.h:11, 2023-07-13T14:24:30.7490143Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/CPUGeneratorImpl.h:3, 2023-07-13T14:24:30.7490806Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Context.h:3, 2023-07-13T14:24:30.7491398Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/ATen.h:7, 2023-07-13T14:24:30.7492037Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/types.h:3, 2023-07-13T14:24:30.7492477Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:3, 2023-07-13T14:24:30.7492880Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:30.7493341Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-07-13T14:24:30.7494225Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:350:39: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:30.7494963Z 350 | get_supported_channels(codec->channel_layouts)); 2023-07-13T14:24:30.7495649Z | ^~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7496272Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-07-13T14:24:30.7496787Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:30.7497201Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:30.7497669Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-07-13T14:24:30.7498359Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-07-13T14:24:30.7498971Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-07-13T14:24:30.7499430Z | ^~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7500229Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:354:15: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:30.7500843Z 354 | if (!codec->channel_layouts) { 2023-07-13T14:24:30.7501159Z | ^~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7501735Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-07-13T14:24:30.7502244Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:30.7502669Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:30.7503124Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-07-13T14:24:30.7503801Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-07-13T14:24:30.7504568Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-07-13T14:24:30.7505024Z | ^~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7505789Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:354:15: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:30.7506391Z 354 | if (!codec->channel_layouts) { 2023-07-13T14:24:30.7506699Z | ^~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7507257Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-07-13T14:24:30.7507736Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:30.7508167Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:30.7508578Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-07-13T14:24:30.7509193Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-07-13T14:24:30.7509751Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-07-13T14:24:30.7510190Z | ^~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7510942Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:354:15: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:30.7511678Z 354 | if (!codec->channel_layouts) { 2023-07-13T14:24:30.7511980Z | ^~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7512514Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-07-13T14:24:30.7513006Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:30.7513407Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:30.7513827Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-07-13T14:24:30.7514599Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-07-13T14:24:30.7515153Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-07-13T14:24:30.7515569Z | ^~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7516320Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:359:36: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:30.7516981Z 359 | for (const uint64_t* it = codec->channel_layouts; *it; ++it) { 2023-07-13T14:24:30.7517350Z | ^~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7517956Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-07-13T14:24:30.7518697Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:30.7519110Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:30.7519575Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-07-13T14:24:30.7520232Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-07-13T14:24:30.7520877Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-07-13T14:24:30.7521310Z | ^~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7522081Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:359:36: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:30.7522768Z 359 | for (const uint64_t* it = codec->channel_layouts; *it; ++it) { 2023-07-13T14:24:30.7523477Z | ^~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7524077Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-07-13T14:24:30.7524571Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:30.7524992Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:30.7525449Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-07-13T14:24:30.7526122Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-07-13T14:24:30.7526700Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-07-13T14:24:30.7527150Z | ^~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7527931Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:359:36: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:30.7528675Z 359 | for (const uint64_t* it = codec->channel_layouts; *it; ++it) { 2023-07-13T14:24:30.7529051Z | ^~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7529650Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-07-13T14:24:30.7530151Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:30.7530579Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:30.7531047Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-07-13T14:24:30.7531711Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-07-13T14:24:30.7532313Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-07-13T14:24:30.7532776Z | ^~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7533778Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:365:17: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:30.7720282Z 365 | return codec->channel_layouts[0]; 2023-07-13T14:24:30.7720641Z | ^~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7721252Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-07-13T14:24:30.7721793Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:30.7722242Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:30.7722745Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-07-13T14:24:30.7723478Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-07-13T14:24:30.7724178Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-07-13T14:24:30.7724610Z | ^~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7725473Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:365:17: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:30.7726109Z 365 | return codec->channel_layouts[0]; 2023-07-13T14:24:30.7726404Z | ^~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7726982Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-07-13T14:24:30.7727452Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:30.7727849Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:30.7728278Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-07-13T14:24:30.7729245Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-07-13T14:24:30.7731154Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-07-13T14:24:30.7731592Z | ^~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7732374Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:365:17: warning: ‘AVCodec::channel_layouts’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:30.7732960Z 365 | return codec->channel_layouts[0]; 2023-07-13T14:24:30.7733278Z | ^~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7733829Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:40, 2023-07-13T14:24:30.7734307Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:30.7734762Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:30.7735273Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-07-13T14:24:30.7735926Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/codec.h:214:21: note: declared here 2023-07-13T14:24:30.7736504Z 214 | const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0 2023-07-13T14:24:30.7736932Z | ^~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7737926Z /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-07-13T14:24:30.7739107Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:377:14: warning: ‘AVCodecContext::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:30.7739855Z 377 | codec_ctx->channels = av_get_channel_layout_nb_channels(channel_layout); 2023-07-13T14:24:30.7740538Z | ^~~~~~~~ 2023-07-13T14:24:30.7740956Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:30.7741410Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:30.7741869Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-07-13T14:24:30.7742568Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:1042:9: note: declared here 2023-07-13T14:24:30.7743012Z 1042 | int channels; 2023-07-13T14:24:30.7743290Z | ^~~~~~~~ 2023-07-13T14:24:30.7744077Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:377:14: warning: ‘AVCodecContext::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:30.7744804Z 377 | codec_ctx->channels = av_get_channel_layout_nb_channels(channel_layout); 2023-07-13T14:24:30.7745210Z | ^~~~~~~~ 2023-07-13T14:24:30.7745607Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:30.7746087Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:30.7746570Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-07-13T14:24:30.7747282Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:1042:9: note: declared here 2023-07-13T14:24:30.7747738Z 1042 | int channels; 2023-07-13T14:24:30.7748029Z | ^~~~~~~~ 2023-07-13T14:24:30.7748815Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:377:14: warning: ‘AVCodecContext::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:30.7749553Z 377 | codec_ctx->channels = av_get_channel_layout_nb_channels(channel_layout); 2023-07-13T14:24:30.7749949Z | ^~~~~~~~ 2023-07-13T14:24:30.7750582Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:30.7751014Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:30.7751632Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-07-13T14:24:30.7752354Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:1042:9: note: declared here 2023-07-13T14:24:30.7752799Z 1042 | int channels; 2023-07-13T14:24:30.7753064Z | ^~~~~~~~ 2023-07-13T14:24:30.7753795Z /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-07-13T14:24:30.7754542Z 377 | codec_ctx->channels = av_get_channel_layout_nb_channels(channel_layout); 2023-07-13T14:24:30.7754981Z | ^ 2023-07-13T14:24:30.7755638Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:33, 2023-07-13T14:24:30.7756353Z from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:30.7756860Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:30.7757292Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:30.7757765Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-07-13T14:24:30.7758667Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/channel_layout.h:474:5: note: declared here 2023-07-13T14:24:30.7759139Z 474 | int av_get_channel_layout_nb_channels(uint64_t channel_layout); 2023-07-13T14:24:30.7759502Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7764764Z /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-07-13T14:24:30.7765911Z 377 | codec_ctx->channels = av_get_channel_layout_nb_channels(channel_layout); 2023-07-13T14:24:30.7766327Z | ^ 2023-07-13T14:24:30.7766951Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:33, 2023-07-13T14:24:30.7767644Z from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:30.7768107Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:30.7768516Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:30.7768968Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-07-13T14:24:30.7769668Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/channel_layout.h:474:5: note: declared here 2023-07-13T14:24:30.7770208Z 474 | int av_get_channel_layout_nb_channels(uint64_t channel_layout); 2023-07-13T14:24:30.7770573Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7771432Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:378:14: warning: ‘AVCodecContext::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:30.7772102Z 378 | codec_ctx->channel_layout = channel_layout; 2023-07-13T14:24:30.7772429Z | ^~~~~~~~~~~~~~ 2023-07-13T14:24:30.7772804Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:30.7773237Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:30.7773693Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-07-13T14:24:30.7774401Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:1100:14: note: declared here 2023-07-13T14:24:30.7775124Z 1100 | uint64_t channel_layout; 2023-07-13T14:24:30.7775441Z | ^~~~~~~~~~~~~~ 2023-07-13T14:24:30.7776229Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:378:14: warning: ‘AVCodecContext::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:30.7776899Z 378 | codec_ctx->channel_layout = channel_layout; 2023-07-13T14:24:30.7777249Z | ^~~~~~~~~~~~~~ 2023-07-13T14:24:30.7777634Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:30.7778093Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:30.7778565Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-07-13T14:24:30.7779277Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:1100:14: note: declared here 2023-07-13T14:24:30.7779881Z 1100 | uint64_t channel_layout; 2023-07-13T14:24:30.7780171Z | ^~~~~~~~~~~~~~ 2023-07-13T14:24:30.7780987Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:378:14: warning: ‘AVCodecContext::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:30.7781627Z 378 | codec_ctx->channel_layout = channel_layout; 2023-07-13T14:24:30.7781963Z | ^~~~~~~~~~~~~~ 2023-07-13T14:24:30.7782349Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:30.7782801Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:30.7783275Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-07-13T14:24:30.7783958Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:1100:14: note: declared here 2023-07-13T14:24:30.7784406Z 1100 | uint64_t channel_layout; 2023-07-13T14:24:30.7784724Z | ^~~~~~~~~~~~~~ 2023-07-13T14:24:30.7785794Z /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-07-13T14:24:30.7786864Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:702:10: warning: ‘AVFrame::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:30.7787501Z 702 | frame->channel_layout = channel_layout; 2023-07-13T14:24:30.7787832Z | ^~~~~~~~~~~~~~ 2023-07-13T14:24:30.7788407Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:30.7788905Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:30.7789333Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:30.7789795Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-07-13T14:24:30.7790551Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:524:14: note: declared here 2023-07-13T14:24:30.7791015Z 524 | uint64_t channel_layout; 2023-07-13T14:24:30.7791579Z | ^~~~~~~~~~~~~~ 2023-07-13T14:24:30.7792377Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:702:10: warning: ‘AVFrame::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:30.7793014Z 702 | frame->channel_layout = channel_layout; 2023-07-13T14:24:30.7793345Z | ^~~~~~~~~~~~~~ 2023-07-13T14:24:30.7793935Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:30.7794412Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:30.7794828Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:30.7795293Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-07-13T14:24:30.7796218Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:524:14: note: declared here 2023-07-13T14:24:30.7796662Z 524 | uint64_t channel_layout; 2023-07-13T14:24:30.7796964Z | ^~~~~~~~~~~~~~ 2023-07-13T14:24:30.7797739Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:702:10: warning: ‘AVFrame::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:30.7798638Z 702 | frame->channel_layout = channel_layout; 2023-07-13T14:24:30.7798978Z | ^~~~~~~~~~~~~~ 2023-07-13T14:24:30.7799555Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:30.7800074Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:30.7800531Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:30.7800998Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-07-13T14:24:30.7801643Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:524:14: note: declared here 2023-07-13T14:24:30.7802056Z 524 | uint64_t channel_layout; 2023-07-13T14:24:30.7802349Z | ^~~~~~~~~~~~~~ 2023-07-13T14:24:30.7803113Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:711:10: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:30.7803722Z 711 | frame->channels = num_channels; 2023-07-13T14:24:30.7804037Z | ^~~~~~~~ 2023-07-13T14:24:30.7804610Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:30.7805103Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:30.7805517Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:30.7805997Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-07-13T14:24:30.7806973Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:30.7807417Z 662 | int channels; 2023-07-13T14:24:30.7807682Z | ^~~~~~~~ 2023-07-13T14:24:30.7808464Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:711:10: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:30.7809032Z 711 | frame->channels = num_channels; 2023-07-13T14:24:30.7809342Z | ^~~~~~~~ 2023-07-13T14:24:30.7809922Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:30.7810419Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:30.7810833Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:30.7811317Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-07-13T14:24:30.7811986Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:30.7812400Z 662 | int channels; 2023-07-13T14:24:30.7812676Z | ^~~~~~~~ 2023-07-13T14:24:30.7813443Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:711:10: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:30.7814045Z 711 | frame->channels = num_channels; 2023-07-13T14:24:30.7814355Z | ^~~~~~~~ 2023-07-13T14:24:30.7814938Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:30.7815436Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:30.7815867Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:30.7816642Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-07-13T14:24:30.7817339Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:30.7817738Z 662 | int channels; 2023-07-13T14:24:30.7818004Z | ^~~~~~~~ 2023-07-13T14:24:30.7819520Z /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-07-13T14:24:30.7820935Z /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-07-13T14:24:30.7821611Z 769 | static_cast(av_get_default_channel_layout(src_num_channels)); 2023-07-13T14:24:30.7822041Z | ^ 2023-07-13T14:24:30.7822692Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:33, 2023-07-13T14:24:30.7823432Z from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:30.7823913Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:30.7824352Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:30.7824791Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-07-13T14:24:30.7825420Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/channel_layout.h:482:9: note: declared here 2023-07-13T14:24:30.7826088Z 482 | int64_t av_get_default_channel_layout(int nb_channels); 2023-07-13T14:24:30.7826453Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7827131Z /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-07-13T14:24:30.7827692Z 769 | static_cast(av_get_default_channel_layout(src_num_channels)); 2023-07-13T14:24:30.7828102Z | ^ 2023-07-13T14:24:30.7828674Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:33, 2023-07-13T14:24:30.7829313Z from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:30.7829794Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:30.7830205Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:30.7830644Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-07-13T14:24:30.7831296Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/channel_layout.h:482:9: note: declared here 2023-07-13T14:24:30.7831977Z 482 | int64_t av_get_default_channel_layout(int nb_channels); 2023-07-13T14:24:30.7832338Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-07-13T14:24:30.7832717Z /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp: In lambda function: 2023-07-13T14:24:32.2106089Z /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-07-13T14:24:32.2106704Z 789 | return static_cast(av_get_default_channel_layout(2)); 2023-07-13T14:24:32.2107405Z | ^ 2023-07-13T14:24:32.2107903Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:33, 2023-07-13T14:24:32.2108411Z from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:32.2108757Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:32.2109071Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:32.2109409Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-07-13T14:24:32.2109900Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/channel_layout.h:482:9: note: declared here 2023-07-13T14:24:32.2110268Z 482 | int64_t av_get_default_channel_layout(int nb_channels); 2023-07-13T14:24:32.2110538Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-07-13T14:24:32.2111070Z /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-07-13T14:24:32.2111716Z 789 | return static_cast(av_get_default_channel_layout(2)); 2023-07-13T14:24:32.2111997Z | ^ 2023-07-13T14:24:32.2112428Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:33, 2023-07-13T14:24:32.2112989Z from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:32.2113400Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:32.2113715Z from /work/torchaudio/csrc/ffmpeg/hw_context.h:3, 2023-07-13T14:24:32.2114055Z from /work/torchaudio/csrc/ffmpeg/stream_writer/encode_process.cpp:1: 2023-07-13T14:24:32.2114699Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/channel_layout.h:482:9: note: declared here 2023-07-13T14:24:32.2115064Z 482 | int64_t av_get_default_channel_layout(int nb_channels); 2023-07-13T14:24:32.2115328Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2023-07-13T14:24:32.2116982Z [103/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg6_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/post_process.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/post_process.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/post_process.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_reader/post_process.cpp 2023-07-13T14:24:32.2119063Z /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-07-13T14:24:32.2119822Z /work/torchaudio/csrc/ffmpeg/stream_reader/post_process.cpp:22:39: warning: ‘AVCodecContext::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:32.2120294Z 22 | channel_layout = codec_ctx->channel_layout]( 2023-07-13T14:24:32.2120577Z | ^~~~~~~~~~~~~~ 2023-07-13T14:24:32.2120856Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:32.2121205Z from /work/torchaudio/csrc/ffmpeg/stream_reader/buffer/chunked_buffer.h:2, 2023-07-13T14:24:32.2121713Z from /work/torchaudio/csrc/ffmpeg/stream_reader/post_process.cpp:1: 2023-07-13T14:24:32.2122198Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:1100:14: note: declared here 2023-07-13T14:24:32.2122769Z 1100 | uint64_t channel_layout; 2023-07-13T14:24:32.2123007Z | ^~~~~~~~~~~~~~ 2023-07-13T14:24:32.2123556Z /work/torchaudio/csrc/ffmpeg/stream_reader/post_process.cpp:22:39: warning: ‘AVCodecContext::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:32.2124399Z 22 | channel_layout = codec_ctx->channel_layout]( 2023-07-13T14:24:32.2124702Z | ^~~~~~~~~~~~~~ 2023-07-13T14:24:32.2125006Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:32.2125368Z from /work/torchaudio/csrc/ffmpeg/stream_reader/buffer/chunked_buffer.h:2, 2023-07-13T14:24:32.2125739Z from /work/torchaudio/csrc/ffmpeg/stream_reader/post_process.cpp:1: 2023-07-13T14:24:32.2126229Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:1100:14: note: declared here 2023-07-13T14:24:32.2126555Z 1100 | uint64_t channel_layout; 2023-07-13T14:24:32.2126766Z | ^~~~~~~~~~~~~~ 2023-07-13T14:24:32.2127319Z /work/torchaudio/csrc/ffmpeg/stream_reader/post_process.cpp:22:39: warning: ‘AVCodecContext::channel_layout’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:32.2127793Z 22 | channel_layout = codec_ctx->channel_layout]( 2023-07-13T14:24:32.2128078Z | ^~~~~~~~~~~~~~ 2023-07-13T14:24:32.2128358Z In file included from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:32.2128712Z from /work/torchaudio/csrc/ffmpeg/stream_reader/buffer/chunked_buffer.h:2, 2023-07-13T14:24:32.2129080Z from /work/torchaudio/csrc/ffmpeg/stream_reader/post_process.cpp:1: 2023-07-13T14:24:32.2129695Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:1100:14: note: declared here 2023-07-13T14:24:32.2130055Z 1100 | uint64_t channel_layout; 2023-07-13T14:24:32.2130312Z | ^~~~~~~~~~~~~~ 2023-07-13T14:24:32.2132939Z [104/156] /usr/local/cuda-11.8/bin/nvcc -forward-unknown-to-host-compiler -DINCLUDE_ALIGN -DINCLUDE_RIR -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_EXPORTS -I/work -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -DCUDA_HAS_FP16=1 -D__CUDA_NO_HALF_OPERATORS__ -D__CUDA_NO_HALF_CONVERSIONS__ -D__CUDA_NO_HALF2_OPERATORS__ -DONNX_NAMESPACE=onnx_c2 -gencode arch=compute_86,code=sm_86 -Xcudafe --diag_suppress=cc_clobber_ignored,--diag_suppress=set_but_not_used,--diag_suppress=field_without_dll_interface,--diag_suppress=base_class_has_different_dll_interface,--diag_suppress=dll_interface_conflict_none_assumed,--diag_suppress=dll_interface_conflict_dllexport_assumed,--diag_suppress=bad_friend_decl --expt-relaxed-constexpr --expt-extended-lambda -O3 -DNDEBUG -std=c++17 -Xcompiler=-fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/iir_cuda.cu.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/iir_cuda.cu.o.d -x cu -c /work/torchaudio/csrc/iir_cuda.cu -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/iir_cuda.cu.o 2023-07-13T14:24:32.2134703Z /work/torchaudio/csrc/iir_cuda.cu: In lambda function: 2023-07-13T14:24:32.2135645Z /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-07-13T14:24:32.2136362Z 67 | AT_DISPATCH_FLOATING_TYPES( 2023-07-13T14:24:32.2136654Z | ^ 2023-07-13T14:24:32.2137087Z /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:254:1: note: declared here 2023-07-13T14:24:32.2137499Z 254 | GenericPackedTensorAccessor packed_accessor() const & { 2023-07-13T14:24:32.2137794Z | ^ ~~~~~~~~~~~~~ 2023-07-13T14:24:32.2138665Z /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-07-13T14:24:32.2139290Z 67 | AT_DISPATCH_FLOATING_TYPES( 2023-07-13T14:24:32.2139599Z | ^ 2023-07-13T14:24:32.6849716Z /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:254:1: note: declared here 2023-07-13T14:24:32.6850349Z 254 | GenericPackedTensorAccessor packed_accessor() const & { 2023-07-13T14:24:32.6850808Z | ^ ~~~~~~~~~~~~~ 2023-07-13T14:24:32.6852556Z /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-07-13T14:24:32.6853432Z 67 | AT_DISPATCH_FLOATING_TYPES( 2023-07-13T14:24:32.6853896Z | ^ 2023-07-13T14:24:32.6854631Z /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:254:1: note: declared here 2023-07-13T14:24:32.6855209Z 254 | GenericPackedTensorAccessor packed_accessor() const & { 2023-07-13T14:24:32.6855621Z | ^ ~~~~~~~~~~~~~ 2023-07-13T14:24:32.6855950Z /work/torchaudio/csrc/iir_cuda.cu: In lambda function: 2023-07-13T14:24:32.6857257Z /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-07-13T14:24:32.6858101Z 67 | AT_DISPATCH_FLOATING_TYPES( 2023-07-13T14:24:32.6858479Z | ^ 2023-07-13T14:24:32.6859076Z /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:254:1: note: declared here 2023-07-13T14:24:32.6859624Z 254 | GenericPackedTensorAccessor packed_accessor() const & { 2023-07-13T14:24:32.6860037Z | ^ ~~~~~~~~~~~~~ 2023-07-13T14:24:32.6861578Z /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-07-13T14:24:32.6862459Z 67 | AT_DISPATCH_FLOATING_TYPES( 2023-07-13T14:24:32.6862870Z | ^ 2023-07-13T14:24:32.6863513Z /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:254:1: note: declared here 2023-07-13T14:24:32.6864065Z 254 | GenericPackedTensorAccessor packed_accessor() const & { 2023-07-13T14:24:32.6864480Z | ^ ~~~~~~~~~~~~~ 2023-07-13T14:24:32.6865700Z /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-07-13T14:24:32.6866513Z 67 | AT_DISPATCH_FLOATING_TYPES( 2023-07-13T14:24:32.6866951Z | ^ 2023-07-13T14:24:32.6867586Z /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:254:1: note: declared here 2023-07-13T14:24:32.6868303Z 254 | GenericPackedTensorAccessor packed_accessor() const & { 2023-07-13T14:24:32.6868724Z | ^ ~~~~~~~~~~~~~ 2023-07-13T14:24:32.6871048Z [105/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg6_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_writer/stream_writer.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_writer/stream_writer.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_writer/stream_writer.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp 2023-07-13T14:24:32.6873007Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/util/Exception.h:4, 2023-07-13T14:24:32.6873664Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Generator.h:11, 2023-07-13T14:24:32.6874320Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/CPUGeneratorImpl.h:3, 2023-07-13T14:24:32.6874942Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Context.h:3, 2023-07-13T14:24:32.6875526Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/ATen.h:7, 2023-07-13T14:24:32.6876205Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/types.h:3, 2023-07-13T14:24:32.6876752Z from /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.h:3, 2023-07-13T14:24:32.6877437Z from /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp:1: 2023-07-13T14:24:32.6879265Z /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-07-13T14:24:32.6880573Z /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-07-13T14:24:32.6881302Z 69 | format_ctx->nb_streams == num_output_streams(), 2023-07-13T14:24:32.6881679Z | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ 2023-07-13T14:24:32.6883253Z /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-07-13T14:24:32.6884695Z /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-07-13T14:24:32.6885395Z 105 | format_ctx->nb_streams == num_output_streams(), 2023-07-13T14:24:32.6885763Z | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ 2023-07-13T14:24:32.6887483Z /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-07-13T14:24:32.6888895Z /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-07-13T14:24:32.6889572Z 149 | format_ctx->nb_streams == num_output_streams(), 2023-07-13T14:24:34.1362992Z | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ 2023-07-13T14:24:34.1375635Z /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-07-13T14:24:34.1376999Z /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-07-13T14:24:34.1377539Z 186 | format_ctx->nb_streams == num_output_streams(), 2023-07-13T14:24:34.1377822Z | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ 2023-07-13T14:24:34.1378450Z /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.cpp: In member function ‘void torchaudio::io::StreamWriter::open(const c10::optional, std::basic_string > >&)’: 2023-07-13T14:24:34.1379658Z /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-07-13T14:24:34.1380137Z 223 | format_ctx->nb_streams == num_output_streams(), 2023-07-13T14:24:34.1380463Z | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ 2023-07-13T14:24:34.1382205Z [106/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg6_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_writer/tensor_converter.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_writer/tensor_converter.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_writer/tensor_converter.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp 2023-07-13T14:24:34.1383526Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/util/Exception.h:4, 2023-07-13T14:24:34.1384019Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Generator.h:11, 2023-07-13T14:24:34.1384552Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/CPUGeneratorImpl.h:3, 2023-07-13T14:24:34.1385005Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Context.h:3, 2023-07-13T14:24:34.1385456Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/ATen.h:7, 2023-07-13T14:24:34.1386063Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/types.h:3, 2023-07-13T14:24:34.1386464Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:3, 2023-07-13T14:24:34.1386851Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-07-13T14:24:34.1387517Z /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-07-13T14:24:34.1388246Z /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:33:28: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:34.1388672Z 33 | t.size(1) == buffer->channels, 2023-07-13T14:24:34.1388912Z | ^~~~~~~~ 2023-07-13T14:24:34.1389331Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:34.1389695Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:34.1390045Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:4, 2023-07-13T14:24:34.1390434Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-07-13T14:24:34.1390938Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:34.1391280Z 662 | int channels; 2023-07-13T14:24:34.1391623Z | ^~~~~~~~ 2023-07-13T14:24:34.1392020Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/util/Exception.h:4, 2023-07-13T14:24:34.1392498Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Generator.h:11, 2023-07-13T14:24:34.1393060Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/CPUGeneratorImpl.h:3, 2023-07-13T14:24:34.1393576Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Context.h:3, 2023-07-13T14:24:34.1394017Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/ATen.h:7, 2023-07-13T14:24:34.1394545Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/types.h:3, 2023-07-13T14:24:34.1394925Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:3, 2023-07-13T14:24:34.1395283Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-07-13T14:24:34.1395869Z /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:33:28: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:34.1396310Z 33 | t.size(1) == buffer->channels, 2023-07-13T14:24:34.1396551Z | ^~~~~~~~ 2023-07-13T14:24:34.1397012Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:34.1397385Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:34.1397750Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:4, 2023-07-13T14:24:34.1399101Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-07-13T14:24:34.1399596Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:34.1399907Z 662 | int channels; 2023-07-13T14:24:34.1400140Z | ^~~~~~~~ 2023-07-13T14:24:34.1400563Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/util/Exception.h:4, 2023-07-13T14:24:34.1401096Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Generator.h:11, 2023-07-13T14:24:34.1401685Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/CPUGeneratorImpl.h:3, 2023-07-13T14:24:34.1402154Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Context.h:3, 2023-07-13T14:24:34.1402592Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/ATen.h:7, 2023-07-13T14:24:34.1403063Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/types.h:3, 2023-07-13T14:24:34.1403443Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:3, 2023-07-13T14:24:34.1403849Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-07-13T14:24:34.1404468Z /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:33:28: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:34.1404942Z 33 | t.size(1) == buffer->channels, 2023-07-13T14:24:34.1405182Z | ^~~~~~~~ 2023-07-13T14:24:34.1405592Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:34.1405961Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:34.1406286Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:4, 2023-07-13T14:24:34.1406651Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-07-13T14:24:34.1407138Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:34.1407485Z 662 | int channels; 2023-07-13T14:24:34.1407683Z | ^~~~~~~~ 2023-07-13T14:24:34.1408120Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Generator.h:11, 2023-07-13T14:24:34.1408750Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/CPUGeneratorImpl.h:3, 2023-07-13T14:24:34.1409199Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Context.h:3, 2023-07-13T14:24:34.1409634Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/ATen.h:7, 2023-07-13T14:24:34.1410106Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/types.h:3, 2023-07-13T14:24:34.1410532Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:3, 2023-07-13T14:24:34.1410899Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-07-13T14:24:34.1411600Z /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:35:15: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:34.1673916Z 35 | buffer->channels, 2023-07-13T14:24:34.1674283Z | ^~~~~~~~ 2023-07-13T14:24:34.1676232Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:34.1676832Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:34.1677357Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:4, 2023-07-13T14:24:34.1677910Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-07-13T14:24:34.1679151Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:34.1680747Z 662 | int channels; 2023-07-13T14:24:34.1681089Z | ^~~~~~~~ 2023-07-13T14:24:34.1681785Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Generator.h:11, 2023-07-13T14:24:34.1682955Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/CPUGeneratorImpl.h:3, 2023-07-13T14:24:34.1683985Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Context.h:3, 2023-07-13T14:24:34.1684518Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/ATen.h:7, 2023-07-13T14:24:34.1684981Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/types.h:3, 2023-07-13T14:24:34.1685399Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:3, 2023-07-13T14:24:34.1685765Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-07-13T14:24:34.1686461Z /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:35:15: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:34.1686857Z 35 | buffer->channels, 2023-07-13T14:24:34.1687088Z | ^~~~~~~~ 2023-07-13T14:24:34.1687511Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:34.1687880Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:34.1688203Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:4, 2023-07-13T14:24:34.1688562Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-07-13T14:24:34.1689031Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:34.1689333Z 662 | int channels; 2023-07-13T14:24:34.1689538Z | ^~~~~~~~ 2023-07-13T14:24:34.1689929Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Generator.h:11, 2023-07-13T14:24:34.1690418Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/CPUGeneratorImpl.h:3, 2023-07-13T14:24:34.1691033Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Context.h:3, 2023-07-13T14:24:34.1691515Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/ATen.h:7, 2023-07-13T14:24:34.1691988Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/types.h:3, 2023-07-13T14:24:34.1692370Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:3, 2023-07-13T14:24:34.1692719Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-07-13T14:24:34.1693306Z /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:35:15: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:34.1693713Z 35 | buffer->channels, 2023-07-13T14:24:34.1693922Z | ^~~~~~~~ 2023-07-13T14:24:34.1694324Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:34.1694702Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:34.1695038Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:4, 2023-07-13T14:24:34.1695386Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-07-13T14:24:34.1695850Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:34.1696150Z 662 | int channels; 2023-07-13T14:24:34.1696350Z | ^~~~~~~~ 2023-07-13T14:24:34.1696740Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Generator.h:11, 2023-07-13T14:24:34.1697221Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/CPUGeneratorImpl.h:3, 2023-07-13T14:24:34.1697674Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Context.h:3, 2023-07-13T14:24:34.1698162Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/ATen.h:7, 2023-07-13T14:24:34.1698645Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/types.h:3, 2023-07-13T14:24:34.1699032Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:3, 2023-07-13T14:24:34.1699378Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-07-13T14:24:34.1699970Z /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp: In function ‘void torchaudio::io::{anonymous}::convert_func_(const at::Tensor&, AVFrame*)’: 2023-07-13T14:24:34.1700626Z /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:43:61: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:34.1701117Z 43 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(chunk.size(1) == buffer->channels); 2023-07-13T14:24:34.1701437Z | ^~~~~~~~ 2023-07-13T14:24:34.1701852Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:34.1702279Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:34.1702689Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:4, 2023-07-13T14:24:34.1703137Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-07-13T14:24:34.1703777Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:34.1704179Z 662 | int channels; 2023-07-13T14:24:34.1704454Z | ^~~~~~~~ 2023-07-13T14:24:34.1704872Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Generator.h:11, 2023-07-13T14:24:34.1705480Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/CPUGeneratorImpl.h:3, 2023-07-13T14:24:34.1705929Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Context.h:3, 2023-07-13T14:24:34.1706359Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/ATen.h:7, 2023-07-13T14:24:34.1706826Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/types.h:3, 2023-07-13T14:24:34.1707200Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:3, 2023-07-13T14:24:34.1707557Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-07-13T14:24:34.1708153Z /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:43:61: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:34.1708639Z 43 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(chunk.size(1) == buffer->channels); 2023-07-13T14:24:34.1708949Z | ^~~~~~~~ 2023-07-13T14:24:34.1709371Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:34.1709737Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:34.1710066Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:4, 2023-07-13T14:24:34.1710414Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-07-13T14:24:34.1710881Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:34.1711190Z 662 | int channels; 2023-07-13T14:24:34.1711629Z | ^~~~~~~~ 2023-07-13T14:24:34.1712020Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Generator.h:11, 2023-07-13T14:24:34.1712586Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/CPUGeneratorImpl.h:3, 2023-07-13T14:24:34.1713045Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Context.h:3, 2023-07-13T14:24:34.1713469Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/ATen.h:7, 2023-07-13T14:24:34.1713942Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/types.h:3, 2023-07-13T14:24:34.1714329Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:3, 2023-07-13T14:24:34.1714678Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-07-13T14:24:34.1715263Z /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:43:61: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:34.1715760Z 43 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(chunk.size(1) == buffer->channels); 2023-07-13T14:24:34.1716071Z | ^~~~~~~~ 2023-07-13T14:24:34.1716484Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:34.1716852Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:34.1717182Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.h:4, 2023-07-13T14:24:34.1717539Z from /work/torchaudio/csrc/ffmpeg/stream_writer/tensor_converter.cpp:1: 2023-07-13T14:24:38.9359965Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:38.9360482Z 662 | int channels; 2023-07-13T14:24:38.9360810Z | ^~~~~~~~ 2023-07-13T14:24:38.9362834Z [107/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_CUDA -Dpybind11_prefixctc_EXPORTS -I/work -I/work/ci_env/include/python3.10 -I/work/ci_env/lib/python3.10/site-packages/torch/include -I/work/torchaudio/csrc/cuctc -I/usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -fvisibility=default -MD -MT torchaudio/csrc/cuctc/CMakeFiles/pybind11_prefixctc.dir/src/python_binding.cpp.o -MF torchaudio/csrc/cuctc/CMakeFiles/pybind11_prefixctc.dir/src/python_binding.cpp.o.d -o torchaudio/csrc/cuctc/CMakeFiles/pybind11_prefixctc.dir/src/python_binding.cpp.o -c /work/torchaudio/csrc/cuctc/src/python_binding.cpp 2023-07-13T14:24:38.9369031Z [108/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg6_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/compat.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/compat.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/compat.cpp.o -c /work/torchaudio/csrc/ffmpeg/compat.cpp 2023-07-13T14:24:38.9371546Z [109/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_ffmpeg6_EXPORTS -I/work -I/work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/conversion.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/conversion.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/conversion.cpp.o -c /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp 2023-07-13T14:24:38.9372779Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-07-13T14:24:38.9373251Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-07-13T14:24:38.9373710Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-07-13T14:24:38.9374139Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-07-13T14:24:38.9374609Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-07-13T14:24:38.9375095Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-07-13T14:24:38.9375618Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-07-13T14:24:38.9376107Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-07-13T14:24:38.9376599Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-07-13T14:24:38.9377101Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-07-13T14:24:38.9377596Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-07-13T14:24:38.9377973Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-07-13T14:24:38.9378688Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp: In member function ‘void torchaudio::io::AudioConverter::convert(const AVFrame*, at::Tensor&)’: 2023-07-13T14:24:38.9379468Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:38.9379955Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-07-13T14:24:38.9380254Z | ^~~~~~~~ 2023-07-13T14:24:38.9380668Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:38.9381038Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:38.9381367Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-07-13T14:24:38.9381707Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-07-13T14:24:38.9382176Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:38.9382496Z 662 | int channels; 2023-07-13T14:24:38.9382700Z | ^~~~~~~~ 2023-07-13T14:24:38.9383075Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-07-13T14:24:38.9383549Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-07-13T14:24:38.9384014Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-07-13T14:24:38.9384448Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-07-13T14:24:38.9384916Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-07-13T14:24:38.9385399Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-07-13T14:24:38.9385986Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-07-13T14:24:38.9386453Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-07-13T14:24:38.9386948Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-07-13T14:24:38.9387443Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-07-13T14:24:38.9387933Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-07-13T14:24:38.9388303Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-07-13T14:24:38.9388881Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:38.9389370Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-07-13T14:24:38.9389676Z | ^~~~~~~~ 2023-07-13T14:24:38.9390094Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:38.9390462Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:38.9390791Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-07-13T14:24:38.9391128Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-07-13T14:24:38.9391756Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:38.9392061Z 662 | int channels; 2023-07-13T14:24:38.9392264Z | ^~~~~~~~ 2023-07-13T14:24:38.9392635Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-07-13T14:24:38.9393201Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-07-13T14:24:38.9393655Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-07-13T14:24:38.9394086Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-07-13T14:24:38.9394553Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-07-13T14:24:38.9395036Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-07-13T14:24:38.9395515Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-07-13T14:24:38.9395985Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-07-13T14:24:38.9396486Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-07-13T14:24:38.9396981Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-07-13T14:24:38.9397469Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-07-13T14:24:38.9497902Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-07-13T14:24:38.9508235Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:38.9509118Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-07-13T14:24:38.9510388Z | ^~~~~~~~ 2023-07-13T14:24:38.9511112Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:38.9512368Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:38.9512905Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-07-13T14:24:38.9513386Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-07-13T14:24:38.9513982Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:38.9514371Z 662 | int channels; 2023-07-13T14:24:38.9514636Z | ^~~~~~~~ 2023-07-13T14:24:38.9515095Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-07-13T14:24:38.9515582Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-07-13T14:24:38.9516067Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-07-13T14:24:38.9516580Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-07-13T14:24:38.9517062Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-07-13T14:24:38.9517577Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-07-13T14:24:38.9518309Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-07-13T14:24:38.9518816Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-07-13T14:24:38.9519301Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-07-13T14:24:38.9519938Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-07-13T14:24:38.9520819Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-07-13T14:24:38.9521315Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-07-13T14:24:38.9522369Z /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-07-13T14:24:38.9523046Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:75:16: required from here 2023-07-13T14:24:38.9523654Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:38.9524125Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-07-13T14:24:38.9524425Z | ~~~~~^~~~~~~~ 2023-07-13T14:24:38.9524844Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:38.9525203Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:38.9525521Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-07-13T14:24:38.9525868Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-07-13T14:24:38.9526322Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:38.9526621Z 662 | int channels; 2023-07-13T14:24:38.9526820Z | ^~~~~~~~ 2023-07-13T14:24:38.9527216Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-07-13T14:24:38.9527728Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-07-13T14:24:38.9528422Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-07-13T14:24:38.9528973Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-07-13T14:24:38.9529494Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-07-13T14:24:38.9529999Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-07-13T14:24:38.9530516Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-07-13T14:24:38.9531046Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-07-13T14:24:38.9531533Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-07-13T14:24:38.9532132Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-07-13T14:24:38.9532976Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-07-13T14:24:38.9533410Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-07-13T14:24:38.9534009Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:38.9534487Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-07-13T14:24:38.9534778Z | ~~~~~^~~~~~~~ 2023-07-13T14:24:38.9535189Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:38.9535668Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:38.9535995Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-07-13T14:24:38.9536333Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-07-13T14:24:38.9536791Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:38.9537087Z 662 | int channels; 2023-07-13T14:24:38.9537287Z | ^~~~~~~~ 2023-07-13T14:24:38.9537651Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-07-13T14:24:38.9538113Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-07-13T14:24:38.9538564Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-07-13T14:24:38.9538996Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-07-13T14:24:38.9539465Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-07-13T14:24:38.9539940Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-07-13T14:24:38.9540407Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-07-13T14:24:38.9540893Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-07-13T14:24:38.9541367Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-07-13T14:24:38.9541859Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-07-13T14:24:38.9542342Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-07-13T14:24:38.9542785Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-07-13T14:24:38.9543410Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:38.9543886Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-07-13T14:24:38.9544178Z | ~~~~~^~~~~~~~ 2023-07-13T14:24:38.9544589Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:38.9544952Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:38.9545274Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-07-13T14:24:38.9545620Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-07-13T14:24:38.9546089Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:38.9546387Z 662 | int channels; 2023-07-13T14:24:38.9546588Z | ^~~~~~~~ 2023-07-13T14:24:38.9546956Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-07-13T14:24:38.9547424Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-07-13T14:24:38.9547877Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-07-13T14:24:38.9548314Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-07-13T14:24:38.9548771Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-07-13T14:24:38.9647026Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-07-13T14:24:38.9651892Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-07-13T14:24:38.9653137Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-07-13T14:24:38.9653904Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-07-13T14:24:38.9654647Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-07-13T14:24:38.9655403Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-07-13T14:24:38.9655946Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-07-13T14:24:38.9657148Z /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-07-13T14:24:38.9657953Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:76:16: required from here 2023-07-13T14:24:38.9658811Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:38.9659483Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-07-13T14:24:38.9659879Z | ~~~~~^~~~~~~~ 2023-07-13T14:24:38.9660504Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:38.9661007Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:38.9661449Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-07-13T14:24:38.9662177Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-07-13T14:24:38.9662938Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:38.9663359Z 662 | int channels; 2023-07-13T14:24:38.9663627Z | ^~~~~~~~ 2023-07-13T14:24:38.9664148Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-07-13T14:24:38.9664835Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-07-13T14:24:38.9665503Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-07-13T14:24:38.9666124Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-07-13T14:24:38.9666808Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-07-13T14:24:38.9667557Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-07-13T14:24:38.9668261Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-07-13T14:24:38.9668969Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-07-13T14:24:38.9669712Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-07-13T14:24:38.9670549Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-07-13T14:24:38.9671416Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-07-13T14:24:38.9671976Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-07-13T14:24:38.9673111Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:38.9673817Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-07-13T14:24:38.9674211Z | ~~~~~^~~~~~~~ 2023-07-13T14:24:38.9674808Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:38.9675324Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:38.9675774Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-07-13T14:24:38.9676265Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-07-13T14:24:38.9676903Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:38.9677341Z 662 | int channels; 2023-07-13T14:24:38.9677642Z | ^~~~~~~~ 2023-07-13T14:24:38.9678421Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-07-13T14:24:38.9679059Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-07-13T14:24:38.9679696Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-07-13T14:24:38.9680611Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-07-13T14:24:38.9681299Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-07-13T14:24:38.9682002Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-07-13T14:24:38.9682748Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-07-13T14:24:38.9683725Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-07-13T14:24:38.9684457Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-07-13T14:24:38.9685197Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-07-13T14:24:38.9685945Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-07-13T14:24:38.9686493Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-07-13T14:24:38.9687368Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:38.9688083Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-07-13T14:24:38.9688538Z | ~~~~~^~~~~~~~ 2023-07-13T14:24:38.9689181Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:38.9689700Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:38.9690151Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-07-13T14:24:38.9690655Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-07-13T14:24:38.9691309Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:38.9691749Z 662 | int channels; 2023-07-13T14:24:38.9692052Z | ^~~~~~~~ 2023-07-13T14:24:38.9692628Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-07-13T14:24:38.9693567Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-07-13T14:24:38.9694275Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-07-13T14:24:38.9694947Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-07-13T14:24:38.9695621Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-07-13T14:24:38.9696319Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-07-13T14:24:38.9697025Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-07-13T14:24:38.9697755Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-07-13T14:24:38.9698488Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-07-13T14:24:38.9699246Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-07-13T14:24:38.9699966Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-07-13T14:24:38.9700498Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-07-13T14:24:38.9701608Z /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-07-13T14:24:38.9702390Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:77:16: required from here 2023-07-13T14:24:38.9703303Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:38.9704201Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-07-13T14:24:38.9747007Z | ~~~~~^~~~~~~~ 2023-07-13T14:24:38.9747902Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:38.9749153Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:38.9749738Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-07-13T14:24:38.9750324Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-07-13T14:24:38.9752474Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:38.9753014Z 662 | int channels; 2023-07-13T14:24:38.9753342Z | ^~~~~~~~ 2023-07-13T14:24:38.9753920Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-07-13T14:24:38.9754639Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-07-13T14:24:38.9755323Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-07-13T14:24:38.9756004Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-07-13T14:24:38.9756693Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-07-13T14:24:38.9761519Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-07-13T14:24:38.9762101Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-07-13T14:24:38.9762933Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-07-13T14:24:38.9763435Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-07-13T14:24:38.9763935Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-07-13T14:24:38.9764427Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-07-13T14:24:38.9764805Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-07-13T14:24:38.9765455Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:38.9765944Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-07-13T14:24:38.9766240Z | ~~~~~^~~~~~~~ 2023-07-13T14:24:38.9766675Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:38.9767041Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:38.9767373Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-07-13T14:24:38.9767720Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-07-13T14:24:38.9768178Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:38.9768519Z 662 | int channels; 2023-07-13T14:24:38.9768769Z | ^~~~~~~~ 2023-07-13T14:24:38.9769151Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-07-13T14:24:38.9769729Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-07-13T14:24:38.9770477Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-07-13T14:24:38.9771070Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-07-13T14:24:38.9771660Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-07-13T14:24:38.9772339Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-07-13T14:24:38.9772910Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-07-13T14:24:38.9773464Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-07-13T14:24:38.9774085Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-07-13T14:24:38.9774623Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-07-13T14:24:38.9775180Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-07-13T14:24:38.9775627Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-07-13T14:24:38.9776219Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:38.9776753Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-07-13T14:24:38.9777127Z | ~~~~~^~~~~~~~ 2023-07-13T14:24:38.9777571Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:38.9777937Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:38.9778373Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-07-13T14:24:38.9778851Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-07-13T14:24:38.9779331Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:38.9779634Z 662 | int channels; 2023-07-13T14:24:38.9779839Z | ^~~~~~~~ 2023-07-13T14:24:38.9780307Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-07-13T14:24:38.9780819Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-07-13T14:24:38.9781278Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-07-13T14:24:38.9781744Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-07-13T14:24:38.9782345Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-07-13T14:24:38.9782839Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-07-13T14:24:38.9783329Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-07-13T14:24:38.9783914Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-07-13T14:24:38.9784406Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-07-13T14:24:38.9784896Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-07-13T14:24:38.9785493Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-07-13T14:24:38.9785885Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-07-13T14:24:38.9786760Z /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-07-13T14:24:38.9787397Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:78:16: required from here 2023-07-13T14:24:38.9787989Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:38.9788481Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-07-13T14:24:38.9788855Z | ~~~~~^~~~~~~~ 2023-07-13T14:24:38.9789286Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:38.9789677Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:38.9790004Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-07-13T14:24:38.9790423Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-07-13T14:24:38.9790912Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:38.9791210Z 662 | int channels; 2023-07-13T14:24:38.9791560Z | ^~~~~~~~ 2023-07-13T14:24:38.9792003Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-07-13T14:24:38.9792526Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-07-13T14:24:38.9793038Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-07-13T14:24:38.9793575Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-07-13T14:24:38.9794133Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-07-13T14:24:38.9794622Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-07-13T14:24:38.9795151Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-07-13T14:24:38.9881656Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-07-13T14:24:38.9882470Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-07-13T14:24:38.9883308Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-07-13T14:24:38.9884099Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-07-13T14:24:38.9885779Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-07-13T14:24:38.9886861Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:38.9887556Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-07-13T14:24:38.9887964Z | ~~~~~^~~~~~~~ 2023-07-13T14:24:38.9888574Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:38.9889135Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:38.9889587Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-07-13T14:24:38.9890112Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-07-13T14:24:38.9891205Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:38.9891665Z 662 | int channels; 2023-07-13T14:24:38.9891955Z | ^~~~~~~~ 2023-07-13T14:24:38.9892537Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-07-13T14:24:38.9893267Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-07-13T14:24:38.9893906Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-07-13T14:24:38.9894439Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-07-13T14:24:38.9895031Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-07-13T14:24:38.9895718Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-07-13T14:24:38.9896405Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-07-13T14:24:38.9897086Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-07-13T14:24:38.9897770Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-07-13T14:24:38.9898400Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-07-13T14:24:38.9899065Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-07-13T14:24:38.9899550Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-07-13T14:24:38.9900565Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:38.9901187Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-07-13T14:24:38.9901551Z | ~~~~~^~~~~~~~ 2023-07-13T14:24:38.9902089Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:38.9902544Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:38.9902945Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-07-13T14:24:38.9903380Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-07-13T14:24:38.9903971Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:38.9904362Z 662 | int channels; 2023-07-13T14:24:38.9904620Z | ^~~~~~~~ 2023-07-13T14:24:38.9905113Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-07-13T14:24:38.9905706Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-07-13T14:24:38.9906307Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-07-13T14:24:38.9906925Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-07-13T14:24:38.9907590Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-07-13T14:24:38.9908263Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-07-13T14:24:38.9908949Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-07-13T14:24:38.9909744Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-07-13T14:24:38.9910464Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-07-13T14:24:38.9911157Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-07-13T14:24:38.9912077Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-07-13T14:24:38.9912631Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-07-13T14:24:38.9913845Z /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-07-13T14:24:38.9914802Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:79:16: required from here 2023-07-13T14:24:38.9915642Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:38.9916293Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-07-13T14:24:38.9916707Z | ~~~~~^~~~~~~~ 2023-07-13T14:24:38.9917332Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:38.9917871Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:38.9918696Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-07-13T14:24:38.9919162Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-07-13T14:24:38.9920095Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:38.9920537Z 662 | int channels; 2023-07-13T14:24:38.9920813Z | ^~~~~~~~ 2023-07-13T14:24:38.9921335Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-07-13T14:24:38.9921990Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-07-13T14:24:38.9922620Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-07-13T14:24:38.9923305Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-07-13T14:24:38.9923993Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-07-13T14:24:38.9924701Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-07-13T14:24:38.9925421Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-07-13T14:24:38.9926099Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-07-13T14:24:38.9926831Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-07-13T14:24:38.9927555Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-07-13T14:24:38.9928296Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-07-13T14:24:38.9928841Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-07-13T14:24:38.9929701Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:38.9930647Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-07-13T14:24:38.9931085Z | ~~~~~^~~~~~~~ 2023-07-13T14:24:38.9931736Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:38.9932257Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:38.9932709Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-07-13T14:24:38.9933194Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-07-13T14:24:38.9933894Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:38.9934313Z 662 | int channels; 2023-07-13T14:24:39.0017909Z | ^~~~~~~~ 2023-07-13T14:24:39.0018799Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-07-13T14:24:39.0019808Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-07-13T14:24:39.0020517Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-07-13T14:24:39.0021490Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-07-13T14:24:39.0022209Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-07-13T14:24:39.0023267Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-07-13T14:24:39.0024010Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-07-13T14:24:39.0025103Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-07-13T14:24:39.0027092Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-07-13T14:24:39.0028009Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-07-13T14:24:39.0028781Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-07-13T14:24:39.0029343Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-07-13T14:24:39.0030327Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:39.0031070Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-07-13T14:24:39.0031687Z | ~~~~~^~~~~~~~ 2023-07-13T14:24:39.0032362Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:39.0032905Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:39.0033349Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-07-13T14:24:39.0033840Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-07-13T14:24:39.0034533Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:39.0034969Z 662 | int channels; 2023-07-13T14:24:39.0035239Z | ^~~~~~~~ 2023-07-13T14:24:39.0035771Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-07-13T14:24:39.0036448Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-07-13T14:24:39.0037099Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-07-13T14:24:39.0037944Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-07-13T14:24:39.0038933Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-07-13T14:24:39.0039636Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-07-13T14:24:39.0040320Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-07-13T14:24:39.0041021Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-07-13T14:24:39.0041730Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-07-13T14:24:39.0042442Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-07-13T14:24:39.0043154Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-07-13T14:24:39.0043665Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-07-13T14:24:39.0044815Z /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-07-13T14:24:39.0045555Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:80:16: required from here 2023-07-13T14:24:39.0046331Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:39.0046960Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-07-13T14:24:39.0047521Z | ~~~~~^~~~~~~~ 2023-07-13T14:24:39.0048150Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:39.0048662Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:39.0049119Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-07-13T14:24:39.0049612Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-07-13T14:24:39.0050304Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:39.0050730Z 662 | int channels; 2023-07-13T14:24:39.0051020Z | ^~~~~~~~ 2023-07-13T14:24:39.0051594Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-07-13T14:24:39.0052294Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-07-13T14:24:39.0052957Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-07-13T14:24:39.0053587Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-07-13T14:24:39.0054280Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-07-13T14:24:39.0054986Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-07-13T14:24:39.0055682Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-07-13T14:24:39.0056409Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-07-13T14:24:39.0057117Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-07-13T14:24:39.0058025Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-07-13T14:24:39.0058754Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-07-13T14:24:39.0059298Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-07-13T14:24:39.0060149Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:39.0060826Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-07-13T14:24:39.0061238Z | ~~~~~^~~~~~~~ 2023-07-13T14:24:39.0061857Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:39.0062353Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:39.0062784Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-07-13T14:24:39.0063234Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-07-13T14:24:39.0063823Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:39.0064189Z 662 | int channels; 2023-07-13T14:24:39.0064456Z | ^~~~~~~~ 2023-07-13T14:24:39.0064931Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-07-13T14:24:39.0065546Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-07-13T14:24:39.0066190Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-07-13T14:24:39.0066917Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-07-13T14:24:39.0067497Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-07-13T14:24:39.0068081Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-07-13T14:24:39.0068689Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-07-13T14:24:39.0069346Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-07-13T14:24:39.0070038Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-07-13T14:24:39.0070719Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-07-13T14:24:39.0071601Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-07-13T14:24:39.0072174Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-07-13T14:24:39.0157235Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:39.0158001Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-07-13T14:24:39.0158747Z | ~~~~~^~~~~~~~ 2023-07-13T14:24:39.0159416Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:39.0159939Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:39.0160406Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-07-13T14:24:39.0160884Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-07-13T14:24:39.0161967Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:39.0162424Z 662 | int channels; 2023-07-13T14:24:39.0162707Z | ^~~~~~~~ 2023-07-13T14:24:39.0163330Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-07-13T14:24:39.0164041Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-07-13T14:24:39.0164729Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-07-13T14:24:39.0165376Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-07-13T14:24:39.0166044Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-07-13T14:24:39.0166791Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-07-13T14:24:39.0167501Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-07-13T14:24:39.0168230Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-07-13T14:24:39.0168947Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-07-13T14:24:39.0169695Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-07-13T14:24:39.0170408Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-07-13T14:24:39.0170961Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-07-13T14:24:39.0172113Z /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-07-13T14:24:39.0173183Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:81:16: required from here 2023-07-13T14:24:39.0174069Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:39.0174756Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-07-13T14:24:39.0175181Z | ~~~~~^~~~~~~~ 2023-07-13T14:24:39.0175826Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:39.0176334Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:39.0176812Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-07-13T14:24:39.0177335Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-07-13T14:24:39.0178019Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:39.0178443Z 662 | int channels; 2023-07-13T14:24:39.0178729Z | ^~~~~~~~ 2023-07-13T14:24:39.0179314Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-07-13T14:24:39.0180007Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-07-13T14:24:39.0180680Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-07-13T14:24:39.0181329Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-07-13T14:24:39.0182034Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-07-13T14:24:39.0182943Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-07-13T14:24:39.0183667Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-07-13T14:24:39.0184483Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-07-13T14:24:39.0185491Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-07-13T14:24:39.0186236Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-07-13T14:24:39.0187023Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-07-13T14:24:39.0187653Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-07-13T14:24:39.0188614Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:39.0189417Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-07-13T14:24:39.0189861Z | ~~~~~^~~~~~~~ 2023-07-13T14:24:39.0190575Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:39.0191150Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:39.0191935Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-07-13T14:24:39.0192466Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-07-13T14:24:39.0193267Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:39.0193926Z 662 | int channels; 2023-07-13T14:24:39.0194248Z | ^~~~~~~~ 2023-07-13T14:24:39.0218547Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-07-13T14:24:39.0219489Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-07-13T14:24:39.0220168Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-07-13T14:24:39.0220822Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-07-13T14:24:39.0221502Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-07-13T14:24:39.0222215Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-07-13T14:24:39.0222991Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-07-13T14:24:39.0223743Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-07-13T14:24:39.0224500Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-07-13T14:24:39.0225220Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-07-13T14:24:39.0225941Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-07-13T14:24:39.0226515Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-07-13T14:24:39.0227485Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:39.0228186Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-07-13T14:24:39.0228808Z | ~~~~~^~~~~~~~ 2023-07-13T14:24:39.0229441Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:39.0229955Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:39.0230406Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-07-13T14:24:39.0230887Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-07-13T14:24:39.0231731Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:39.0232166Z 662 | int channels; 2023-07-13T14:24:39.0232442Z | ^~~~~~~~ 2023-07-13T14:24:39.0232975Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-07-13T14:24:39.0233708Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-07-13T14:24:39.0234399Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-07-13T14:24:39.0235046Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-07-13T14:24:39.0235759Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-07-13T14:24:39.0280343Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-07-13T14:24:39.0281110Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-07-13T14:24:39.0281793Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-07-13T14:24:39.0282934Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-07-13T14:24:39.0283709Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-07-13T14:24:39.0284407Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-07-13T14:24:39.0284921Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-07-13T14:24:39.0286125Z /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-07-13T14:24:39.0286962Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:82:16: required from here 2023-07-13T14:24:39.0287881Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:39.0288605Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-07-13T14:24:39.0289023Z | ~~~~~^~~~~~~~ 2023-07-13T14:24:39.0289672Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:39.0290219Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:39.0290677Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-07-13T14:24:39.0291146Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-07-13T14:24:39.0291816Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:39.0292292Z 662 | int channels; 2023-07-13T14:24:39.0292595Z | ^~~~~~~~ 2023-07-13T14:24:39.0293395Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-07-13T14:24:39.0294119Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-07-13T14:24:39.0294767Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-07-13T14:24:39.0295397Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-07-13T14:24:39.0296103Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-07-13T14:24:39.0296842Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-07-13T14:24:39.0297555Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-07-13T14:24:39.0298298Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-07-13T14:24:39.0299075Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-07-13T14:24:39.0299806Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-07-13T14:24:39.0300506Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-07-13T14:24:39.0301045Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-07-13T14:24:39.0301946Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:39.0302694Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-07-13T14:24:39.0303294Z | ~~~~~^~~~~~~~ 2023-07-13T14:24:39.0303911Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:39.0304428Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:39.0304886Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-07-13T14:24:39.0305370Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-07-13T14:24:39.0306101Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:39.0306540Z 662 | int channels; 2023-07-13T14:24:39.0306827Z | ^~~~~~~~ 2023-07-13T14:24:39.0307385Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-07-13T14:24:39.0308086Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-07-13T14:24:39.0308799Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-07-13T14:24:39.0309440Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-07-13T14:24:39.0310124Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-07-13T14:24:39.0310793Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-07-13T14:24:39.0311566Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-07-13T14:24:39.0312238Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-07-13T14:24:39.0313034Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-07-13T14:24:39.0313911Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-07-13T14:24:39.0314676Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-07-13T14:24:39.0315220Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-07-13T14:24:39.0316100Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:39.0316816Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-07-13T14:24:39.0317240Z | ~~~~~^~~~~~~~ 2023-07-13T14:24:39.0317863Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:39.0318598Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:39.0319088Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-07-13T14:24:39.0319578Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-07-13T14:24:39.0320266Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:39.0320704Z 662 | int channels; 2023-07-13T14:24:39.0321000Z | ^~~~~~~~ 2023-07-13T14:24:39.0321570Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-07-13T14:24:39.0322265Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-07-13T14:24:39.0322917Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-07-13T14:24:39.0323537Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-07-13T14:24:39.0324446Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-07-13T14:24:39.0325142Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-07-13T14:24:39.0325835Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-07-13T14:24:39.0326517Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-07-13T14:24:39.0327239Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-07-13T14:24:39.0327936Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-07-13T14:24:39.0328671Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-07-13T14:24:39.0329249Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-07-13T14:24:39.0330401Z /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-07-13T14:24:39.0331218Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:83:16: required from here 2023-07-13T14:24:39.0332100Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:39.0332814Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-07-13T14:24:39.0397362Z | ~~~~~^~~~~~~~ 2023-07-13T14:24:39.0398482Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:39.0399429Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:39.0399922Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-07-13T14:24:39.0400415Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-07-13T14:24:39.0401120Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:39.0401547Z 662 | int channels; 2023-07-13T14:24:39.0401821Z | ^~~~~~~~ 2023-07-13T14:24:39.0402383Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-07-13T14:24:39.0403081Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-07-13T14:24:39.0403717Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-07-13T14:24:39.0404285Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-07-13T14:24:39.0404868Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-07-13T14:24:39.0405521Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-07-13T14:24:39.0406168Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-07-13T14:24:39.0406769Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-07-13T14:24:39.0407471Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-07-13T14:24:39.0408154Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-07-13T14:24:39.0409131Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-07-13T14:24:39.0409663Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-07-13T14:24:39.0410605Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:39.0411337Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-07-13T14:24:39.0411758Z | ~~~~~^~~~~~~~ 2023-07-13T14:24:39.0412389Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:39.0412925Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:39.0413384Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-07-13T14:24:39.0413895Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-07-13T14:24:39.0414577Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:39.0415002Z 662 | int channels; 2023-07-13T14:24:39.0415287Z | ^~~~~~~~ 2023-07-13T14:24:39.0415821Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-07-13T14:24:39.0416484Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-07-13T14:24:39.0417135Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-07-13T14:24:39.0417782Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-07-13T14:24:39.0418451Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-07-13T14:24:39.0419321Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-07-13T14:24:39.0420045Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-07-13T14:24:39.0420747Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-07-13T14:24:39.0421467Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-07-13T14:24:39.0422207Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-07-13T14:24:39.0422994Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-07-13T14:24:39.0423516Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-07-13T14:24:39.0424427Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:39.0425146Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-07-13T14:24:39.0425554Z | ~~~~~^~~~~~~~ 2023-07-13T14:24:39.0426160Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:39.0426694Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:39.0427146Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-07-13T14:24:39.0427636Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-07-13T14:24:39.0428314Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:39.0428925Z 662 | int channels; 2023-07-13T14:24:39.0429218Z | ^~~~~~~~ 2023-07-13T14:24:39.0429787Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-07-13T14:24:39.0430467Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-07-13T14:24:39.0431129Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-07-13T14:24:39.0431963Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-07-13T14:24:39.0432652Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-07-13T14:24:39.0433357Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-07-13T14:24:39.0434021Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-07-13T14:24:39.0434713Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-07-13T14:24:39.0435362Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-07-13T14:24:39.0436073Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-07-13T14:24:39.0436788Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-07-13T14:24:39.0437333Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-07-13T14:24:39.0438681Z /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-07-13T14:24:39.0439813Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:84:16: required from here 2023-07-13T14:24:39.0440723Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:39.0441440Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-07-13T14:24:39.0441849Z | ~~~~~^~~~~~~~ 2023-07-13T14:24:39.0442509Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:39.0443025Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:39.0443477Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-07-13T14:24:39.0443960Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-07-13T14:24:39.0444708Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:39.0445156Z 662 | int channels; 2023-07-13T14:24:39.0445448Z | ^~~~~~~~ 2023-07-13T14:24:39.0446016Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-07-13T14:24:39.0446720Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-07-13T14:24:39.0447401Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-07-13T14:24:39.0448054Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-07-13T14:24:39.0448762Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-07-13T14:24:39.0449489Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-07-13T14:24:39.0450394Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-07-13T14:24:39.0520742Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-07-13T14:24:39.0521574Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-07-13T14:24:39.0522333Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-07-13T14:24:39.0523162Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-07-13T14:24:39.0523704Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-07-13T14:24:39.0524638Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:39.0525427Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-07-13T14:24:39.0525842Z | ~~~~~^~~~~~~~ 2023-07-13T14:24:39.0526470Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:39.0526987Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:39.0527440Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-07-13T14:24:39.0527938Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-07-13T14:24:39.0528620Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:39.0529044Z 662 | int channels; 2023-07-13T14:24:39.0529332Z | ^~~~~~~~ 2023-07-13T14:24:39.0529913Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-07-13T14:24:39.0530991Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-07-13T14:24:39.0531698Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-07-13T14:24:39.0532328Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-07-13T14:24:39.0532937Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-07-13T14:24:39.0533599Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-07-13T14:24:39.0534306Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-07-13T14:24:39.0535010Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-07-13T14:24:39.0535751Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-07-13T14:24:39.0536438Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-07-13T14:24:39.0537158Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-07-13T14:24:39.0537709Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-07-13T14:24:39.0538594Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:39.0539313Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-07-13T14:24:39.0539696Z | ~~~~~^~~~~~~~ 2023-07-13T14:24:39.0540581Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:39.0541105Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:39.0541580Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-07-13T14:24:39.0542060Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-07-13T14:24:39.0542730Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:39.0543189Z 662 | int channels; 2023-07-13T14:24:39.0543468Z | ^~~~~~~~ 2023-07-13T14:24:39.0543997Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-07-13T14:24:39.0544679Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-07-13T14:24:39.0545385Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-07-13T14:24:39.0546045Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-07-13T14:24:39.0546706Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-07-13T14:24:39.0547406Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-07-13T14:24:39.0548117Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-07-13T14:24:39.0548841Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-07-13T14:24:39.0549559Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-07-13T14:24:39.0550305Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-07-13T14:24:39.0551164Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-07-13T14:24:39.0551901Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-07-13T14:24:39.0553051Z /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-07-13T14:24:39.0553821Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:85:16: required from here 2023-07-13T14:24:39.0554719Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:39.0555419Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-07-13T14:24:39.0555846Z | ~~~~~^~~~~~~~ 2023-07-13T14:24:39.0556464Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:39.0556994Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:39.0557454Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-07-13T14:24:39.0557957Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-07-13T14:24:39.0559301Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:39.0559718Z 662 | int channels; 2023-07-13T14:24:39.0559990Z | ^~~~~~~~ 2023-07-13T14:24:39.0560503Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-07-13T14:24:39.0561402Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-07-13T14:24:39.0562072Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-07-13T14:24:39.0562723Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-07-13T14:24:39.0563421Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-07-13T14:24:39.0564117Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-07-13T14:24:39.0564809Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-07-13T14:24:39.0565474Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-07-13T14:24:39.0566181Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-07-13T14:24:39.0566922Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-07-13T14:24:39.0567654Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-07-13T14:24:39.0568213Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-07-13T14:24:39.0569118Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:39.0569829Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-07-13T14:24:39.0570225Z | ~~~~~^~~~~~~~ 2023-07-13T14:24:39.0570840Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:39.0571375Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:39.0572083Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-07-13T14:24:39.0572632Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-07-13T14:24:39.0573347Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:39.0648412Z 662 | int channels; 2023-07-13T14:24:39.0648769Z | ^~~~~~~~ 2023-07-13T14:24:39.0649501Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-07-13T14:24:39.0650347Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-07-13T14:24:39.0651132Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-07-13T14:24:39.0652004Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-07-13T14:24:39.0652795Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-07-13T14:24:39.0653618Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-07-13T14:24:39.0654316Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-07-13T14:24:39.0655001Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-07-13T14:24:39.0655734Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-07-13T14:24:39.0656458Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-07-13T14:24:39.0657578Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-07-13T14:24:39.0658165Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-07-13T14:24:39.0659104Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:39.0659794Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-07-13T14:24:39.0660210Z | ~~~~~^~~~~~~~ 2023-07-13T14:24:39.0660824Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:39.0661325Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:39.0661783Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-07-13T14:24:39.0662302Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-07-13T14:24:39.0663033Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:39.0663445Z 662 | int channels; 2023-07-13T14:24:39.0663720Z | ^~~~~~~~ 2023-07-13T14:24:39.0664270Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-07-13T14:24:39.0664902Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-07-13T14:24:39.0665488Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-07-13T14:24:39.0666115Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-07-13T14:24:39.0666800Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-07-13T14:24:39.0667534Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-07-13T14:24:39.0668452Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-07-13T14:24:39.0669178Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-07-13T14:24:39.0669911Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-07-13T14:24:39.0670646Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-07-13T14:24:39.0671536Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-07-13T14:24:39.0672075Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-07-13T14:24:39.0673282Z /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-07-13T14:24:39.0674082Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:86:16: required from here 2023-07-13T14:24:39.0674988Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:39.0675701Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-07-13T14:24:39.0676108Z | ~~~~~^~~~~~~~ 2023-07-13T14:24:39.0676710Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:39.0677230Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:39.0677875Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-07-13T14:24:39.0689944Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-07-13T14:24:39.0690665Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:39.0691098Z 662 | int channels; 2023-07-13T14:24:39.0691395Z | ^~~~~~~~ 2023-07-13T14:24:39.0691964Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-07-13T14:24:39.0692691Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-07-13T14:24:39.0693392Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-07-13T14:24:39.0694051Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-07-13T14:24:39.0694757Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-07-13T14:24:39.0695496Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-07-13T14:24:39.0696202Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-07-13T14:24:39.0696907Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-07-13T14:24:39.0697636Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-07-13T14:24:39.0698388Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-07-13T14:24:39.0699128Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-07-13T14:24:39.0699684Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-07-13T14:24:39.0700761Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:39.0701517Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-07-13T14:24:39.0701941Z | ~~~~~^~~~~~~~ 2023-07-13T14:24:39.0702531Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:39.0703100Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:39.0703558Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-07-13T14:24:39.0704047Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-07-13T14:24:39.0704759Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:39.0705214Z 662 | int channels; 2023-07-13T14:24:39.0705501Z | ^~~~~~~~ 2023-07-13T14:24:39.0706040Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-07-13T14:24:39.0706727Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-07-13T14:24:39.0707414Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-07-13T14:24:39.0708037Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-07-13T14:24:39.0708727Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-07-13T14:24:39.0709454Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-07-13T14:24:39.0710352Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-07-13T14:24:39.0711072Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-07-13T14:24:39.0711946Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-07-13T14:24:39.0712695Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-07-13T14:24:39.0713399Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/torch.h:3, 2023-07-13T14:24:39.0713938Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:1: 2023-07-13T14:24:40.9245639Z /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:39:57: warning: ‘AVFrame::channels’ is deprecated [-Wdeprecated-declarations] 2023-07-13T14:24:40.9246476Z 39 | TORCH_INTERNAL_ASSERT_DEBUG_ONLY(num_channels == src->channels); 2023-07-13T14:24:40.9246926Z | ~~~~~^~~~~~~~ 2023-07-13T14:24:40.9247602Z In file included from /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavcodec/avcodec.h:35, 2023-07-13T14:24:40.9248140Z from /work/torchaudio/csrc/ffmpeg/ffmpeg.h:10, 2023-07-13T14:24:40.9248599Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.h:3, 2023-07-13T14:24:40.9249080Z from /work/torchaudio/csrc/ffmpeg/stream_reader/conversion.cpp:2: 2023-07-13T14:24:40.9249776Z /work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include/libavutil/frame.h:662:9: note: declared here 2023-07-13T14:24:40.9250230Z 662 | int channels; 2023-07-13T14:24:40.9250522Z | ^~~~~~~~ 2023-07-13T14:24:40.9254391Z [110/156] /usr/local/cuda-11.8/bin/nvcc -forward-unknown-to-host-compiler -DINCLUDE_ALIGN -DINCLUDE_RIR -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -Dlibtorchaudio_EXPORTS -I/work -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -DCUDA_HAS_FP16=1 -D__CUDA_NO_HALF_OPERATORS__ -D__CUDA_NO_HALF_CONVERSIONS__ -D__CUDA_NO_HALF2_OPERATORS__ -DONNX_NAMESPACE=onnx_c2 -gencode arch=compute_86,code=sm_86 -Xcudafe --diag_suppress=cc_clobber_ignored,--diag_suppress=set_but_not_used,--diag_suppress=field_without_dll_interface,--diag_suppress=base_class_has_different_dll_interface,--diag_suppress=dll_interface_conflict_none_assumed,--diag_suppress=dll_interface_conflict_dllexport_assumed,--diag_suppress=bad_friend_decl --expt-relaxed-constexpr --expt-extended-lambda -O3 -DNDEBUG -std=c++17 -Xcompiler=-fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/forced_align/gpu/compute.cu.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/forced_align/gpu/compute.cu.o.d -x cu -c /work/torchaudio/csrc/forced_align/gpu/compute.cu -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/forced_align/gpu/compute.cu.o 2023-07-13T14:24:40.9263842Z [111/156] : && /opt/rh/devtoolset-9/root/usr/bin/c++ -fPIC -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -shared -Wl,-soname,libtorchaudio_ffmpeg6.so -o torchaudio/csrc/ffmpeg/libtorchaudio_ffmpeg6.so torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/ffmpeg.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/filter_graph.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/hw_context.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/buffer/chunked_buffer.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/buffer/unchunked_buffer.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/conversion.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/packet_buffer.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/post_process.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/stream_processor.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_reader/stream_reader.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_writer/encode_process.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_writer/encoder.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_writer/packet_writer.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_writer/stream_writer.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/stream_writer/tensor_converter.cpp.o torchaudio/csrc/ffmpeg/CMakeFiles/libtorchaudio_ffmpeg6.dir/compat.cpp.o -Wl,-rpath,/work/ci_env/lib/python3.10/site-packages/torch/lib:/usr/local/cuda-11.8/lib64:/work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/lib: /work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch.so -Wl,--no-as-needed,"/work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_cpu.so" -Wl,--as-needed -Wl,--no-as-needed,"/work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_cuda.so" -Wl,--as-needed /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10_cuda.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10.so /usr/local/cuda-11.8/lib64/libcudart.so /usr/local/cuda-11.8/lib64/libnvToolsExt.so /usr/local/cuda-11.8/lib64/libcufft.so /usr/local/cuda-11.8/lib64/libcurand.so /usr/local/cuda-11.8/lib64/libcublas.so /usr/local/cuda-11.8/lib64/libcublasLt.so _deps/f6-src/lib/libavutil.so.58 _deps/f6-src/lib/libavcodec.so.60 _deps/f6-src/lib/libavformat.so.60 _deps/f6-src/lib/libavdevice.so.60 _deps/f6-src/lib/libavfilter.so.9 /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10_cuda.so /usr/local/cuda-11.8/lib64/libcudart.so && : 2023-07-13T14:24:40.9274953Z [112/156] : && /opt/rh/devtoolset-9/root/usr/bin/c++ -fPIC -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -shared -Wl,-soname,libtorchaudio.so -o torchaudio/csrc/libtorchaudio.so torchaudio/csrc/CMakeFiles/libtorchaudio.dir/lfilter.cpp.o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/overdrive.cpp.o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/utils.cpp.o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/cpu/compute_alphas.cpp.o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/cpu/compute_betas.cpp.o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/cpu/compute.cpp.o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/compute_alphas.cpp.o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/compute_betas.cpp.o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/compute.cpp.o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/autograd.cpp.o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/gpu/compute_alphas.cu.o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/gpu/compute_betas.cu.o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/gpu/compute.cu.o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rir.cpp.o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/forced_align/compute.cpp.o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/forced_align/cpu/compute.cpp.o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/forced_align/gpu/compute.cu.o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/iir_cuda.cu.o -L/usr/local/cuda-11.8/targets/x86_64-linux/lib/stubs -L/usr/local/cuda-11.8/targets/x86_64-linux/lib -Wl,-rpath,/work/ci_env/lib/python3.10/site-packages/torch/lib:/usr/local/cuda-11.8/lib64: /work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch.so -Wl,--no-as-needed,"/work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_cpu.so" -Wl,--as-needed -Wl,--no-as-needed,"/work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_cuda.so" -Wl,--as-needed /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10_cuda.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10.so /usr/local/cuda-11.8/lib64/libcudart.so /usr/local/cuda-11.8/lib64/libnvToolsExt.so /usr/local/cuda-11.8/lib64/libcufft.so /usr/local/cuda-11.8/lib64/libcurand.so /usr/local/cuda-11.8/lib64/libcublas.so /usr/local/cuda-11.8/lib64/libcublasLt.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10_cuda.so /usr/local/cuda-11.8/lib64/libcudart.so -lgomp -lpthread -lcudadevrt -lcudart_static -lrt -lpthread -ldl && : 2023-07-13T14:24:40.9283092Z [113/156] : && /opt/rh/devtoolset-9/root/usr/bin/c++ -fPIC -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -shared -Wl,-soname,_torchaudio.so -o torchaudio/csrc/_torchaudio.so torchaudio/csrc/CMakeFiles/_torchaudio.dir/pybind/pybind.cpp.o -Wl,-rpath,/work/build/temp.linux-x86_64-cpython-310/torchaudio/csrc:/work/ci_env/lib/python3.10/site-packages/torch/lib:/usr/local/cuda-11.8/lib64: torchaudio/csrc/libtorchaudio.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_python.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch.so -Wl,--no-as-needed,"/work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_cpu.so" -Wl,--as-needed -Wl,--no-as-needed,"/work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_cuda.so" -Wl,--as-needed /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10_cuda.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10.so /usr/local/cuda-11.8/lib64/libcudart.so /usr/local/cuda-11.8/lib64/libnvToolsExt.so /usr/local/cuda-11.8/lib64/libcufft.so /usr/local/cuda-11.8/lib64/libcurand.so /usr/local/cuda-11.8/lib64/libcublas.so /usr/local/cuda-11.8/lib64/libcublasLt.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10_cuda.so /usr/local/cuda-11.8/lib64/libcudart.so -lgomp -lpthread && : 2023-07-13T14:24:52.4683276Z [114/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opus-build && /work/ci_env/bin/cmake -P /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opus-stamp/opus-build-Release.cmake && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opus-stamp/opus-build 2023-07-13T14:24:52.4685071Z [115/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opus-build && /work/ci_env/bin/cmake -P /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opus-stamp/opus-install-Release.cmake && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opus-stamp/opus-install 2023-07-13T14:24:52.4686393Z [116/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox && /work/ci_env/bin/cmake -E make_directory /work/build/temp.linux-x86_64-cpython-310/third_party/sox/CMakeFiles && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/CMakeFiles/opus-complete && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opus-stamp/opus-done 2023-07-13T14:24:52.4687638Z [117/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox && /work/ci_env/bin/cmake -Dcfgdir= -P /work/build/temp.linux-x86_64-cpython-310/third_party/sox/tmp/opusfile-mkdirs.cmake && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opusfile-stamp/opusfile-mkdir 2023-07-13T14:24:52.4688804Z [118/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src && /work/ci_env/bin/cmake -P /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opusfile-stamp/opusfile-download-Release.cmake && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opusfile-stamp/opusfile-download 2023-07-13T14:24:52.4689845Z [119/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox && /work/ci_env/bin/cmake -E echo_append && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opusfile-stamp/opusfile-update 2023-07-13T14:24:52.4691005Z [120/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opusfile && cp /work/third_party/patches/config.guess /work/third_party/patches/config.sub /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opusfile/ && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opusfile-stamp/opusfile-patch 2023-07-13T14:24:52.4692322Z [121/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/flac-build && /work/ci_env/bin/cmake -P /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/flac-stamp/flac-build-Release.cmake && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/flac-stamp/flac-build 2023-07-13T14:24:52.4693569Z [122/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/flac-build && /work/ci_env/bin/cmake -P /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/flac-stamp/flac-install-Release.cmake && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/flac-stamp/flac-install 2023-07-13T14:24:52.4694843Z [123/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox && /work/ci_env/bin/cmake -E make_directory /work/build/temp.linux-x86_64-cpython-310/third_party/sox/CMakeFiles && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/CMakeFiles/flac-complete && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/flac-stamp/flac-done 2023-07-13T14:24:52.4697784Z [124/156] /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-07-13T14:24:52.4699782Z /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-07-13T14:24:52.4700050Z 2023-07-13T14:24:52.4701372Z [125/156] : && /opt/rh/devtoolset-9/root/usr/bin/c++ -fPIC -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -shared -Wl,-soname,libctc_prefix_decoder.so -o torchaudio/csrc/cuctc/libctc_prefix_decoder.so torchaudio/csrc/cuctc/CMakeFiles/libctc_prefix_decoder.dir/src/ctc_prefix_decoder.cpp.o torchaudio/csrc/cuctc/CMakeFiles/libctc_prefix_decoder.dir/src/ctc_prefix_decoder_kernel_v2.cu.o -L/usr/local/cuda-11.8/targets/x86_64-linux/lib/stubs -L/usr/local/cuda-11.8/targets/x86_64-linux/lib -Wl,-rpath,/work/ci_env/lib/python3.10/site-packages/torch/lib:/usr/local/cuda-11.8/lib64: /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10_cuda.so /usr/local/cuda-11.8/lib64/libcudart.so -lcudadevrt -lcudart_static -lrt -lpthread -ldl && : 2023-07-13T14:24:52.4703468Z [126/156] : && /opt/rh/devtoolset-9/root/usr/bin/c++ -fPIC -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -shared -Wl,-soname,pybind11_prefixctc.so -o torchaudio/csrc/cuctc/pybind11_prefixctc.so torchaudio/csrc/cuctc/CMakeFiles/pybind11_prefixctc.dir/src/python_binding.cpp.o -Wl,-rpath,/work/build/temp.linux-x86_64-cpython-310/torchaudio/csrc/cuctc:/work/ci_env/lib/python3.10/site-packages/torch/lib:/usr/local/cuda-11.8/lib64: torchaudio/csrc/cuctc/libctc_prefix_decoder.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_python.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10_cuda.so /usr/local/cuda-11.8/lib64/libcudart.so && : 2023-07-13T14:24:52.4705088Z [127/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opusfile-build && /work/ci_env/bin/cmake -P /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opusfile-stamp/opusfile-configure-Release.cmake && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opusfile-stamp/opusfile-configure 2023-07-13T14:24:52.4706300Z [128/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opusfile-build && /work/ci_env/bin/cmake -P /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opusfile-stamp/opusfile-build-Release.cmake && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opusfile-stamp/opusfile-build 2023-07-13T14:24:52.4707471Z [129/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opusfile-build && /work/ci_env/bin/cmake -P /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opusfile-stamp/opusfile-install-Release.cmake && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opusfile-stamp/opusfile-install 2023-07-13T14:24:52.4708684Z [130/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox && /work/ci_env/bin/cmake -E make_directory /work/build/temp.linux-x86_64-cpython-310/third_party/sox/CMakeFiles && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/CMakeFiles/opusfile-complete && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opusfile-stamp/opusfile-done 2023-07-13T14:24:52.4710786Z [131/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DTORCHAUDIO_FFMPEG_EXT_NAME=_torchaudio_ffmpeg4 -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -D_torchaudio_ffmpeg4_EXPORTS -I/work -I/work/ci_env/include/python3.10 -I/work/build/temp.linux-x86_64-cpython-310/_deps/f4-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/_torchaudio_ffmpeg4.dir/pybind/pybind.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/_torchaudio_ffmpeg4.dir/pybind/pybind.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/_torchaudio_ffmpeg4.dir/pybind/pybind.cpp.o -c /work/torchaudio/csrc/ffmpeg/pybind/pybind.cpp 2023-07-13T14:24:53.9607405Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/util/Exception.h:4, 2023-07-13T14:24:53.9608225Z from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-07-13T14:24:53.9608892Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-07-13T14:24:53.9609460Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-07-13T14:24:53.9609894Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-07-13T14:24:53.9610678Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-07-13T14:24:53.9611287Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-07-13T14:24:53.9611769Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-07-13T14:24:53.9612237Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-07-13T14:24:53.9612807Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-07-13T14:24:53.9613554Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-07-13T14:24:53.9614014Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/extension.h:4, 2023-07-13T14:24:53.9614352Z from /work/torchaudio/csrc/ffmpeg/pybind/pybind.cpp:1: 2023-07-13T14:24:53.9614978Z /work/torchaudio/csrc/ffmpeg/pybind/pybind.cpp: In function ‘int torchaudio::io::{anonymous}::{anonymous}::read_func(void*, uint8_t*, int)’: 2023-07-13T14:24:53.9615624Z /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-07-13T14:24:53.9616008Z 125 | chunk_len <= request, 2023-07-13T14:24:53.9616215Z | ~~~~~~~~~~^~~~~~~~~~ 2023-07-13T14:24:53.9618986Z [132/156] : && /opt/rh/devtoolset-9/root/usr/bin/c++ -fPIC -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -shared -Wl,-soname,_torchaudio_ffmpeg4.so -o torchaudio/csrc/ffmpeg/_torchaudio_ffmpeg4.so torchaudio/csrc/ffmpeg/CMakeFiles/_torchaudio_ffmpeg4.dir/pybind/pybind.cpp.o -Wl,-rpath,/work/build/temp.linux-x86_64-cpython-310/torchaudio/csrc/ffmpeg:/work/ci_env/lib/python3.10/site-packages/torch/lib:/usr/local/cuda-11.8/lib64:/work/build/temp.linux-x86_64-cpython-310/_deps/f4-src/lib: torchaudio/csrc/ffmpeg/libtorchaudio_ffmpeg4.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_python.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch.so -Wl,--no-as-needed,"/work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_cpu.so" -Wl,--as-needed -Wl,--no-as-needed,"/work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_cuda.so" -Wl,--as-needed /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10_cuda.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10.so /usr/local/cuda-11.8/lib64/libcudart.so /usr/local/cuda-11.8/lib64/libnvToolsExt.so /usr/local/cuda-11.8/lib64/libcufft.so /usr/local/cuda-11.8/lib64/libcurand.so /usr/local/cuda-11.8/lib64/libcublas.so /usr/local/cuda-11.8/lib64/libcublasLt.so _deps/f4-src/lib/libavutil.so.56 _deps/f4-src/lib/libavcodec.so.58 _deps/f4-src/lib/libavformat.so.58 _deps/f4-src/lib/libavdevice.so.58 _deps/f4-src/lib/libavfilter.so.7 /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10_cuda.so /usr/local/cuda-11.8/lib64/libcudart.so && : 2023-07-13T14:24:53.9622261Z [133/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DTORCHAUDIO_FFMPEG_EXT_NAME=_torchaudio_ffmpeg5 -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -D_torchaudio_ffmpeg5_EXPORTS -I/work -I/work/ci_env/include/python3.10 -I/work/build/temp.linux-x86_64-cpython-310/_deps/f5-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/_torchaudio_ffmpeg5.dir/pybind/pybind.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/_torchaudio_ffmpeg5.dir/pybind/pybind.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/_torchaudio_ffmpeg5.dir/pybind/pybind.cpp.o -c /work/torchaudio/csrc/ffmpeg/pybind/pybind.cpp 2023-07-13T14:24:53.9623568Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/util/Exception.h:4, 2023-07-13T14:24:53.9624020Z from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-07-13T14:24:53.9624471Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-07-13T14:24:53.9624924Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-07-13T14:24:53.9625396Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-07-13T14:24:53.9625863Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-07-13T14:24:53.9626346Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-07-13T14:24:53.9626822Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-07-13T14:24:53.9627287Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-07-13T14:24:53.9627826Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-07-13T14:24:53.9628313Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-07-13T14:24:53.9628764Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/extension.h:4, 2023-07-13T14:24:53.9629110Z from /work/torchaudio/csrc/ffmpeg/pybind/pybind.cpp:1: 2023-07-13T14:24:53.9629649Z /work/torchaudio/csrc/ffmpeg/pybind/pybind.cpp: In function ‘int torchaudio::io::{anonymous}::{anonymous}::read_func(void*, uint8_t*, int)’: 2023-07-13T14:24:53.9630288Z /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-07-13T14:24:53.9630671Z 125 | chunk_len <= request, 2023-07-13T14:24:53.9630883Z | ~~~~~~~~~~^~~~~~~~~~ 2023-07-13T14:24:53.9632717Z [134/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DTORCHAUDIO_FFMPEG_EXT_NAME=_torchaudio_ffmpeg6 -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_CUDA -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -D_torchaudio_ffmpeg6_EXPORTS -I/work -I/work/ci_env/include/python3.10 -I/work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/ffmpeg/CMakeFiles/_torchaudio_ffmpeg6.dir/pybind/pybind.cpp.o -MF torchaudio/csrc/ffmpeg/CMakeFiles/_torchaudio_ffmpeg6.dir/pybind/pybind.cpp.o.d -o torchaudio/csrc/ffmpeg/CMakeFiles/_torchaudio_ffmpeg6.dir/pybind/pybind.cpp.o -c /work/torchaudio/csrc/ffmpeg/pybind/pybind.cpp 2023-07-13T14:24:53.9633977Z In file included from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/util/Exception.h:4, 2023-07-13T14:24:53.9634437Z from /work/ci_env/lib/python3.10/site-packages/torch/include/c10/core/Device.h:5, 2023-07-13T14:24:53.9634897Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/TensorBody.h:11, 2023-07-13T14:24:53.9635356Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/core/Tensor.h:3, 2023-07-13T14:24:53.9635789Z from /work/ci_env/lib/python3.10/site-packages/torch/include/ATen/Tensor.h:3, 2023-07-13T14:24:53.9636254Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/function_hook.h:3, 2023-07-13T14:24:53.9636735Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/cpp_hook.h:2, 2023-07-13T14:24:53.9637216Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/variable.h:6, 2023-07-13T14:24:53.9637685Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/autograd/autograd.h:3, 2023-07-13T14:24:53.9639240Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/autograd.h:3, 2023-07-13T14:24:53.9639859Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include/torch/all.h:7, 2023-07-13T14:25:43.9897104Z from /work/ci_env/lib/python3.10/site-packages/torch/include/torch/extension.h:4, 2023-07-13T14:25:43.9897584Z from /work/torchaudio/csrc/ffmpeg/pybind/pybind.cpp:1: 2023-07-13T14:25:43.9901908Z /work/torchaudio/csrc/ffmpeg/pybind/pybind.cpp: In function ‘int torchaudio::io::{anonymous}::{anonymous}::read_func(void*, uint8_t*, int)’: 2023-07-13T14:25:43.9902975Z /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-07-13T14:25:43.9903532Z 125 | chunk_len <= request, 2023-07-13T14:25:43.9903864Z | ~~~~~~~~~~^~~~~~~~~~ 2023-07-13T14:25:43.9908112Z [135/156] : && /opt/rh/devtoolset-9/root/usr/bin/c++ -fPIC -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -shared -Wl,-soname,_torchaudio_ffmpeg5.so -o torchaudio/csrc/ffmpeg/_torchaudio_ffmpeg5.so torchaudio/csrc/ffmpeg/CMakeFiles/_torchaudio_ffmpeg5.dir/pybind/pybind.cpp.o -Wl,-rpath,/work/build/temp.linux-x86_64-cpython-310/torchaudio/csrc/ffmpeg:/work/ci_env/lib/python3.10/site-packages/torch/lib:/usr/local/cuda-11.8/lib64:/work/build/temp.linux-x86_64-cpython-310/_deps/f5-src/lib: torchaudio/csrc/ffmpeg/libtorchaudio_ffmpeg5.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_python.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch.so -Wl,--no-as-needed,"/work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_cpu.so" -Wl,--as-needed -Wl,--no-as-needed,"/work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_cuda.so" -Wl,--as-needed /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10_cuda.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10.so /usr/local/cuda-11.8/lib64/libcudart.so /usr/local/cuda-11.8/lib64/libnvToolsExt.so /usr/local/cuda-11.8/lib64/libcufft.so /usr/local/cuda-11.8/lib64/libcurand.so /usr/local/cuda-11.8/lib64/libcublas.so /usr/local/cuda-11.8/lib64/libcublasLt.so _deps/f5-src/lib/libavutil.so.57 _deps/f5-src/lib/libavcodec.so.59 _deps/f5-src/lib/libavformat.so.59 _deps/f5-src/lib/libavdevice.so.59 _deps/f5-src/lib/libavfilter.so.8 /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10_cuda.so /usr/local/cuda-11.8/lib64/libcudart.so && : 2023-07-13T14:25:43.9914340Z [136/156] : && /opt/rh/devtoolset-9/root/usr/bin/c++ -fPIC -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -shared -Wl,-soname,_torchaudio_ffmpeg6.so -o torchaudio/csrc/ffmpeg/_torchaudio_ffmpeg6.so torchaudio/csrc/ffmpeg/CMakeFiles/_torchaudio_ffmpeg6.dir/pybind/pybind.cpp.o -Wl,-rpath,/work/build/temp.linux-x86_64-cpython-310/torchaudio/csrc/ffmpeg:/work/ci_env/lib/python3.10/site-packages/torch/lib:/usr/local/cuda-11.8/lib64:/work/build/temp.linux-x86_64-cpython-310/_deps/f6-src/lib: torchaudio/csrc/ffmpeg/libtorchaudio_ffmpeg6.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_python.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch.so -Wl,--no-as-needed,"/work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_cpu.so" -Wl,--as-needed -Wl,--no-as-needed,"/work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_cuda.so" -Wl,--as-needed /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10_cuda.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10.so /usr/local/cuda-11.8/lib64/libcudart.so /usr/local/cuda-11.8/lib64/libnvToolsExt.so /usr/local/cuda-11.8/lib64/libcufft.so /usr/local/cuda-11.8/lib64/libcurand.so /usr/local/cuda-11.8/lib64/libcublas.so /usr/local/cuda-11.8/lib64/libcublasLt.so _deps/f6-src/lib/libavutil.so.58 _deps/f6-src/lib/libavcodec.so.60 _deps/f6-src/lib/libavformat.so.60 _deps/f6-src/lib/libavdevice.so.60 _deps/f6-src/lib/libavfilter.so.9 /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10_cuda.so /usr/local/cuda-11.8/lib64/libcudart.so && : 2023-07-13T14:25:43.9917665Z [137/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/amr-build && /work/ci_env/bin/cmake -P /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/amr-stamp/amr-build-Release.cmake && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/amr-stamp/amr-build 2023-07-13T14:25:43.9919356Z [138/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/amr-build && /work/ci_env/bin/cmake -P /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/amr-stamp/amr-install-Release.cmake && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/amr-stamp/amr-install 2023-07-13T14:25:43.9920928Z [139/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox && /work/ci_env/bin/cmake -E make_directory /work/build/temp.linux-x86_64-cpython-310/third_party/sox/CMakeFiles && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/CMakeFiles/amr-complete && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/amr-stamp/amr-done 2023-07-13T14:25:43.9922354Z [140/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox && /work/ci_env/bin/cmake -Dcfgdir= -P /work/build/temp.linux-x86_64-cpython-310/third_party/sox/tmp/sox-mkdirs.cmake && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/sox-stamp/sox-mkdir 2023-07-13T14:25:43.9923674Z [141/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src && /work/ci_env/bin/cmake -P /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/sox-stamp/sox-download-Release.cmake && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/sox-stamp/sox-download 2023-07-13T14:25:43.9924896Z [142/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox && /work/ci_env/bin/cmake -E echo_append && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/sox-stamp/sox-update 2023-07-13T14:25:43.9926359Z [143/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/sox && cp /work/third_party/patches/config.guess /work/third_party/patches/config.sub /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/sox/ && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/sox-stamp/sox-patch 2023-07-13T14:25:43.9927773Z [144/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/sox-build && /work/ci_env/bin/cmake -P /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/sox-stamp/sox-configure-Release.cmake && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/sox-stamp/sox-configure 2023-07-13T14:25:43.9929162Z [145/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/sox-build && /work/ci_env/bin/cmake -P /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/sox-stamp/sox-build-Release.cmake && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/sox-stamp/sox-build 2023-07-13T14:25:43.9930528Z [146/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/sox-build && /work/ci_env/bin/cmake -P /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/sox-stamp/sox-install-Release.cmake && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/sox-stamp/sox-install 2023-07-13T14:25:43.9932012Z [147/156] cd /work/build/temp.linux-x86_64-cpython-310/third_party/sox && /work/ci_env/bin/cmake -E make_directory /work/build/temp.linux-x86_64-cpython-310/third_party/sox/CMakeFiles && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/CMakeFiles/sox-complete && /work/ci_env/bin/cmake -E touch /work/build/temp.linux-x86_64-cpython-310/third_party/sox/src/sox-stamp/sox-done 2023-07-13T14:25:43.9934297Z [148/156] /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/third_party/sox/../install/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/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-07-13T14:25:53.8467560Z [149/156] /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/third_party/sox/../install/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/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-07-13T14:25:53.8470453Z [150/156] /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/third_party/sox/../install/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/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-07-13T14:25:53.8472644Z [151/156] /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/third_party/sox/../install/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/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-07-13T14:25:53.8474732Z [152/156] /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/third_party/sox/../install/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/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-07-13T14:25:53.8478727Z [153/156] : && /opt/rh/devtoolset-9/root/usr/bin/c++ -fPIC -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -shared -Wl,-soname,libtorchaudio_sox.so -o torchaudio/csrc/sox/libtorchaudio_sox.so torchaudio/csrc/sox/CMakeFiles/libtorchaudio_sox.dir/io.cpp.o torchaudio/csrc/sox/CMakeFiles/libtorchaudio_sox.dir/utils.cpp.o torchaudio/csrc/sox/CMakeFiles/libtorchaudio_sox.dir/effects.cpp.o torchaudio/csrc/sox/CMakeFiles/libtorchaudio_sox.dir/effects_chain.cpp.o torchaudio/csrc/sox/CMakeFiles/libtorchaudio_sox.dir/types.cpp.o -Wl,-rpath,/work/ci_env/lib/python3.10/site-packages/torch/lib:/usr/local/cuda-11.8/lib64: /work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch.so -Wl,--no-as-needed,"/work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_cpu.so" -Wl,--as-needed -Wl,--no-as-needed,"/work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_cuda.so" -Wl,--as-needed /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10_cuda.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10.so /usr/local/cuda-11.8/lib64/libcudart.so /usr/local/cuda-11.8/lib64/libnvToolsExt.so /usr/local/cuda-11.8/lib64/libcufft.so /usr/local/cuda-11.8/lib64/libcurand.so /usr/local/cuda-11.8/lib64/libcublas.so /usr/local/cuda-11.8/lib64/libcublasLt.so /work/third_party/sox/../install/lib/libsox.a /work/third_party/sox/../install/lib/libopencore-amrnb.a /work/third_party/sox/../install/lib/libopencore-amrwb.a /work/third_party/sox/../install/lib/libmp3lame.a /work/third_party/sox/../install/lib/libFLAC.a /work/third_party/sox/../install/lib/libopusfile.a /work/third_party/sox/../install/lib/libopus.a /work/third_party/sox/../install/lib/libvorbisenc.a /work/third_party/sox/../install/lib/libvorbisfile.a /work/third_party/sox/../install/lib/libvorbis.a /work/third_party/sox/../install/lib/libogg.a && : 2023-07-13T14:25:53.8482293Z [154/156] /opt/rh/devtoolset-9/root/usr/bin/c++ -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -D_torchaudio_sox_EXPORTS -I/work -I/work/ci_env/include/python3.10 -I/work/third_party/sox/../install/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include -isystem /work/ci_env/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -isystem /usr/local/cuda-11.8/include -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -std=gnu++17 -fPIC -D_GLIBCXX_USE_CXX11_ABI=0 -MD -MT torchaudio/csrc/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-07-13T14:25:53.8485915Z [155/156] : && /opt/rh/devtoolset-9/root/usr/bin/c++ -fPIC -Wall -D_GLIBCXX_USE_CXX11_ABI=0 -O3 -DNDEBUG -shared -Wl,-soname,_torchaudio_sox.so -o torchaudio/csrc/sox/_torchaudio_sox.so torchaudio/csrc/sox/CMakeFiles/_torchaudio_sox.dir/pybind/pybind.cpp.o -Wl,-rpath,/work/build/temp.linux-x86_64-cpython-310/torchaudio/csrc/sox:/work/ci_env/lib/python3.10/site-packages/torch/lib:/usr/local/cuda-11.8/lib64: torchaudio/csrc/sox/libtorchaudio_sox.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_python.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch.so -Wl,--no-as-needed,"/work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_cpu.so" -Wl,--as-needed -Wl,--no-as-needed,"/work/ci_env/lib/python3.10/site-packages/torch/lib/libtorch_cuda.so" -Wl,--as-needed /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10_cuda.so /work/ci_env/lib/python3.10/site-packages/torch/lib/libc10.so /usr/local/cuda-11.8/lib64/libcudart.so /usr/local/cuda-11.8/lib64/libnvToolsExt.so /usr/local/cuda-11.8/lib64/libcufft.so /usr/local/cuda-11.8/lib64/libcurand.so /usr/local/cuda-11.8/lib64/libcublas.so /usr/local/cuda-11.8/lib64/libcublasLt.so /work/third_party/sox/../install/lib/libsox.a /work/third_party/sox/../install/lib/libopencore-amrnb.a /work/third_party/sox/../install/lib/libopencore-amrwb.a /work/third_party/sox/../install/lib/libmp3lame.a /work/third_party/sox/../install/lib/libFLAC.a /work/third_party/sox/../install/lib/libopusfile.a /work/third_party/sox/../install/lib/libopus.a /work/third_party/sox/../install/lib/libvorbisenc.a /work/third_party/sox/../install/lib/libvorbisfile.a /work/third_party/sox/../install/lib/libvorbis.a /work/third_party/sox/../install/lib/libogg.a && : 2023-07-13T14:25:53.8488093Z [155/156] cd /work/build/temp.linux-x86_64-cpython-310 && /work/ci_env/bin/cmake -P cmake_install.cmake 2023-07-13T14:25:53.8488444Z -- Install configuration: "Release" 2023-07-13T14:25:53.8488834Z -- Installing: /work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/libtorchaudio.so 2023-07-13T14:25:53.8489310Z -- Set runtime path of "/work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/libtorchaudio.so" to "" 2023-07-13T14:25:53.8489769Z -- Installing: /work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/_torchaudio.so 2023-07-13T14:25:53.8490231Z -- Set runtime path of "/work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/_torchaudio.so" to "" 2023-07-13T14:25:53.8490690Z -- Installing: /work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/libtorchaudio_sox.so 2023-07-13T14:25:53.8491178Z -- Set runtime path of "/work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/libtorchaudio_sox.so" to "" 2023-07-13T14:25:53.8491642Z -- Installing: /work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/_torchaudio_sox.so 2023-07-13T14:26:31.1275343Z -- Set runtime path of "/work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/_torchaudio_sox.so" to "" 2023-07-13T14:26:31.1276105Z -- Installing: /work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/libtorchaudio_ffmpeg4.so 2023-07-13T14:26:31.1276810Z -- Set runtime path of "/work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/libtorchaudio_ffmpeg4.so" to "" 2023-07-13T14:26:31.1277544Z -- Installing: /work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/libtorchaudio_ffmpeg5.so 2023-07-13T14:26:31.1278700Z -- Set runtime path of "/work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/libtorchaudio_ffmpeg5.so" to "" 2023-07-13T14:26:31.1279442Z -- Installing: /work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/libtorchaudio_ffmpeg6.so 2023-07-13T14:26:31.1280218Z -- Set runtime path of "/work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/libtorchaudio_ffmpeg6.so" to "" 2023-07-13T14:26:31.1281226Z -- Installing: /work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/_torchaudio_ffmpeg4.so 2023-07-13T14:26:31.1282034Z -- Set runtime path of "/work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/_torchaudio_ffmpeg4.so" to "" 2023-07-13T14:26:31.1282827Z -- Installing: /work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/_torchaudio_ffmpeg5.so 2023-07-13T14:26:31.1283573Z -- Set runtime path of "/work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/_torchaudio_ffmpeg5.so" to "" 2023-07-13T14:26:31.1284444Z -- Installing: /work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/_torchaudio_ffmpeg6.so 2023-07-13T14:26:31.1285347Z -- Set runtime path of "/work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/_torchaudio_ffmpeg6.so" to "" 2023-07-13T14:26:31.1286032Z -- Installing: /work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/libctc_prefix_decoder.so 2023-07-13T14:26:31.1286730Z -- Set runtime path of "/work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/libctc_prefix_decoder.so" to "" 2023-07-13T14:26:31.1287219Z -- Installing: /work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/pybind11_prefixctc.so 2023-07-13T14:26:31.1287840Z -- Set runtime path of "/work/build/lib.linux-x86_64-cpython-310/torchaudio/lib/pybind11_prefixctc.so" to "" 2023-07-13T14:26:31.1288332Z copying build/lib.linux-x86_64-cpython-310/torchaudio/lib/libtorchaudio.so -> torchaudio/lib 2023-07-13T14:26:31.1288789Z copying build/lib.linux-x86_64-cpython-310/torchaudio/lib/_torchaudio.so -> torchaudio/lib 2023-07-13T14:26:31.1289258Z copying build/lib.linux-x86_64-cpython-310/torchaudio/lib/libtorchaudio_sox.so -> torchaudio/lib 2023-07-13T14:26:31.1289731Z copying build/lib.linux-x86_64-cpython-310/torchaudio/lib/_torchaudio_sox.so -> torchaudio/lib 2023-07-13T14:26:31.1290396Z copying build/lib.linux-x86_64-cpython-310/torchaudio/lib/libctc_prefix_decoder.so -> torchaudio/lib 2023-07-13T14:26:31.1290872Z copying build/lib.linux-x86_64-cpython-310/torchaudio/lib/pybind11_prefixctc.so -> torchaudio/lib 2023-07-13T14:26:31.1291358Z copying build/lib.linux-x86_64-cpython-310/torchaudio/lib/libtorchaudio_ffmpeg4.so -> torchaudio/lib 2023-07-13T14:26:31.1291840Z copying build/lib.linux-x86_64-cpython-310/torchaudio/lib/_torchaudio_ffmpeg4.so -> torchaudio/lib 2023-07-13T14:26:31.1292314Z copying build/lib.linux-x86_64-cpython-310/torchaudio/lib/libtorchaudio_ffmpeg5.so -> torchaudio/lib 2023-07-13T14:26:31.1292780Z copying build/lib.linux-x86_64-cpython-310/torchaudio/lib/_torchaudio_ffmpeg5.so -> torchaudio/lib 2023-07-13T14:26:31.1293252Z copying build/lib.linux-x86_64-cpython-310/torchaudio/lib/libtorchaudio_ffmpeg6.so -> torchaudio/lib 2023-07-13T14:26:31.1293725Z copying build/lib.linux-x86_64-cpython-310/torchaudio/lib/_torchaudio_ffmpeg6.so -> torchaudio/lib 2023-07-13T14:26:31.1294189Z Creating /work/ci_env/lib/python3.10/site-packages/torchaudio.egg-link (link to .) 2023-07-13T14:26:31.1294590Z Adding torchaudio 2.1.0.dev20230713 to easy-install.pth file 2023-07-13T14:26:31.1294770Z 2023-07-13T14:26:31.1294854Z Installed /work 2023-07-13T14:26:31.1295188Z Successfully installed fsspec-2023.6.0 torchaudio-2.1.0.dev20230713 2023-07-13T14:26:31.1295845Z 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-07-13T14:26:31.1296558Z + conda install --quiet --yes -c conda-forge yasm x264 gnutls pkg-config lame libopus libvpx openh264 openssl x264 2023-07-13T14:26:31.1296881Z + local cmd=install 2023-07-13T14:26:31.1297078Z + case "$cmd" in 2023-07-13T14:26:31.1297491Z + __conda_exe install --quiet --yes -c conda-forge yasm x264 gnutls pkg-config lame libopus libvpx openh264 openssl x264 2023-07-13T14:26:31.1298103Z + /opt/conda/bin/conda install --quiet --yes -c conda-forge yasm x264 gnutls pkg-config lame libopus libvpx openh264 openssl x264 2023-07-13T14:26:31.1298522Z Collecting package metadata (current_repodata.json): ...working... done 2023-07-13T14:26:31.1298832Z Solving environment: ...working... done 2023-07-13T14:26:31.1298992Z 2023-07-13T14:26:31.1299073Z ## Package Plan ## 2023-07-13T14:26:31.1299206Z 2023-07-13T14:26:31.1299317Z environment location: /work/ci_env 2023-07-13T14:26:31.1299475Z 2023-07-13T14:26:31.1299570Z added / updated specs: 2023-07-13T14:26:31.1299807Z - gnutls 2023-07-13T14:26:31.1300014Z - lame 2023-07-13T14:26:31.1300224Z - libopus 2023-07-13T14:26:31.1300439Z - libvpx 2023-07-13T14:26:31.1300649Z - openh264 2023-07-13T14:26:31.1300866Z - openssl 2023-07-13T14:26:31.1301092Z - pkg-config 2023-07-13T14:26:31.1301301Z - x264 2023-07-13T14:26:31.1301507Z - yasm 2023-07-13T14:26:31.1301625Z 2023-07-13T14:26:31.1301631Z 2023-07-13T14:26:31.1301756Z The following packages will be downloaded: 2023-07-13T14:26:31.1301911Z 2023-07-13T14:26:31.1302022Z package | build 2023-07-13T14:26:31.1302323Z ---------------------------|----------------- 2023-07-13T14:26:31.1302695Z ca-certificates-2023.5.7 | hbcca054_0 145 KB conda-forge 2023-07-13T14:26:31.1303081Z gnutls-3.6.13 | h85f3911_1 2.0 MB conda-forge 2023-07-13T14:26:31.1303552Z lame-3.100 | h7f98852_1001 496 KB conda-forge 2023-07-13T14:26:31.1304026Z libopus-1.3.1 | h7f98852_1 255 KB conda-forge 2023-07-13T14:26:31.1304420Z libvpx-1.11.0 | h9c3ff4c_3 1.1 MB conda-forge 2023-07-13T14:26:31.1304757Z nettle-3.6 | he412f7d_0 6.5 MB conda-forge 2023-07-13T14:26:31.1305092Z openh264-2.1.1 | h4ff587b_0 711 KB 2023-07-13T14:26:31.1305584Z pkg-config-0.29.2 | h36c2ea0_1008 120 KB conda-forge 2023-07-13T14:26:31.1305915Z x264-1!157.20191217 | h7b6447c_0 922 KB 2023-07-13T14:26:31.1306241Z yasm-1.3.0 | h7f98852_1003 1.4 MB conda-forge 2023-07-13T14:26:31.1306583Z ------------------------------------------------------------ 2023-07-13T14:26:31.1306863Z Total: 13.6 MB 2023-07-13T14:26:31.1306998Z 2023-07-13T14:26:31.1307125Z The following NEW packages will be INSTALLED: 2023-07-13T14:26:31.1307288Z 2023-07-13T14:26:31.1307581Z gnutls conda-forge/linux-64::gnutls-3.6.13-h85f3911_1 2023-07-13T14:26:31.1308014Z lame conda-forge/linux-64::lame-3.100-h7f98852_1001 2023-07-13T14:26:31.1308419Z libopus conda-forge/linux-64::libopus-1.3.1-h7f98852_1 2023-07-13T14:26:31.1308818Z libvpx conda-forge/linux-64::libvpx-1.11.0-h9c3ff4c_3 2023-07-13T14:26:31.1309214Z nettle conda-forge/linux-64::nettle-3.6-he412f7d_0 2023-07-13T14:26:31.1309614Z openh264 pkgs/main/linux-64::openh264-2.1.1-h4ff587b_0 2023-07-13T14:26:31.1309993Z x264 pkgs/main/linux-64::x264-1!157.20191217-h7b6447c_0 2023-07-13T14:26:31.1310371Z yasm conda-forge/linux-64::yasm-1.3.0-h7f98852_1003 2023-07-13T14:26:31.1310546Z 2023-07-13T14:26:31.1310664Z The following packages will be UPDATED: 2023-07-13T14:26:31.1310846Z 2023-07-13T14:26:31.1311281Z pkg-config pkgs/main::pkg-config-0.29.2-h1bed415~ --> conda-forge::pkg-config-0.29.2-h36c2ea0_1008 2023-07-13T14:26:31.1311557Z 2023-07-13T14:26:31.1311902Z The following packages will be SUPERSEDED by a higher-priority channel: 2023-07-13T14:26:31.1312117Z 2023-07-13T14:26:31.1312502Z ca-certificates pkgs/main::ca-certificates-2023.05.30~ --> conda-forge::ca-certificates-2023.5.7-hbcca054_0 2023-07-13T14:26:31.1312751Z 2023-07-13T14:26:31.1312766Z 2023-07-13T14:26:31.1312885Z Preparing transaction: ...working... done 2023-07-13T14:26:31.1313154Z Verifying transaction: ...working... done 2023-07-13T14:26:31.1313488Z Executing transaction: ...working... done 2023-07-13T14:26:31.1313715Z + __conda_reactivate 2023-07-13T14:26:31.1313916Z + local ask_conda 2023-07-13T14:26:31.1314142Z ++ PS1='(/work/ci_env) ' 2023-07-13T14:26:31.1314370Z ++ __conda_exe shell.posix reactivate 2023-07-13T14:26:31.1314635Z ++ /opt/conda/bin/conda shell.posix reactivate 2023-07-13T14:26:31.1314926Z + ask_conda='PS1='\''(/work/ci_env) '\'' 2023-07-13T14:26:31.1315462Z 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-07-13T14:26:31.1315878Z export CONDA_SHLVL='\''2'\'' 2023-07-13T14:26:31.1316184Z export CONDA_PROMPT_MODIFIER='\''(/work/ci_env) '\''' 2023-07-13T14:26:31.1316476Z + eval 'PS1='\''(/work/ci_env) '\'' 2023-07-13T14:26:31.1317028Z 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-07-13T14:26:31.1317444Z export CONDA_SHLVL='\''2'\'' 2023-07-13T14:26:31.1317754Z export CONDA_PROMPT_MODIFIER='\''(/work/ci_env) '\''' 2023-07-13T14:26:31.1318076Z ++ PS1='(/work/ci_env) ' 2023-07-13T14:26:31.1318790Z ++ 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-07-13T14:26:31.1319442Z ++ 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-07-13T14:26:31.1319791Z ++ export CONDA_SHLVL=2 2023-07-13T14:26:31.1319991Z ++ CONDA_SHLVL=2 2023-07-13T14:26:31.1320270Z ++ export 'CONDA_PROMPT_MODIFIER=(/work/ci_env) ' 2023-07-13T14:26:31.1320687Z ++ CONDA_PROMPT_MODIFIER='(/work/ci_env) ' 2023-07-13T14:26:31.1320911Z + __conda_hashr 2023-07-13T14:26:31.1321128Z + '[' -n '' ']' 2023-07-13T14:26:31.1321341Z + '[' -n '' ']' 2023-07-13T14:26:31.1321538Z + hash -r 2023-07-13T14:26:31.1321885Z + git clone --quiet https://git.videolan.org/git/ffmpeg/nv-codec-headers.git 2023-07-13T14:26:31.1322202Z + cd nv-codec-headers 2023-07-13T14:26:31.1322421Z + git checkout n12.0.16.0 2023-07-13T14:26:31.1322679Z Note: switching to 'n12.0.16.0'. 2023-07-13T14:26:31.1322825Z 2023-07-13T14:26:31.1323026Z You are in 'detached HEAD' state. You can look around, make experimental 2023-07-13T14:26:31.1323366Z changes and commit them, and you can discard any commits you make in this 2023-07-13T14:26:31.1323700Z state without impacting any branches by switching back to a branch. 2023-07-13T14:26:31.1323884Z 2023-07-13T14:26:31.1324037Z If you want to create a new branch to retain commits you create, you may 2023-07-13T14:26:31.1324406Z do so (now or later) by using -c with the switch command. Example: 2023-07-13T14:26:44.7831867Z 2023-07-13T14:26:44.7832517Z git switch -c 2023-07-13T14:26:44.7832800Z 2023-07-13T14:26:44.7833012Z Or undo this operation with: 2023-07-13T14:26:44.7833272Z 2023-07-13T14:26:44.7833429Z git switch - 2023-07-13T14:26:44.7833600Z 2023-07-13T14:26:44.7833867Z Turn off this advice by setting config variable advice.detachedHead to false 2023-07-13T14:26:44.7834228Z 2023-07-13T14:26:44.7834384Z HEAD is now at c5e4af7 Add cuArrayCreate 2023-07-13T14:26:44.7834727Z + make PREFIX=/work/ci_env install 2023-07-13T14:26:44.7835239Z sed 's#@@PREFIX@@#/work/ci_env#' ffnvcodec.pc.in > ffnvcodec.pc 2023-07-13T14:26:44.7835753Z install -m 0755 -d '/work/ci_env/include/ffnvcodec' 2023-07-13T14:26:44.7836255Z install -m 0644 include/ffnvcodec/*.h '/work/ci_env/include/ffnvcodec' 2023-07-13T14:26:44.7836739Z install -m 0755 -d '/work/ci_env/lib/pkgconfig' 2023-07-13T14:26:44.7837218Z install -m 0644 ffnvcodec.pc '/work/ci_env/lib/pkgconfig' 2023-07-13T14:26:44.7837774Z + wget -q https://github.com/FFmpeg/FFmpeg/archive/refs/tags/n6.0.tar.gz 2023-07-13T14:26:44.7838387Z + tar -xf n6.0.tar.gz 2023-07-13T14:26:44.7838989Z + cd ./FFmpeg-n6.0 2023-07-13T14:26:44.7839284Z + export revision=6.0 2023-07-13T14:26:44.7839510Z + revision=6.0 2023-07-13T14:26:44.7840748Z + ./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-07-13T14:26:44.7841814Z install prefix /work/ci_env 2023-07-13T14:26:44.7842128Z source path . 2023-07-13T14:26:44.7842400Z C compiler gcc 2023-07-13T14:26:44.7842677Z C library glibc 2023-07-13T14:26:44.7843002Z ARCH x86 (generic) 2023-07-13T14:26:44.7843355Z big-endian no 2023-07-13T14:26:44.7843641Z runtime cpu detection yes 2023-07-13T14:26:44.7843936Z standalone assembly yes 2023-07-13T14:26:44.7844161Z x86 assembler yasm 2023-07-13T14:26:44.7844367Z MMX enabled yes 2023-07-13T14:26:44.7844580Z MMXEXT enabled yes 2023-07-13T14:26:44.7844791Z 3DNow! enabled yes 2023-07-13T14:26:44.7845000Z 3DNow! extended enabled yes 2023-07-13T14:26:44.7845222Z SSE enabled yes 2023-07-13T14:26:44.7845437Z SSSE3 enabled yes 2023-07-13T14:26:44.7845644Z AESNI enabled yes 2023-07-13T14:26:44.7845862Z AVX enabled yes 2023-07-13T14:26:44.7846074Z AVX2 enabled yes 2023-07-13T14:26:44.7846318Z AVX-512 enabled yes 2023-07-13T14:26:44.7846566Z AVX-512ICL enabled yes 2023-07-13T14:26:44.7846791Z XOP enabled yes 2023-07-13T14:26:44.7846994Z FMA3 enabled yes 2023-07-13T14:26:44.7847361Z FMA4 enabled yes 2023-07-13T14:26:44.7847570Z i686 features enabled yes 2023-07-13T14:26:44.7847776Z CMOV is fast yes 2023-07-13T14:26:44.7847981Z EBX available yes 2023-07-13T14:26:44.7848191Z EBP available yes 2023-07-13T14:26:44.7848393Z debug symbols yes 2023-07-13T14:26:44.7848598Z strip symbols yes 2023-07-13T14:26:44.7848810Z optimize for size no 2023-07-13T14:26:44.7849020Z optimizations yes 2023-07-13T14:26:44.7849227Z static no 2023-07-13T14:26:44.7849427Z shared yes 2023-07-13T14:26:44.7849638Z postprocessing support yes 2023-07-13T14:26:44.7849863Z network support yes 2023-07-13T14:26:44.7850090Z threading support pthreads 2023-07-13T14:26:44.7850321Z safe bitstream reader yes 2023-07-13T14:26:44.7850538Z texi2html enabled no 2023-07-13T14:26:44.7850759Z perl enabled yes 2023-07-13T14:26:44.7850980Z pod2man enabled yes 2023-07-13T14:26:44.7851190Z makeinfo enabled no 2023-07-13T14:26:44.7851415Z makeinfo supports HTML no 2023-07-13T14:26:44.7851639Z xmllint enabled yes 2023-07-13T14:26:44.7851762Z 2023-07-13T14:26:44.7851847Z External libraries: 2023-07-13T14:26:44.7852078Z bzlib libmp3lame zlib 2023-07-13T14:26:44.7852304Z gnutls libx264 2023-07-13T14:26:44.7852498Z iconv lzma 2023-07-13T14:26:44.7852623Z 2023-07-13T14:26:44.7852758Z External libraries providing hardware acceleration: 2023-07-13T14:26:44.7853032Z cuda cuvid nvenc 2023-07-13T14:26:44.7853249Z cuda_llvm ffnvcodec 2023-07-13T14:26:44.7853457Z cuda_nvcc nvdec 2023-07-13T14:26:44.7853582Z 2023-07-13T14:26:44.7853657Z Libraries: 2023-07-13T14:26:44.7853876Z avcodec avformat swresample 2023-07-13T14:26:44.7854135Z avdevice avutil swscale 2023-07-13T14:26:44.7854374Z avfilter postproc 2023-07-13T14:26:44.7854506Z 2023-07-13T14:26:44.7854581Z Programs: 2023-07-13T14:26:44.7854835Z ffmpeg ffprobe 2023-07-13T14:26:44.7854965Z 2023-07-13T14:26:44.7855048Z Enabled decoders: 2023-07-13T14:26:44.7855271Z aac fits pgmyuv 2023-07-13T14:26:44.7855514Z aac_fixed flac pgssub 2023-07-13T14:26:44.7855765Z aac_latm flashsv pgx 2023-07-13T14:26:44.7856019Z aasc flashsv2 phm 2023-07-13T14:26:44.7856257Z ac3 flic photocd 2023-07-13T14:26:44.7856505Z ac3_fixed flv pictor 2023-07-13T14:26:44.7856758Z acelp_kelvin fmvc pixlet 2023-07-13T14:26:44.7857012Z adpcm_4xm fourxm pjs 2023-07-13T14:26:44.7857259Z adpcm_adx fraps png 2023-07-13T14:26:44.7857517Z adpcm_afc frwu ppm 2023-07-13T14:26:44.7857773Z adpcm_agm ftr prores 2023-07-13T14:26:44.7858017Z adpcm_aica g2m prosumer 2023-07-13T14:26:44.7858269Z adpcm_argo g723_1 psd 2023-07-13T14:26:44.7858509Z adpcm_ct g729 ptx 2023-07-13T14:26:44.7858746Z adpcm_dtk gdv qcelp 2023-07-13T14:26:44.7858993Z adpcm_ea gem qdm2 2023-07-13T14:26:44.7859245Z adpcm_ea_maxis_xa gif qdmc 2023-07-13T14:26:44.7859497Z adpcm_ea_r1 gremlin_dpcm qdraw 2023-07-13T14:26:44.7859751Z adpcm_ea_r2 gsm qoi 2023-07-13T14:26:44.7859991Z adpcm_ea_r3 gsm_ms qpeg 2023-07-13T14:26:44.7860242Z adpcm_ea_xas h261 qtrle 2023-07-13T14:26:44.7860538Z adpcm_g722 h263 r10k 2023-07-13T14:26:44.7860774Z adpcm_g726 h263i r210 2023-07-13T14:26:44.7861025Z adpcm_g726le h263p ra_144 2023-07-13T14:26:44.7861270Z adpcm_ima_acorn h264 ra_288 2023-07-13T14:26:44.7861522Z adpcm_ima_alp h264_cuvid ralf 2023-07-13T14:26:44.7861774Z adpcm_ima_amv hap rasc 2023-07-13T14:26:44.7862020Z adpcm_ima_apc hca rawvideo 2023-07-13T14:26:44.7862275Z adpcm_ima_apm hcom realtext 2023-07-13T14:26:44.7862528Z adpcm_ima_cunning hdr rka 2023-07-13T14:26:44.7862772Z adpcm_ima_dat4 hevc rl2 2023-07-13T14:26:44.7863023Z adpcm_ima_dk3 hevc_cuvid roq 2023-07-13T14:26:44.7863280Z adpcm_ima_dk4 hnm4_video roq_dpcm 2023-07-13T14:26:44.7863535Z adpcm_ima_ea_eacs hq_hqa rpza 2023-07-13T14:26:44.7863784Z adpcm_ima_ea_sead hqx rscc 2023-07-13T14:26:44.7864040Z adpcm_ima_iss huffyuv rv10 2023-07-13T14:26:44.7864294Z adpcm_ima_moflex hymt rv20 2023-07-13T14:26:44.7864532Z adpcm_ima_mtf iac rv30 2023-07-13T14:26:44.7864781Z adpcm_ima_oki idcin rv40 2023-07-13T14:26:44.7865028Z adpcm_ima_qt idf s302m 2023-07-13T14:26:44.7865266Z adpcm_ima_rad iff_ilbm sami 2023-07-13T14:26:44.7865516Z adpcm_ima_smjpeg ilbc sanm 2023-07-13T14:26:44.7865760Z adpcm_ima_ssi imc sbc 2023-07-13T14:26:44.7865996Z adpcm_ima_wav imm4 scpr 2023-07-13T14:26:44.7866252Z adpcm_ima_ws imm5 screenpresso 2023-07-13T14:26:44.7866513Z adpcm_ms indeo2 sdx2_dpcm 2023-07-13T14:26:44.7866767Z adpcm_mtaf indeo3 sga 2023-07-13T14:26:44.7867063Z adpcm_psx indeo4 sgi 2023-07-13T14:26:44.7867322Z adpcm_sbpro_2 indeo5 sgirle 2023-07-13T14:26:44.7867595Z adpcm_sbpro_3 interplay_acm sheervideo 2023-07-13T14:26:44.7867870Z adpcm_sbpro_4 interplay_dpcm shorten 2023-07-13T14:26:44.7868156Z adpcm_swf interplay_video simbiosis_imx 2023-07-13T14:26:44.7868427Z adpcm_thp ipu sipr 2023-07-13T14:26:44.7868674Z adpcm_thp_le jacosub siren 2023-07-13T14:26:44.7868938Z adpcm_vima jpeg2000 smackaud 2023-07-13T14:26:44.7869197Z adpcm_xa jpegls smacker 2023-07-13T14:26:44.7869448Z adpcm_xmd jv smc 2023-07-13T14:26:44.7869691Z adpcm_yamaha kgv1 smvjpeg 2023-07-13T14:26:44.7869949Z adpcm_zork kmvc snow 2023-07-13T14:26:44.7870210Z agm lagarith sol_dpcm 2023-07-13T14:26:44.7870448Z aic loco sonic 2023-07-13T14:26:44.7870687Z alac lscr sp5x 2023-07-13T14:26:44.7870950Z alias_pix m101 speedhq 2023-07-13T14:26:44.7871191Z als mace3 speex 2023-07-13T14:26:44.7871424Z amrnb mace6 srgc 2023-07-13T14:26:44.7871683Z amrwb magicyuv srt 2023-07-13T14:26:44.7872079Z amv mdec ssa 2023-07-13T14:26:44.7872302Z anm media100 stl 2023-07-13T14:26:44.7872544Z ansi metasound subrip 2023-07-13T14:26:44.7872796Z anull microdvd subviewer 2023-07-13T14:26:44.7873042Z apac mimic subviewer1 2023-07-13T14:26:44.7873352Z ape misc4 sunrast 2023-07-13T14:26:44.7873595Z apng mjpeg svq1 2023-07-13T14:26:44.7873829Z aptx mjpeg_cuvid svq3 2023-07-13T14:26:44.7874073Z aptx_hd mjpegb tak 2023-07-13T14:26:44.7874313Z arbc mlp targa 2023-07-13T14:26:44.7874559Z argo mmvideo targa_y216 2023-07-13T14:26:44.7874797Z ass mobiclip tdsc 2023-07-13T14:26:44.7875040Z asv1 motionpixels text 2023-07-13T14:26:44.7875286Z asv2 movtext theora 2023-07-13T14:26:44.7875513Z atrac1 mp1 thp 2023-07-13T14:26:44.7875771Z atrac3 mp1float tiertexseqvideo 2023-07-13T14:26:44.7876023Z atrac3al mp2 tiff 2023-07-13T14:26:44.7876264Z atrac3p mp2float tmv 2023-07-13T14:26:44.7876512Z atrac3pal mp3 truehd 2023-07-13T14:26:44.7876764Z atrac9 mp3adu truemotion1 2023-07-13T14:26:44.7877025Z aura mp3adufloat truemotion2 2023-07-13T14:26:44.7877281Z aura2 mp3float truemotion2rt 2023-07-13T14:26:44.7877541Z av1 mp3on4 truespeech 2023-07-13T14:26:44.7877790Z av1_cuvid mp3on4float tscc 2023-07-13T14:26:44.7878025Z avrn mpc7 tscc2 2023-07-13T14:26:44.7878498Z avrp mpc8 tta 2023-07-13T14:26:44.7878741Z avs mpeg1_cuvid twinvq 2023-07-13T14:26:44.7878981Z avui mpeg1video txd 2023-07-13T14:26:44.7879223Z ayuv mpeg2_cuvid ulti 2023-07-13T14:26:44.7879486Z bethsoftvid mpeg2video utvideo 2023-07-13T14:26:44.7879821Z bfi mpeg4 v210 2023-07-13T14:26:44.8274564Z bink mpeg4_cuvid v210x 2023-07-13T14:26:44.8274860Z binkaudio_dct mpegvideo v308 2023-07-13T14:26:44.8275688Z binkaudio_rdft mpl2 v408 2023-07-13T14:26:44.8275949Z bintext msa1 v410 2023-07-13T14:26:44.8276204Z bitpacked mscc vb 2023-07-13T14:26:44.8276518Z bmp msmpeg4v1 vble 2023-07-13T14:26:44.8276839Z bmv_audio msmpeg4v2 vbn 2023-07-13T14:26:44.8277172Z bmv_video msmpeg4v3 vc1 2023-07-13T14:26:44.8277509Z bonk msnsiren vc1_cuvid 2023-07-13T14:26:44.8277835Z brender_pix msp2 vc1image 2023-07-13T14:26:44.8278368Z c93 msrle vcr1 2023-07-13T14:26:44.8278730Z cavs mss1 vmdaudio 2023-07-13T14:26:44.8279060Z cbd2_dpcm mss2 vmdvideo 2023-07-13T14:26:44.8279367Z ccaption msvideo1 vmnc 2023-07-13T14:26:44.8279701Z cdgraphics mszh vnull 2023-07-13T14:26:44.8279973Z cdtoons mts2 vorbis 2023-07-13T14:26:44.8280280Z cdxl mv30 vp3 2023-07-13T14:26:44.8280598Z cfhd mvc1 vp4 2023-07-13T14:26:44.8280906Z cinepak mvc2 vp5 2023-07-13T14:26:44.8281232Z clearvideo mvdv vp6 2023-07-13T14:26:44.8281574Z cljr mvha vp6a 2023-07-13T14:26:44.8281923Z cllc mwsc vp6f 2023-07-13T14:26:44.8282273Z comfortnoise mxpeg vp7 2023-07-13T14:26:44.8282821Z cook nellymoser vp8 2023-07-13T14:26:44.8283181Z cpia notchlc vp8_cuvid 2023-07-13T14:26:44.8283575Z cri nuv vp9 2023-07-13T14:26:44.8283959Z cscd on2avc vp9_cuvid 2023-07-13T14:26:44.8284344Z cyuv opus vplayer 2023-07-13T14:26:44.8284669Z dca paf_audio vqa 2023-07-13T14:26:44.8284898Z dds paf_video vqc 2023-07-13T14:26:44.8285145Z derf_dpcm pam wady_dpcm 2023-07-13T14:26:44.8285394Z dfa pbm wavarc 2023-07-13T14:26:44.8285644Z dfpwm pcm_alaw wavpack 2023-07-13T14:26:44.8285888Z dirac pcm_bluray wbmp 2023-07-13T14:26:44.8286134Z dnxhd pcm_dvd wcmv 2023-07-13T14:26:44.8286389Z dolby_e pcm_f16le webp 2023-07-13T14:26:44.8286630Z dpx pcm_f24le webvtt 2023-07-13T14:26:44.8286890Z dsd_lsbf pcm_f32be wmalossless 2023-07-13T14:26:44.8287153Z dsd_lsbf_planar pcm_f32le wmapro 2023-07-13T14:26:44.8287398Z dsd_msbf pcm_f64be wmav1 2023-07-13T14:26:44.8287652Z dsd_msbf_planar pcm_f64le wmav2 2023-07-13T14:26:44.8287910Z dsicinaudio pcm_lxf wmavoice 2023-07-13T14:26:44.8288171Z dsicinvideo pcm_mulaw wmv1 2023-07-13T14:26:44.8288413Z dss_sp pcm_s16be wmv2 2023-07-13T14:26:44.8288658Z dst pcm_s16be_planar wmv3 2023-07-13T14:26:44.8288912Z dvaudio pcm_s16le wmv3image 2023-07-13T14:26:44.8289158Z dvbsub pcm_s16le_planar wnv1 2023-07-13T14:26:44.8289427Z dvdsub pcm_s24be wrapped_avframe 2023-07-13T14:26:44.8289784Z dvvideo pcm_s24daud ws_snd1 2023-07-13T14:26:44.8290030Z dxa pcm_s24le xan_dpcm 2023-07-13T14:26:44.8290283Z dxtory pcm_s24le_planar xan_wc3 2023-07-13T14:26:44.8290531Z dxv pcm_s32be xan_wc4 2023-07-13T14:26:44.8290765Z eac3 pcm_s32le xbin 2023-07-13T14:26:44.8291010Z eacmv pcm_s32le_planar xbm 2023-07-13T14:26:44.8291261Z eamad pcm_s64be xface 2023-07-13T14:26:44.8291501Z eatgq pcm_s64le xl 2023-07-13T14:26:44.8291736Z eatgv pcm_s8 xma1 2023-07-13T14:26:44.8291980Z eatqi pcm_s8_planar xma2 2023-07-13T14:26:44.8292263Z eightbps pcm_sga xpm 2023-07-13T14:26:44.8292522Z eightsvx_exp pcm_u16be xsub 2023-07-13T14:26:44.8292768Z eightsvx_fib pcm_u16le xwd 2023-07-13T14:26:44.8293029Z escape124 pcm_u24be y41p 2023-07-13T14:26:44.8293272Z escape130 pcm_u24le ylc 2023-07-13T14:26:44.8293507Z evrc pcm_u32be yop 2023-07-13T14:26:44.8293745Z exr pcm_u32le yuv4 2023-07-13T14:26:44.8293992Z fastaudio pcm_u8 zero12v 2023-07-13T14:26:44.8294236Z ffv1 pcm_vidc zerocodec 2023-07-13T14:26:44.8294485Z ffvhuff pcx zlib 2023-07-13T14:26:44.8294732Z ffwavesynth pfm zmbv 2023-07-13T14:26:44.8294956Z fic pgm 2023-07-13T14:26:44.8295075Z 2023-07-13T14:26:44.8295163Z Enabled encoders: 2023-07-13T14:26:44.8295389Z a64multi h264_nvenc phm 2023-07-13T14:26:44.8295690Z a64multi5 hdr png 2023-07-13T14:26:44.8295925Z aac hevc_nvenc ppm 2023-07-13T14:26:44.8296172Z ac3 huffyuv prores 2023-07-13T14:26:44.8296427Z ac3_fixed jpeg2000 prores_aw 2023-07-13T14:26:44.8296683Z adpcm_adx jpegls prores_ks 2023-07-13T14:26:44.8296943Z adpcm_argo libmp3lame qoi 2023-07-13T14:26:44.8297190Z adpcm_g722 libx264 qtrle 2023-07-13T14:26:44.8297430Z adpcm_g726 libx264rgb r10k 2023-07-13T14:26:44.8297679Z adpcm_g726le ljpeg r210 2023-07-13T14:26:44.8297934Z adpcm_ima_alp magicyuv ra_144 2023-07-13T14:26:44.8298196Z adpcm_ima_amv mjpeg rawvideo 2023-07-13T14:26:44.8298440Z adpcm_ima_apm mlp roq 2023-07-13T14:26:44.8298699Z adpcm_ima_qt movtext roq_dpcm 2023-07-13T14:26:44.8298950Z adpcm_ima_ssi mp2 rpza 2023-07-13T14:26:44.8299197Z adpcm_ima_wav mp2fixed rv10 2023-07-13T14:26:44.8299452Z adpcm_ima_ws mpeg1video rv20 2023-07-13T14:26:44.8299706Z adpcm_ms mpeg2video s302m 2023-07-13T14:26:44.8299952Z adpcm_swf mpeg4 sbc 2023-07-13T14:26:44.8300199Z adpcm_yamaha msmpeg4v2 sgi 2023-07-13T14:26:44.8300447Z alac msmpeg4v3 smc 2023-07-13T14:26:44.8300681Z alias_pix msvideo1 snow 2023-07-13T14:26:44.8300930Z amv nellymoser sonic 2023-07-13T14:26:44.8301179Z anull opus sonic_ls 2023-07-13T14:26:44.8301427Z apng pam speedhq 2023-07-13T14:26:44.8301662Z aptx pbm srt 2023-07-13T14:26:44.8301907Z aptx_hd pcm_alaw ssa 2023-07-13T14:26:44.8302254Z ass pcm_bluray subrip 2023-07-13T14:26:44.8302506Z asv1 pcm_dvd sunrast 2023-07-13T14:26:44.8302749Z asv2 pcm_f32be svq1 2023-07-13T14:26:44.8302992Z av1_nvenc pcm_f32le targa 2023-07-13T14:26:44.8303226Z avrp pcm_f64be text 2023-07-13T14:26:44.8303464Z avui pcm_f64le tiff 2023-07-13T14:26:44.8303709Z ayuv pcm_mulaw truehd 2023-07-13T14:26:44.8303956Z bitpacked pcm_s16be tta 2023-07-13T14:26:44.8304200Z bmp pcm_s16be_planar ttml 2023-07-13T14:26:44.8304445Z cfhd pcm_s16le utvideo 2023-07-13T14:26:44.8304697Z cinepak pcm_s16le_planar v210 2023-07-13T14:26:44.8304943Z cljr pcm_s24be v308 2023-07-13T14:26:44.8305195Z comfortnoise pcm_s24daud v408 2023-07-13T14:26:44.8305440Z dca pcm_s24le v410 2023-07-13T14:26:44.8305674Z dfpwm pcm_s24le_planar vbn 2023-07-13T14:26:44.8305919Z dnxhd pcm_s32be vc2 2023-07-13T14:26:44.8306164Z dpx pcm_s32le vnull 2023-07-13T14:26:44.8306406Z dvbsub pcm_s32le_planar vorbis 2023-07-13T14:26:44.8306658Z dvdsub pcm_s64be wavpack 2023-07-13T14:26:44.8306906Z dvvideo pcm_s64le wbmp 2023-07-13T14:26:44.8307147Z eac3 pcm_s8 webvtt 2023-07-13T14:26:44.8307379Z exr pcm_s8_planar wmav1 2023-07-13T14:26:44.8307623Z ffv1 pcm_u16be wmav2 2023-07-13T14:26:44.8307861Z ffvhuff pcm_u16le wmv1 2023-07-13T14:26:44.8308146Z fits pcm_u24be wmv2 2023-07-13T14:26:44.8308409Z flac pcm_u24le wrapped_avframe 2023-07-13T14:26:44.8308670Z flashsv pcm_u32be xbm 2023-07-13T14:26:44.8308908Z flashsv2 pcm_u32le xface 2023-07-13T14:26:44.8309147Z flv pcm_u8 xsub 2023-07-13T14:26:44.8309382Z g723_1 pcm_vidc xwd 2023-07-13T14:26:44.8309610Z gif pcx y41p 2023-07-13T14:26:44.8309839Z h261 pfm yuv4 2023-07-13T14:26:44.8310067Z h263 pgm zlib 2023-07-13T14:26:44.8310299Z h263p pgmyuv zmbv 2023-07-13T14:26:44.8310430Z 2023-07-13T14:26:44.8310514Z Enabled hwaccels: 2023-07-13T14:26:44.8310750Z av1_nvdec mpeg1_nvdec vp8_nvdec 2023-07-13T14:26:44.8311017Z h264_nvdec mpeg2_nvdec vp9_nvdec 2023-07-13T14:26:44.8311279Z hevc_nvdec mpeg4_nvdec wmv3_nvdec 2023-07-13T14:26:44.8311526Z mjpeg_nvdec vc1_nvdec 2023-07-13T14:26:44.8311658Z 2023-07-13T14:26:44.8311893Z Enabled parsers: 2023-07-13T14:26:44.8312133Z aac dvdsub opus 2023-07-13T14:26:44.8312370Z aac_latm flac png 2023-07-13T14:26:44.8312604Z ac3 ftr pnm 2023-07-13T14:26:44.8312825Z adx g723_1 qoi 2023-07-13T14:26:44.8313049Z amr g729 rv30 2023-07-13T14:26:44.8313304Z av1 gif rv40 2023-07-13T14:26:44.8313574Z avs2 gsm sbc 2023-07-13T14:26:44.8313808Z avs3 h261 sipr 2023-07-13T14:26:44.8314056Z bmp h263 tak 2023-07-13T14:26:44.8314313Z cavsvideo h264 vc1 2023-07-13T14:26:44.8314707Z cook hdr vorbis 2023-07-13T14:26:44.8330815Z cri hevc vp3 2023-07-13T14:26:44.8331070Z dca ipu vp8 2023-07-13T14:26:44.8331311Z dirac jpeg2000 vp9 2023-07-13T14:26:44.8331560Z dnxhd misc4 webp 2023-07-13T14:26:44.8331794Z dolby_e mjpeg xbm 2023-07-13T14:26:44.8332031Z dpx mlp xma 2023-07-13T14:26:44.8943577Z dvaudio mpeg4video xwd 2023-07-13T14:26:44.8943869Z dvbsub mpegaudio 2023-07-13T14:26:44.8944137Z dvd_nav mpegvideo 2023-07-13T14:26:44.8944300Z 2023-07-13T14:26:44.8944392Z Enabled demuxers: 2023-07-13T14:26:44.8944653Z aa idf pcm_s16be 2023-07-13T14:26:44.8944985Z aac iff pcm_s16le 2023-07-13T14:26:44.8945350Z aax ifv pcm_s24be 2023-07-13T14:26:44.8945608Z ac3 ilbc pcm_s24le 2023-07-13T14:26:44.8945931Z ace image2 pcm_s32be 2023-07-13T14:26:44.8946219Z acm image2_alias_pix pcm_s32le 2023-07-13T14:26:44.8946567Z act image2_brender_pix pcm_s8 2023-07-13T14:26:44.8946921Z adf image2pipe pcm_u16be 2023-07-13T14:26:44.8947256Z adp image_bmp_pipe pcm_u16le 2023-07-13T14:26:44.8947588Z ads image_cri_pipe pcm_u24be 2023-07-13T14:26:44.8947931Z adx image_dds_pipe pcm_u24le 2023-07-13T14:26:44.8948272Z aea image_dpx_pipe pcm_u32be 2023-07-13T14:26:44.8948598Z afc image_exr_pipe pcm_u32le 2023-07-13T14:26:44.8949233Z aiff image_gem_pipe pcm_u8 2023-07-13T14:26:44.8949516Z aix image_gif_pipe pcm_vidc 2023-07-13T14:26:44.8949761Z alp image_hdr_pipe pjs 2023-07-13T14:26:44.8950011Z amr image_j2k_pipe pmp 2023-07-13T14:26:44.8950268Z amrnb image_jpeg_pipe pp_bnk 2023-07-13T14:26:44.8950566Z amrwb image_jpegls_pipe pva 2023-07-13T14:26:44.8950825Z anm image_jpegxl_pipe pvf 2023-07-13T14:26:44.8951082Z apac image_pam_pipe qcp 2023-07-13T14:26:44.8951385Z apc image_pbm_pipe r3d 2023-07-13T14:26:44.8951845Z ape image_pcx_pipe rawvideo 2023-07-13T14:26:44.8952204Z apm image_pfm_pipe realtext 2023-07-13T14:26:44.8952537Z apng image_pgm_pipe redspark 2023-07-13T14:26:44.8952870Z aptx image_pgmyuv_pipe rka 2023-07-13T14:26:44.8953220Z aptx_hd image_pgx_pipe rl2 2023-07-13T14:26:44.8953478Z aqtitle image_phm_pipe rm 2023-07-13T14:26:44.8953734Z argo_asf image_photocd_pipe roq 2023-07-13T14:26:44.8953980Z argo_brp image_pictor_pipe rpl 2023-07-13T14:26:44.8954228Z argo_cvg image_png_pipe rsd 2023-07-13T14:26:44.8954478Z asf image_ppm_pipe rso 2023-07-13T14:26:44.8954712Z asf_o image_psd_pipe rtp 2023-07-13T14:26:44.8954961Z ass image_qdraw_pipe rtsp 2023-07-13T14:26:44.8955213Z ast image_qoi_pipe s337m 2023-07-13T14:26:44.8955454Z au image_sgi_pipe sami 2023-07-13T14:26:44.8955706Z av1 image_sunrast_pipe sap 2023-07-13T14:26:44.8955958Z avi image_svg_pipe sbc 2023-07-13T14:26:44.8956199Z avr image_tiff_pipe sbg 2023-07-13T14:26:44.8956541Z avs image_vbn_pipe scc 2023-07-13T14:26:44.8956783Z avs2 image_webp_pipe scd 2023-07-13T14:26:44.8957026Z avs3 image_xbm_pipe sdns 2023-07-13T14:26:44.8957272Z bethsoftvid image_xpm_pipe sdp 2023-07-13T14:26:44.8957523Z bfi image_xwd_pipe sdr2 2023-07-13T14:26:44.8957764Z bfstm ingenient sds 2023-07-13T14:26:44.8957990Z bink ipmovie sdx 2023-07-13T14:26:44.8958464Z binka ipu segafilm 2023-07-13T14:26:44.8958707Z bintext ircam ser 2023-07-13T14:26:44.8958929Z bit iss sga 2023-07-13T14:26:44.8959162Z bitpacked iv8 shorten 2023-07-13T14:26:44.8959406Z bmv ivf siff 2023-07-13T14:26:44.8959653Z boa ivr simbiosis_imx 2023-07-13T14:26:44.8959890Z bonk jacosub sln 2023-07-13T14:26:44.8960123Z brstm jv smacker 2023-07-13T14:26:44.8960356Z c93 kux smjpeg 2023-07-13T14:26:44.8960585Z caf kvag smush 2023-07-13T14:26:44.8960823Z cavsvideo laf sol 2023-07-13T14:26:44.8961060Z cdg live_flv sox 2023-07-13T14:26:44.8961285Z cdxl lmlm4 spdif 2023-07-13T14:26:44.8961516Z cine loas srt 2023-07-13T14:26:44.8961745Z codec2 lrc stl 2023-07-13T14:26:44.8961972Z codec2raw luodat str 2023-07-13T14:26:44.8962347Z concat lvf subviewer 2023-07-13T14:26:44.8962610Z data lxf subviewer1 2023-07-13T14:26:44.8962844Z daud m4v sup 2023-07-13T14:26:44.8963071Z dcstr matroska svag 2023-07-13T14:26:44.8963307Z derf mca svs 2023-07-13T14:26:44.8963539Z dfa mcc swf 2023-07-13T14:26:44.8963762Z dfpwm mgsts tak 2023-07-13T14:26:44.8964012Z dhav microdvd tedcaptions 2023-07-13T14:26:44.8964257Z dirac mjpeg thp 2023-07-13T14:26:44.8964494Z dnxhd mjpeg_2000 threedostr 2023-07-13T14:26:44.8964739Z dsf mlp tiertexseq 2023-07-13T14:26:44.8964975Z dsicin mlv tmv 2023-07-13T14:26:44.8965213Z dss mm truehd 2023-07-13T14:26:44.8965433Z dts mmf tta 2023-07-13T14:26:44.8965662Z dtshd mods tty 2023-07-13T14:26:44.8965890Z dv moflex txd 2023-07-13T14:26:44.8966113Z dvbsub mov ty 2023-07-13T14:26:44.8966348Z dvbtxt mp3 v210 2023-07-13T14:26:44.8966583Z dxa mpc v210x 2023-07-13T14:26:44.8966807Z ea mpc8 vag 2023-07-13T14:26:44.8967037Z ea_cdata mpegps vc1 2023-07-13T14:26:44.8967275Z eac3 mpegts vc1t 2023-07-13T14:26:44.8967511Z epaf mpegtsraw vividas 2023-07-13T14:26:44.8967765Z ffmetadata mpegvideo vivo 2023-07-13T14:26:44.8968012Z filmstrip mpjpeg vmd 2023-07-13T14:26:44.8968258Z fits mpl2 vobsub 2023-07-13T14:26:44.8968570Z flac mpsub voc 2023-07-13T14:26:44.8968805Z flic msf vpk 2023-07-13T14:26:44.8969048Z flv msnwc_tcp vplayer 2023-07-13T14:26:44.8969285Z fourxm msp vqf 2023-07-13T14:26:44.8969514Z frm mtaf w64 2023-07-13T14:26:44.8969804Z fsb mtv wady 2023-07-13T14:26:44.8970103Z fwse musx wav 2023-07-13T14:26:44.8970408Z g722 mv wavarc 2023-07-13T14:26:44.8970706Z g723_1 mvi wc3 2023-07-13T14:26:44.8971021Z g726 mxf webm_dash_manifest 2023-07-13T14:26:44.8971354Z g726le mxg webvtt 2023-07-13T14:26:44.8971670Z g729 nc wsaud 2023-07-13T14:26:44.8971990Z gdv nistsphere wsd 2023-07-13T14:26:44.8972369Z genh nsp wsvqa 2023-07-13T14:26:44.8972688Z gif nsv wtv 2023-07-13T14:26:44.8972990Z gsm nut wv 2023-07-13T14:26:44.8973275Z gxf nuv wve 2023-07-13T14:26:44.8973571Z h261 obu xa 2023-07-13T14:26:44.8973886Z h263 ogg xbin 2023-07-13T14:26:44.8974187Z h264 oma xmd 2023-07-13T14:26:44.8974502Z hca paf xmv 2023-07-13T14:26:44.8974813Z hcom pcm_alaw xvag 2023-07-13T14:26:44.8975115Z hevc pcm_f32be xwma 2023-07-13T14:26:44.8975432Z hls pcm_f32le yop 2023-07-13T14:26:44.8975782Z hnm pcm_f64be yuv4mpegpipe 2023-07-13T14:26:44.8976019Z ico pcm_f64le 2023-07-13T14:26:44.8976221Z idcin pcm_mulaw 2023-07-13T14:26:44.8976351Z 2023-07-13T14:26:44.8976435Z Enabled muxers: 2023-07-13T14:26:44.8976654Z a64 h263 pcm_s16le 2023-07-13T14:26:44.8976882Z ac3 h264 pcm_s24be 2023-07-13T14:26:44.8977118Z adts hash pcm_s24le 2023-07-13T14:26:44.8977359Z adx hds pcm_s32be 2023-07-13T14:26:44.8977591Z aiff hevc pcm_s32le 2023-07-13T14:26:44.8977827Z alp hls pcm_s8 2023-07-13T14:26:44.8978066Z amr ico pcm_u16be 2023-07-13T14:26:44.8978299Z amv ilbc pcm_u16le 2023-07-13T14:26:44.8978539Z apm image2 pcm_u24be 2023-07-13T14:26:44.8978790Z apng image2pipe pcm_u24le 2023-07-13T14:26:44.8979036Z aptx ipod pcm_u32be 2023-07-13T14:26:44.8979272Z aptx_hd ircam pcm_u32le 2023-07-13T14:26:44.8979516Z argo_asf ismv pcm_u8 2023-07-13T14:26:44.8979762Z argo_cvg ivf pcm_vidc 2023-07-13T14:26:44.8979999Z asf jacosub psp 2023-07-13T14:26:44.8980244Z asf_stream kvag rawvideo 2023-07-13T14:26:44.8980481Z ass latm rm 2023-07-13T14:26:44.8980700Z ast lrc roq 2023-07-13T14:26:44.8980924Z au m4v rso 2023-07-13T14:26:44.8981154Z avi matroska rtp 2023-07-13T14:26:44.8981417Z avif matroska_audio rtp_mpegts 2023-07-13T14:26:44.8981658Z avm2 md5 rtsp 2023-07-13T14:26:44.8981956Z avs2 microdvd sap 2023-07-13T14:26:44.8982195Z avs3 mjpeg sbc 2023-07-13T14:26:44.8982434Z bit mkvtimestamp_v2 scc 2023-07-13T14:26:44.8982679Z caf mlp segafilm 2023-07-13T14:26:44.8982926Z cavsvideo mmf segment 2023-07-13T14:26:44.8983166Z codec2 mov smjpeg 2023-07-13T14:26:44.8983432Z codec2raw mp2 smoothstreaming 2023-07-13T14:26:44.8983687Z crc mp3 sox 2023-07-13T14:26:44.8983923Z dash mp4 spdif 2023-07-13T14:26:44.8984156Z data mpeg1system spx 2023-07-13T14:26:44.8984396Z daud mpeg1vcd srt 2023-07-13T14:26:44.8984668Z dfpwm mpeg1video stream_segment 2023-07-13T14:26:44.9969935Z dirac mpeg2dvd streamhash 2023-07-13T14:26:44.9970980Z dnxhd mpeg2svcd sup 2023-07-13T14:26:44.9971425Z dts mpeg2video swf 2023-07-13T14:26:44.9971739Z dv mpeg2vob tee 2023-07-13T14:26:44.9972088Z eac3 mpegts tg2 2023-07-13T14:26:44.9972402Z f4v mpjpeg tgp 2023-07-13T14:26:44.9972738Z ffmetadata mxf truehd 2023-07-13T14:26:44.9973065Z fifo mxf_d10 tta 2023-07-13T14:26:44.9973377Z fifo_test mxf_opatom ttml 2023-07-13T14:26:44.9973815Z filmstrip null uncodedframecrc 2023-07-13T14:26:44.9974138Z fits nut vc1 2023-07-13T14:26:44.9974685Z flac obu vc1t 2023-07-13T14:26:44.9974992Z flv oga voc 2023-07-13T14:26:44.9975234Z framecrc ogg w64 2023-07-13T14:26:44.9975469Z framehash ogv wav 2023-07-13T14:26:44.9975696Z framemd5 oma webm 2023-07-13T14:26:44.9975942Z g722 opus webm_chunk 2023-07-13T14:26:44.9976203Z g723_1 pcm_alaw webm_dash_manifest 2023-07-13T14:26:44.9976458Z g726 pcm_f32be webp 2023-07-13T14:26:44.9976767Z g726le pcm_f32le webvtt 2023-07-13T14:26:44.9977096Z gif pcm_f64be wsaud 2023-07-13T14:26:44.9977426Z gsm pcm_f64le wtv 2023-07-13T14:26:44.9977751Z gxf pcm_mulaw wv 2023-07-13T14:26:44.9978116Z h261 pcm_s16be yuv4mpegpipe 2023-07-13T14:26:44.9978325Z 2023-07-13T14:26:44.9978454Z Enabled protocols: 2023-07-13T14:26:44.9978753Z async http rtmpt 2023-07-13T14:26:44.9979094Z cache httpproxy rtmpts 2023-07-13T14:26:44.9979450Z concat https rtp 2023-07-13T14:26:44.9979797Z concatf icecast srtp 2023-07-13T14:26:44.9980118Z crypto ipfs_gateway subfile 2023-07-13T14:26:44.9980441Z data ipns_gateway tcp 2023-07-13T14:26:44.9980754Z fd md5 tee 2023-07-13T14:26:44.9981056Z ffrtmphttp mmsh tls 2023-07-13T14:26:44.9981383Z file mmst udp 2023-07-13T14:26:44.9981725Z ftp pipe udplite 2023-07-13T14:26:44.9982121Z gopher prompeg unix 2023-07-13T14:26:44.9982492Z gophers rtmp 2023-07-13T14:26:44.9982779Z hls rtmps 2023-07-13T14:26:44.9983086Z 2023-07-13T14:26:44.9983192Z Enabled filters: 2023-07-13T14:26:44.9983441Z a3dscope cropdetect oscilloscope 2023-07-13T14:26:44.9983703Z abench crossfeed overlay 2023-07-13T14:26:44.9983974Z abitscope crystalizer overlay_cuda 2023-07-13T14:26:44.9984235Z acompressor cue owdenoise 2023-07-13T14:26:44.9984492Z acontrast curves pad 2023-07-13T14:26:44.9984754Z acopy datascope pal100bars 2023-07-13T14:26:44.9985011Z acrossfade dblur pal75bars 2023-07-13T14:26:44.9985279Z acrossover dcshift palettegen 2023-07-13T14:26:44.9985536Z acrusher dctdnoiz paletteuse 2023-07-13T14:26:44.9985784Z acue deband pan 2023-07-13T14:26:44.9986029Z addroi deblock perms 2023-07-13T14:26:44.9986298Z adeclick decimate perspective 2023-07-13T14:26:44.9986556Z adeclip deconvolve phase 2023-07-13T14:26:44.9986831Z adecorrelate dedot photosensitivity 2023-07-13T14:26:44.9987107Z adelay deesser pixdesctest 2023-07-13T14:26:44.9987369Z adenorm deflate pixelize 2023-07-13T14:26:44.9987627Z aderivative deflicker pixscope 2023-07-13T14:26:44.9987888Z adrawgraph dejudder pp 2023-07-13T14:26:44.9988135Z adrc delogo pp7 2023-07-13T14:26:44.9988391Z adynamicequalizer derain premultiply 2023-07-13T14:26:44.9988666Z adynamicsmooth deshake prewitt 2023-07-13T14:26:44.9988993Z aecho despill pseudocolor 2023-07-13T14:26:44.9989257Z aemphasis detelecine psnr 2023-07-13T14:26:44.9989553Z aeval dialoguenhance pullup 2023-07-13T14:26:44.9989808Z aevalsrc dilation qp 2023-07-13T14:26:44.9990060Z aexciter displace random 2023-07-13T14:26:44.9990313Z afade dnn_classify readeia608 2023-07-13T14:26:44.9990579Z afdelaysrc dnn_detect readvitc 2023-07-13T14:26:44.9990845Z afftdn dnn_processing realtime 2023-07-13T14:26:44.9991100Z afftfilt doubleweave remap 2023-07-13T14:26:44.9991360Z afifo drawbox removegrain 2023-07-13T14:26:44.9991621Z afir drawgraph removelogo 2023-07-13T14:26:44.9992000Z afirsrc drawgrid repeatfields 2023-07-13T14:26:44.9992307Z aformat drmeter replaygain 2023-07-13T14:26:44.9992570Z afreqshift dynaudnorm reverse 2023-07-13T14:26:44.9992821Z afwtdn earwax rgbashift 2023-07-13T14:26:44.9993073Z agate ebur128 rgbtestsrc 2023-07-13T14:26:44.9993330Z agraphmonitor edgedetect roberts 2023-07-13T14:26:44.9993590Z ahistogram elbg rotate 2023-07-13T14:26:44.9993824Z aiir entropy sab 2023-07-13T14:26:44.9994066Z aintegral epx scale 2023-07-13T14:26:44.9994318Z ainterleave eq scale2ref 2023-07-13T14:26:44.9994569Z alatency equalizer scale_cuda 2023-07-13T14:26:44.9994825Z alimiter erosion scdet 2023-07-13T14:26:44.9995074Z allpass estdif scharr 2023-07-13T14:26:44.9995316Z allrgb exposure scroll 2023-07-13T14:26:44.9995636Z allyuv extractplanes segment 2023-07-13T14:26:44.9995889Z aloop extrastereo select 2023-07-13T14:26:44.9996159Z alphaextract fade selectivecolor 2023-07-13T14:26:44.9996458Z alphamerge feedback sendcmd 2023-07-13T14:26:44.9996728Z amerge fftdnoiz separatefields 2023-07-13T14:26:44.9996988Z ametadata fftfilt setdar 2023-07-13T14:26:44.9997229Z amix field setfield 2023-07-13T14:26:44.9997482Z amovie fieldhint setparams 2023-07-13T14:26:44.9997743Z amplify fieldmatch setpts 2023-07-13T14:26:44.9998005Z amultiply fieldorder setrange 2023-07-13T14:26:44.9998406Z anequalizer fifo setsar 2023-07-13T14:26:44.9998667Z anlmdn fillborders settb 2023-07-13T14:26:44.9998927Z anlmf find_rect shear 2023-07-13T14:26:44.9999170Z anlms firequalizer showcqt 2023-07-13T14:26:44.9999425Z anoisesrc flanger showcwt 2023-07-13T14:26:44.9999681Z anull floodfill showfreqs 2023-07-13T14:26:44.9999925Z anullsink format showinfo 2023-07-13T14:26:45.0000182Z anullsrc fps showpalette 2023-07-13T14:26:45.0000446Z apad framepack showspatial 2023-07-13T14:26:45.0000714Z aperms framerate showspectrum 2023-07-13T14:26:45.0000987Z aphasemeter framestep showspectrumpic 2023-07-13T14:26:45.0001270Z aphaser freezedetect showvolume 2023-07-13T14:26:45.0001543Z aphaseshift freezeframes showwaves 2023-07-13T14:26:45.0001920Z apsyclip fspp showwavespic 2023-07-13T14:26:45.0002195Z apulsator gblur shuffleframes 2023-07-13T14:26:45.0002462Z arealtime geq shufflepixels 2023-07-13T14:26:45.0002723Z aresample gradfun shuffleplanes 2023-07-13T14:26:45.0003003Z areverse gradients sidechaincompress 2023-07-13T14:26:45.0003288Z arnndn graphmonitor sidechaingate 2023-07-13T14:26:45.0003552Z asdr grayworld sidedata 2023-07-13T14:26:45.0003801Z asegment greyedge sierpinski 2023-07-13T14:26:45.0004069Z aselect guided signalstats 2023-07-13T14:26:45.0004327Z asendcmd haas signature 2023-07-13T14:26:45.0004586Z asetnsamples haldclut silencedetect 2023-07-13T14:26:45.0004868Z asetpts haldclutsrc silenceremove 2023-07-13T14:26:45.0005135Z asetrate hdcd sinc 2023-07-13T14:26:45.0005375Z asettb headphone sine 2023-07-13T14:26:45.0005625Z ashowinfo hflip siti 2023-07-13T14:26:45.0005887Z asidedata highpass smartblur 2023-07-13T14:26:45.0006152Z asoftclip highshelf smptebars 2023-07-13T14:26:45.0006418Z aspectralstats hilbert smptehdbars 2023-07-13T14:26:45.0006678Z asplit histeq sobel 2023-07-13T14:26:45.0006936Z astats histogram spectrumsynth 2023-07-13T14:26:45.0007194Z astreamselect hqdn3d speechnorm 2023-07-13T14:26:45.0007449Z asubboost hqx split 2023-07-13T14:26:45.0007695Z asubcut hstack spp 2023-07-13T14:26:45.0007943Z asupercut hsvhold sr 2023-07-13T14:26:45.0008266Z asuperpass hsvkey ssim 2023-07-13T14:26:45.0008517Z asuperstop hue ssim360 2023-07-13T14:26:45.0008771Z atadenoise huesaturation stereo3d 2023-07-13T14:26:45.0009042Z atempo hwdownload stereotools 2023-07-13T14:26:45.0009302Z atilt hwmap stereowiden 2023-07-13T14:26:45.0009557Z atrim hwupload streamselect 2023-07-13T14:26:45.0009820Z avectorscope hwupload_cuda super2xsai 2023-07-13T14:26:45.0010099Z avgblur hysteresis superequalizer 2023-07-13T14:26:45.0010367Z avsynctest identity surround 2023-07-13T14:26:45.0010619Z axcorrelate idet swaprect 2023-07-13T14:26:45.0010872Z backgroundkey il swapuv 2023-07-13T14:26:45.0011130Z bandpass inflate tblend 2023-07-13T14:26:45.0011385Z bandreject interlace telecine 2023-07-13T14:26:45.0011635Z bass interleave testsrc 2023-07-13T14:26:45.0011878Z bbox join testsrc2 2023-07-13T14:27:50.3063979Z bench kerndeint thistogram 2023-07-13T14:27:50.3064278Z bilateral kirsch threshold 2023-07-13T14:27:50.3064535Z bilateral_cuda lagfun thumbnail 2023-07-13T14:27:50.3067078Z biquad latency thumbnail_cuda 2023-07-13T14:27:50.3067431Z bitplanenoise lenscorrection tile 2023-07-13T14:27:50.3067806Z blackdetect life tiltshelf 2023-07-13T14:27:50.3068166Z blackframe limitdiff tinterlace 2023-07-13T14:27:50.3068476Z blend limiter tlut2 2023-07-13T14:27:50.3068979Z blockdetect loop tmedian 2023-07-13T14:27:50.3069259Z blurdetect loudnorm tmidequalizer 2023-07-13T14:27:50.3069511Z bm3d lowpass tmix 2023-07-13T14:27:50.3069795Z boxblur lowshelf tonemap 2023-07-13T14:27:50.3070122Z bwdif lumakey tpad 2023-07-13T14:27:50.3070446Z cas lut transpose 2023-07-13T14:27:50.3070762Z cellauto lut1d treble 2023-07-13T14:27:50.3071097Z channelmap lut2 tremolo 2023-07-13T14:27:50.3071439Z channelsplit lut3d trim 2023-07-13T14:27:50.3071923Z chorus lutrgb unpremultiply 2023-07-13T14:27:50.3072292Z chromahold lutyuv unsharp 2023-07-13T14:27:50.3072634Z chromakey mandelbrot untile 2023-07-13T14:27:50.3072985Z chromakey_cuda maskedclamp v360 2023-07-13T14:27:50.3073368Z chromanr maskedmax vaguedenoiser 2023-07-13T14:27:50.3073690Z chromashift maskedmerge varblur 2023-07-13T14:27:50.3073960Z ciescope maskedmin vectorscope 2023-07-13T14:27:50.3074227Z codecview maskedthreshold vflip 2023-07-13T14:27:50.3074500Z color maskfun vfrdet 2023-07-13T14:27:50.3074806Z colorbalance mcompand vibrance 2023-07-13T14:27:50.3075072Z colorchannelmixer median vibrato 2023-07-13T14:27:50.3075341Z colorchart mergeplanes vif 2023-07-13T14:27:50.3075609Z colorcontrast mestimate vignette 2023-07-13T14:27:50.3075875Z colorcorrect metadata virtualbass 2023-07-13T14:27:50.3076156Z colorhold midequalizer vmafmotion 2023-07-13T14:27:50.3087474Z colorize minterpolate volume 2023-07-13T14:27:50.3087986Z colorkey mix volumedetect 2023-07-13T14:27:50.3088366Z colorlevels monochrome vstack 2023-07-13T14:27:50.3088672Z colormap morpho w3fdif 2023-07-13T14:27:50.3089018Z colormatrix movie waveform 2023-07-13T14:27:50.3089373Z colorspace mpdecimate weave 2023-07-13T14:27:50.3089729Z colorspace_cuda mptestsrc xbr 2023-07-13T14:27:50.3090078Z colorspectrum msad xcorrelate 2023-07-13T14:27:50.3090444Z colortemperature multiply xfade 2023-07-13T14:27:50.3090794Z compand negate xmedian 2023-07-13T14:27:50.3091124Z compensationdelay nlmeans xstack 2023-07-13T14:27:50.3091380Z concat nnedi yadif 2023-07-13T14:27:50.3091653Z convolution noformat yadif_cuda 2023-07-13T14:27:50.3091964Z convolve noise yaepblur 2023-07-13T14:27:50.3092222Z copy normalize yuvtestsrc 2023-07-13T14:27:50.3092471Z corr null zoompan 2023-07-13T14:27:50.3092707Z cover_rect nullsink 2023-07-13T14:27:50.3092912Z crop nullsrc 2023-07-13T14:27:50.3093113Z 2023-07-13T14:27:50.3093217Z Enabled bsfs: 2023-07-13T14:27:50.3093516Z aac_adtstoasc h264_redundant_pps opus_metadata 2023-07-13T14:27:50.3093897Z av1_frame_merge hapqa_extract pcm_rechunk 2023-07-13T14:27:50.3094267Z av1_frame_split hevc_metadata pgs_frame_merge 2023-07-13T14:27:50.3094671Z av1_metadata hevc_mp4toannexb prores_metadata 2023-07-13T14:27:50.3095059Z chomp imx_dump_header remove_extradata 2023-07-13T14:27:50.3095601Z dca_core media100_to_mjpegb setts 2023-07-13T14:27:50.3095939Z dts2pts mjpeg2jpeg text2movsub 2023-07-13T14:27:50.3096266Z dump_extradata mjpega_dump_header trace_headers 2023-07-13T14:27:50.3096568Z dv_error_marker mov2textsub truehd_core 2023-07-13T14:27:50.3096854Z eac3_core mp3_header_decompress vp9_metadata 2023-07-13T14:27:50.3097212Z extract_extradata mpeg2_metadata vp9_raw_reorder 2023-07-13T14:27:50.3097608Z filter_units mpeg4_unpack_bframes vp9_superframe 2023-07-13T14:27:50.3097985Z h264_metadata noise vp9_superframe_split 2023-07-13T14:27:50.3098308Z h264_mp4toannexb null 2023-07-13T14:27:50.3098447Z 2023-07-13T14:27:50.3098529Z Enabled indevs: 2023-07-13T14:27:50.3098734Z fbdev oss 2023-07-13T14:27:50.3098933Z lavfi v4l2 2023-07-13T14:27:50.3099060Z 2023-07-13T14:27:50.3099155Z Enabled outdevs: 2023-07-13T14:27:50.3099456Z fbdev oss v4l2 2023-07-13T14:27:50.3099631Z 2023-07-13T14:27:50.3099740Z License: nonfree and unredistributable 2023-07-13T14:27:50.3100034Z + make clean 2023-07-13T14:27:50.3100414Z + make -j 2023-07-13T14:27:50.3100658Z + make install 2023-07-13T14:27:50.3100958Z INSTALL libavdevice/libavdevice.so 2023-07-13T14:27:50.3101362Z STRIP install-libavdevice-shared 2023-07-13T14:27:50.3101840Z INSTALL libavfilter/libavfilter.so 2023-07-13T14:27:50.3102399Z STRIP install-libavfilter-shared 2023-07-13T14:27:50.3102861Z INSTALL libavformat/libavformat.so 2023-07-13T14:27:50.3103286Z STRIP install-libavformat-shared 2023-07-13T14:27:50.3103655Z INSTALL libavcodec/libavcodec.so 2023-07-13T14:27:50.3104085Z STRIP install-libavcodec-shared 2023-07-13T14:27:50.3104449Z INSTALL libpostproc/libpostproc.so 2023-07-13T14:27:50.3104882Z STRIP install-libpostproc-shared 2023-07-13T14:27:50.3105153Z INSTALL libswresample/libswresample.so 2023-07-13T14:27:50.3105461Z STRIP install-libswresample-shared 2023-07-13T14:27:50.3105703Z INSTALL libswscale/libswscale.so 2023-07-13T14:27:50.3106076Z STRIP install-libswscale-shared 2023-07-13T14:27:50.3106318Z INSTALL libavutil/libavutil.so 2023-07-13T14:27:50.3106583Z STRIP install-libavutil-shared 2023-07-13T14:27:50.3106850Z INSTALL install-progs-yes 2023-07-13T14:27:50.3107062Z INSTALL ffmpeg 2023-07-13T14:27:50.3107247Z INSTALL ffprobe 2023-07-13T14:27:50.3107539Z INSTALL presets/libvpx-1080p50_60.ffpreset 2023-07-13T14:27:50.3107835Z INSTALL presets/libvpx-360p.ffpreset 2023-07-13T14:27:50.3108119Z INSTALL presets/libvpx-1080p.ffpreset 2023-07-13T14:27:50.3108416Z INSTALL presets/libvpx-720p50_60.ffpreset 2023-07-13T14:27:50.3108707Z INSTALL presets/libvpx-720p.ffpreset 2023-07-13T14:27:50.3108934Z INSTALL doc/ffprobe.xsd 2023-07-13T14:27:50.3109159Z INSTALL doc/examples/transcode.c 2023-07-13T14:27:50.3109402Z INSTALL doc/examples/vaapi_transcode.c 2023-07-13T14:27:50.3109644Z INSTALL doc/examples/demux_decode.c 2023-07-13T14:27:50.3109892Z INSTALL doc/examples/hw_decode.c 2023-07-13T14:27:50.3110117Z INSTALL doc/examples/mux.c 2023-07-13T14:27:50.3110356Z INSTALL doc/examples/avio_read_callback.c 2023-07-13T14:27:50.3110606Z INSTALL doc/examples/encode_audio.c 2023-07-13T14:27:50.3110864Z INSTALL doc/examples/avio_http_serve_files.c 2023-07-13T14:27:50.3111110Z INSTALL doc/examples/filter_audio.c 2023-07-13T14:27:50.3111368Z INSTALL doc/examples/decode_filter_video.c 2023-07-13T14:27:50.3111747Z INSTALL doc/examples/decode_video.c 2023-07-13T14:27:50.3111993Z INSTALL doc/examples/avio_list_dir.c 2023-07-13T14:27:50.3112233Z INSTALL doc/examples/qsv_transcode.c 2023-07-13T14:27:50.3112468Z INSTALL doc/examples/remux.c 2023-07-13T14:27:50.3112703Z INSTALL doc/examples/extract_mvs.c 2023-07-13T14:27:50.3112948Z INSTALL doc/examples/decode_filter_audio.c 2023-07-13T14:27:50.3113196Z INSTALL doc/examples/qsv_decode.c 2023-07-13T14:27:50.3113432Z INSTALL doc/examples/vaapi_encode.c 2023-07-13T14:27:50.3113799Z INSTALL doc/examples/resample_audio.c 2023-07-13T14:27:50.3114037Z INSTALL doc/examples/decode_audio.c 2023-07-13T14:27:50.3114288Z INSTALL doc/examples/show_metadata.c 2023-07-13T14:27:50.3114535Z INSTALL doc/examples/transcode_aac.c 2023-07-13T14:27:50.3114772Z INSTALL doc/examples/encode_video.c 2023-07-13T14:27:50.3115012Z INSTALL doc/examples/scale_video.c 2023-07-13T14:27:50.3115242Z INSTALL doc/examples/README 2023-07-13T14:27:50.3115463Z INSTALL doc/examples/Makefile 2023-07-13T14:27:50.3115701Z INSTALL doc/examples/transcode.c 2023-07-13T14:27:50.3115947Z INSTALL doc/examples/vaapi_transcode.c 2023-07-13T14:27:50.3116186Z INSTALL doc/examples/demux_decode.c 2023-07-13T14:27:50.3116420Z INSTALL doc/examples/hw_decode.c 2023-07-13T14:27:50.3116647Z INSTALL doc/examples/mux.c 2023-07-13T14:27:50.3116881Z INSTALL doc/examples/avio_read_callback.c 2023-07-13T14:27:50.3117129Z INSTALL doc/examples/encode_audio.c 2023-07-13T14:27:50.3117387Z INSTALL doc/examples/avio_http_serve_files.c 2023-07-13T14:27:50.3117640Z INSTALL doc/examples/filter_audio.c 2023-07-13T14:27:50.3117893Z INSTALL doc/examples/decode_filter_video.c 2023-07-13T14:27:50.3118428Z INSTALL doc/examples/decode_video.c 2023-07-13T14:27:50.3118708Z INSTALL doc/examples/avio_list_dir.c 2023-07-13T14:27:50.3118957Z INSTALL doc/examples/qsv_transcode.c 2023-07-13T14:27:50.3119191Z INSTALL doc/examples/remux.c 2023-07-13T14:27:50.3119426Z INSTALL doc/examples/extract_mvs.c 2023-07-13T14:27:50.3119671Z INSTALL doc/examples/decode_filter_audio.c 2023-07-13T14:27:50.3119920Z INSTALL doc/examples/qsv_decode.c 2023-07-13T14:27:50.3120163Z INSTALL doc/examples/vaapi_encode.c 2023-07-13T14:27:50.3120402Z INSTALL doc/examples/resample_audio.c 2023-07-13T14:27:50.3120648Z INSTALL doc/examples/decode_audio.c 2023-07-13T14:27:50.3120899Z INSTALL doc/examples/show_metadata.c 2023-07-13T14:27:50.3121141Z INSTALL doc/examples/transcode_aac.c 2023-07-13T14:27:50.3121384Z INSTALL doc/examples/encode_video.c 2023-07-13T14:27:50.3121625Z INSTALL doc/examples/scale_video.c 2023-07-13T14:27:50.3121886Z INSTALL doc/examples/README 2023-07-13T14:27:50.3122143Z INSTALL doc/examples/Makefile 2023-07-13T14:27:50.3122492Z INSTALL libavdevice/avdevice.h 2023-07-13T14:27:50.3122723Z INSTALL libavdevice/version.h 2023-07-13T14:27:50.3122960Z INSTALL libavdevice/version_major.h 2023-07-13T14:27:50.3123217Z INSTALL libavdevice/libavdevice.pc 2023-07-13T14:27:50.3123449Z INSTALL libavfilter/avfilter.h 2023-07-13T14:27:50.3123688Z INSTALL libavfilter/buffersink.h 2023-07-13T14:27:50.3123923Z INSTALL libavfilter/buffersrc.h 2023-07-13T14:27:50.3124147Z INSTALL libavfilter/version.h 2023-07-13T14:27:50.3124384Z INSTALL libavfilter/version_major.h 2023-07-13T14:27:50.3124629Z INSTALL libavfilter/libavfilter.pc 2023-07-13T14:27:50.3124859Z INSTALL libavformat/avformat.h 2023-07-13T14:27:50.3125084Z INSTALL libavformat/avio.h 2023-07-13T14:27:50.3125310Z INSTALL libavformat/version.h 2023-07-13T14:27:50.3125545Z INSTALL libavformat/version_major.h 2023-07-13T14:27:50.3125783Z INSTALL libavformat/libavformat.pc 2023-07-13T14:27:50.3126026Z INSTALL libavcodec/ac3_parser.h 2023-07-13T14:27:50.3126266Z INSTALL libavcodec/adts_parser.h 2023-07-13T14:27:50.3126495Z INSTALL libavcodec/avcodec.h 2023-07-13T14:27:50.3126720Z INSTALL libavcodec/avdct.h 2023-07-13T14:27:50.3126939Z INSTALL libavcodec/avfft.h 2023-07-13T14:27:50.3127149Z INSTALL libavcodec/bsf.h 2023-07-13T14:27:50.3127370Z INSTALL libavcodec/codec.h 2023-07-13T14:27:50.3127597Z INSTALL libavcodec/codec_desc.h 2023-07-13T14:27:50.3127822Z INSTALL libavcodec/codec_id.h 2023-07-13T14:27:50.3128051Z INSTALL libavcodec/codec_par.h 2023-07-13T14:27:50.3128279Z INSTALL libavcodec/d3d11va.h 2023-07-13T14:27:50.3128494Z INSTALL libavcodec/defs.h 2023-07-13T14:27:50.3128712Z INSTALL libavcodec/dirac.h 2023-07-13T14:27:50.3128940Z INSTALL libavcodec/dv_profile.h 2023-07-13T14:27:50.3129160Z INSTALL libavcodec/dxva2.h 2023-07-13T14:27:50.3129376Z INSTALL libavcodec/jni.h 2023-07-13T14:27:50.3129601Z INSTALL libavcodec/mediacodec.h 2023-07-13T14:27:50.3129976Z INSTALL libavcodec/packet.h 2023-07-13T14:27:50.3130198Z INSTALL libavcodec/qsv.h 2023-07-13T14:27:50.3130417Z INSTALL libavcodec/vdpau.h 2023-07-13T14:27:50.3130645Z INSTALL libavcodec/version.h 2023-07-13T14:27:50.3130882Z INSTALL libavcodec/version_major.h 2023-07-13T14:27:50.3131120Z INSTALL libavcodec/videotoolbox.h 2023-07-13T14:27:50.3131353Z INSTALL libavcodec/vorbis_parser.h 2023-07-13T14:27:50.3131584Z INSTALL libavcodec/xvmc.h 2023-07-13T14:27:50.3131838Z INSTALL libavcodec/libavcodec.pc 2023-07-13T14:27:50.3132101Z INSTALL libpostproc/postprocess.h 2023-07-13T14:27:50.3132341Z INSTALL libpostproc/version.h 2023-07-13T14:27:50.3132582Z INSTALL libpostproc/version_major.h 2023-07-13T14:27:50.3132824Z INSTALL libpostproc/libpostproc.pc 2023-07-13T14:27:50.3133073Z INSTALL libswresample/swresample.h 2023-07-13T14:27:50.3133313Z INSTALL libswresample/version.h 2023-07-13T14:27:50.3133558Z INSTALL libswresample/version_major.h 2023-07-13T14:27:50.3133809Z INSTALL libswresample/libswresample.pc 2023-07-13T14:27:50.3134096Z INSTALL libswscale/swscale.h 2023-07-13T14:27:50.3134386Z INSTALL libswscale/version.h 2023-07-13T14:27:50.3134676Z INSTALL libswscale/version_major.h 2023-07-13T14:27:50.3134997Z INSTALL libswscale/libswscale.pc 2023-07-13T14:29:25.5028707Z INSTALL libavutil/adler32.h 2023-07-13T14:29:25.5029020Z INSTALL libavutil/aes.h 2023-07-13T14:29:25.5029314Z INSTALL libavutil/aes_ctr.h 2023-07-13T14:29:25.5029662Z INSTALL libavutil/ambient_viewing_environment.h 2023-07-13T14:29:25.5029947Z INSTALL libavutil/attributes.h 2023-07-13T14:29:25.5030210Z INSTALL libavutil/audio_fifo.h 2023-07-13T14:29:25.5032402Z INSTALL libavutil/avassert.h 2023-07-13T14:29:25.5032760Z INSTALL libavutil/avstring.h 2023-07-13T14:29:25.5032990Z INSTALL libavutil/avutil.h 2023-07-13T14:29:25.5033217Z INSTALL libavutil/base64.h 2023-07-13T14:29:25.5033457Z INSTALL libavutil/blowfish.h 2023-07-13T14:29:25.5033728Z INSTALL libavutil/bprint.h 2023-07-13T14:29:25.5035319Z INSTALL libavutil/bswap.h 2023-07-13T14:29:25.5035706Z INSTALL libavutil/buffer.h 2023-07-13T14:29:25.5036023Z INSTALL libavutil/cast5.h 2023-07-13T14:29:25.5036340Z INSTALL libavutil/camellia.h 2023-07-13T14:29:25.5037083Z INSTALL libavutil/channel_layout.h 2023-07-13T14:29:25.5037438Z INSTALL libavutil/common.h 2023-07-13T14:29:25.5037739Z INSTALL libavutil/cpu.h 2023-07-13T14:29:25.5038008Z INSTALL libavutil/crc.h 2023-07-13T14:29:25.5038547Z INSTALL libavutil/csp.h 2023-07-13T14:29:25.5038863Z INSTALL libavutil/des.h 2023-07-13T14:29:25.5039184Z INSTALL libavutil/detection_bbox.h 2023-07-13T14:29:25.5039530Z INSTALL libavutil/dict.h 2023-07-13T14:29:25.5039849Z INSTALL libavutil/display.h 2023-07-13T14:29:25.5040163Z INSTALL libavutil/dovi_meta.h 2023-07-13T14:29:25.5040499Z INSTALL libavutil/downmix_info.h 2023-07-13T14:29:25.5040849Z INSTALL libavutil/encryption_info.h 2023-07-13T14:29:25.5041180Z INSTALL libavutil/error.h 2023-07-13T14:29:25.5041502Z INSTALL libavutil/eval.h 2023-07-13T14:29:25.5041841Z INSTALL libavutil/fifo.h 2023-07-13T14:29:25.5042174Z INSTALL libavutil/file.h 2023-07-13T14:29:25.5042418Z INSTALL libavutil/frame.h 2023-07-13T14:29:25.5042700Z INSTALL libavutil/hash.h 2023-07-13T14:29:25.5043004Z INSTALL libavutil/hdr_dynamic_metadata.h 2023-07-13T14:29:25.5043339Z INSTALL libavutil/hdr_dynamic_vivid_metadata.h 2023-07-13T14:29:25.5043687Z INSTALL libavutil/hmac.h 2023-07-13T14:29:25.5043966Z INSTALL libavutil/hwcontext.h 2023-07-13T14:29:25.5044263Z INSTALL libavutil/hwcontext_cuda.h 2023-07-13T14:29:25.5044567Z INSTALL libavutil/hwcontext_d3d11va.h 2023-07-13T14:29:25.5044881Z INSTALL libavutil/hwcontext_drm.h 2023-07-13T14:29:25.5045185Z INSTALL libavutil/hwcontext_dxva2.h 2023-07-13T14:29:25.5045417Z INSTALL libavutil/hwcontext_qsv.h 2023-07-13T14:29:25.5045662Z INSTALL libavutil/hwcontext_mediacodec.h 2023-07-13T14:29:25.5045914Z INSTALL libavutil/hwcontext_opencl.h 2023-07-13T14:29:25.5046153Z INSTALL libavutil/hwcontext_vaapi.h 2023-07-13T14:29:25.5046406Z INSTALL libavutil/hwcontext_videotoolbox.h 2023-07-13T14:29:25.5046879Z INSTALL libavutil/hwcontext_vdpau.h 2023-07-13T14:29:25.5047118Z INSTALL libavutil/hwcontext_vulkan.h 2023-07-13T14:29:25.5047356Z INSTALL libavutil/imgutils.h 2023-07-13T14:29:25.5047585Z INSTALL libavutil/intfloat.h 2023-07-13T14:29:25.5047809Z INSTALL libavutil/intreadwrite.h 2023-07-13T14:29:25.5048038Z INSTALL libavutil/lfg.h 2023-07-13T14:29:25.5048259Z INSTALL libavutil/log.h 2023-07-13T14:29:25.5048472Z INSTALL libavutil/lzo.h 2023-07-13T14:29:25.5048692Z INSTALL libavutil/macros.h 2023-07-13T14:29:25.5048923Z INSTALL libavutil/mathematics.h 2023-07-13T14:29:25.5049176Z INSTALL libavutil/mastering_display_metadata.h 2023-07-13T14:29:25.5049421Z INSTALL libavutil/md5.h 2023-07-13T14:29:25.5049633Z INSTALL libavutil/mem.h 2023-07-13T14:29:25.5049853Z INSTALL libavutil/motion_vector.h 2023-07-13T14:29:25.5050082Z INSTALL libavutil/murmur3.h 2023-07-13T14:29:25.5050303Z INSTALL libavutil/opt.h 2023-07-13T14:29:25.5050524Z INSTALL libavutil/parseutils.h 2023-07-13T14:29:25.5050761Z INSTALL libavutil/pixdesc.h 2023-07-13T14:29:25.5050998Z INSTALL libavutil/pixelutils.h 2023-07-13T14:29:25.5051214Z INSTALL libavutil/pixfmt.h 2023-07-13T14:29:25.5051444Z INSTALL libavutil/random_seed.h 2023-07-13T14:29:25.5051692Z INSTALL libavutil/rc4.h 2023-07-13T14:29:25.5051930Z INSTALL libavutil/rational.h 2023-07-13T14:29:25.5052150Z INSTALL libavutil/replaygain.h 2023-07-13T14:29:25.5052373Z INSTALL libavutil/ripemd.h 2023-07-13T14:29:25.5052600Z INSTALL libavutil/samplefmt.h 2023-07-13T14:29:25.5052810Z INSTALL libavutil/sha.h 2023-07-13T14:29:25.5053021Z INSTALL libavutil/sha512.h 2023-07-13T14:29:25.5053242Z INSTALL libavutil/spherical.h 2023-07-13T14:29:25.5053459Z INSTALL libavutil/stereo3d.h 2023-07-13T14:29:25.5053692Z INSTALL libavutil/threadmessage.h 2023-07-13T14:29:25.5053919Z INSTALL libavutil/time.h 2023-07-13T14:29:25.5054131Z INSTALL libavutil/timecode.h 2023-07-13T14:29:25.5054356Z INSTALL libavutil/timestamp.h 2023-07-13T14:29:25.5054575Z INSTALL libavutil/tree.h 2023-07-13T14:29:25.5054782Z INSTALL libavutil/twofish.h 2023-07-13T14:29:25.5055005Z INSTALL libavutil/uuid.h 2023-07-13T14:29:25.5055219Z INSTALL libavutil/version.h 2023-07-13T14:29:25.5055532Z INSTALL libavutil/video_enc_params.h 2023-07-13T14:29:25.5055769Z INSTALL libavutil/xtea.h 2023-07-13T14:29:25.5055985Z INSTALL libavutil/tea.h 2023-07-13T14:29:25.5056190Z INSTALL libavutil/tx.h 2023-07-13T14:29:25.5056432Z INSTALL libavutil/film_grain_params.h 2023-07-13T14:29:25.5056674Z INSTALL libavutil/avconfig.h 2023-07-13T14:29:25.5056899Z INSTALL libavutil/ffversion.h 2023-07-13T14:29:25.5057135Z INSTALL libavutil/libavutil.pc 2023-07-13T14:29:25.5057625Z + pip --quiet install git+https://github.com/kpu/kenlm/ flashlight-text 2023-07-13T14:29:25.5058320Z 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-07-13T14:29:25.5058942Z + conda install --quiet -y -c conda-forge pandoc doxygen pysoundfile 2023-07-13T14:29:25.5059224Z + local cmd=install 2023-07-13T14:29:25.5059419Z + case "$cmd" in 2023-07-13T14:29:25.5059756Z + __conda_exe install --quiet -y -c conda-forge pandoc doxygen pysoundfile 2023-07-13T14:29:25.5060170Z + /opt/conda/bin/conda install --quiet -y -c conda-forge pandoc doxygen pysoundfile 2023-07-13T14:29:25.5060532Z Collecting package metadata (current_repodata.json): ...working... done 2023-07-13T14:29:25.5060828Z Solving environment: ...working... done 2023-07-13T14:29:25.5060978Z 2023-07-13T14:29:25.5061056Z ## Package Plan ## 2023-07-13T14:29:25.5061180Z 2023-07-13T14:29:25.5061286Z environment location: /work/ci_env 2023-07-13T14:29:25.5061434Z 2023-07-13T14:29:25.5061522Z added / updated specs: 2023-07-13T14:29:25.5061737Z - doxygen 2023-07-13T14:29:25.5061941Z - pandoc 2023-07-13T14:29:25.5062154Z - pysoundfile 2023-07-13T14:29:25.5062273Z 2023-07-13T14:29:25.5062278Z 2023-07-13T14:29:25.5062396Z The following packages will be downloaded: 2023-07-13T14:29:25.5062615Z 2023-07-13T14:29:25.5062716Z package | build 2023-07-13T14:29:25.5063008Z ---------------------------|----------------- 2023-07-13T14:29:25.5063349Z _libgcc_mutex-0.1 | conda_forge 3 KB conda-forge 2023-07-13T14:29:25.5063752Z _openmp_mutex-4.5 | 2_kmp_llvm 6 KB conda-forge 2023-07-13T14:29:25.5064101Z cffi-1.15.1 | py310h255011f_3 231 KB conda-forge 2023-07-13T14:29:25.5064449Z doxygen-1.9.7 | h661eb56_1 5.9 MB conda-forge 2023-07-13T14:29:25.5064793Z gettext-0.21.1 | h27087fc_0 4.1 MB conda-forge 2023-07-13T14:29:25.5065134Z libflac-1.4.3 | h59595ed_0 385 KB conda-forge 2023-07-13T14:29:25.5065472Z libgcc-ng-13.1.0 | he5830b7_0 758 KB conda-forge 2023-07-13T14:29:25.5065820Z libiconv-1.17 | h166bdaf_0 1.4 MB conda-forge 2023-07-13T14:29:25.5066176Z libogg-1.3.4 | h7f98852_1 206 KB conda-forge 2023-07-13T14:29:25.5066514Z libsndfile-1.2.0 | hb75c966_0 342 KB conda-forge 2023-07-13T14:29:25.5066873Z libstdcxx-ng-13.1.0 | hfd8a6a1_0 3.7 MB conda-forge 2023-07-13T14:29:25.5067224Z libvorbis-1.3.7 | h9c3ff4c_0 280 KB conda-forge 2023-07-13T14:29:25.5067553Z llvm-openmp-14.0.6 | h9e868ea_0 4.4 MB 2023-07-13T14:29:25.5067894Z mkl-service-2.4.0 | py310h5eee18b_1 54 KB 2023-07-13T14:29:25.5068217Z mkl_fft-1.3.6 | py310h1128e8f_1 207 KB 2023-07-13T14:29:25.5068538Z mkl_random-1.2.2 | py310h1128e8f_1 284 KB 2023-07-13T14:29:25.5068870Z mpg123-1.31.3 | hcb278e6_0 474 KB conda-forge 2023-07-13T14:29:25.5069197Z numpy-1.25.0 | py310h5f9d8c6_0 12 KB 2023-07-13T14:29:25.5069530Z numpy-base-1.25.0 | py310hb5e798b_0 7.0 MB 2023-07-13T14:29:25.5069923Z openssl-3.1.1 | hd590300_1 2.5 MB conda-forge 2023-07-13T14:29:25.5070275Z pandoc-2.19.2 | ha770c72_0 12.8 MB conda-forge 2023-07-13T14:29:25.5070634Z pycparser-2.21 | pyhd8ed1ab_0 100 KB conda-forge 2023-07-13T14:29:25.5071001Z pysoundfile-0.12.1 | pyhd8ed1ab_0 27 KB conda-forge 2023-07-13T14:29:25.5071345Z python_abi-3.10 | 2_cp310 4 KB conda-forge 2023-07-13T14:29:25.5071888Z ------------------------------------------------------------ 2023-07-13T14:29:25.5072178Z Total: 45.1 MB 2023-07-13T14:29:25.5072322Z 2023-07-13T14:29:25.5072438Z The following NEW packages will be INSTALLED: 2023-07-13T14:29:25.5072596Z 2023-07-13T14:29:25.5072886Z cffi conda-forge/linux-64::cffi-1.15.1-py310h255011f_3 2023-07-13T14:29:25.5073296Z doxygen conda-forge/linux-64::doxygen-1.9.7-h661eb56_1 2023-07-13T14:29:25.5073699Z gettext conda-forge/linux-64::gettext-0.21.1-h27087fc_0 2023-07-13T14:29:25.5074083Z libflac conda-forge/linux-64::libflac-1.4.3-h59595ed_0 2023-07-13T14:29:25.5074482Z libiconv conda-forge/linux-64::libiconv-1.17-h166bdaf_0 2023-07-13T14:29:25.5074875Z libogg conda-forge/linux-64::libogg-1.3.4-h7f98852_1 2023-07-13T14:29:25.5075281Z libsndfile conda-forge/linux-64::libsndfile-1.2.0-hb75c966_0 2023-07-13T14:29:25.5075684Z libvorbis conda-forge/linux-64::libvorbis-1.3.7-h9c3ff4c_0 2023-07-13T14:29:25.5076097Z llvm-openmp pkgs/main/linux-64::llvm-openmp-14.0.6-h9e868ea_0 2023-07-13T14:29:25.5076533Z mkl-service pkgs/main/linux-64::mkl-service-2.4.0-py310h5eee18b_1 2023-07-13T14:29:25.5076940Z mkl_fft pkgs/main/linux-64::mkl_fft-1.3.6-py310h1128e8f_1 2023-07-13T14:29:25.5077411Z mkl_random pkgs/main/linux-64::mkl_random-1.2.2-py310h1128e8f_1 2023-07-13T14:29:25.5077819Z mpg123 conda-forge/linux-64::mpg123-1.31.3-hcb278e6_0 2023-07-13T14:29:25.5078508Z numpy pkgs/main/linux-64::numpy-1.25.0-py310h5f9d8c6_0 2023-07-13T14:29:25.5078937Z numpy-base pkgs/main/linux-64::numpy-base-1.25.0-py310hb5e798b_0 2023-07-13T14:29:25.5079356Z pandoc conda-forge/linux-64::pandoc-2.19.2-ha770c72_0 2023-07-13T14:29:25.5079772Z pycparser conda-forge/noarch::pycparser-2.21-pyhd8ed1ab_0 2023-07-13T14:29:25.5080209Z pysoundfile conda-forge/noarch::pysoundfile-0.12.1-pyhd8ed1ab_0 2023-07-13T14:29:25.5080625Z python_abi conda-forge/linux-64::python_abi-3.10-2_cp310 2023-07-13T14:29:25.5080805Z 2023-07-13T14:29:25.5080922Z The following packages will be REMOVED: 2023-07-13T14:29:25.5081083Z 2023-07-13T14:29:25.5081215Z libgomp-11.2.0-h1234567_1 2023-07-13T14:29:25.5081363Z 2023-07-13T14:29:25.5081470Z The following packages will be UPDATED: 2023-07-13T14:29:25.5081645Z 2023-07-13T14:29:25.5081973Z libgcc-ng pkgs/main::libgcc-ng-11.2.0-h1234567_1 --> conda-forge::libgcc-ng-13.1.0-he5830b7_0 2023-07-13T14:29:25.5082493Z libstdcxx-ng pkgs/main::libstdcxx-ng-11.2.0-h12345~ --> conda-forge::libstdcxx-ng-13.1.0-hfd8a6a1_0 2023-07-13T14:29:25.5082986Z openssl pkgs/main::openssl-3.0.9-h7f8727e_0 --> conda-forge::openssl-3.1.1-hd590300_1 2023-07-13T14:29:25.5083196Z 2023-07-13T14:29:25.5083407Z The following packages will be SUPERSEDED by a higher-priority channel: 2023-07-13T14:29:25.5083605Z 2023-07-13T14:29:25.5083873Z _libgcc_mutex pkgs/main::_libgcc_mutex-0.1-main --> conda-forge::_libgcc_mutex-0.1-conda_forge 2023-07-13T14:29:25.5084346Z _openmp_mutex pkgs/main::_openmp_mutex-5.1-1_gnu --> conda-forge::_openmp_mutex-4.5-2_kmp_llvm 2023-07-13T14:29:25.5084569Z 2023-07-13T14:29:25.5084574Z 2023-07-13T14:29:25.5084700Z Preparing transaction: ...working... done 2023-07-13T14:29:25.5084965Z Verifying transaction: ...working... done 2023-07-13T14:29:25.5085334Z Executing transaction: ...working... done 2023-07-13T14:29:25.5085561Z + __conda_reactivate 2023-07-13T14:29:25.5085759Z + local ask_conda 2023-07-13T14:29:25.5085985Z ++ PS1='(/work/ci_env) ' 2023-07-13T14:29:25.5086215Z ++ __conda_exe shell.posix reactivate 2023-07-13T14:29:25.5086482Z ++ /opt/conda/bin/conda shell.posix reactivate 2023-07-13T14:29:25.5086769Z + ask_conda='PS1='\''(/work/ci_env) '\'' 2023-07-13T14:29:25.5087300Z 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-07-13T14:30:06.6470672Z export CONDA_SHLVL='\''2'\'' 2023-07-13T14:30:06.6471057Z export CONDA_PROMPT_MODIFIER='\''(/work/ci_env) '\''' 2023-07-13T14:30:06.6471373Z + eval 'PS1='\''(/work/ci_env) '\'' 2023-07-13T14:30:06.6475552Z 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-07-13T14:30:06.6476192Z export CONDA_SHLVL='\''2'\'' 2023-07-13T14:30:06.6476595Z export CONDA_PROMPT_MODIFIER='\''(/work/ci_env) '\''' 2023-07-13T14:30:06.6476877Z ++ PS1='(/work/ci_env) ' 2023-07-13T14:30:06.6477381Z ++ 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-07-13T14:30:06.6478485Z ++ 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-07-13T14:30:06.6478923Z ++ export CONDA_SHLVL=2 2023-07-13T14:30:06.6479214Z ++ CONDA_SHLVL=2 2023-07-13T14:30:06.6479625Z ++ export 'CONDA_PROMPT_MODIFIER=(/work/ci_env) ' 2023-07-13T14:30:06.6480369Z ++ CONDA_PROMPT_MODIFIER='(/work/ci_env) ' 2023-07-13T14:30:06.6480641Z + __conda_hashr 2023-07-13T14:30:06.6480853Z + '[' -n '' ']' 2023-07-13T14:30:06.6481108Z + '[' -n '' ']' 2023-07-13T14:30:06.6481385Z + hash -r 2023-07-13T14:30:06.6481909Z + pip install --quiet -r docs/requirements.txt -r docs/requirements-tutorials.txt 2023-07-13T14:30:06.6482430Z  WARNING: Did not find branch or tag '32a6550', assuming revision or ref. 2023-07-13T14:30:06.6483115Z 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-07-13T14:30:06.6483733Z + export BUILD_GALLERY=true 2023-07-13T14:30:06.6484130Z + BUILD_GALLERY=true 2023-07-13T14:30:06.6484455Z + cd docs 2023-07-13T14:30:06.6484705Z + make html 2023-07-13T14:30:06.6484993Z doxygen source/Doxyfile 2023-07-13T14:30:06.6485503Z warning: Tag 'HTML_TIMESTAMP' at line 1386 of file 'source/Doxyfile' has become obsolete. 2023-07-13T14:30:06.6486124Z To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" 2023-07-13T14:30:06.6486598Z warning: Tag 'LATEX_TIMESTAMP' at line 2054 of file 'source/Doxyfile' has become obsolete. 2023-07-13T14:30:06.6487076Z To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" 2023-07-13T14:30:06.6487441Z Doxygen version used: 1.9.7 (a5f0654670f7c6ba3de2b91b77a8591a90955c1e*) 2023-07-13T14:30:06.6487838Z Notice: Output directory 'source/cpp' does not exist. I have created it for you. 2023-07-13T14:30:06.6488133Z Searching for include files... 2023-07-13T14:30:06.6488368Z Searching for example files... 2023-07-13T14:30:06.6488588Z Searching for images... 2023-07-13T14:30:06.6488807Z Searching for dot files... 2023-07-13T14:30:06.6489034Z Searching for msc files... 2023-07-13T14:30:06.6489247Z Searching for dia files... 2023-07-13T14:30:06.6489488Z Searching for files to exclude 2023-07-13T14:30:06.6489733Z Searching INPUT for files to process... 2023-07-13T14:30:06.6490176Z Reading and parsing tag files 2023-07-13T14:30:06.6490402Z Parsing files 2023-07-13T14:30:06.6490688Z Preprocessing /work/torchaudio/csrc/ffmpeg/stream_reader/typedefs.h... 2023-07-13T14:30:06.6491036Z Parsing file /work/torchaudio/csrc/ffmpeg/stream_reader/typedefs.h... 2023-07-13T14:30:06.6491397Z Preprocessing /work/torchaudio/csrc/ffmpeg/stream_reader/stream_reader.h... 2023-07-13T14:30:06.6491763Z Parsing file /work/torchaudio/csrc/ffmpeg/stream_reader/stream_reader.h... 2023-07-13T14:30:06.6492112Z Preprocessing /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.h... 2023-07-13T14:30:06.6492468Z Parsing file /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.h... 2023-07-13T14:30:06.6492766Z Building macro definition list... 2023-07-13T14:30:06.6493005Z Building group list... 2023-07-13T14:30:06.6493223Z Building directory list... 2023-07-13T14:30:06.6493468Z Building namespace list... 2023-07-13T14:30:06.6493690Z Building file list... 2023-07-13T14:30:06.6493904Z Building class list... 2023-07-13T14:30:06.6494167Z Building concept list... 2023-07-13T14:30:06.6494447Z Computing nesting relations for classes... 2023-07-13T14:30:06.6494716Z Associating documentation with classes... 2023-07-13T14:30:06.6494998Z Associating documentation with concepts... 2023-07-13T14:30:06.6495253Z Building example list... 2023-07-13T14:30:06.6495481Z Searching for enumerations... 2023-07-13T14:30:06.6495731Z Searching for documented typedefs... 2023-07-13T14:30:06.6496022Z Searching for members imported via using declarations... 2023-07-13T14:30:06.6496307Z Searching for included using directives... 2023-07-13T14:30:06.6496569Z Searching for documented variables... 2023-07-13T14:30:06.6496824Z Building interface member list... 2023-07-13T14:30:06.6497052Z Building member list... 2023-07-13T14:30:06.6497277Z Searching for friends... 2023-07-13T14:30:06.6497518Z Searching for documented defines... 2023-07-13T14:30:06.6497839Z Computing class inheritance relations... 2023-07-13T14:30:06.6498104Z Computing class usage relations... 2023-07-13T14:30:06.6498401Z Flushing cached template relations that have become invalid... 2023-07-13T14:30:06.6498678Z Computing class relations... 2023-07-13T14:30:06.6498897Z Add enum values to enums... 2023-07-13T14:30:06.6499163Z Searching for member function documentation... 2023-07-13T14:30:06.6499438Z Creating members for template instances... 2023-07-13T14:30:06.6499670Z Building page list... 2023-07-13T14:30:06.6499883Z Search for main page... 2023-07-13T14:30:06.6500108Z Computing page relations... 2023-07-13T14:30:06.6500340Z Determining the scope of groups... 2023-07-13T14:30:06.6500557Z Sorting lists... 2023-07-13T14:30:06.6500782Z Determining which enums are documented 2023-07-13T14:30:06.6501018Z Computing member relations... 2023-07-13T14:30:06.6501265Z Building full member lists recursively... 2023-07-13T14:30:06.6501512Z Adding members to member groups. 2023-07-13T14:30:06.6501748Z Computing member references... 2023-07-13T14:30:06.6501983Z Inheriting documentation... 2023-07-13T14:30:06.6502215Z Generating disk names... 2023-07-13T14:30:06.6502427Z Adding source references... 2023-07-13T14:30:06.6502650Z Adding xrefitems... 2023-07-13T14:30:06.6502856Z Sorting member lists... 2023-07-13T14:30:06.6503068Z Setting anonymous enum type... 2023-07-13T14:30:06.6503326Z Computing dependencies between directories... 2023-07-13T14:30:06.6503580Z Generating citations page... 2023-07-13T14:30:06.6503789Z Counting members... 2023-07-13T14:30:06.6504004Z Counting data structures... 2023-07-13T14:30:06.6504287Z Resolving user defined references... 2023-07-13T14:30:06.6504555Z Finding anchors and sections in the documentation... 2023-07-13T14:30:06.6504833Z Transferring function references... 2023-07-13T14:30:06.6505072Z Combining using relations... 2023-07-13T14:30:06.6505299Z Adding members to index pages... 2023-07-13T14:30:06.6505533Z Correcting members for VHDL... 2023-07-13T14:30:06.6505775Z Computing tooltip texts... 2023-07-13T14:30:06.6505999Z Generating style sheet... 2023-07-13T14:30:06.6506273Z Generating search indices... 2023-07-13T14:30:06.6506516Z Generating example documentation... 2023-07-13T14:30:06.6506750Z Generating file sources... 2023-07-13T14:30:06.6507049Z Generating code for file /work/torchaudio/csrc/ffmpeg/stream_reader/stream_reader.h... 2023-07-13T14:30:06.6507426Z Generating code for file /work/torchaudio/csrc/ffmpeg/stream_reader/typedefs.h... 2023-07-13T14:30:06.6507798Z Generating code for file /work/torchaudio/csrc/ffmpeg/stream_writer/stream_writer.h... 2023-07-13T14:30:06.6508091Z Generating file documentation... 2023-07-13T14:30:06.6508338Z Generating page documentation... 2023-07-13T14:30:06.6508578Z Generating docs for page todo... 2023-07-13T14:30:06.6508811Z Generating group documentation... 2023-07-13T14:30:06.6509058Z Generating class documentation... 2023-07-13T14:30:06.6509304Z Generating concept documentation... 2023-07-13T14:30:06.6509564Z Generating namespace documentation... 2023-07-13T14:30:06.6509879Z Generating docs for compound torchaudio::io::Chunk... 2023-07-13T14:30:06.6510200Z Generating docs for compound torchaudio::io::OutputStreamInfo... 2023-07-13T14:30:06.6510532Z Generating docs for compound torchaudio::io::SrcStreamInfo... 2023-07-13T14:30:06.6510850Z Generating docs for compound torchaudio::io::StreamReader... 2023-07-13T14:30:06.6511121Z sh: epstopdf: command not found 2023-07-13T14:30:06.6511406Z error: Problems running epstopdf. Check your TeX installation! 2023-07-13T14:30:06.6511857Z Generating docs for compound torchaudio::io::StreamReaderCustomIO... 2023-07-13T14:30:06.6512170Z sh: epstopdf: command not found 2023-07-13T14:30:06.6512452Z error: Problems running epstopdf. Check your TeX installation! 2023-07-13T14:30:06.6512776Z Generating docs for compound torchaudio::io::StreamWriter... 2023-07-13T14:30:06.6513073Z sh: epstopdf: command not found 2023-07-13T14:30:06.6529648Z error: Problems running epstopdf. Check your TeX installation! 2023-07-13T14:30:06.6530166Z Generating docs for compound torchaudio::io::StreamWriterCustomIO... 2023-07-13T14:30:06.6530463Z sh: epstopdf: command not found 2023-07-13T14:30:06.6530746Z error: Problems running epstopdf. Check your TeX installation! 2023-07-13T14:30:06.6531021Z Generating graph info page... 2023-07-13T14:30:06.6531276Z Generating directory documentation... 2023-07-13T14:30:06.6531511Z Generating index page... 2023-07-13T14:30:06.6531733Z Generating page index... 2023-07-13T14:30:06.6531956Z Generating module index... 2023-07-13T14:30:06.6532179Z Generating namespace index... 2023-07-13T14:30:06.6532422Z Generating namespace member index... 2023-07-13T14:30:06.6532662Z Generating concept index... 2023-07-13T14:30:06.6532899Z Generating annotated compound index... 2023-07-13T14:30:06.6533162Z Generating alphabetical compound index... 2023-07-13T14:30:06.6533423Z Generating hierarchical class index... 2023-07-13T14:30:06.6533652Z Generating member index... 2023-07-13T14:30:06.6533878Z Generating file index... 2023-07-13T14:30:06.6534106Z Generating file member index... 2023-07-13T14:30:06.6534334Z Generating example index... 2023-07-13T14:30:06.6534556Z finalizing index lists... 2023-07-13T14:30:06.6534769Z writing tag file... 2023-07-13T14:30:06.6534975Z Generating XML output... 2023-07-13T14:30:06.6535242Z Generating XML output for class torchaudio::io::Chunk 2023-07-13T14:30:06.6535565Z Generating XML output for class torchaudio::io::OutputStreamInfo 2023-07-13T14:30:06.6535898Z Generating XML output for class torchaudio::io::SrcStreamInfo 2023-07-13T14:30:06.6536212Z Generating XML output for class torchaudio::io::StreamReader 2023-07-13T14:30:06.6536542Z Generating XML output for class torchaudio::io::StreamReaderCustomIO 2023-07-13T14:30:06.6536873Z Generating XML output for class torchaudio::io::StreamWriter 2023-07-13T14:30:06.6537194Z Generating XML output for class torchaudio::io::StreamWriterCustomIO 2023-07-13T14:30:06.6537506Z Generating XML output for namespace detail 2023-07-13T14:30:06.6537784Z Generating XML output for namespace torchaudio 2023-07-13T14:30:06.6538156Z Generating XML output for namespace torchaudio::io 2023-07-13T14:30:06.6538456Z Generating XML output for file stream_reader.h 2023-07-13T14:30:06.6538735Z Generating XML output for file typedefs.h 2023-07-13T14:30:06.6539004Z Generating XML output for file stream_writer.h 2023-07-13T14:30:06.6539270Z Generating XML output for page todo 2023-07-13T14:30:06.6539552Z Generate XML output for dir /work/torchaudio/csrc/ 2023-07-13T14:30:06.6539861Z Generate XML output for dir /work/torchaudio/csrc/ffmpeg/ 2023-07-13T14:30:06.6540188Z Generate XML output for dir /work/torchaudio/csrc/ffmpeg/stream_reader/ 2023-07-13T14:30:06.6540536Z Generate XML output for dir /work/torchaudio/csrc/ffmpeg/stream_writer/ 2023-07-13T14:30:06.6540850Z Generate XML output for dir /work/torchaudio/ 2023-07-13T14:30:06.6541106Z Running plantuml with JAVA... 2023-07-13T14:30:06.6541372Z type lookup cache used 107/65536 hits=248 misses=109 2023-07-13T14:30:06.6541669Z symbol lookup cache used 140/65536 hits=2259 misses=140 2023-07-13T14:30:06.6541906Z finished... 2023-07-13T14:30:06.6542210Z Running Sphinx v5.1.1 2023-07-13T14:30:06.6542511Z making output directory... done 2023-07-13T14:30:06.6542759Z checking bibtex cache... out of date 2023-07-13T14:30:06.6543050Z parsing bibtex file /work/docs/source/refs.bib... parsed 67 entries 2023-07-13T14:30:06.6543810Z [autosummary] generating autosummary for: backend.rst, build.ffmpeg.rst, build.jetson.rst, build.linux.rst, build.rst, build.windows.rst, compliance.kaldi.rst, datasets.rst, feature_classifications.rst, functional.rst, ..., prototype.models.rst, prototype.pipelines.rst, prototype.rst, prototype.transforms.rst, references.rst, sox_effects.rst, supported_features.rst, torchaudio.rst, transforms.rst, utils.rst 2023-07-13T14:50:03.1149030Z [autosummary] generating autosummary for: /work/docs/source/generated/torchaudio.compliance.kaldi.fbank.rst, /work/docs/source/generated/torchaudio.compliance.kaldi.mfcc.rst, /work/docs/source/generated/torchaudio.compliance.kaldi.spectrogram.rst, /work/docs/source/generated/torchaudio.datasets.CMUARCTIC.rst, /work/docs/source/generated/torchaudio.datasets.CMUDict.rst, /work/docs/source/generated/torchaudio.datasets.COMMONVOICE.rst, /work/docs/source/generated/torchaudio.datasets.DR_VCTK.rst, /work/docs/source/generated/torchaudio.datasets.FluentSpeechCommands.rst, /work/docs/source/generated/torchaudio.datasets.GTZAN.rst, /work/docs/source/generated/torchaudio.datasets.IEMOCAP.rst, ..., /work/docs/source/generated/torchaudio.transforms.SpectralCentroid.rst, /work/docs/source/generated/torchaudio.transforms.Spectrogram.rst, /work/docs/source/generated/torchaudio.transforms.Speed.rst, /work/docs/source/generated/torchaudio.transforms.SpeedPerturbation.rst, /work/docs/source/generated/torchaudio.transforms.TimeMasking.rst, /work/docs/source/generated/torchaudio.transforms.TimeStretch.rst, /work/docs/source/generated/torchaudio.transforms.Vad.rst, /work/docs/source/generated/torchaudio.transforms.Vol.rst, /work/docs/source/generated/torchaudio.utils.ffmpeg_utils.rst, /work/docs/source/generated/torchaudio.utils.sox_utils.rst 2023-07-13T14:50:03.1162798Z [autosummary] generating autosummary for: /work/docs/source/generated/torchaudio.models.conv_tasnet_base.rst, /work/docs/source/generated/torchaudio.models.emformer_rnnt_base.rst, /work/docs/source/generated/torchaudio.models.emformer_rnnt_model.rst, /work/docs/source/generated/torchaudio.models.hdemucs_high.rst, /work/docs/source/generated/torchaudio.models.hdemucs_low.rst, /work/docs/source/generated/torchaudio.models.hdemucs_medium.rst, /work/docs/source/generated/torchaudio.models.hubert_base.rst, /work/docs/source/generated/torchaudio.models.hubert_large.rst, /work/docs/source/generated/torchaudio.models.hubert_pretrain_base.rst, /work/docs/source/generated/torchaudio.models.hubert_pretrain_large.rst, ..., /work/docs/source/generated/torchaudio.prototype.models.emformer_hubert_base.rst, /work/docs/source/generated/torchaudio.prototype.models.emformer_hubert_model.rst, /work/docs/source/generated/torchaudio.prototype.models.hifigan_vocoder.rst, /work/docs/source/generated/torchaudio.prototype.models.hifigan_vocoder_v1.rst, /work/docs/source/generated/torchaudio.prototype.models.hifigan_vocoder_v2.rst, /work/docs/source/generated/torchaudio.prototype.models.hifigan_vocoder_v3.rst, /work/docs/source/generated/torchaudio.prototype.models.squim_objective_base.rst, /work/docs/source/generated/torchaudio.prototype.models.squim_objective_model.rst, /work/docs/source/generated/torchaudio.prototype.models.squim_subjective_base.rst, /work/docs/source/generated/torchaudio.prototype.models.squim_subjective_model.rst 2023-07-13T14:50:03.1165757Z loading intersphinx inventory from https://docs.python.org/3/objects.inv... 2023-07-13T14:50:03.1166334Z loading intersphinx inventory from https://numpy.org/doc/stable/objects.inv... 2023-07-13T14:50:03.1166856Z loading intersphinx inventory from https://pytorch.org/docs/stable/objects.inv... 2023-07-13T14:50:03.1167479Z generating gallery... 2023-07-13T14:50:03.1168005Z Using Sphinx-Gallery to convert rst text blocks to markdown for .ipynb files. 2023-07-13T14:50:03.1168612Z generating gallery for tutorials... [ 3%] audio_datasets_tutorial.py 2023-07-13T14:50:03.1169190Z generating gallery for tutorials... [ 7%] streamwriter_advanced.py 2023-07-13T14:50:03.1169818Z generating gallery for tutorials... [ 11%] speech_recognition_pipeline_tutorial.py 2023-07-13T14:50:03.1170462Z generating gallery for tutorials... [ 15%] streamreader_advanced_tutorial.py 2023-07-13T14:50:03.1171094Z generating gallery for tutorials... [ 19%] streamreader_basic_tutorial.py 2023-07-13T14:50:03.1171735Z generating gallery for tutorials... [ 23%] audio_feature_augmentation_tutorial.py 2023-07-13T14:50:03.1172534Z generating gallery for tutorials... [ 26%] effector_tutorial.py 2023-07-13T14:50:03.1173419Z [W encode_process.cpp:170] Warning: "vorbis" encoder is selected. Enabling '-strict experimental'. If this is not desired, please provide "strict" encoder option with desired value. (function operator()) 2023-07-13T14:50:03.1174447Z [W encode_process.cpp:179] Warning: "opus" encoder is selected. Enabling '-strict experimental'. If this is not desired, please provide "strict" encoder option with desired value. (function operator()) 2023-07-13T14:50:03.1175161Z generating gallery for tutorials... [ 30%] online_asr_tutorial.py 2023-07-13T14:50:03.1175712Z generating gallery for tutorials... [ 34%] device_asr.py 2023-07-13T14:50:03.1176295Z generating gallery for tutorials... [ 38%] filter_design_tutorial.py 2023-07-13T14:50:03.1176960Z generating gallery for tutorials... [ 42%] subtractive_synthesis_tutorial.py 2023-07-13T14:50:03.1177619Z generating gallery for tutorials... [ 46%] tacotron2_pipeline_tutorial.py 2023-07-13T14:50:03.1178207Z generating gallery for tutorials... [ 50%] additive_synthesis_tutorial.py 2023-07-13T14:50:03.1178777Z generating gallery for tutorials... [ 53%] oscillator_tutorial.py 2023-07-13T14:50:03.1179395Z generating gallery for tutorials... [ 57%] streamwriter_basic_tutorial.py 2023-07-13T14:50:03.1179984Z generating gallery for tutorials... [ 61%] hybrid_demucs_tutorial.py 2023-07-13T14:50:03.1180593Z generating gallery for tutorials... [ 65%] squim_tutorial.py 2023-07-13T14:50:03.1181202Z generating gallery for tutorials... [ 69%] audio_io_tutorial.py 2023-07-13T14:50:03.1181803Z generating gallery for tutorials... [ 73%] mvdr_tutorial.py 2023-07-13T14:50:03.1182579Z generating gallery for tutorials... [ 76%] asr_inference_with_ctc_decoder_tutorial.py 2023-07-13T14:50:03.1183262Z generating gallery for tutorials... [ 80%] audio_feature_extractions_tutorial.py 2023-07-13T14:50:03.1183917Z generating gallery for tutorials... [ 84%] audio_data_augmentation_tutorial.py 2023-07-13T14:50:03.1184557Z generating gallery for tutorials... [ 88%] forced_alignment_tutorial.py 2023-07-13T14:50:03.1185229Z generating gallery for tutorials... [ 92%] ctc_forced_alignment_api_tutorial.py 2023-07-13T14:50:03.1185888Z generating gallery for tutorials... [ 96%] audio_resampling_tutorial.py 2023-07-13T14:50:03.1186586Z generating gallery for tutorials... [100%] forced_alignment_for_multilingual_data_tutorial.py 2023-07-13T14:50:03.1186909Z 2023-07-13T14:50:03.1187123Z computation time summary: 2023-07-13T14:50:03.1187693Z - ../../examples/tutorials/forced_alignment_for_multilingual_data_tutorial.py: 414.09 sec 0.0 MB 2023-07-13T14:50:03.1188331Z - ../../examples/tutorials/additive_synthesis_tutorial.py: 165.92 sec 0.0 MB 2023-07-13T14:50:03.1188970Z - ../../examples/tutorials/ctc_forced_alignment_api_tutorial.py: 116.73 sec 0.0 MB 2023-07-13T14:50:03.1189594Z - ../../examples/tutorials/asr_inference_with_ctc_decoder_tutorial.py: 109.23 sec 0.0 MB 2023-07-13T14:50:03.1190212Z - ../../examples/tutorials/tacotron2_pipeline_tutorial.py: 93.50 sec 0.0 MB 2023-07-13T14:50:03.1190799Z - ../../examples/tutorials/online_asr_tutorial.py: 78.72 sec 0.0 MB 2023-07-13T14:50:03.1191544Z - ../../examples/tutorials/oscillator_tutorial.py: 69.22 sec 0.0 MB 2023-07-13T14:50:03.1192321Z - ../../examples/tutorials/streamreader_advanced_tutorial.py: 18.81 sec 0.0 MB 2023-07-13T14:50:03.1192941Z - ../../examples/tutorials/hybrid_demucs_tutorial.py: 18.60 sec 0.0 MB 2023-07-13T14:50:03.1193562Z - ../../examples/tutorials/audio_data_augmentation_tutorial.py: 18.40 sec 0.0 MB 2023-07-13T14:50:03.1194159Z - ../../examples/tutorials/subtractive_synthesis_tutorial.py: 11.62 sec 0.0 MB 2023-07-13T14:50:03.1194770Z - ../../examples/tutorials/audio_feature_extractions_tutorial.py: 11.01 sec 0.0 MB 2023-07-13T14:50:03.1195403Z - ../../examples/tutorials/streamwriter_basic_tutorial.py: 8.97 sec 0.0 MB 2023-07-13T14:50:03.1196015Z - ../../examples/tutorials/squim_tutorial.py: 8.00 sec 0.0 MB 2023-07-13T14:50:03.1196671Z - ../../examples/tutorials/speech_recognition_pipeline_tutorial.py: 6.80 sec 0.0 MB 2023-07-13T14:50:03.1197248Z - ../../examples/tutorials/streamreader_basic_tutorial.py: 6.31 sec 0.0 MB 2023-07-13T14:50:03.1197815Z - ../../examples/tutorials/filter_design_tutorial.py: 5.84 sec 0.0 MB 2023-07-13T14:50:03.1198565Z - ../../examples/tutorials/audio_resampling_tutorial.py: 3.55 sec 0.0 MB 2023-07-13T14:50:06.0027903Z - ../../examples/tutorials/effector_tutorial.py: 3.43 sec 0.0 MB 2023-07-13T14:50:06.0029155Z - ../../examples/tutorials/forced_alignment_tutorial.py: 2.92 sec 0.0 MB 2023-07-13T14:50:06.0030466Z - ../../examples/tutorials/audio_feature_augmentation_tutorial.py: 2.75 sec 0.0 MB 2023-07-13T14:50:06.0031612Z - ../../examples/tutorials/audio_io_tutorial.py: 2.07 sec 0.0 MB 2023-07-13T14:50:06.0033044Z - ../../examples/tutorials/audio_datasets_tutorial.py: 1.97 sec 0.0 MB 2023-07-13T14:50:06.0034196Z - ../../examples/tutorials/mvdr_tutorial.py: 1.91 sec 0.0 MB 2023-07-13T14:50:06.0035332Z - ../../examples/tutorials/device_asr.py: 0.00 sec 0.0 MB 2023-07-13T14:50:06.0036234Z - ../../examples/tutorials/streamwriter_advanced.py: 0.00 sec 0.0 MB 2023-07-13T14:50:06.0037292Z building [mo]: targets for 0 po files that are out of date 2023-07-13T14:50:06.0037969Z building [html]: targets for 34 source files that are out of date 2023-07-13T14:50:06.0038735Z updating environment: [new config] 320 added, 0 changed, 0 removed 2023-07-13T14:50:06.0039118Z reading sources... [ 0%] backend 2023-07-13T14:50:06.0039463Z reading sources... [ 0%] build 2023-07-13T14:50:06.0039981Z reading sources... [ 0%] build.ffmpeg 2023-07-13T14:50:06.0040487Z reading sources... [ 1%] build.jetson 2023-07-13T14:50:06.0040876Z reading sources... [ 1%] build.linux 2023-07-13T14:50:06.0041288Z reading sources... [ 1%] build.windows 2023-07-13T14:50:06.0041741Z reading sources... [ 2%] compliance.kaldi 2023-07-13T14:50:06.0042092Z reading sources... [ 2%] datasets 2023-07-13T14:50:06.0042468Z reading sources... [ 2%] feature_classifications 2023-07-13T14:50:06.0042841Z reading sources... [ 3%] functional 2023-07-13T14:50:06.0043273Z reading sources... [ 3%] generated/torchaudio.compliance.kaldi.fbank 2023-07-13T14:50:06.0043915Z reading sources... [ 3%] generated/torchaudio.compliance.kaldi.mfcc 2023-07-13T14:50:06.0044425Z reading sources... [ 4%] generated/torchaudio.compliance.kaldi.spectrogram 2023-07-13T14:50:06.0044913Z reading sources... [ 4%] generated/torchaudio.datasets.CMUARCTIC 2023-07-13T14:50:06.0045366Z reading sources... [ 4%] generated/torchaudio.datasets.CMUDict 2023-07-13T14:50:06.0045818Z reading sources... [ 5%] generated/torchaudio.datasets.COMMONVOICE 2023-07-13T14:50:06.0046277Z reading sources... [ 5%] generated/torchaudio.datasets.DR_VCTK 2023-07-13T14:50:06.0046763Z reading sources... [ 5%] generated/torchaudio.datasets.FluentSpeechCommands 2023-07-13T14:50:06.0047230Z reading sources... [ 5%] generated/torchaudio.datasets.GTZAN 2023-07-13T14:50:06.0047690Z reading sources... [ 6%] generated/torchaudio.datasets.IEMOCAP 2023-07-13T14:50:06.0048155Z reading sources... [ 6%] generated/torchaudio.datasets.LIBRISPEECH 2023-07-13T14:50:06.0048618Z reading sources... [ 6%] generated/torchaudio.datasets.LIBRITTS 2023-07-13T14:50:06.0049058Z reading sources... [ 7%] generated/torchaudio.datasets.LJSPEECH 2023-07-13T14:50:06.0049537Z reading sources... [ 7%] generated/torchaudio.datasets.LibriLightLimited 2023-07-13T14:50:06.0050011Z reading sources... [ 7%] generated/torchaudio.datasets.LibriMix 2023-07-13T14:50:06.0050463Z reading sources... [ 8%] generated/torchaudio.datasets.MUSDB_HQ 2023-07-13T14:50:06.0050897Z reading sources... [ 8%] generated/torchaudio.datasets.QUESST14 2023-07-13T14:50:06.0051450Z reading sources... [ 8%] generated/torchaudio.datasets.SPEECHCOMMANDS 2023-07-13T14:50:06.0051922Z reading sources... [ 9%] generated/torchaudio.datasets.Snips 2023-07-13T14:50:06.0052390Z reading sources... [ 9%] generated/torchaudio.datasets.TEDLIUM 2023-07-13T14:50:06.0052828Z reading sources... [ 9%] generated/torchaudio.datasets.VCTK_092 2023-07-13T14:50:06.0053321Z reading sources... [ 10%] generated/torchaudio.datasets.VoxCeleb1Identification 2023-07-13T14:50:06.0053851Z reading sources... [ 10%] generated/torchaudio.datasets.VoxCeleb1Verification 2023-07-13T14:50:06.0054330Z reading sources... [ 10%] generated/torchaudio.datasets.YESNO 2023-07-13T14:50:06.0054786Z reading sources... [ 10%] generated/torchaudio.functional.DB_to_amplitude 2023-07-13T14:50:06.0055273Z reading sources... [ 11%] generated/torchaudio.functional.add_noise 2023-07-13T14:50:06.0055755Z reading sources... [ 11%] generated/torchaudio.functional.allpass_biquad 2023-07-13T14:50:06.0056236Z reading sources... [ 11%] generated/torchaudio.functional.amplitude_to_DB 2023-07-13T14:50:06.0056728Z reading sources... [ 12%] generated/torchaudio.functional.apply_beamforming 2023-07-13T14:50:06.0057233Z reading sources... [ 12%] generated/torchaudio.functional.apply_codec 2023-07-13T14:50:06.0057703Z reading sources... [ 12%] generated/torchaudio.functional.band_biquad 2023-07-13T14:50:06.0058163Z reading sources... [ 13%] generated/torchaudio.functional.bandpass_biquad 2023-07-13T14:50:06.0058647Z reading sources... [ 13%] generated/torchaudio.functional.bandreject_biquad 2023-07-13T14:50:06.0059178Z reading sources... [ 13%] generated/torchaudio.functional.bass_biquad 2023-07-13T14:50:06.0059625Z reading sources... [ 14%] generated/torchaudio.functional.biquad 2023-07-13T14:50:06.0060081Z reading sources... [ 14%] generated/torchaudio.functional.compute_deltas 2023-07-13T14:50:06.0060548Z reading sources... [ 14%] generated/torchaudio.functional.contrast 2023-07-13T14:50:06.0061008Z reading sources... [ 15%] generated/torchaudio.functional.convolve 2023-07-13T14:50:06.0061461Z reading sources... [ 15%] generated/torchaudio.functional.create_dct 2023-07-13T14:50:06.0061916Z reading sources... [ 15%] generated/torchaudio.functional.dcshift 2023-07-13T14:50:06.0080469Z reading sources... [ 15%] generated/torchaudio.functional.deemph_biquad 2023-07-13T14:50:06.0081139Z reading sources... [ 16%] generated/torchaudio.functional.deemphasis 2023-07-13T14:50:06.0081775Z reading sources... [ 16%] generated/torchaudio.functional.detect_pitch_frequency 2023-07-13T14:50:06.0082253Z reading sources... [ 16%] generated/torchaudio.functional.dither 2023-07-13T14:50:06.0082720Z reading sources... [ 17%] generated/torchaudio.functional.edit_distance 2023-07-13T14:50:06.0083193Z reading sources... [ 17%] generated/torchaudio.functional.equalizer_biquad 2023-07-13T14:50:06.0083674Z reading sources... [ 17%] generated/torchaudio.functional.fftconvolve 2023-07-13T14:50:06.0084140Z reading sources... [ 18%] generated/torchaudio.functional.filtfilt 2023-07-13T14:50:06.0084608Z reading sources... [ 18%] generated/torchaudio.functional.flanger 2023-07-13T14:50:06.0085198Z reading sources... [ 18%] generated/torchaudio.functional.forced_align 2023-07-13T14:50:06.0085665Z reading sources... [ 19%] generated/torchaudio.functional.gain 2023-07-13T14:50:06.0086131Z reading sources... [ 19%] generated/torchaudio.functional.griffinlim 2023-07-13T14:50:06.0086662Z reading sources... [ 19%] generated/torchaudio.functional.highpass_biquad 2023-07-13T14:50:06.0087159Z reading sources... [ 20%] generated/torchaudio.functional.inverse_spectrogram 2023-07-13T14:50:06.0087635Z reading sources... [ 20%] generated/torchaudio.functional.lfilter 2023-07-13T14:50:06.0088113Z reading sources... [ 20%] generated/torchaudio.functional.linear_fbanks 2023-07-13T14:50:06.0088590Z reading sources... [ 20%] generated/torchaudio.functional.loudness 2023-07-13T14:50:06.0089070Z reading sources... [ 21%] generated/torchaudio.functional.lowpass_biquad 2023-07-13T14:50:06.0089552Z reading sources... [ 21%] generated/torchaudio.functional.mask_along_axis 2023-07-13T14:50:06.0090039Z reading sources... [ 21%] generated/torchaudio.functional.mask_along_axis_iid 2023-07-13T14:50:06.0090515Z reading sources... [ 22%] generated/torchaudio.functional.melscale_fbanks 2023-07-13T14:50:06.0090998Z reading sources... [ 22%] generated/torchaudio.functional.mu_law_decoding 2023-07-13T14:50:06.0091473Z reading sources... [ 22%] generated/torchaudio.functional.mu_law_encoding 2023-07-13T14:50:08.9019387Z reading sources... [ 23%] generated/torchaudio.functional.mvdr_weights_rtf 2023-07-13T14:50:08.9020557Z reading sources... [ 23%] generated/torchaudio.functional.mvdr_weights_souden 2023-07-13T14:50:08.9021215Z reading sources... [ 23%] generated/torchaudio.functional.overdrive 2023-07-13T14:50:08.9021848Z reading sources... [ 24%] generated/torchaudio.functional.phase_vocoder 2023-07-13T14:50:08.9022489Z reading sources... [ 24%] generated/torchaudio.functional.phaser 2023-07-13T14:50:08.9023126Z reading sources... [ 24%] generated/torchaudio.functional.pitch_shift 2023-07-13T14:50:08.9023807Z reading sources... [ 25%] generated/torchaudio.functional.preemphasis 2023-07-13T14:50:08.9024423Z reading sources... [ 25%] generated/torchaudio.functional.psd 2023-07-13T14:50:08.9025027Z reading sources... [ 25%] generated/torchaudio.functional.resample 2023-07-13T14:50:08.9025642Z reading sources... [ 25%] generated/torchaudio.functional.riaa_biquad 2023-07-13T14:50:08.9026250Z reading sources... [ 26%] generated/torchaudio.functional.rnnt_loss 2023-07-13T14:50:08.9026847Z reading sources... [ 26%] generated/torchaudio.functional.rtf_evd 2023-07-13T14:50:08.9027440Z reading sources... [ 26%] generated/torchaudio.functional.rtf_power 2023-07-13T14:50:08.9028120Z reading sources... [ 27%] generated/torchaudio.functional.sliding_window_cmn 2023-07-13T14:50:08.9028641Z reading sources... [ 27%] generated/torchaudio.functional.spectral_centroid 2023-07-13T14:50:08.9029128Z reading sources... [ 27%] generated/torchaudio.functional.spectrogram 2023-07-13T14:50:08.9029601Z reading sources... [ 28%] generated/torchaudio.functional.speed 2023-07-13T14:50:08.9030228Z reading sources... [ 28%] generated/torchaudio.functional.treble_biquad 2023-07-13T14:50:08.9030682Z reading sources... [ 28%] generated/torchaudio.functional.vad 2023-07-13T14:50:08.9031126Z reading sources... [ 29%] generated/torchaudio.io.AudioEffector 2023-07-13T14:50:08.9031571Z reading sources... [ 29%] generated/torchaudio.io.StreamReader 2023-07-13T14:50:08.9032091Z reading sources... [ 29%] generated/torchaudio.io.StreamWriter 2023-07-13T14:50:08.9032529Z reading sources... [ 30%] generated/torchaudio.io.play_audio 2023-07-13T14:50:08.9032969Z reading sources... [ 30%] generated/torchaudio.models.Conformer 2023-07-13T14:50:08.9033429Z reading sources... [ 30%] generated/torchaudio.models.ConvTasNet 2023-07-13T14:50:08.9033889Z reading sources... [ 30%] generated/torchaudio.models.DeepSpeech 2023-07-13T14:50:08.9034339Z reading sources... [ 31%] generated/torchaudio.models.Emformer 2023-07-13T14:50:08.9034781Z reading sources... [ 31%] generated/torchaudio.models.HDemucs 2023-07-13T14:50:08.9035256Z reading sources... [ 31%] generated/torchaudio.models.HuBERTPretrainModel 2023-07-13T14:50:08.9035721Z reading sources... [ 32%] generated/torchaudio.models.RNNT 2023-07-13T14:50:08.9036181Z reading sources... [ 32%] generated/torchaudio.models.RNNTBeamSearch 2023-07-13T14:50:08.9036646Z reading sources... [ 32%] generated/torchaudio.models.Tacotron2 2023-07-13T14:50:08.9037093Z reading sources... [ 33%] generated/torchaudio.models.Wav2Letter 2023-07-13T14:50:08.9037653Z reading sources... [ 33%] generated/torchaudio.models.Wav2Vec2Model 2023-07-13T14:50:08.9038381Z reading sources... [ 33%] generated/torchaudio.models.WaveRNN 2023-07-13T14:50:08.9038855Z reading sources... [ 34%] generated/torchaudio.models.conv_tasnet_base 2023-07-13T14:50:08.9039329Z reading sources... [ 34%] generated/torchaudio.models.decoder.CTCDecoder 2023-07-13T14:50:08.9039833Z reading sources... [ 34%] generated/torchaudio.models.decoder.CUCTCDecoder 2023-07-13T14:50:08.9040322Z reading sources... [ 35%] generated/torchaudio.models.decoder.ctc_decoder 2023-07-13T14:50:08.9040804Z reading sources... [ 35%] generated/torchaudio.models.decoder.cuda_ctc_decoder 2023-07-13T14:50:08.9041318Z reading sources... [ 35%] generated/torchaudio.models.decoder.download_pretrained_files 2023-07-13T14:50:08.9041816Z reading sources... [ 35%] generated/torchaudio.models.emformer_rnnt_base 2023-07-13T14:50:08.9042283Z reading sources... [ 36%] generated/torchaudio.models.emformer_rnnt_model 2023-07-13T14:50:08.9042741Z reading sources... [ 36%] generated/torchaudio.models.hdemucs_high 2023-07-13T14:50:08.9043181Z reading sources... [ 36%] generated/torchaudio.models.hdemucs_low 2023-07-13T14:50:08.9043629Z reading sources... [ 37%] generated/torchaudio.models.hdemucs_medium 2023-07-13T14:50:08.9044080Z reading sources... [ 37%] generated/torchaudio.models.hubert_base 2023-07-13T14:50:08.9044527Z reading sources... [ 37%] generated/torchaudio.models.hubert_large 2023-07-13T14:50:08.9045076Z reading sources... [ 38%] generated/torchaudio.models.hubert_pretrain_base 2023-07-13T14:50:08.9045559Z reading sources... [ 38%] generated/torchaudio.models.hubert_pretrain_large 2023-07-13T14:50:08.9046034Z reading sources... [ 38%] generated/torchaudio.models.hubert_pretrain_model 2023-07-13T14:50:08.9046502Z reading sources... [ 39%] generated/torchaudio.models.hubert_pretrain_xlarge 2023-07-13T14:50:08.9046967Z reading sources... [ 39%] generated/torchaudio.models.hubert_xlarge 2023-07-13T14:50:08.9047476Z reading sources... [ 39%] generated/torchaudio.models.wav2vec2.utils.import_fairseq_model 2023-07-13T14:50:08.9048074Z reading sources... [ 40%] generated/torchaudio.models.wav2vec2.utils.import_huggingface_model 2023-07-13T14:50:08.9048570Z reading sources... [ 40%] generated/torchaudio.models.wav2vec2_base 2023-07-13T14:50:08.9049035Z reading sources... [ 40%] generated/torchaudio.models.wav2vec2_large 2023-07-13T14:50:08.9049502Z reading sources... [ 40%] generated/torchaudio.models.wav2vec2_large_lv60k 2023-07-13T14:50:08.9049966Z reading sources... [ 41%] generated/torchaudio.models.wav2vec2_model 2023-07-13T14:50:08.9050420Z reading sources... [ 41%] generated/torchaudio.models.wav2vec2_xlsr_1b 2023-07-13T14:50:08.9050885Z reading sources... [ 41%] generated/torchaudio.models.wav2vec2_xlsr_2b 2023-07-13T14:50:08.9051347Z reading sources... [ 42%] generated/torchaudio.models.wav2vec2_xlsr_300m 2023-07-13T14:50:08.9051796Z reading sources... [ 42%] generated/torchaudio.models.wavlm_base 2023-07-13T14:50:08.9052300Z reading sources... [ 42%] generated/torchaudio.models.wavlm_large 2023-07-13T14:50:08.9052748Z reading sources... [ 43%] generated/torchaudio.models.wavlm_model 2023-07-13T14:50:08.9053238Z reading sources... [ 43%] generated/torchaudio.pipelines.CONVTASNET_BASE_LIBRI2MIX 2023-07-13T14:50:08.9053757Z reading sources... [ 43%] generated/torchaudio.pipelines.EMFORMER_RNNT_BASE_LIBRISPEECH 2023-07-13T14:50:08.9054267Z reading sources... [ 44%] generated/torchaudio.pipelines.HDEMUCS_HIGH_MUSDB 2023-07-13T14:50:08.9054765Z reading sources... [ 44%] generated/torchaudio.pipelines.HDEMUCS_HIGH_MUSDB_PLUS 2023-07-13T14:50:08.9055250Z reading sources... [ 44%] generated/torchaudio.pipelines.HUBERT_ASR_LARGE 2023-07-13T14:50:08.9055725Z reading sources... [ 45%] generated/torchaudio.pipelines.HUBERT_ASR_XLARGE 2023-07-13T14:50:08.9056204Z reading sources... [ 45%] generated/torchaudio.pipelines.HUBERT_BASE 2023-07-13T14:50:08.9056673Z reading sources... [ 45%] generated/torchaudio.pipelines.HUBERT_LARGE 2023-07-13T14:50:08.9057142Z reading sources... [ 45%] generated/torchaudio.pipelines.HUBERT_XLARGE 2023-07-13T14:50:08.9057613Z reading sources... [ 46%] generated/torchaudio.pipelines.RNNTBundle 2023-07-13T14:50:08.9058188Z reading sources... [ 46%] generated/torchaudio.pipelines.RNNTBundle.FeatureExtractor 2023-07-13T14:50:08.9058752Z reading sources... [ 46%] generated/torchaudio.pipelines.RNNTBundle.TokenProcessor 2023-07-13T14:50:08.9059291Z reading sources... [ 47%] generated/torchaudio.pipelines.SourceSeparationBundle 2023-07-13T14:50:08.9059898Z reading sources... [ 47%] generated/torchaudio.pipelines.TACOTRON2_GRIFFINLIM_CHAR_LJSPEECH 2023-07-13T14:50:08.9060437Z reading sources... [ 47%] generated/torchaudio.pipelines.TACOTRON2_GRIFFINLIM_PHONE_LJSPEECH 2023-07-13T14:50:10.1568748Z reading sources... [ 48%] generated/torchaudio.pipelines.TACOTRON2_WAVERNN_CHAR_LJSPEECH 2023-07-13T14:50:10.1569452Z reading sources... [ 48%] generated/torchaudio.pipelines.TACOTRON2_WAVERNN_PHONE_LJSPEECH 2023-07-13T14:50:10.1570067Z reading sources... [ 48%] generated/torchaudio.pipelines.Tacotron2TTSBundle 2023-07-13T14:50:10.1570743Z reading sources... [ 49%] generated/torchaudio.pipelines.Tacotron2TTSBundle.TextProcessor 2023-07-13T14:50:10.1571502Z reading sources... [ 49%] generated/torchaudio.pipelines.Tacotron2TTSBundle.Vocoder 2023-07-13T14:50:10.1572190Z reading sources... [ 49%] generated/torchaudio.pipelines.VOXPOPULI_ASR_BASE_10K_DE 2023-07-13T14:50:10.1572691Z reading sources... [ 50%] generated/torchaudio.pipelines.VOXPOPULI_ASR_BASE_10K_EN 2023-07-13T14:50:10.1573187Z reading sources... [ 50%] generated/torchaudio.pipelines.VOXPOPULI_ASR_BASE_10K_ES 2023-07-13T14:50:10.1573683Z reading sources... [ 50%] generated/torchaudio.pipelines.VOXPOPULI_ASR_BASE_10K_FR 2023-07-13T14:50:10.1574177Z reading sources... [ 50%] generated/torchaudio.pipelines.VOXPOPULI_ASR_BASE_10K_IT 2023-07-13T14:50:10.1574658Z reading sources... [ 51%] generated/torchaudio.pipelines.WAV2VEC2_ASR_BASE_100H 2023-07-13T14:50:10.1575141Z reading sources... [ 51%] generated/torchaudio.pipelines.WAV2VEC2_ASR_BASE_10M 2023-07-13T14:50:10.1575790Z reading sources... [ 51%] generated/torchaudio.pipelines.WAV2VEC2_ASR_BASE_960H 2023-07-13T14:50:10.1576275Z reading sources... [ 52%] generated/torchaudio.pipelines.WAV2VEC2_ASR_LARGE_100H 2023-07-13T14:50:10.1576744Z reading sources... [ 52%] generated/torchaudio.pipelines.WAV2VEC2_ASR_LARGE_10M 2023-07-13T14:50:10.1577215Z reading sources... [ 52%] generated/torchaudio.pipelines.WAV2VEC2_ASR_LARGE_960H 2023-07-13T14:50:10.1577730Z reading sources... [ 53%] generated/torchaudio.pipelines.WAV2VEC2_ASR_LARGE_LV60K_100H 2023-07-13T14:50:10.1578250Z reading sources... [ 53%] generated/torchaudio.pipelines.WAV2VEC2_ASR_LARGE_LV60K_10M 2023-07-13T14:50:10.1578734Z reading sources... [ 53%] generated/torchaudio.pipelines.WAV2VEC2_ASR_LARGE_LV60K_960H 2023-07-13T14:50:10.1579216Z reading sources... [ 54%] generated/torchaudio.pipelines.WAV2VEC2_BASE 2023-07-13T14:50:10.1579688Z reading sources... [ 54%] generated/torchaudio.pipelines.WAV2VEC2_LARGE 2023-07-13T14:50:10.1580166Z reading sources... [ 54%] generated/torchaudio.pipelines.WAV2VEC2_LARGE_LV60K 2023-07-13T14:50:10.1580628Z reading sources... [ 55%] generated/torchaudio.pipelines.WAV2VEC2_XLSR53 2023-07-13T14:50:10.1581095Z reading sources... [ 55%] generated/torchaudio.pipelines.WAV2VEC2_XLSR_1B 2023-07-13T14:50:10.1581565Z reading sources... [ 55%] generated/torchaudio.pipelines.WAV2VEC2_XLSR_2B 2023-07-13T14:50:10.1582039Z reading sources... [ 55%] generated/torchaudio.pipelines.WAV2VEC2_XLSR_300M 2023-07-13T14:50:10.1582496Z reading sources... [ 56%] generated/torchaudio.pipelines.WAVLM_BASE 2023-07-13T14:50:10.1583075Z reading sources... [ 56%] generated/torchaudio.pipelines.WAVLM_BASE_PLUS 2023-07-13T14:50:10.1583544Z reading sources... [ 56%] generated/torchaudio.pipelines.WAVLM_LARGE 2023-07-13T14:50:10.1584037Z reading sources... [ 57%] generated/torchaudio.pipelines.Wav2Vec2ASRBundle 2023-07-13T14:50:10.1584522Z reading sources... [ 57%] generated/torchaudio.pipelines.Wav2Vec2Bundle 2023-07-13T14:50:10.1585010Z reading sources... [ 57%] generated/torchaudio.prototype.datasets.Musan 2023-07-13T14:50:10.1585519Z reading sources... [ 58%] generated/torchaudio.prototype.functional.adsr_envelope 2023-07-13T14:50:10.1586037Z reading sources... [ 58%] generated/torchaudio.prototype.functional.barkscale_fbanks 2023-07-13T14:50:10.1586578Z reading sources... [ 58%] generated/torchaudio.prototype.functional.chroma_filterbank 2023-07-13T14:50:10.1587114Z reading sources... [ 59%] generated/torchaudio.prototype.functional.extend_pitch 2023-07-13T14:50:10.1587638Z reading sources... [ 59%] generated/torchaudio.prototype.functional.filter_waveform 2023-07-13T14:50:10.1588180Z reading sources... [ 59%] generated/torchaudio.prototype.functional.frequency_impulse_response 2023-07-13T14:50:10.1588724Z reading sources... [ 60%] generated/torchaudio.prototype.functional.oscillator_bank 2023-07-13T14:50:10.1589258Z reading sources... [ 60%] generated/torchaudio.prototype.functional.simulate_rir_ism 2023-07-13T14:50:10.1589790Z reading sources... [ 60%] generated/torchaudio.prototype.functional.sinc_impulse_response 2023-07-13T14:50:10.1590409Z reading sources... [ 60%] generated/torchaudio.prototype.models.ConformerWav2Vec2PretrainModel 2023-07-13T14:50:10.1590968Z reading sources... [ 61%] generated/torchaudio.prototype.models.ConvEmformer 2023-07-13T14:50:10.1591492Z reading sources... [ 61%] generated/torchaudio.prototype.models.HiFiGANVocoder 2023-07-13T14:50:10.1592114Z reading sources... [ 61%] generated/torchaudio.prototype.models.SquimObjective 2023-07-13T14:50:10.1592629Z reading sources... [ 62%] generated/torchaudio.prototype.models.SquimSubjective 2023-07-13T14:50:10.1593152Z reading sources... [ 62%] generated/torchaudio.prototype.models.conformer_rnnt_base 2023-07-13T14:50:10.1593670Z reading sources... [ 62%] generated/torchaudio.prototype.models.conformer_rnnt_model 2023-07-13T14:50:10.1594195Z reading sources... [ 63%] generated/torchaudio.prototype.models.conformer_wav2vec2_base 2023-07-13T14:50:10.1594721Z reading sources... [ 63%] generated/torchaudio.prototype.models.conformer_wav2vec2_model 2023-07-13T14:50:10.1595258Z reading sources... [ 63%] generated/torchaudio.prototype.models.conformer_wav2vec2_pretrain_base 2023-07-13T14:50:10.1595805Z reading sources... [ 64%] generated/torchaudio.prototype.models.conformer_wav2vec2_pretrain_large 2023-07-13T14:50:10.1596351Z reading sources... [ 64%] generated/torchaudio.prototype.models.conformer_wav2vec2_pretrain_model 2023-07-13T14:50:10.1596871Z reading sources... [ 64%] generated/torchaudio.prototype.models.emformer_hubert_base 2023-07-13T14:50:10.1597384Z reading sources... [ 65%] generated/torchaudio.prototype.models.emformer_hubert_model 2023-07-13T14:50:10.1597897Z reading sources... [ 65%] generated/torchaudio.prototype.models.hifigan_vocoder 2023-07-13T14:50:10.1598646Z reading sources... [ 65%] generated/torchaudio.prototype.models.hifigan_vocoder_v1 2023-07-13T14:50:10.1599158Z reading sources... [ 65%] generated/torchaudio.prototype.models.hifigan_vocoder_v2 2023-07-13T14:50:10.1599658Z reading sources... [ 66%] generated/torchaudio.prototype.models.hifigan_vocoder_v3 2023-07-13T14:50:10.1600164Z reading sources... [ 66%] generated/torchaudio.prototype.models.squim_objective_base 2023-07-13T14:50:10.1600659Z reading sources... [ 66%] generated/torchaudio.prototype.models.squim_objective_model 2023-07-13T14:50:10.1601165Z reading sources... [ 67%] generated/torchaudio.prototype.models.squim_subjective_base 2023-07-13T14:50:10.1601684Z reading sources... [ 67%] generated/torchaudio.prototype.models.squim_subjective_model 2023-07-13T14:50:10.1602220Z reading sources... [ 67%] generated/torchaudio.prototype.pipelines.EMFORMER_RNNT_BASE_MUSTC 2023-07-13T14:50:10.1602761Z reading sources... [ 68%] generated/torchaudio.prototype.pipelines.EMFORMER_RNNT_BASE_TEDLIUM3 2023-07-13T14:50:10.1603310Z reading sources... [ 68%] generated/torchaudio.prototype.pipelines.HIFIGAN_VOCODER_V3_LJSPEECH 2023-07-13T14:50:10.1603866Z reading sources... [ 68%] generated/torchaudio.prototype.pipelines.HiFiGANVocoderBundle 2023-07-13T14:50:10.1604406Z reading sources... [ 69%] generated/torchaudio.prototype.pipelines.SQUIM_OBJECTIVE 2023-07-13T14:50:10.1604914Z reading sources... [ 69%] generated/torchaudio.prototype.pipelines.SQUIM_SUBJECTIVE 2023-07-13T14:50:10.1605530Z reading sources... [ 69%] generated/torchaudio.prototype.pipelines.SquimObjectiveBundle 2023-07-13T14:50:10.1606103Z reading sources... [ 70%] generated/torchaudio.prototype.pipelines.SquimSubjectiveBundle 2023-07-13T14:50:10.1606643Z reading sources... [ 70%] generated/torchaudio.prototype.transforms.BarkScale 2023-07-13T14:50:25.2344316Z reading sources... [ 70%] generated/torchaudio.prototype.transforms.BarkSpectrogram 2023-07-13T14:50:25.2345160Z reading sources... [ 70%] generated/torchaudio.prototype.transforms.ChromaScale 2023-07-13T14:50:25.2345881Z reading sources... [ 71%] generated/torchaudio.prototype.transforms.ChromaSpectrogram 2023-07-13T14:50:25.2346447Z reading sources... [ 71%] generated/torchaudio.prototype.transforms.InverseBarkScale 2023-07-13T14:50:25.2346999Z reading sources... [ 71%] generated/torchaudio.sox_effects.apply_effects_file 2023-07-13T14:50:25.2347487Z reading sources... [ 72%] generated/torchaudio.sox_effects.apply_effects_tensor 2023-07-13T14:50:25.2347948Z reading sources... [ 72%] generated/torchaudio.sox_effects.effect_names 2023-07-13T14:50:25.2348392Z reading sources... [ 72%] generated/torchaudio.transforms.AddNoise 2023-07-13T14:50:25.2348870Z reading sources... [ 73%] generated/torchaudio.transforms.AmplitudeToDB 2023-07-13T14:50:25.2349350Z reading sources... [ 73%] generated/torchaudio.transforms.ComputeDeltas 2023-07-13T14:50:25.2349819Z reading sources... [ 73%] generated/torchaudio.transforms.Convolve 2023-07-13T14:50:25.2350276Z reading sources... [ 74%] generated/torchaudio.transforms.Deemphasis 2023-07-13T14:50:25.2350992Z reading sources... [ 74%] generated/torchaudio.transforms.FFTConvolve 2023-07-13T14:50:25.2351458Z reading sources... [ 74%] generated/torchaudio.transforms.Fade 2023-07-13T14:50:25.2352045Z reading sources... [ 75%] generated/torchaudio.transforms.FrequencyMasking 2023-07-13T14:50:25.2352528Z reading sources... [ 75%] generated/torchaudio.transforms.GriffinLim 2023-07-13T14:50:25.2353021Z reading sources... [ 75%] generated/torchaudio.transforms.InverseMelScale 2023-07-13T14:50:25.2353528Z reading sources... [ 75%] generated/torchaudio.transforms.InverseSpectrogram 2023-07-13T14:50:25.2353997Z reading sources... [ 76%] generated/torchaudio.transforms.LFCC 2023-07-13T14:50:25.2354453Z reading sources... [ 76%] generated/torchaudio.transforms.Loudness 2023-07-13T14:50:25.2354922Z reading sources... [ 76%] generated/torchaudio.transforms.MFCC 2023-07-13T14:50:25.2355358Z reading sources... [ 77%] generated/torchaudio.transforms.MVDR 2023-07-13T14:50:25.2355805Z reading sources... [ 77%] generated/torchaudio.transforms.MelScale 2023-07-13T14:50:25.2356290Z reading sources... [ 77%] generated/torchaudio.transforms.MelSpectrogram 2023-07-13T14:50:25.2356782Z reading sources... [ 78%] generated/torchaudio.transforms.MuLawDecoding 2023-07-13T14:50:25.2357267Z reading sources... [ 78%] generated/torchaudio.transforms.MuLawEncoding 2023-07-13T14:50:25.2357719Z reading sources... [ 78%] generated/torchaudio.transforms.PSD 2023-07-13T14:50:25.2358463Z reading sources... [ 79%] generated/torchaudio.transforms.PitchShift 2023-07-13T14:50:25.2359080Z reading sources... [ 79%] generated/torchaudio.transforms.Preemphasis 2023-07-13T14:50:25.2359537Z reading sources... [ 79%] generated/torchaudio.transforms.RNNTLoss 2023-07-13T14:50:25.2359994Z reading sources... [ 80%] generated/torchaudio.transforms.RTFMVDR 2023-07-13T14:50:25.2360450Z reading sources... [ 80%] generated/torchaudio.transforms.Resample 2023-07-13T14:50:25.2360929Z reading sources... [ 80%] generated/torchaudio.transforms.SlidingWindowCmn 2023-07-13T14:50:25.2361403Z reading sources... [ 80%] generated/torchaudio.transforms.SoudenMVDR 2023-07-13T14:50:25.2361886Z reading sources... [ 81%] generated/torchaudio.transforms.SpectralCentroid 2023-07-13T14:50:25.2362401Z reading sources... [ 81%] generated/torchaudio.transforms.Spectrogram 2023-07-13T14:50:25.2362888Z reading sources... [ 81%] generated/torchaudio.transforms.Speed 2023-07-13T14:50:25.2363357Z reading sources... [ 82%] generated/torchaudio.transforms.SpeedPerturbation 2023-07-13T14:50:25.2363842Z reading sources... [ 82%] generated/torchaudio.transforms.TimeMasking 2023-07-13T14:50:25.2364309Z reading sources... [ 82%] generated/torchaudio.transforms.TimeStretch 2023-07-13T14:50:25.2364741Z reading sources... [ 83%] generated/torchaudio.transforms.Vad 2023-07-13T14:50:25.2365171Z reading sources... [ 83%] generated/torchaudio.transforms.Vol 2023-07-13T14:50:25.2365606Z reading sources... [ 83%] generated/torchaudio.utils.ffmpeg_utils 2023-07-13T14:50:25.2366044Z reading sources... [ 84%] generated/torchaudio.utils.sox_utils 2023-07-13T14:50:25.2366566Z reading sources... [ 84%] hw_acceleration_tutorial 2023-07-13T14:50:25.2366931Z reading sources... [ 84%] index 2023-07-13T14:50:25.2367280Z reading sources... [ 85%] installation 2023-07-13T14:50:25.2367639Z reading sources... [ 85%] io 2023-07-13T14:50:25.2367971Z reading sources... [ 85%] kaldi_io 2023-07-13T14:50:25.2368329Z reading sources... [ 85%] libtorchaudio 2023-07-13T14:50:25.2368725Z reading sources... [ 86%] libtorchaudio.stream_reader 2023-07-13T14:50:25.2369128Z reading sources... [ 86%] libtorchaudio.stream_writer 2023-07-13T14:50:25.2369490Z reading sources... [ 86%] logo 2023-07-13T14:50:25.2369834Z reading sources... [ 87%] models 2023-07-13T14:50:25.2370201Z reading sources... [ 87%] models.decoder 2023-07-13T14:50:25.2370554Z reading sources... [ 87%] pipelines 2023-07-13T14:50:25.2370905Z reading sources... [ 88%] prototype 2023-07-13T14:50:25.2371276Z reading sources... [ 88%] prototype.datasets 2023-07-13T14:50:25.2371662Z reading sources... [ 88%] prototype.functional 2023-07-13T14:50:25.2372050Z reading sources... [ 89%] prototype.models 2023-07-13T14:50:25.2372478Z reading sources... [ 89%] prototype.pipelines 2023-07-13T14:50:25.2372884Z reading sources... [ 89%] prototype.transforms 2023-07-13T14:50:25.2373246Z reading sources... [ 90%] references 2023-07-13T14:50:25.2373654Z reading sources... [ 90%] sox_effects 2023-07-13T14:50:25.2374031Z reading sources... [ 90%] supported_features 2023-07-13T14:50:25.2374383Z reading sources... [ 90%] torchaudio 2023-07-13T14:50:25.2374734Z reading sources... [ 91%] transforms 2023-07-13T14:50:25.2375132Z reading sources... [ 91%] tutorials/additive_synthesis_tutorial 2023-07-13T14:50:25.2375580Z reading sources... [ 91%] tutorials/asr_inference_with_ctc_decoder_tutorial 2023-07-13T14:50:25.2376023Z reading sources... [ 92%] tutorials/audio_data_augmentation_tutorial 2023-07-13T14:50:25.2376447Z reading sources... [ 92%] tutorials/audio_datasets_tutorial 2023-07-13T14:50:25.2376885Z reading sources... [ 92%] tutorials/audio_feature_augmentation_tutorial 2023-07-13T14:50:25.2377331Z reading sources... [ 93%] tutorials/audio_feature_extractions_tutorial 2023-07-13T14:50:25.2377754Z reading sources... [ 93%] tutorials/audio_io_tutorial 2023-07-13T14:50:25.2378165Z reading sources... [ 93%] tutorials/audio_resampling_tutorial 2023-07-13T14:50:25.2378597Z reading sources... [ 94%] tutorials/ctc_forced_alignment_api_tutorial 2023-07-13T14:50:25.2378990Z reading sources... [ 94%] tutorials/device_asr 2023-07-13T14:50:25.2379379Z reading sources... [ 94%] tutorials/effector_tutorial 2023-07-13T14:50:25.2379786Z reading sources... [ 95%] tutorials/filter_design_tutorial 2023-07-13T14:50:25.2380243Z reading sources... [ 95%] tutorials/forced_alignment_for_multilingual_data_tutorial 2023-07-13T14:50:25.2380682Z reading sources... [ 95%] tutorials/forced_alignment_tutorial 2023-07-13T14:50:25.2381152Z reading sources... [ 95%] tutorials/hybrid_demucs_tutorial 2023-07-13T14:50:25.2381548Z reading sources... [ 96%] tutorials/mvdr_tutorial 2023-07-13T14:50:25.2381933Z reading sources... [ 96%] tutorials/online_asr_tutorial 2023-07-13T14:50:25.2382338Z reading sources... [ 96%] tutorials/oscillator_tutorial 2023-07-13T14:50:25.2382739Z reading sources... [ 97%] tutorials/sg_execution_times 2023-07-13T14:50:25.2383176Z reading sources... [ 97%] tutorials/speech_recognition_pipeline_tutorial 2023-07-13T14:50:25.2383586Z reading sources... [ 97%] tutorials/squim_tutorial 2023-07-13T14:50:25.2384004Z reading sources... [ 98%] tutorials/streamreader_advanced_tutorial 2023-07-13T14:50:36.6159087Z reading sources... [ 98%] tutorials/streamreader_basic_tutorial 2023-07-13T14:50:36.6159681Z reading sources... [ 98%] tutorials/streamwriter_advanced 2023-07-13T14:50:36.6160247Z reading sources... [ 99%] tutorials/streamwriter_basic_tutorial 2023-07-13T14:50:36.6160795Z reading sources... [ 99%] tutorials/subtractive_synthesis_tutorial 2023-07-13T14:50:36.6161348Z reading sources... [ 99%] tutorials/tacotron2_pipeline_tutorial 2023-07-13T14:50:36.6161776Z reading sources... [100%] utils 2023-07-13T14:50:36.6161992Z 2023-07-13T14:50:36.6162257Z looking for now-outdated files... none found 2023-07-13T14:50:36.6162688Z pickling environment... done 2023-07-13T14:50:36.6163109Z checking consistency... done 2023-07-13T14:50:36.6163835Z preparing documents... done 2023-07-13T14:50:36.6164192Z writing output... [ 0%] backend 2023-07-13T14:50:36.6164516Z writing output... [ 0%] build 2023-07-13T14:50:36.6164858Z writing output... [ 0%] build.ffmpeg 2023-07-13T14:50:36.6165208Z writing output... [ 1%] build.jetson 2023-07-13T14:50:36.6165549Z writing output... [ 1%] build.linux 2023-07-13T14:50:36.6165918Z writing output... [ 1%] build.windows 2023-07-13T14:50:36.6166303Z writing output... [ 2%] compliance.kaldi 2023-07-13T14:50:36.6166674Z writing output... [ 2%] datasets 2023-07-13T14:50:36.6167037Z writing output... [ 2%] feature_classifications 2023-07-13T14:50:36.6167391Z writing output... [ 3%] functional 2023-07-13T14:50:36.6167821Z writing output... [ 3%] generated/torchaudio.compliance.kaldi.fbank 2023-07-13T14:50:36.6168288Z writing output... [ 3%] generated/torchaudio.compliance.kaldi.mfcc 2023-07-13T14:50:36.6168779Z writing output... [ 4%] generated/torchaudio.compliance.kaldi.spectrogram 2023-07-13T14:50:36.6169243Z writing output... [ 4%] generated/torchaudio.datasets.CMUARCTIC 2023-07-13T14:50:36.6169691Z writing output... [ 4%] generated/torchaudio.datasets.CMUDict 2023-07-13T14:50:36.6170139Z writing output... [ 5%] generated/torchaudio.datasets.COMMONVOICE 2023-07-13T14:50:36.6170570Z writing output... [ 5%] generated/torchaudio.datasets.DR_VCTK 2023-07-13T14:50:36.6171041Z writing output... [ 5%] generated/torchaudio.datasets.FluentSpeechCommands 2023-07-13T14:50:36.6171628Z writing output... [ 5%] generated/torchaudio.datasets.GTZAN 2023-07-13T14:50:36.6172066Z writing output... [ 6%] generated/torchaudio.datasets.IEMOCAP 2023-07-13T14:50:36.6172505Z writing output... [ 6%] generated/torchaudio.datasets.LIBRISPEECH 2023-07-13T14:50:36.6172953Z writing output... [ 6%] generated/torchaudio.datasets.LIBRITTS 2023-07-13T14:50:36.6173395Z writing output... [ 7%] generated/torchaudio.datasets.LJSPEECH 2023-07-13T14:50:36.6173869Z writing output... [ 7%] generated/torchaudio.datasets.LibriLightLimited 2023-07-13T14:50:36.6174324Z writing output... [ 7%] generated/torchaudio.datasets.LibriMix 2023-07-13T14:50:36.6174753Z writing output... [ 8%] generated/torchaudio.datasets.MUSDB_HQ 2023-07-13T14:50:36.6175186Z writing output... [ 8%] generated/torchaudio.datasets.QUESST14 2023-07-13T14:50:36.6175650Z writing output... [ 8%] generated/torchaudio.datasets.SPEECHCOMMANDS 2023-07-13T14:50:36.6176148Z writing output... [ 9%] generated/torchaudio.datasets.Snips 2023-07-13T14:50:36.6176581Z writing output... [ 9%] generated/torchaudio.datasets.TEDLIUM 2023-07-13T14:50:36.6177011Z writing output... [ 9%] generated/torchaudio.datasets.VCTK_092 2023-07-13T14:50:36.6177480Z writing output... [ 10%] generated/torchaudio.datasets.VoxCeleb1Identification 2023-07-13T14:50:36.6177995Z writing output... [ 10%] generated/torchaudio.datasets.VoxCeleb1Verification 2023-07-13T14:50:36.6178463Z writing output... [ 10%] generated/torchaudio.datasets.YESNO 2023-07-13T14:50:36.6178979Z writing output... [ 10%] generated/torchaudio.functional.DB_to_amplitude 2023-07-13T14:50:36.6179422Z writing output... [ 11%] generated/torchaudio.functional.add_noise 2023-07-13T14:50:36.6179884Z writing output... [ 11%] generated/torchaudio.functional.allpass_biquad 2023-07-13T14:50:36.6180351Z writing output... [ 11%] generated/torchaudio.functional.amplitude_to_DB 2023-07-13T14:50:36.6180820Z writing output... [ 12%] generated/torchaudio.functional.apply_beamforming 2023-07-13T14:50:36.6181284Z writing output... [ 12%] generated/torchaudio.functional.apply_codec 2023-07-13T14:50:36.6181735Z writing output... [ 12%] generated/torchaudio.functional.band_biquad 2023-07-13T14:50:36.6182200Z writing output... [ 13%] generated/torchaudio.functional.bandpass_biquad 2023-07-13T14:50:36.6182680Z writing output... [ 13%] generated/torchaudio.functional.bandreject_biquad 2023-07-13T14:50:36.6183144Z writing output... [ 13%] generated/torchaudio.functional.bass_biquad 2023-07-13T14:50:36.6183588Z writing output... [ 14%] generated/torchaudio.functional.biquad 2023-07-13T14:50:36.6184041Z writing output... [ 14%] generated/torchaudio.functional.compute_deltas 2023-07-13T14:50:36.6184490Z writing output... [ 14%] generated/torchaudio.functional.contrast 2023-07-13T14:50:36.6184938Z writing output... [ 15%] generated/torchaudio.functional.convolve 2023-07-13T14:50:36.6185387Z writing output... [ 15%] generated/torchaudio.functional.create_dct 2023-07-13T14:50:36.6185859Z writing output... [ 15%] generated/torchaudio.functional.dcshift 2023-07-13T14:50:36.6186396Z writing output... [ 15%] generated/torchaudio.functional.deemph_biquad 2023-07-13T14:50:36.6186862Z writing output... [ 16%] generated/torchaudio.functional.deemphasis 2023-07-13T14:50:36.6187348Z writing output... [ 16%] generated/torchaudio.functional.detect_pitch_frequency 2023-07-13T14:50:36.6187807Z writing output... [ 16%] generated/torchaudio.functional.dither 2023-07-13T14:50:36.6188265Z writing output... [ 17%] generated/torchaudio.functional.edit_distance 2023-07-13T14:50:36.6188740Z writing output... [ 17%] generated/torchaudio.functional.equalizer_biquad 2023-07-13T14:50:36.6189215Z writing output... [ 17%] generated/torchaudio.functional.fftconvolve 2023-07-13T14:50:36.6189678Z writing output... [ 18%] generated/torchaudio.functional.filtfilt 2023-07-13T14:50:36.6190135Z writing output... [ 18%] generated/torchaudio.functional.flanger 2023-07-13T14:50:36.6190597Z writing output... [ 18%] generated/torchaudio.functional.forced_align 2023-07-13T14:50:36.6191045Z writing output... [ 19%] generated/torchaudio.functional.gain 2023-07-13T14:50:36.6191490Z writing output... [ 19%] generated/torchaudio.functional.griffinlim 2023-07-13T14:50:36.6192123Z writing output... [ 19%] generated/torchaudio.functional.highpass_biquad 2023-07-13T14:50:36.6192610Z writing output... [ 20%] generated/torchaudio.functional.inverse_spectrogram 2023-07-13T14:50:36.6193073Z writing output... [ 20%] generated/torchaudio.functional.lfilter 2023-07-13T14:50:36.6193591Z writing output... [ 20%] generated/torchaudio.functional.linear_fbanks 2023-07-13T14:50:36.6194056Z writing output... [ 20%] generated/torchaudio.functional.loudness 2023-07-13T14:50:36.6194517Z writing output... [ 21%] generated/torchaudio.functional.lowpass_biquad 2023-07-13T14:50:36.6194974Z writing output... [ 21%] generated/torchaudio.functional.mask_along_axis 2023-07-13T14:50:36.6195442Z writing output... [ 21%] generated/torchaudio.functional.mask_along_axis_iid 2023-07-13T14:50:36.6195962Z writing output... [ 22%] generated/torchaudio.functional.melscale_fbanks 2023-07-13T14:50:36.6196430Z writing output... [ 22%] generated/torchaudio.functional.mu_law_decoding 2023-07-13T14:50:36.6196878Z writing output... [ 22%] generated/torchaudio.functional.mu_law_encoding 2023-07-13T14:50:36.6197345Z writing output... [ 23%] generated/torchaudio.functional.mvdr_weights_rtf 2023-07-13T14:50:36.6197823Z writing output... [ 23%] generated/torchaudio.functional.mvdr_weights_souden 2023-07-13T14:50:36.6198423Z writing output... [ 23%] generated/torchaudio.functional.overdrive 2023-07-13T14:50:36.6198889Z writing output... [ 24%] generated/torchaudio.functional.phase_vocoder 2023-07-13T14:50:47.3647948Z writing output... [ 24%] generated/torchaudio.functional.phaser 2023-07-13T14:50:47.3649215Z writing output... [ 24%] generated/torchaudio.functional.pitch_shift 2023-07-13T14:50:47.3649981Z writing output... [ 25%] generated/torchaudio.functional.preemphasis 2023-07-13T14:50:47.3650572Z writing output... [ 25%] generated/torchaudio.functional.psd 2023-07-13T14:50:47.3651565Z writing output... [ 25%] generated/torchaudio.functional.resample 2023-07-13T14:50:47.3652247Z writing output... [ 25%] generated/torchaudio.functional.riaa_biquad 2023-07-13T14:50:47.3652791Z writing output... [ 26%] generated/torchaudio.functional.rnnt_loss 2023-07-13T14:50:47.3653478Z writing output... [ 26%] generated/torchaudio.functional.rtf_evd 2023-07-13T14:50:47.3654161Z writing output... [ 26%] generated/torchaudio.functional.rtf_power 2023-07-13T14:50:47.3654747Z writing output... [ 27%] generated/torchaudio.functional.sliding_window_cmn 2023-07-13T14:50:47.3655275Z writing output... [ 27%] generated/torchaudio.functional.spectral_centroid 2023-07-13T14:50:47.3655919Z writing output... [ 27%] generated/torchaudio.functional.spectrogram 2023-07-13T14:50:47.3656387Z writing output... [ 28%] generated/torchaudio.functional.speed 2023-07-13T14:50:47.3656842Z writing output... [ 28%] generated/torchaudio.functional.treble_biquad 2023-07-13T14:50:47.3657290Z writing output... [ 28%] generated/torchaudio.functional.vad 2023-07-13T14:50:47.3657728Z writing output... [ 29%] generated/torchaudio.io.AudioEffector 2023-07-13T14:50:47.3658150Z writing output... [ 29%] generated/torchaudio.io.StreamReader 2023-07-13T14:50:47.3658576Z writing output... [ 29%] generated/torchaudio.io.StreamWriter 2023-07-13T14:50:47.3659034Z writing output... [ 30%] generated/torchaudio.io.play_audio 2023-07-13T14:50:47.3659507Z writing output... [ 30%] generated/torchaudio.models.Conformer 2023-07-13T14:50:47.3660095Z writing output... [ 30%] generated/torchaudio.models.ConvTasNet 2023-07-13T14:50:47.3660539Z writing output... [ 30%] generated/torchaudio.models.DeepSpeech 2023-07-13T14:50:47.3660979Z writing output... [ 31%] generated/torchaudio.models.Emformer 2023-07-13T14:50:47.3661402Z writing output... [ 31%] generated/torchaudio.models.HDemucs 2023-07-13T14:50:47.3661867Z writing output... [ 31%] generated/torchaudio.models.HuBERTPretrainModel 2023-07-13T14:50:47.3662318Z writing output... [ 32%] generated/torchaudio.models.RNNT 2023-07-13T14:50:47.3662761Z writing output... [ 32%] generated/torchaudio.models.RNNTBeamSearch 2023-07-13T14:50:47.3663205Z writing output... [ 32%] generated/torchaudio.models.Tacotron2 2023-07-13T14:50:47.3663649Z writing output... [ 33%] generated/torchaudio.models.Wav2Letter 2023-07-13T14:50:47.3664101Z writing output... [ 33%] generated/torchaudio.models.Wav2Vec2Model 2023-07-13T14:50:47.3664539Z writing output... [ 33%] generated/torchaudio.models.WaveRNN 2023-07-13T14:50:47.3664972Z writing output... [ 34%] generated/torchaudio.models.conv_tasnet_base 2023-07-13T14:50:47.3665436Z writing output... [ 34%] generated/torchaudio.models.decoder.CTCDecoder 2023-07-13T14:50:47.3665929Z writing output... [ 34%] generated/torchaudio.models.decoder.CUCTCDecoder 2023-07-13T14:50:47.3666399Z writing output... [ 35%] generated/torchaudio.models.decoder.ctc_decoder 2023-07-13T14:50:47.3666877Z writing output... [ 35%] generated/torchaudio.models.decoder.cuda_ctc_decoder 2023-07-13T14:50:47.3667448Z writing output... [ 35%] generated/torchaudio.models.decoder.download_pretrained_files 2023-07-13T14:50:47.3667946Z writing output... [ 35%] generated/torchaudio.models.emformer_rnnt_base 2023-07-13T14:50:47.3668403Z writing output... [ 36%] generated/torchaudio.models.emformer_rnnt_model 2023-07-13T14:50:47.3668858Z writing output... [ 36%] generated/torchaudio.models.hdemucs_high 2023-07-13T14:50:47.3669300Z writing output... [ 36%] generated/torchaudio.models.hdemucs_low 2023-07-13T14:50:47.3669741Z writing output... [ 37%] generated/torchaudio.models.hdemucs_medium 2023-07-13T14:50:47.3670172Z writing output... [ 37%] generated/torchaudio.models.hubert_base 2023-07-13T14:50:47.3670609Z writing output... [ 37%] generated/torchaudio.models.hubert_large 2023-07-13T14:50:47.3671078Z writing output... [ 38%] generated/torchaudio.models.hubert_pretrain_base 2023-07-13T14:50:47.3671675Z writing output... [ 38%] generated/torchaudio.models.hubert_pretrain_large 2023-07-13T14:50:47.3672140Z writing output... [ 38%] generated/torchaudio.models.hubert_pretrain_model 2023-07-13T14:50:47.3672605Z writing output... [ 39%] generated/torchaudio.models.hubert_pretrain_xlarge 2023-07-13T14:50:47.3673061Z writing output... [ 39%] generated/torchaudio.models.hubert_xlarge 2023-07-13T14:50:47.3673559Z writing output... [ 39%] generated/torchaudio.models.wav2vec2.utils.import_fairseq_model 2023-07-13T14:50:47.3674093Z writing output... [ 40%] generated/torchaudio.models.wav2vec2.utils.import_huggingface_model 2023-07-13T14:50:47.3674644Z writing output... [ 40%] generated/torchaudio.models.wav2vec2_base 2023-07-13T14:50:47.3675097Z writing output... [ 40%] generated/torchaudio.models.wav2vec2_large 2023-07-13T14:50:47.3675553Z writing output... [ 40%] generated/torchaudio.models.wav2vec2_large_lv60k 2023-07-13T14:50:47.3676007Z writing output... [ 41%] generated/torchaudio.models.wav2vec2_model 2023-07-13T14:50:47.3676458Z writing output... [ 41%] generated/torchaudio.models.wav2vec2_xlsr_1b 2023-07-13T14:50:47.3676907Z writing output... [ 41%] generated/torchaudio.models.wav2vec2_xlsr_2b 2023-07-13T14:50:47.3677348Z writing output... [ 42%] generated/torchaudio.models.wav2vec2_xlsr_300m 2023-07-13T14:50:47.3677787Z writing output... [ 42%] generated/torchaudio.models.wavlm_base 2023-07-13T14:50:47.3678665Z writing output... [ 42%] generated/torchaudio.models.wavlm_large 2023-07-13T14:50:47.3679219Z writing output... [ 43%] generated/torchaudio.models.wavlm_model 2023-07-13T14:50:47.3679721Z writing output... [ 43%] generated/torchaudio.pipelines.CONVTASNET_BASE_LIBRI2MIX 2023-07-13T14:50:47.3680235Z writing output... [ 43%] generated/torchaudio.pipelines.EMFORMER_RNNT_BASE_LIBRISPEECH 2023-07-13T14:50:47.3680721Z writing output... [ 44%] generated/torchaudio.pipelines.HDEMUCS_HIGH_MUSDB 2023-07-13T14:50:47.3681193Z writing output... [ 44%] generated/torchaudio.pipelines.HDEMUCS_HIGH_MUSDB_PLUS 2023-07-13T14:50:47.3681665Z writing output... [ 44%] generated/torchaudio.pipelines.HUBERT_ASR_LARGE 2023-07-13T14:50:47.3682130Z writing output... [ 45%] generated/torchaudio.pipelines.HUBERT_ASR_XLARGE 2023-07-13T14:50:47.3682728Z writing output... [ 45%] generated/torchaudio.pipelines.HUBERT_BASE 2023-07-13T14:50:47.3683178Z writing output... [ 45%] generated/torchaudio.pipelines.HUBERT_LARGE 2023-07-13T14:50:47.3683640Z writing output... [ 45%] generated/torchaudio.pipelines.HUBERT_XLARGE 2023-07-13T14:50:47.3684096Z writing output... [ 46%] generated/torchaudio.pipelines.RNNTBundle 2023-07-13T14:50:47.3684604Z writing output... [ 46%] generated/torchaudio.pipelines.RNNTBundle.FeatureExtractor 2023-07-13T14:50:47.3685136Z writing output... [ 46%] generated/torchaudio.pipelines.RNNTBundle.TokenProcessor 2023-07-13T14:50:47.3685662Z writing output... [ 47%] generated/torchaudio.pipelines.SourceSeparationBundle 2023-07-13T14:50:47.3686195Z writing output... [ 47%] generated/torchaudio.pipelines.TACOTRON2_GRIFFINLIM_CHAR_LJSPEECH 2023-07-13T14:50:47.3686711Z writing output... [ 47%] generated/torchaudio.pipelines.TACOTRON2_GRIFFINLIM_PHONE_LJSPEECH 2023-07-13T14:50:47.3687224Z writing output... [ 48%] generated/torchaudio.pipelines.TACOTRON2_WAVERNN_CHAR_LJSPEECH 2023-07-13T14:50:47.3687730Z writing output... [ 48%] generated/torchaudio.pipelines.TACOTRON2_WAVERNN_PHONE_LJSPEECH 2023-07-13T14:50:47.3688227Z writing output... [ 48%] generated/torchaudio.pipelines.Tacotron2TTSBundle 2023-07-13T14:50:47.3688760Z writing output... [ 49%] generated/torchaudio.pipelines.Tacotron2TTSBundle.TextProcessor 2023-07-13T14:50:56.9316510Z writing output... [ 49%] generated/torchaudio.pipelines.Tacotron2TTSBundle.Vocoder 2023-07-13T14:50:56.9317802Z writing output... [ 49%] generated/torchaudio.pipelines.VOXPOPULI_ASR_BASE_10K_DE 2023-07-13T14:50:56.9318662Z writing output... [ 50%] generated/torchaudio.pipelines.VOXPOPULI_ASR_BASE_10K_EN 2023-07-13T14:50:56.9319145Z writing output... [ 50%] generated/torchaudio.pipelines.VOXPOPULI_ASR_BASE_10K_ES 2023-07-13T14:50:56.9319640Z writing output... [ 50%] generated/torchaudio.pipelines.VOXPOPULI_ASR_BASE_10K_FR 2023-07-13T14:50:56.9320122Z writing output... [ 50%] generated/torchaudio.pipelines.VOXPOPULI_ASR_BASE_10K_IT 2023-07-13T14:50:56.9320612Z writing output... [ 51%] generated/torchaudio.pipelines.WAV2VEC2_ASR_BASE_100H 2023-07-13T14:50:56.9321082Z writing output... [ 51%] generated/torchaudio.pipelines.WAV2VEC2_ASR_BASE_10M 2023-07-13T14:50:56.9321565Z writing output... [ 51%] generated/torchaudio.pipelines.WAV2VEC2_ASR_BASE_960H 2023-07-13T14:50:56.9322071Z writing output... [ 52%] generated/torchaudio.pipelines.WAV2VEC2_ASR_LARGE_100H 2023-07-13T14:50:56.9322586Z writing output... [ 52%] generated/torchaudio.pipelines.WAV2VEC2_ASR_LARGE_10M 2023-07-13T14:50:56.9323051Z writing output... [ 52%] generated/torchaudio.pipelines.WAV2VEC2_ASR_LARGE_960H 2023-07-13T14:50:56.9323537Z writing output... [ 53%] generated/torchaudio.pipelines.WAV2VEC2_ASR_LARGE_LV60K_100H 2023-07-13T14:50:56.9324032Z writing output... [ 53%] generated/torchaudio.pipelines.WAV2VEC2_ASR_LARGE_LV60K_10M 2023-07-13T14:50:56.9324516Z writing output... [ 53%] generated/torchaudio.pipelines.WAV2VEC2_ASR_LARGE_LV60K_960H 2023-07-13T14:50:56.9324983Z writing output... [ 54%] generated/torchaudio.pipelines.WAV2VEC2_BASE 2023-07-13T14:50:56.9325574Z writing output... [ 54%] generated/torchaudio.pipelines.WAV2VEC2_LARGE 2023-07-13T14:50:56.9326051Z writing output... [ 54%] generated/torchaudio.pipelines.WAV2VEC2_LARGE_LV60K 2023-07-13T14:50:56.9326512Z writing output... [ 55%] generated/torchaudio.pipelines.WAV2VEC2_XLSR53 2023-07-13T14:50:56.9326975Z writing output... [ 55%] generated/torchaudio.pipelines.WAV2VEC2_XLSR_1B 2023-07-13T14:50:56.9327438Z writing output... [ 55%] generated/torchaudio.pipelines.WAV2VEC2_XLSR_2B 2023-07-13T14:50:56.9327904Z writing output... [ 55%] generated/torchaudio.pipelines.WAV2VEC2_XLSR_300M 2023-07-13T14:50:56.9328351Z writing output... [ 56%] generated/torchaudio.pipelines.WAVLM_BASE 2023-07-13T14:50:56.9328814Z writing output... [ 56%] generated/torchaudio.pipelines.WAVLM_BASE_PLUS 2023-07-13T14:50:56.9329270Z writing output... [ 56%] generated/torchaudio.pipelines.WAVLM_LARGE 2023-07-13T14:50:56.9329743Z writing output... [ 57%] generated/torchaudio.pipelines.Wav2Vec2ASRBundle 2023-07-13T14:50:56.9330217Z writing output... [ 57%] generated/torchaudio.pipelines.Wav2Vec2Bundle 2023-07-13T14:50:56.9330691Z writing output... [ 57%] generated/torchaudio.prototype.datasets.Musan 2023-07-13T14:50:56.9332568Z writing output... [ 58%] generated/torchaudio.prototype.functional.adsr_envelope 2023-07-13T14:50:56.9333136Z writing output... [ 58%] generated/torchaudio.prototype.functional.barkscale_fbanks 2023-07-13T14:50:56.9333876Z writing output... [ 58%] generated/torchaudio.prototype.functional.chroma_filterbank 2023-07-13T14:50:56.9334753Z writing output... [ 59%] generated/torchaudio.prototype.functional.extend_pitch 2023-07-13T14:50:56.9335482Z writing output... [ 59%] generated/torchaudio.prototype.functional.filter_waveform 2023-07-13T14:50:56.9336147Z writing output... [ 59%] generated/torchaudio.prototype.functional.frequency_impulse_response 2023-07-13T14:50:56.9336691Z writing output... [ 60%] generated/torchaudio.prototype.functional.oscillator_bank 2023-07-13T14:50:56.9337219Z writing output... [ 60%] generated/torchaudio.prototype.functional.simulate_rir_ism 2023-07-13T14:50:56.9337748Z writing output... [ 60%] generated/torchaudio.prototype.functional.sinc_impulse_response 2023-07-13T14:50:56.9338310Z writing output... [ 60%] generated/torchaudio.prototype.models.ConformerWav2Vec2PretrainModel 2023-07-13T14:50:56.9338875Z writing output... [ 61%] generated/torchaudio.prototype.models.ConvEmformer 2023-07-13T14:50:56.9339388Z writing output... [ 61%] generated/torchaudio.prototype.models.HiFiGANVocoder 2023-07-13T14:50:56.9339905Z writing output... [ 61%] generated/torchaudio.prototype.models.SquimObjective 2023-07-13T14:50:56.9340415Z writing output... [ 62%] generated/torchaudio.prototype.models.SquimSubjective 2023-07-13T14:50:56.9340933Z writing output... [ 62%] generated/torchaudio.prototype.models.conformer_rnnt_base 2023-07-13T14:50:56.9341447Z writing output... [ 62%] generated/torchaudio.prototype.models.conformer_rnnt_model 2023-07-13T14:50:56.9341955Z writing output... [ 63%] generated/torchaudio.prototype.models.conformer_wav2vec2_base 2023-07-13T14:50:56.9342559Z writing output... [ 63%] generated/torchaudio.prototype.models.conformer_wav2vec2_model 2023-07-13T14:50:56.9343101Z writing output... [ 63%] generated/torchaudio.prototype.models.conformer_wav2vec2_pretrain_base 2023-07-13T14:50:56.9343651Z writing output... [ 64%] generated/torchaudio.prototype.models.conformer_wav2vec2_pretrain_large 2023-07-13T14:50:56.9344185Z writing output... [ 64%] generated/torchaudio.prototype.models.conformer_wav2vec2_pretrain_model 2023-07-13T14:50:56.9344710Z writing output... [ 64%] generated/torchaudio.prototype.models.emformer_hubert_base 2023-07-13T14:50:56.9345223Z writing output... [ 65%] generated/torchaudio.prototype.models.emformer_hubert_model 2023-07-13T14:50:56.9345725Z writing output... [ 65%] generated/torchaudio.prototype.models.hifigan_vocoder 2023-07-13T14:50:56.9346230Z writing output... [ 65%] generated/torchaudio.prototype.models.hifigan_vocoder_v1 2023-07-13T14:50:56.9346728Z writing output... [ 65%] generated/torchaudio.prototype.models.hifigan_vocoder_v2 2023-07-13T14:50:56.9347226Z writing output... [ 66%] generated/torchaudio.prototype.models.hifigan_vocoder_v3 2023-07-13T14:50:56.9347734Z writing output... [ 66%] generated/torchaudio.prototype.models.squim_objective_base 2023-07-13T14:50:56.9348234Z writing output... [ 66%] generated/torchaudio.prototype.models.squim_objective_model 2023-07-13T14:50:56.9348737Z writing output... [ 67%] generated/torchaudio.prototype.models.squim_subjective_base 2023-07-13T14:50:56.9349256Z writing output... [ 67%] generated/torchaudio.prototype.models.squim_subjective_model 2023-07-13T14:50:56.9349859Z writing output... [ 67%] generated/torchaudio.prototype.pipelines.EMFORMER_RNNT_BASE_MUSTC 2023-07-13T14:50:56.9350401Z writing output... [ 68%] generated/torchaudio.prototype.pipelines.EMFORMER_RNNT_BASE_TEDLIUM3 2023-07-13T14:50:56.9350952Z writing output... [ 68%] generated/torchaudio.prototype.pipelines.HIFIGAN_VOCODER_V3_LJSPEECH 2023-07-13T14:50:56.9351672Z writing output... [ 68%] generated/torchaudio.prototype.pipelines.HiFiGANVocoderBundle 2023-07-13T14:50:56.9352270Z writing output... [ 69%] generated/torchaudio.prototype.pipelines.SQUIM_OBJECTIVE 2023-07-13T14:50:56.9352777Z writing output... [ 69%] generated/torchaudio.prototype.pipelines.SQUIM_SUBJECTIVE 2023-07-13T14:50:56.9353321Z writing output... [ 69%] generated/torchaudio.prototype.pipelines.SquimObjectiveBundle 2023-07-13T14:50:56.9353908Z writing output... [ 70%] generated/torchaudio.prototype.pipelines.SquimSubjectiveBundle 2023-07-13T14:50:56.9354454Z writing output... [ 70%] generated/torchaudio.prototype.transforms.BarkScale 2023-07-13T14:50:56.9354987Z writing output... [ 70%] generated/torchaudio.prototype.transforms.BarkSpectrogram 2023-07-13T14:50:56.9355511Z writing output... [ 70%] generated/torchaudio.prototype.transforms.ChromaScale 2023-07-13T14:50:56.9356053Z writing output... [ 71%] generated/torchaudio.prototype.transforms.ChromaSpectrogram 2023-07-13T14:50:56.9356605Z writing output... [ 71%] generated/torchaudio.prototype.transforms.InverseBarkScale 2023-07-13T14:51:12.1040896Z writing output... [ 71%] generated/torchaudio.sox_effects.apply_effects_file 2023-07-13T14:51:12.1041915Z writing output... [ 72%] generated/torchaudio.sox_effects.apply_effects_tensor 2023-07-13T14:51:12.1042564Z writing output... [ 72%] generated/torchaudio.sox_effects.effect_names 2023-07-13T14:51:12.1043173Z writing output... [ 72%] generated/torchaudio.transforms.AddNoise 2023-07-13T14:51:12.1043835Z writing output... [ 73%] generated/torchaudio.transforms.AmplitudeToDB 2023-07-13T14:51:12.1044383Z writing output... [ 73%] generated/torchaudio.transforms.ComputeDeltas 2023-07-13T14:51:12.1044851Z writing output... [ 73%] generated/torchaudio.transforms.Convolve 2023-07-13T14:51:12.1045307Z writing output... [ 74%] generated/torchaudio.transforms.Deemphasis 2023-07-13T14:51:12.1045769Z writing output... [ 74%] generated/torchaudio.transforms.FFTConvolve 2023-07-13T14:51:12.1046271Z writing output... [ 74%] generated/torchaudio.transforms.Fade 2023-07-13T14:51:12.1046748Z writing output... [ 75%] generated/torchaudio.transforms.FrequencyMasking 2023-07-13T14:51:12.1047227Z writing output... [ 75%] generated/torchaudio.transforms.GriffinLim 2023-07-13T14:51:12.1047707Z writing output... [ 75%] generated/torchaudio.transforms.InverseMelScale 2023-07-13T14:51:12.1048202Z writing output... [ 75%] generated/torchaudio.transforms.InverseSpectrogram 2023-07-13T14:51:12.1048667Z writing output... [ 76%] generated/torchaudio.transforms.LFCC 2023-07-13T14:51:12.1049110Z writing output... [ 76%] generated/torchaudio.transforms.Loudness 2023-07-13T14:51:12.1049716Z writing output... [ 76%] generated/torchaudio.transforms.MFCC 2023-07-13T14:51:12.1050143Z writing output... [ 77%] generated/torchaudio.transforms.MVDR 2023-07-13T14:51:12.1050584Z writing output... [ 77%] generated/torchaudio.transforms.MelScale 2023-07-13T14:51:12.1051061Z writing output... [ 77%] generated/torchaudio.transforms.MelSpectrogram 2023-07-13T14:51:12.1051534Z writing output... [ 78%] generated/torchaudio.transforms.MuLawDecoding 2023-07-13T14:51:12.1052007Z writing output... [ 78%] generated/torchaudio.transforms.MuLawEncoding 2023-07-13T14:51:12.1052465Z writing output... [ 78%] generated/torchaudio.transforms.PSD 2023-07-13T14:51:12.1052915Z writing output... [ 79%] generated/torchaudio.transforms.PitchShift 2023-07-13T14:51:12.1053384Z writing output... [ 79%] generated/torchaudio.transforms.Preemphasis 2023-07-13T14:51:12.1053854Z writing output... [ 79%] generated/torchaudio.transforms.RNNTLoss 2023-07-13T14:51:12.1054303Z writing output... [ 80%] generated/torchaudio.transforms.RTFMVDR 2023-07-13T14:51:12.1054750Z writing output... [ 80%] generated/torchaudio.transforms.Resample 2023-07-13T14:51:12.1055214Z writing output... [ 80%] generated/torchaudio.transforms.SlidingWindowCmn 2023-07-13T14:51:12.1055694Z writing output... [ 80%] generated/torchaudio.transforms.SoudenMVDR 2023-07-13T14:51:12.1056171Z writing output... [ 81%] generated/torchaudio.transforms.SpectralCentroid 2023-07-13T14:51:12.1056639Z writing output... [ 81%] generated/torchaudio.transforms.Spectrogram 2023-07-13T14:51:12.1057096Z writing output... [ 81%] generated/torchaudio.transforms.Speed 2023-07-13T14:51:12.1057702Z writing output... [ 82%] generated/torchaudio.transforms.SpeedPerturbation 2023-07-13T14:51:12.1058191Z writing output... [ 82%] generated/torchaudio.transforms.TimeMasking 2023-07-13T14:51:12.1058657Z writing output... [ 82%] generated/torchaudio.transforms.TimeStretch 2023-07-13T14:51:12.1059103Z writing output... [ 83%] generated/torchaudio.transforms.Vad 2023-07-13T14:51:12.1059537Z writing output... [ 83%] generated/torchaudio.transforms.Vol 2023-07-13T14:51:12.1059970Z writing output... [ 83%] generated/torchaudio.utils.ffmpeg_utils 2023-07-13T14:51:12.1060398Z writing output... [ 84%] generated/torchaudio.utils.sox_utils 2023-07-13T14:51:12.1060811Z writing output... [ 84%] hw_acceleration_tutorial 2023-07-13T14:51:12.1061180Z writing output... [ 84%] index 2023-07-13T14:51:12.1061516Z writing output... [ 85%] installation 2023-07-13T14:51:12.1061855Z writing output... [ 85%] io 2023-07-13T14:51:12.1062187Z writing output... [ 85%] kaldi_io 2023-07-13T14:51:12.1062540Z writing output... [ 85%] libtorchaudio 2023-07-13T14:51:12.1062919Z writing output... [ 86%] libtorchaudio.stream_reader 2023-07-13T14:51:12.1063329Z writing output... [ 86%] libtorchaudio.stream_writer 2023-07-13T14:51:12.1063693Z writing output... [ 86%] logo 2023-07-13T14:51:12.1064017Z writing output... [ 87%] models 2023-07-13T14:51:12.1064365Z writing output... [ 87%] models.decoder 2023-07-13T14:51:12.1064769Z writing output... [ 87%] pipelines 2023-07-13T14:51:12.1065122Z writing output... [ 88%] prototype 2023-07-13T14:51:12.1065489Z writing output... [ 88%] prototype.datasets 2023-07-13T14:51:12.1065872Z writing output... [ 88%] prototype.functional 2023-07-13T14:51:12.1066247Z writing output... [ 89%] prototype.models 2023-07-13T14:51:12.1066620Z writing output... [ 89%] prototype.pipelines 2023-07-13T14:51:12.1067006Z writing output... [ 89%] prototype.transforms 2023-07-13T14:51:12.1067375Z writing output... [ 90%] references 2023-07-13T14:51:12.1067717Z writing output... [ 90%] sox_effects 2023-07-13T14:51:12.1068081Z writing output... [ 90%] supported_features 2023-07-13T14:51:12.1068449Z writing output... [ 90%] torchaudio 2023-07-13T14:51:12.1068805Z writing output... [ 91%] transforms 2023-07-13T14:51:12.1069191Z writing output... [ 91%] tutorials/additive_synthesis_tutorial 2023-07-13T14:51:12.1069632Z writing output... [ 91%] tutorials/asr_inference_with_ctc_decoder_tutorial 2023-07-13T14:51:12.1070073Z writing output... [ 92%] tutorials/audio_data_augmentation_tutorial 2023-07-13T14:51:12.1070486Z writing output... [ 92%] tutorials/audio_datasets_tutorial 2023-07-13T14:51:12.1070923Z writing output... [ 92%] tutorials/audio_feature_augmentation_tutorial 2023-07-13T14:51:12.1071367Z writing output... [ 93%] tutorials/audio_feature_extractions_tutorial 2023-07-13T14:51:12.1071919Z writing output... [ 93%] tutorials/audio_io_tutorial 2023-07-13T14:51:12.1072384Z writing output... [ 93%] tutorials/audio_resampling_tutorial 2023-07-13T14:51:12.1072818Z writing output... [ 94%] tutorials/ctc_forced_alignment_api_tutorial 2023-07-13T14:51:12.1073217Z writing output... [ 94%] tutorials/device_asr 2023-07-13T14:51:12.1073606Z writing output... [ 94%] tutorials/effector_tutorial 2023-07-13T14:51:12.1073998Z writing output... [ 95%] tutorials/filter_design_tutorial 2023-07-13T14:51:12.1074451Z writing output... [ 95%] tutorials/forced_alignment_for_multilingual_data_tutorial 2023-07-13T14:51:12.1074892Z writing output... [ 95%] tutorials/forced_alignment_tutorial 2023-07-13T14:51:12.1075293Z writing output... [ 95%] tutorials/hybrid_demucs_tutorial 2023-07-13T14:51:12.1075703Z writing output... [ 96%] tutorials/mvdr_tutorial 2023-07-13T14:51:12.1076099Z writing output... [ 96%] tutorials/online_asr_tutorial 2023-07-13T14:51:12.1076506Z writing output... [ 96%] tutorials/oscillator_tutorial 2023-07-13T14:51:12.1076895Z writing output... [ 97%] tutorials/sg_execution_times 2023-07-13T14:51:12.1077324Z writing output... [ 97%] tutorials/speech_recognition_pipeline_tutorial 2023-07-13T14:51:12.1077734Z writing output... [ 97%] tutorials/squim_tutorial 2023-07-13T14:51:12.1078418Z writing output... [ 98%] tutorials/streamreader_advanced_tutorial 2023-07-13T14:51:12.1078850Z writing output... [ 98%] tutorials/streamreader_basic_tutorial 2023-07-13T14:51:12.1079348Z writing output... [ 98%] tutorials/streamwriter_advanced 2023-07-13T14:51:12.1079766Z writing output... [ 99%] tutorials/streamwriter_basic_tutorial 2023-07-13T14:51:12.1080173Z writing output... [ 99%] tutorials/subtractive_synthesis_tutorial 2023-07-13T14:51:12.1080594Z writing output... [ 99%] tutorials/tacotron2_pipeline_tutorial 2023-07-13T14:51:12.1080958Z writing output... [100%] utils 2023-07-13T14:51:22.0670828Z 2023-07-13T14:51:22.0671924Z generating indices... genindex py-modindex done 2023-07-13T14:51:22.0672399Z copying notebooks ... [100%] hw_acceleration_tutorial.ipynb 2023-07-13T14:51:22.0672605Z 2023-07-13T14:51:22.0672863Z highlighting module code... [ 1%] torchaudio.backend.common 2023-07-13T14:51:22.0673522Z highlighting module code... [ 2%] torchaudio.backend.soundfile_backend 2023-07-13T14:51:22.0674109Z highlighting module code... [ 4%] torchaudio.backend.sox_io_backend 2023-07-13T14:51:22.0674624Z highlighting module code... [ 5%] torchaudio.backend.utils 2023-07-13T14:51:22.0675068Z highlighting module code... [ 7%] torchaudio.compliance.kaldi 2023-07-13T14:51:22.0675590Z highlighting module code... [ 8%] torchaudio.datasets.cmuarctic 2023-07-13T14:51:22.0676044Z highlighting module code... [ 10%] torchaudio.datasets.cmudict 2023-07-13T14:51:22.0676565Z highlighting module code... [ 11%] torchaudio.datasets.commonvoice 2023-07-13T14:51:22.0677076Z highlighting module code... [ 12%] torchaudio.datasets.dr_vctk 2023-07-13T14:51:22.0677605Z highlighting module code... [ 14%] torchaudio.datasets.fluentcommands 2023-07-13T14:51:22.0678617Z highlighting module code... [ 15%] torchaudio.datasets.gtzan 2023-07-13T14:51:22.0679277Z highlighting module code... [ 17%] torchaudio.datasets.iemocap 2023-07-13T14:51:22.0679742Z highlighting module code... [ 18%] torchaudio.datasets.librilight_limited 2023-07-13T14:51:22.0680201Z highlighting module code... [ 20%] torchaudio.datasets.librimix 2023-07-13T14:51:22.0680777Z highlighting module code... [ 21%] torchaudio.datasets.librispeech 2023-07-13T14:51:22.0681285Z highlighting module code... [ 22%] torchaudio.datasets.libritts 2023-07-13T14:51:22.0681723Z highlighting module code... [ 24%] torchaudio.datasets.ljspeech 2023-07-13T14:51:22.0682189Z highlighting module code... [ 25%] torchaudio.datasets.musdb_hq 2023-07-13T14:51:22.0682742Z highlighting module code... [ 27%] torchaudio.datasets.quesst14 2023-07-13T14:51:22.0683177Z highlighting module code... [ 28%] torchaudio.datasets.snips 2023-07-13T14:51:22.0683753Z highlighting module code... [ 30%] torchaudio.datasets.speechcommands 2023-07-13T14:51:22.0684212Z highlighting module code... [ 31%] torchaudio.datasets.tedlium 2023-07-13T14:51:22.0684640Z highlighting module code... [ 32%] torchaudio.datasets.vctk 2023-07-13T14:51:22.0685215Z highlighting module code... [ 34%] torchaudio.datasets.voxceleb1 2023-07-13T14:51:22.0685709Z highlighting module code... [ 35%] torchaudio.datasets.yesno 2023-07-13T14:51:22.0686253Z highlighting module code... [ 37%] torchaudio.functional.filtering 2023-07-13T14:51:22.0686882Z highlighting module code... [ 38%] torchaudio.functional.functional 2023-07-13T14:51:22.0687318Z highlighting module code... [ 40%] torchaudio.io._effector 2023-07-13T14:51:22.0687728Z highlighting module code... [ 41%] torchaudio.io._playback 2023-07-13T14:51:22.0688139Z highlighting module code... [ 42%] torchaudio.io._stream_reader 2023-07-13T14:51:22.0688657Z highlighting module code... [ 44%] torchaudio.io._stream_writer 2023-07-13T14:51:22.0689108Z highlighting module code... [ 45%] torchaudio.kaldi_io 2023-07-13T14:51:22.0689521Z highlighting module code... [ 47%] torchaudio.models._hdemucs 2023-07-13T14:51:22.0689953Z highlighting module code... [ 48%] torchaudio.models.conformer 2023-07-13T14:51:22.0690485Z highlighting module code... [ 50%] torchaudio.models.conv_tasnet 2023-07-13T14:51:22.0691050Z highlighting module code... [ 51%] torchaudio.models.decoder._ctc_decoder 2023-07-13T14:51:22.0691645Z highlighting module code... [ 52%] torchaudio.models.decoder._cuda_ctc_decoder 2023-07-13T14:51:22.0692103Z highlighting module code... [ 54%] torchaudio.models.deepspeech 2023-07-13T14:51:22.0692534Z highlighting module code... [ 55%] torchaudio.models.emformer 2023-07-13T14:51:22.0693048Z highlighting module code... [ 57%] torchaudio.models.rnnt 2023-07-13T14:51:22.0693520Z highlighting module code... [ 58%] torchaudio.models.rnnt_decoder 2023-07-13T14:51:22.0694034Z highlighting module code... [ 60%] torchaudio.models.tacotron2 2023-07-13T14:51:22.0694622Z highlighting module code... [ 61%] torchaudio.models.wav2letter 2023-07-13T14:51:22.0695178Z highlighting module code... [ 62%] torchaudio.models.wav2vec2.model 2023-07-13T14:51:22.0695706Z highlighting module code... [ 64%] torchaudio.models.wav2vec2.utils.import_fairseq 2023-07-13T14:51:22.0696364Z highlighting module code... [ 65%] torchaudio.models.wav2vec2.utils.import_huggingface 2023-07-13T14:51:22.0696843Z highlighting module code... [ 67%] torchaudio.models.wavernn 2023-07-13T14:51:22.0697457Z highlighting module code... [ 68%] torchaudio.pipelines._source_separation_pipeline 2023-07-13T14:51:22.0698002Z highlighting module code... [ 70%] torchaudio.pipelines._tts.interface 2023-07-13T14:51:22.0698601Z highlighting module code... [ 71%] torchaudio.pipelines._wav2vec2.impl 2023-07-13T14:51:22.0699165Z highlighting module code... [ 72%] torchaudio.pipelines.rnnt_pipeline 2023-07-13T14:51:22.0699756Z highlighting module code... [ 74%] torchaudio.prototype.datasets.musan 2023-07-13T14:51:22.0700429Z highlighting module code... [ 75%] torchaudio.prototype.functional._dsp 2023-07-13T14:51:22.0700951Z highlighting module code... [ 77%] torchaudio.prototype.functional._rir 2023-07-13T14:51:22.0701597Z highlighting module code... [ 78%] torchaudio.prototype.functional.functional 2023-07-13T14:51:22.0702220Z highlighting module code... [ 80%] torchaudio.prototype.models._conformer_wav2vec2 2023-07-13T14:51:22.0702897Z highlighting module code... [ 81%] torchaudio.prototype.models._emformer_hubert 2023-07-13T14:51:22.0703476Z highlighting module code... [ 82%] torchaudio.prototype.models.conv_emformer 2023-07-13T14:51:22.0704181Z highlighting module code... [ 84%] torchaudio.prototype.models.hifi_gan 2023-07-13T14:51:22.0704654Z highlighting module code... [ 85%] torchaudio.prototype.models.rnnt 2023-07-13T14:51:22.0705250Z highlighting module code... [ 87%] torchaudio.prototype.models.squim.objective 2023-07-13T14:51:22.0705806Z highlighting module code... [ 88%] torchaudio.prototype.models.squim.subjective 2023-07-13T14:51:22.0706337Z highlighting module code... [ 90%] torchaudio.prototype.pipelines.hifigan_pipeline 2023-07-13T14:51:22.0706859Z highlighting module code... [ 91%] torchaudio.prototype.pipelines.squim_pipeline 2023-07-13T14:51:22.0707356Z highlighting module code... [ 92%] torchaudio.prototype.transforms._transforms 2023-07-13T14:51:22.0707847Z highlighting module code... [ 94%] torchaudio.sox_effects.sox_effects 2023-07-13T14:51:22.0708420Z highlighting module code... [ 95%] torchaudio.transforms._multi_channel 2023-07-13T14:51:22.0708875Z highlighting module code... [ 97%] torchaudio.transforms._transforms 2023-07-13T14:51:22.0709312Z highlighting module code... [ 98%] torchaudio.utils.ffmpeg_utils 2023-07-13T14:51:22.0709902Z highlighting module code... [100%] torchaudio.utils.sox_utils 2023-07-13T14:51:22.0710132Z 2023-07-13T14:51:22.0710373Z writing additional pages... search done 2023-07-13T14:51:22.0710846Z copying images... [ 2%] tutorials/images/thumb/sphx_glr_audio_io_tutorial_thumb.png 2023-07-13T14:51:22.0711329Z copying images... [ 5%] tutorials/images/thumb/sphx_glr_audio_datasets_tutorial_thumb.png 2023-07-13T14:51:22.0712097Z copying images... [ 8%] gen_images/f04dfdd7619480b49d72cc9f0fb641c626bd3593f7715ed8c58c6f4eb493910b.svg 2023-07-13T14:51:22.0712752Z copying images... [ 11%] gen_images/6f921ff5b3be21ecb1bc4c704713f340a88edbd1f97f2711e07a486d7b53dea2.svg 2023-07-13T14:51:22.0713472Z copying images... [ 14%] gen_images/842c6e7cf1798066d580c63886e1f8f16beadb856d19a33e879858e991748432.svg 2023-07-13T14:51:22.0713955Z copying images... [ 17%] tutorials/images/thumb/sphx_glr_squim_tutorial_thumb.png 2023-07-13T14:51:22.0714449Z copying images... [ 20%] tutorials/images/thumb/sphx_glr_audio_data_augmentation_tutorial_thumb.png 2023-07-13T14:51:22.0715132Z copying images... [ 22%] gen_images/e293eae5f4516a625dc07ed0eed1ff8b2f18eef5a9da1f8561cc97c78ab0600c.svg 2023-07-13T14:51:22.0783931Z copying images... [ 25%] tutorials/images/thumb/sphx_glr_audio_feature_extractions_tutorial_thumb.png 2023-07-13T14:51:22.0784555Z copying images... [ 28%] tutorials/images/thumb/sphx_glr_asr_inference_with_ctc_decoder_tutorial_thumb.png 2023-07-13T14:51:22.0785071Z copying images... [ 31%] tutorials/images/thumb/sphx_glr_forced_alignment_tutorial_thumb.png 2023-07-13T14:51:22.0785583Z copying images... [ 34%] tutorials/images/thumb/sphx_glr_ctc_forced_alignment_api_tutorial_thumb.png 2023-07-13T14:51:22.0786140Z copying images... [ 37%] tutorials/images/thumb/sphx_glr_forced_alignment_for_multilingual_data_tutorial_thumb.png 2023-07-13T14:51:22.0786677Z copying images... [ 40%] tutorials/images/thumb/sphx_glr_speech_recognition_pipeline_tutorial_thumb.png 2023-07-13T14:51:22.0787339Z copying images... [ 42%] tutorials/images/thumb/sphx_glr_audio_resampling_tutorial_thumb.png 2023-07-13T14:51:22.0787890Z copying images... [ 45%] tutorials/images/thumb/sphx_glr_mvdr_tutorial_thumb.png 2023-07-13T14:51:22.0788360Z copying images... [ 48%] tutorials/images/thumb/sphx_glr_effector_tutorial_thumb.png 2023-07-13T14:51:22.0788838Z copying images... [ 51%] tutorials/images/thumb/sphx_glr_streamwriter_advanced_thumb.png 2023-07-13T14:51:22.0789488Z copying images... [ 54%] tutorials/images/thumb/sphx_glr_streamreader_advanced_tutorial_thumb.png 2023-07-13T14:51:22.0790109Z copying images... [ 57%] tutorials/images/thumb/sphx_glr_streamreader_basic_tutorial_thumb.png 2023-07-13T14:51:22.0790612Z copying images... [ 60%] tutorials/images/thumb/sphx_glr_online_asr_tutorial_thumb.png 2023-07-13T14:51:22.0791129Z copying images... [ 62%] tutorials/images/thumb/sphx_glr_device_asr_thumb.png 2023-07-13T14:51:22.0791785Z copying images... [ 65%] tutorials/images/thumb/sphx_glr_streamwriter_basic_tutorial_thumb.png 2023-07-13T14:51:22.0792298Z copying images... [ 68%] tutorials/images/thumb/sphx_glr_hybrid_demucs_tutorial_thumb.png 2023-07-13T14:51:22.0792949Z copying images... [ 71%] tutorials/images/thumb/sphx_glr_tacotron2_pipeline_tutorial_thumb.png 2023-07-13T14:51:22.0793474Z copying images... [ 74%] gen_images/4f5c4872f982dc9b424393646bb6c7c34fe2c478499eb80f3a2470339a73837c.svg 2023-07-13T14:51:22.0793979Z copying images... [ 77%] tutorials/images/thumb/sphx_glr_additive_synthesis_tutorial_thumb.png 2023-07-13T14:51:22.0794575Z copying images... [ 80%] tutorials/images/thumb/sphx_glr_oscillator_tutorial_thumb.png 2023-07-13T14:51:22.0795259Z copying images... [ 82%] tutorials/images/thumb/sphx_glr_subtractive_synthesis_tutorial_thumb.png 2023-07-13T14:51:22.0795899Z copying images... [ 85%] tutorials/images/thumb/sphx_glr_filter_design_tutorial_thumb.png 2023-07-13T14:51:22.0796439Z copying images... [ 88%] gen_images/304d5440efdca77d8969ce1760648aa666bc677fbe8bdce0aa756cb6a99fcad5.svg 2023-07-13T14:51:22.0796981Z copying images... [ 91%] tutorials/images/thumb/sphx_glr_audio_feature_augmentation_tutorial_thumb.png 2023-07-13T14:51:22.0797472Z copying images... [ 94%] ../build/doctrees/nbsphinx/hw_acceleration_tutorial_60_1.png 2023-07-13T14:51:22.0797932Z copying images... [ 97%] ../build/doctrees/nbsphinx/hw_acceleration_tutorial_91_0.png 2023-07-13T14:51:22.0798512Z copying images... [100%] _static/img/logo.png 2023-07-13T14:51:22.0798721Z 2023-07-13T14:51:22.0798993Z copying downloadable files... [ 1%] tutorials/additive_synthesis_tutorial.py 2023-07-13T14:51:22.0799465Z copying downloadable files... [ 3%] tutorials/additive_synthesis_tutorial.ipynb 2023-07-13T14:51:22.0799977Z copying downloadable files... [ 5%] tutorials/asr_inference_with_ctc_decoder_tutorial.py 2023-07-13T14:51:22.0800491Z copying downloadable files... [ 7%] tutorials/asr_inference_with_ctc_decoder_tutorial.ipynb 2023-07-13T14:51:22.0800974Z copying downloadable files... [ 9%] tutorials/audio_data_augmentation_tutorial.py 2023-07-13T14:51:22.0801455Z copying downloadable files... [ 11%] tutorials/audio_data_augmentation_tutorial.ipynb 2023-07-13T14:51:22.0801921Z copying downloadable files... [ 13%] tutorials/audio_datasets_tutorial.py 2023-07-13T14:51:22.0802486Z copying downloadable files... [ 15%] tutorials/audio_datasets_tutorial.ipynb 2023-07-13T14:51:22.0802960Z copying downloadable files... [ 17%] tutorials/audio_feature_augmentation_tutorial.py 2023-07-13T14:51:22.0803445Z copying downloadable files... [ 19%] tutorials/audio_feature_augmentation_tutorial.ipynb 2023-07-13T14:51:22.0803929Z copying downloadable files... [ 21%] tutorials/audio_feature_extractions_tutorial.py 2023-07-13T14:51:22.0804414Z copying downloadable files... [ 23%] tutorials/audio_feature_extractions_tutorial.ipynb 2023-07-13T14:51:22.0804863Z copying downloadable files... [ 25%] tutorials/audio_io_tutorial.py 2023-07-13T14:51:22.0805300Z copying downloadable files... [ 26%] tutorials/audio_io_tutorial.ipynb 2023-07-13T14:51:22.0805752Z copying downloadable files... [ 28%] tutorials/audio_resampling_tutorial.py 2023-07-13T14:51:22.0806213Z copying downloadable files... [ 30%] tutorials/audio_resampling_tutorial.ipynb 2023-07-13T14:51:22.0806685Z copying downloadable files... [ 32%] tutorials/ctc_forced_alignment_api_tutorial.py 2023-07-13T14:51:22.0807164Z copying downloadable files... [ 34%] tutorials/ctc_forced_alignment_api_tutorial.ipynb 2023-07-13T14:51:22.0807596Z copying downloadable files... [ 36%] tutorials/device_asr.py 2023-07-13T14:51:22.0808013Z copying downloadable files... [ 38%] tutorials/device_asr.ipynb 2023-07-13T14:51:22.0808440Z copying downloadable files... [ 40%] tutorials/effector_tutorial.py 2023-07-13T14:51:22.0808967Z copying downloadable files... [ 42%] tutorials/effector_tutorial.ipynb 2023-07-13T14:51:22.0809509Z copying downloadable files... [ 44%] tutorials/filter_design_tutorial.py 2023-07-13T14:51:22.0809972Z copying downloadable files... [ 46%] tutorials/filter_design_tutorial.ipynb 2023-07-13T14:51:22.0810464Z copying downloadable files... [ 48%] tutorials/forced_alignment_for_multilingual_data_tutorial.py 2023-07-13T14:51:22.0810985Z copying downloadable files... [ 50%] tutorials/forced_alignment_for_multilingual_data_tutorial.ipynb 2023-07-13T14:51:22.0811463Z copying downloadable files... [ 51%] tutorials/forced_alignment_tutorial.py 2023-07-13T14:51:22.0811933Z copying downloadable files... [ 53%] tutorials/forced_alignment_tutorial.ipynb 2023-07-13T14:51:22.0812392Z copying downloadable files... [ 55%] tutorials/hybrid_demucs_tutorial.py 2023-07-13T14:51:22.0812847Z copying downloadable files... [ 57%] tutorials/hybrid_demucs_tutorial.ipynb 2023-07-13T14:51:22.0813282Z copying downloadable files... [ 59%] tutorials/mvdr_tutorial.py 2023-07-13T14:51:22.0813714Z copying downloadable files... [ 61%] tutorials/mvdr_tutorial.ipynb 2023-07-13T14:51:22.0814154Z copying downloadable files... [ 63%] tutorials/online_asr_tutorial.py 2023-07-13T14:51:22.0814591Z copying downloadable files... [ 65%] tutorials/online_asr_tutorial.ipynb 2023-07-13T14:51:22.0815035Z copying downloadable files... [ 67%] tutorials/oscillator_tutorial.py 2023-07-13T14:51:22.0815487Z copying downloadable files... [ 69%] tutorials/oscillator_tutorial.ipynb 2023-07-13T14:51:22.0816030Z copying downloadable files... [ 71%] tutorials/speech_recognition_pipeline_tutorial.py 2023-07-13T14:51:22.0816525Z copying downloadable files... [ 73%] tutorials/speech_recognition_pipeline_tutorial.ipynb 2023-07-13T14:51:22.0816981Z copying downloadable files... [ 75%] tutorials/squim_tutorial.py 2023-07-13T14:51:22.0817415Z copying downloadable files... [ 76%] tutorials/squim_tutorial.ipynb 2023-07-13T14:51:22.0817873Z copying downloadable files... [ 78%] tutorials/streamreader_advanced_tutorial.py 2023-07-13T14:51:22.0818347Z copying downloadable files... [ 80%] tutorials/streamreader_advanced_tutorial.ipynb 2023-07-13T14:51:22.0818815Z copying downloadable files... [ 82%] tutorials/streamreader_basic_tutorial.py 2023-07-13T14:51:22.0819281Z copying downloadable files... [ 84%] tutorials/streamreader_basic_tutorial.ipynb 2023-07-13T14:51:25.6070143Z copying downloadable files... [ 86%] tutorials/streamwriter_advanced.py 2023-07-13T14:51:25.6070732Z copying downloadable files... [ 88%] tutorials/streamwriter_advanced.ipynb 2023-07-13T14:51:25.6071228Z copying downloadable files... [ 90%] tutorials/streamwriter_basic_tutorial.py 2023-07-13T14:51:25.6071992Z copying downloadable files... [ 92%] tutorials/streamwriter_basic_tutorial.ipynb 2023-07-13T14:51:25.6072551Z copying downloadable files... [ 94%] tutorials/subtractive_synthesis_tutorial.py 2023-07-13T14:51:25.6073084Z copying downloadable files... [ 96%] tutorials/subtractive_synthesis_tutorial.ipynb 2023-07-13T14:51:25.6073612Z copying downloadable files... [ 98%] tutorials/tacotron2_pipeline_tutorial.py 2023-07-13T14:51:25.6074563Z copying downloadable files... [100%] tutorials/tacotron2_pipeline_tutorial.ipynb 2023-07-13T14:51:25.6074912Z 2023-07-13T14:51:25.6075165Z copying static files... done 2023-07-13T14:51:25.6075605Z copying extra files... done 2023-07-13T14:51:25.6076022Z dumping search index in English (code: en)... done 2023-07-13T14:51:25.6076343Z dumping object inventory... done 2023-07-13T14:51:25.6076582Z  2023-07-13T14:51:25.6076917Z Sphinx-Gallery successfully executed 24 out of 24 files subselected by: 2023-07-13T14:51:25.6077183Z 2023-07-13T14:51:25.6077367Z gallery_conf["filename_pattern"] = 'tutorial.py' 2023-07-13T14:51:25.6077768Z gallery_conf["ignore_pattern"] = '__init__\\.py' 2023-07-13T14:51:25.6077929Z 2023-07-13T14:51:25.6078290Z after excluding 0 files that had previously been run (based on MD5). 2023-07-13T14:51:25.6078603Z  2023-07-13T14:51:25.6078987Z embedding documentation hyperlinks... 2023-07-13T14:51:25.6079656Z embedding documentation hyperlinks for tutorials... [ 3%] additive_synthesis_tutorial.html 2023-07-13T14:51:25.6080271Z embedding documentation hyperlinks for tutorials... [ 7%] asr_inference_with_ctc_decoder_tutorial.html 2023-07-13T14:51:25.6080877Z embedding documentation hyperlinks for tutorials... [ 11%] audio_data_augmentation_tutorial.html 2023-07-13T14:51:25.6081503Z embedding documentation hyperlinks for tutorials... [ 14%] audio_datasets_tutorial.html 2023-07-13T14:51:25.6082008Z embedding documentation hyperlinks for tutorials... [ 18%] audio_feature_augmentation_tutorial.html 2023-07-13T14:51:25.6082524Z embedding documentation hyperlinks for tutorials... [ 22%] audio_feature_extractions_tutorial.html 2023-07-13T14:51:25.6083168Z embedding documentation hyperlinks for tutorials... [ 25%] audio_io_tutorial.html 2023-07-13T14:51:25.6083659Z embedding documentation hyperlinks for tutorials... [ 29%] audio_resampling_tutorial.html 2023-07-13T14:51:25.6084168Z embedding documentation hyperlinks for tutorials... [ 33%] ctc_forced_alignment_api_tutorial.html 2023-07-13T14:51:25.6084642Z embedding documentation hyperlinks for tutorials... [ 37%] device_asr.html 2023-07-13T14:51:25.6085100Z embedding documentation hyperlinks for tutorials... [ 40%] effector_tutorial.html 2023-07-13T14:51:25.6085582Z embedding documentation hyperlinks for tutorials... [ 44%] filter_design_tutorial.html 2023-07-13T14:51:25.6086104Z embedding documentation hyperlinks for tutorials... [ 48%] forced_alignment_for_multilingual_data_tutorial.html 2023-07-13T14:51:25.6086630Z embedding documentation hyperlinks for tutorials... [ 51%] forced_alignment_tutorial.html 2023-07-13T14:51:25.6087109Z embedding documentation hyperlinks for tutorials... [ 55%] hybrid_demucs_tutorial.html 2023-07-13T14:51:25.6087574Z embedding documentation hyperlinks for tutorials... [ 59%] mvdr_tutorial.html 2023-07-13T14:51:25.6088042Z embedding documentation hyperlinks for tutorials... [ 62%] online_asr_tutorial.html 2023-07-13T14:51:25.6088515Z embedding documentation hyperlinks for tutorials... [ 66%] oscillator_tutorial.html 2023-07-13T14:51:25.6088985Z embedding documentation hyperlinks for tutorials... [ 70%] sg_execution_times.html 2023-07-13T14:51:25.6089489Z embedding documentation hyperlinks for tutorials... [ 74%] speech_recognition_pipeline_tutorial.html 2023-07-13T14:51:25.6090070Z embedding documentation hyperlinks for tutorials... [ 77%] squim_tutorial.html 2023-07-13T14:51:25.6090573Z embedding documentation hyperlinks for tutorials... [ 81%] streamreader_advanced_tutorial.html 2023-07-13T14:51:25.6091078Z embedding documentation hyperlinks for tutorials... [ 85%] streamreader_basic_tutorial.html 2023-07-13T14:51:25.6091628Z embedding documentation hyperlinks for tutorials... [ 88%] streamwriter_advanced.html 2023-07-13T14:51:25.6092128Z embedding documentation hyperlinks for tutorials... [ 92%] streamwriter_basic_tutorial.html 2023-07-13T14:51:25.6092635Z embedding documentation hyperlinks for tutorials... [ 96%] subtractive_synthesis_tutorial.html 2023-07-13T14:51:25.6093136Z embedding documentation hyperlinks for tutorials... [100%] tacotron2_pipeline_tutorial.html 2023-07-13T14:51:25.6093369Z 2023-07-13T14:51:25.6093512Z build succeeded. 2023-07-13T14:51:25.6093654Z 2023-07-13T14:51:25.6093760Z The HTML pages are in build/html. 2023-07-13T14:51:25.6096423Z + cp -rf docs/build/html/backend.html docs/build/html/build.ffmpeg.html docs/build/html/build.html docs/build/html/build.jetson.html docs/build/html/build.linux.html docs/build/html/build.windows.html docs/build/html/compliance.kaldi.html docs/build/html/datasets.html docs/build/html/_downloads docs/build/html/feature_classifications.html docs/build/html/functional.html docs/build/html/generated docs/build/html/genindex.html docs/build/html/hw_acceleration_tutorial.html docs/build/html/hw_acceleration_tutorial.ipynb docs/build/html/_images docs/build/html/index.html docs/build/html/installation.html docs/build/html/io.html docs/build/html/kaldi_io.html docs/build/html/libtorchaudio.html docs/build/html/libtorchaudio.stream_reader.html docs/build/html/libtorchaudio.stream_writer.html docs/build/html/logo.html docs/build/html/models.decoder.html docs/build/html/models.html docs/build/html/_modules docs/build/html/objects.inv docs/build/html/pipelines.html docs/build/html/prototype.datasets.html docs/build/html/prototype.functional.html docs/build/html/prototype.html docs/build/html/prototype.models.html docs/build/html/prototype.pipelines.html docs/build/html/prototype.transforms.html docs/build/html/py-modindex.html docs/build/html/references.html docs/build/html/search.html docs/build/html/searchindex.js docs/build/html/_sources docs/build/html/sox_effects.html docs/build/html/_static docs/build/html/supported_features.html docs/build/html/torchaudio.html docs/build/html/transforms.html docs/build/html/tutorials docs/build/html/utils.html /docs 2023-07-13T14:51:25.6098460Z + mv docs/build/html /artifacts/ 2023-07-13T14:51:25.6154224Z ##[group]Run pmeier/pytest-results-action@v0.3.0 2023-07-13T14:51:25.6154482Z with: 2023-07-13T14:51:25.6154748Z path: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-07-13T14:51:25.6155005Z fail-on-empty: false 2023-07-13T14:51:25.6155202Z env: 2023-07-13T14:51:25.6155424Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-07-13T14:51:25.6155675Z REPOSITORY: pytorch/audio 2023-07-13T14:51:25.6155881Z PR_NUMBER: 306 2023-07-13T14:51:25.6159549Z SCRIPT: # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export FFMPEG_VERSION=6.0 export CODEC_HEADER_VERSION=n12.0.16.0 export COMPUTE_CAPABILITY=86 export BUILD_VERSION="$( cut -f 1 -d a version.txt )".dev"$(date "+%Y%m%d")" # 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 # Create Conda Env conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env # Install PyTorch / TorchAudio first set -ex set +u # don't know why conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" # Install torchaudio conda install --quiet --yes pkg-config cmake>=3.18.0 ninja pip install --progress-bar off -v -e . --no-use-pep517 # Install FFmpeg-dependencies conda install --quiet --yes -c conda-forge yasm x264 gnutls pkg-config lame libopus libvpx openh264 openssl x264 # Build FFmpeg with NVIDIA Video Codec SDK # TODO cache this ( git clone --quiet https://git.videolan.org/git/ffmpeg/nv-codec-headers.git cd nv-codec-headers git checkout ${CODEC_HEADER_VERSION} make PREFIX=${CONDA_PREFIX} install ) ( wget -q https://github.com/FFmpeg/FFmpeg/archive/refs/tags/n${FFMPEG_VERSION}.tar.gz tar -xf n${FFMPEG_VERSION}.tar.gz cd ./FFmpeg-n${FFMPEG_VERSION} export revision=${FFMPEG_VERSION} ./configure \ --prefix=${CONDA_PREFIX} \ --extra-cflags="-I${CONDA_PREFIX}/include" \ --extra-ldflags="-L${CONDA_PREFIX}/lib" \ --nvccflags="-gencode arch=compute_${COMPUTE_CAPABILITY},code=sm_${COMPUTE_CAPABILITY} -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 make clean make -j > /dev/null 2>&1 make install # test # src="https://download.pytorch.org/torchaudio/tutorial-assets/stream-api/NASAs_Most_Scientifically_Complex_Space_Observatory_Requires_Precision-MP4_small.mp4" # ffmpeg -y -vsync 0 -hwaccel cuvid -hwaccel_output_format cuda -c:v h264_cuvid -resize 360x240 -i "${src}" -c:a copy -c:v h264_nvenc -b:v 5M test.mp4 ) # Install runtime dependencies pip --quiet install git+https://github.com/kpu/kenlm/ flashlight-text # Install build tools conda install --quiet -y -c conda-forge pandoc doxygen pysoundfile pip install --quiet -r docs/requirements.txt -r docs/requirements-tutorials.txt # Build docs export BUILD_GALLERY=true (cd docs && make html) cp -rf docs/build/html/* "${RUNNER_DOCS_DIR}" mv docs/build/html /artifacts/ 2023-07-13T14:51:25.6163290Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-07-13T14:51:25.6163642Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-07-13T14:51:25.6163977Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-07-13T14:51:25.6164281Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-07-13T14:51:25.6164527Z ##[endgroup] 2023-07-13T14:51:25.6756390Z Prepare all required actions 2023-07-13T14:51:25.6776557Z ##[group]Run ./test-infra/.github/actions/chown-directory 2023-07-13T14:51:25.6776808Z with: 2023-07-13T14:51:25.6777048Z directory: /home/ec2-user/actions-runner/_work/audio/audio/ 2023-07-13T14:51:25.6777386Z ALPINE_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2023-07-13T14:51:25.6777644Z env: 2023-07-13T14:51:25.6777868Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-07-13T14:51:25.6778111Z REPOSITORY: pytorch/audio 2023-07-13T14:51:25.6778329Z PR_NUMBER: 306 2023-07-13T14:51:25.6781697Z SCRIPT: # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export FFMPEG_VERSION=6.0 export CODEC_HEADER_VERSION=n12.0.16.0 export COMPUTE_CAPABILITY=86 export BUILD_VERSION="$( cut -f 1 -d a version.txt )".dev"$(date "+%Y%m%d")" # 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 # Create Conda Env conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env # Install PyTorch / TorchAudio first set -ex set +u # don't know why conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" # Install torchaudio conda install --quiet --yes pkg-config cmake>=3.18.0 ninja pip install --progress-bar off -v -e . --no-use-pep517 # Install FFmpeg-dependencies conda install --quiet --yes -c conda-forge yasm x264 gnutls pkg-config lame libopus libvpx openh264 openssl x264 # Build FFmpeg with NVIDIA Video Codec SDK # TODO cache this ( git clone --quiet https://git.videolan.org/git/ffmpeg/nv-codec-headers.git cd nv-codec-headers git checkout ${CODEC_HEADER_VERSION} make PREFIX=${CONDA_PREFIX} install ) ( wget -q https://github.com/FFmpeg/FFmpeg/archive/refs/tags/n${FFMPEG_VERSION}.tar.gz tar -xf n${FFMPEG_VERSION}.tar.gz cd ./FFmpeg-n${FFMPEG_VERSION} export revision=${FFMPEG_VERSION} ./configure \ --prefix=${CONDA_PREFIX} \ --extra-cflags="-I${CONDA_PREFIX}/include" \ --extra-ldflags="-L${CONDA_PREFIX}/lib" \ --nvccflags="-gencode arch=compute_${COMPUTE_CAPABILITY},code=sm_${COMPUTE_CAPABILITY} -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 make clean make -j > /dev/null 2>&1 make install # test # src="https://download.pytorch.org/torchaudio/tutorial-assets/stream-api/NASAs_Most_Scientifically_Complex_Space_Observatory_Requires_Precision-MP4_small.mp4" # ffmpeg -y -vsync 0 -hwaccel cuvid -hwaccel_output_format cuda -c:v h264_cuvid -resize 360x240 -i "${src}" -c:a copy -c:v h264_nvenc -b:v 5M test.mp4 ) # Install runtime dependencies pip --quiet install git+https://github.com/kpu/kenlm/ flashlight-text # Install build tools conda install --quiet -y -c conda-forge pandoc doxygen pysoundfile pip install --quiet -r docs/requirements.txt -r docs/requirements-tutorials.txt # Build docs export BUILD_GALLERY=true (cd docs && make html) cp -rf docs/build/html/* "${RUNNER_DOCS_DIR}" mv docs/build/html /artifacts/ 2023-07-13T14:51:25.6785374Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-07-13T14:51:25.6785722Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-07-13T14:51:25.6786055Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-07-13T14:51:25.6786423Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-07-13T14:51:25.6786674Z ##[endgroup] 2023-07-13T14:51:25.6818323Z ##[group]Run docker run --rm -v "${DIRECTORY}":/v -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" . 2023-07-13T14:51:25.6818713Z docker run --rm -v "${DIRECTORY}":/v -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" . 2023-07-13T14:51:25.6886510Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2023-07-13T14:51:25.6886754Z env: 2023-07-13T14:51:25.6886969Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-07-13T14:51:25.6887221Z REPOSITORY: pytorch/audio 2023-07-13T14:51:25.6887434Z PR_NUMBER: 306 2023-07-13T14:51:25.6890761Z SCRIPT: # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export FFMPEG_VERSION=6.0 export CODEC_HEADER_VERSION=n12.0.16.0 export COMPUTE_CAPABILITY=86 export BUILD_VERSION="$( cut -f 1 -d a version.txt )".dev"$(date "+%Y%m%d")" # 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 # Create Conda Env conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env # Install PyTorch / TorchAudio first set -ex set +u # don't know why conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" # Install torchaudio conda install --quiet --yes pkg-config cmake>=3.18.0 ninja pip install --progress-bar off -v -e . --no-use-pep517 # Install FFmpeg-dependencies conda install --quiet --yes -c conda-forge yasm x264 gnutls pkg-config lame libopus libvpx openh264 openssl x264 # Build FFmpeg with NVIDIA Video Codec SDK # TODO cache this ( git clone --quiet https://git.videolan.org/git/ffmpeg/nv-codec-headers.git cd nv-codec-headers git checkout ${CODEC_HEADER_VERSION} make PREFIX=${CONDA_PREFIX} install ) ( wget -q https://github.com/FFmpeg/FFmpeg/archive/refs/tags/n${FFMPEG_VERSION}.tar.gz tar -xf n${FFMPEG_VERSION}.tar.gz cd ./FFmpeg-n${FFMPEG_VERSION} export revision=${FFMPEG_VERSION} ./configure \ --prefix=${CONDA_PREFIX} \ --extra-cflags="-I${CONDA_PREFIX}/include" \ --extra-ldflags="-L${CONDA_PREFIX}/lib" \ --nvccflags="-gencode arch=compute_${COMPUTE_CAPABILITY},code=sm_${COMPUTE_CAPABILITY} -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 make clean make -j > /dev/null 2>&1 make install # test # src="https://download.pytorch.org/torchaudio/tutorial-assets/stream-api/NASAs_Most_Scientifically_Complex_Space_Observatory_Requires_Precision-MP4_small.mp4" # ffmpeg -y -vsync 0 -hwaccel cuvid -hwaccel_output_format cuda -c:v h264_cuvid -resize 360x240 -i "${src}" -c:a copy -c:v h264_nvenc -b:v 5M test.mp4 ) # Install runtime dependencies pip --quiet install git+https://github.com/kpu/kenlm/ flashlight-text # Install build tools conda install --quiet -y -c conda-forge pandoc doxygen pysoundfile pip install --quiet -r docs/requirements.txt -r docs/requirements-tutorials.txt # Build docs export BUILD_GALLERY=true (cd docs && make html) cp -rf docs/build/html/* "${RUNNER_DOCS_DIR}" mv docs/build/html /artifacts/ 2023-07-13T14:51:25.6894446Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-07-13T14:51:25.6894788Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-07-13T14:51:25.6895120Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-07-13T14:51:25.6895493Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-07-13T14:51:25.6895811Z ALPINE_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2023-07-13T14:51:25.6896146Z DIRECTORY: /home/ec2-user/actions-runner/_work/audio/audio/ 2023-07-13T14:51:25.6896398Z ##[endgroup] 2023-07-13T14:51:25.7095124Z Unable to find image '308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine:latest' locally 2023-07-13T14:51:25.9267996Z latest: Pulling from tool/alpine 2023-07-13T14:51:25.9274361Z 540db60ca938: Pulling fs layer 2023-07-13T14:51:26.0469413Z 540db60ca938: Verifying Checksum 2023-07-13T14:51:26.0469682Z 540db60ca938: Download complete 2023-07-13T14:51:26.2048522Z 540db60ca938: Pull complete 2023-07-13T14:51:26.2160185Z Digest: sha256:def822f9851ca422481ec6fee59a9966f12b351c62ccb9aca841526ffaa9f748 2023-07-13T14:51:26.2192958Z Status: Downloaded newer image for 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine:latest 2023-07-13T14:51:30.5561763Z Prepare all required actions 2023-07-13T14:51:30.5581747Z ##[group]Run ./test-infra/.github/actions/chown-directory 2023-07-13T14:51:30.5581992Z with: 2023-07-13T14:51:30.5582266Z ALPINE_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2023-07-13T14:51:30.5582526Z env: 2023-07-13T14:51:30.5582759Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-07-13T14:51:30.5583003Z REPOSITORY: pytorch/audio 2023-07-13T14:51:30.5583221Z PR_NUMBER: 306 2023-07-13T14:51:30.5586636Z SCRIPT: # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export FFMPEG_VERSION=6.0 export CODEC_HEADER_VERSION=n12.0.16.0 export COMPUTE_CAPABILITY=86 export BUILD_VERSION="$( cut -f 1 -d a version.txt )".dev"$(date "+%Y%m%d")" # 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 # Create Conda Env conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env # Install PyTorch / TorchAudio first set -ex set +u # don't know why conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" # Install torchaudio conda install --quiet --yes pkg-config cmake>=3.18.0 ninja pip install --progress-bar off -v -e . --no-use-pep517 # Install FFmpeg-dependencies conda install --quiet --yes -c conda-forge yasm x264 gnutls pkg-config lame libopus libvpx openh264 openssl x264 # Build FFmpeg with NVIDIA Video Codec SDK # TODO cache this ( git clone --quiet https://git.videolan.org/git/ffmpeg/nv-codec-headers.git cd nv-codec-headers git checkout ${CODEC_HEADER_VERSION} make PREFIX=${CONDA_PREFIX} install ) ( wget -q https://github.com/FFmpeg/FFmpeg/archive/refs/tags/n${FFMPEG_VERSION}.tar.gz tar -xf n${FFMPEG_VERSION}.tar.gz cd ./FFmpeg-n${FFMPEG_VERSION} export revision=${FFMPEG_VERSION} ./configure \ --prefix=${CONDA_PREFIX} \ --extra-cflags="-I${CONDA_PREFIX}/include" \ --extra-ldflags="-L${CONDA_PREFIX}/lib" \ --nvccflags="-gencode arch=compute_${COMPUTE_CAPABILITY},code=sm_${COMPUTE_CAPABILITY} -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 make clean make -j > /dev/null 2>&1 make install # test # src="https://download.pytorch.org/torchaudio/tutorial-assets/stream-api/NASAs_Most_Scientifically_Complex_Space_Observatory_Requires_Precision-MP4_small.mp4" # ffmpeg -y -vsync 0 -hwaccel cuvid -hwaccel_output_format cuda -c:v h264_cuvid -resize 360x240 -i "${src}" -c:a copy -c:v h264_nvenc -b:v 5M test.mp4 ) # Install runtime dependencies pip --quiet install git+https://github.com/kpu/kenlm/ flashlight-text # Install build tools conda install --quiet -y -c conda-forge pandoc doxygen pysoundfile pip install --quiet -r docs/requirements.txt -r docs/requirements-tutorials.txt # Build docs export BUILD_GALLERY=true (cd docs && make html) cp -rf docs/build/html/* "${RUNNER_DOCS_DIR}" mv docs/build/html /artifacts/ 2023-07-13T14:51:30.5590353Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-07-13T14:51:30.5590703Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-07-13T14:51:30.5591037Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-07-13T14:51:30.5591339Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-07-13T14:51:30.5591717Z ##[endgroup] 2023-07-13T14:51:30.5605698Z ##[group]Run docker run --rm -v "${DIRECTORY}":/v -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" . 2023-07-13T14:51:30.5606102Z docker run --rm -v "${DIRECTORY}":/v -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" . 2023-07-13T14:51:30.5617784Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2023-07-13T14:51:30.5618024Z env: 2023-07-13T14:51:30.5618243Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-07-13T14:51:30.5618495Z REPOSITORY: pytorch/audio 2023-07-13T14:51:30.5618711Z PR_NUMBER: 306 2023-07-13T14:51:30.5622069Z SCRIPT: # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export FFMPEG_VERSION=6.0 export CODEC_HEADER_VERSION=n12.0.16.0 export COMPUTE_CAPABILITY=86 export BUILD_VERSION="$( cut -f 1 -d a version.txt )".dev"$(date "+%Y%m%d")" # 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 # Create Conda Env conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env # Install PyTorch / TorchAudio first set -ex set +u # don't know why conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" # Install torchaudio conda install --quiet --yes pkg-config cmake>=3.18.0 ninja pip install --progress-bar off -v -e . --no-use-pep517 # Install FFmpeg-dependencies conda install --quiet --yes -c conda-forge yasm x264 gnutls pkg-config lame libopus libvpx openh264 openssl x264 # Build FFmpeg with NVIDIA Video Codec SDK # TODO cache this ( git clone --quiet https://git.videolan.org/git/ffmpeg/nv-codec-headers.git cd nv-codec-headers git checkout ${CODEC_HEADER_VERSION} make PREFIX=${CONDA_PREFIX} install ) ( wget -q https://github.com/FFmpeg/FFmpeg/archive/refs/tags/n${FFMPEG_VERSION}.tar.gz tar -xf n${FFMPEG_VERSION}.tar.gz cd ./FFmpeg-n${FFMPEG_VERSION} export revision=${FFMPEG_VERSION} ./configure \ --prefix=${CONDA_PREFIX} \ --extra-cflags="-I${CONDA_PREFIX}/include" \ --extra-ldflags="-L${CONDA_PREFIX}/lib" \ --nvccflags="-gencode arch=compute_${COMPUTE_CAPABILITY},code=sm_${COMPUTE_CAPABILITY} -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 make clean make -j > /dev/null 2>&1 make install # test # src="https://download.pytorch.org/torchaudio/tutorial-assets/stream-api/NASAs_Most_Scientifically_Complex_Space_Observatory_Requires_Precision-MP4_small.mp4" # ffmpeg -y -vsync 0 -hwaccel cuvid -hwaccel_output_format cuda -c:v h264_cuvid -resize 360x240 -i "${src}" -c:a copy -c:v h264_nvenc -b:v 5M test.mp4 ) # Install runtime dependencies pip --quiet install git+https://github.com/kpu/kenlm/ flashlight-text # Install build tools conda install --quiet -y -c conda-forge pandoc doxygen pysoundfile pip install --quiet -r docs/requirements.txt -r docs/requirements-tutorials.txt # Build docs export BUILD_GALLERY=true (cd docs && make html) cp -rf docs/build/html/* "${RUNNER_DOCS_DIR}" mv docs/build/html /artifacts/ 2023-07-13T14:51:30.5625716Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-07-13T14:51:30.5626064Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-07-13T14:51:30.5626399Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-07-13T14:51:30.5626711Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-07-13T14:51:30.5627099Z ALPINE_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2023-07-13T14:51:30.5627368Z DIRECTORY: 2023-07-13T14:51:30.5627553Z ##[endgroup] 2023-07-13T14:51:31.4702221Z ##[group]Run # Only do these steps if we actually want to upload an artifact 2023-07-13T14:51:31.4702741Z # Only do these steps if we actually want to upload an artifact 2023-07-13T14:51:31.4703045Z if [[ -n "${UPLOAD_ARTIFACT_NAME}" ]]; then 2023-07-13T14:51:31.4703385Z  # If the default execution path is followed then we should get a wheel in the dist/ folder 2023-07-13T14:51:31.4703743Z  # attempt to just grab whatever is in there and scoop it all up 2023-07-13T14:51:31.4704053Z  if find "dist/" -name "*.whl" >/dev/null 2>/dev/null; then 2023-07-13T14:51:31.4704346Z  mv -v dist/*.whl "${RUNNER_ARTIFACT_DIR}/" 2023-07-13T14:51:31.4704577Z  fi 2023-07-13T14:51:31.4704861Z  # Set to fail upload step if there are no files for upload and expected files for upload 2023-07-13T14:51:31.4705394Z  echo 'if-no-files-found=error' >> "${GITHUB_OUTPUT}" 2023-07-13T14:51:31.4705686Z fi 2023-07-13T14:51:31.4705870Z  2023-07-13T14:51:31.4706067Z upload_docs=0 2023-07-13T14:51:31.4706351Z # Check if there are things in the documentation folder to uplaod 2023-07-13T14:51:31.4706682Z if find "${RUNNER_DOCS_DIR}" -mindepth 1 -maxdepth 1 | read -r; then 2023-07-13T14:51:31.4707029Z  # TODO: Add a check here to test if on ec2 because if we're not on ec2 then this 2023-07-13T14:51:31.4707348Z  # upload will probably not work correctly 2023-07-13T14:51:31.4707595Z  upload_docs=1 2023-07-13T14:51:31.4707786Z fi 2023-07-13T14:51:31.4708034Z echo "upload-docs=${upload_docs}" >> "${GITHUB_OUTPUT}" 2023-07-13T14:51:31.4719887Z shell: /usr/bin/bash -e {0} 2023-07-13T14:51:31.4720093Z env: 2023-07-13T14:51:31.4720324Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-07-13T14:51:31.4720568Z REPOSITORY: pytorch/audio 2023-07-13T14:51:31.4720782Z PR_NUMBER: 306 2023-07-13T14:51:31.4724244Z SCRIPT: # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export FFMPEG_VERSION=6.0 export CODEC_HEADER_VERSION=n12.0.16.0 export COMPUTE_CAPABILITY=86 export BUILD_VERSION="$( cut -f 1 -d a version.txt )".dev"$(date "+%Y%m%d")" # 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 # Create Conda Env conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env # Install PyTorch / TorchAudio first set -ex set +u # don't know why conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" # Install torchaudio conda install --quiet --yes pkg-config cmake>=3.18.0 ninja pip install --progress-bar off -v -e . --no-use-pep517 # Install FFmpeg-dependencies conda install --quiet --yes -c conda-forge yasm x264 gnutls pkg-config lame libopus libvpx openh264 openssl x264 # Build FFmpeg with NVIDIA Video Codec SDK # TODO cache this ( git clone --quiet https://git.videolan.org/git/ffmpeg/nv-codec-headers.git cd nv-codec-headers git checkout ${CODEC_HEADER_VERSION} make PREFIX=${CONDA_PREFIX} install ) ( wget -q https://github.com/FFmpeg/FFmpeg/archive/refs/tags/n${FFMPEG_VERSION}.tar.gz tar -xf n${FFMPEG_VERSION}.tar.gz cd ./FFmpeg-n${FFMPEG_VERSION} export revision=${FFMPEG_VERSION} ./configure \ --prefix=${CONDA_PREFIX} \ --extra-cflags="-I${CONDA_PREFIX}/include" \ --extra-ldflags="-L${CONDA_PREFIX}/lib" \ --nvccflags="-gencode arch=compute_${COMPUTE_CAPABILITY},code=sm_${COMPUTE_CAPABILITY} -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 make clean make -j > /dev/null 2>&1 make install # test # src="https://download.pytorch.org/torchaudio/tutorial-assets/stream-api/NASAs_Most_Scientifically_Complex_Space_Observatory_Requires_Precision-MP4_small.mp4" # ffmpeg -y -vsync 0 -hwaccel cuvid -hwaccel_output_format cuda -c:v h264_cuvid -resize 360x240 -i "${src}" -c:a copy -c:v h264_nvenc -b:v 5M test.mp4 ) # Install runtime dependencies pip --quiet install git+https://github.com/kpu/kenlm/ flashlight-text # Install build tools conda install --quiet -y -c conda-forge pandoc doxygen pysoundfile pip install --quiet -r docs/requirements.txt -r docs/requirements-tutorials.txt # Build docs export BUILD_GALLERY=true (cd docs && make html) cp -rf docs/build/html/* "${RUNNER_DOCS_DIR}" mv docs/build/html /artifacts/ 2023-07-13T14:51:31.4727908Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-07-13T14:51:31.4728265Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-07-13T14:51:31.4728600Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-07-13T14:51:31.4728913Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-07-13T14:51:31.4729179Z UPLOAD_ARTIFACT_NAME: docs 2023-07-13T14:51:31.4729383Z ##[endgroup] 2023-07-13T14:51:31.4796182Z ##[group]Run actions/upload-artifact@v3 2023-07-13T14:51:31.4796418Z with: 2023-07-13T14:51:31.4796620Z name: docs 2023-07-13T14:51:31.4796937Z path: /home/ec2-user/actions-runner/_work/_temp/artifacts/ 2023-07-13T14:51:31.4797208Z if-no-files-found: error 2023-07-13T14:51:31.4797412Z env: 2023-07-13T14:51:31.4797626Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-07-13T14:51:31.4797883Z REPOSITORY: pytorch/audio 2023-07-13T14:51:31.4798327Z PR_NUMBER: 306 2023-07-13T14:51:31.4801837Z SCRIPT: # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export FFMPEG_VERSION=6.0 export CODEC_HEADER_VERSION=n12.0.16.0 export COMPUTE_CAPABILITY=86 export BUILD_VERSION="$( cut -f 1 -d a version.txt )".dev"$(date "+%Y%m%d")" # 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 # Create Conda Env conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env # Install PyTorch / TorchAudio first set -ex set +u # don't know why conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" # Install torchaudio conda install --quiet --yes pkg-config cmake>=3.18.0 ninja pip install --progress-bar off -v -e . --no-use-pep517 # Install FFmpeg-dependencies conda install --quiet --yes -c conda-forge yasm x264 gnutls pkg-config lame libopus libvpx openh264 openssl x264 # Build FFmpeg with NVIDIA Video Codec SDK # TODO cache this ( git clone --quiet https://git.videolan.org/git/ffmpeg/nv-codec-headers.git cd nv-codec-headers git checkout ${CODEC_HEADER_VERSION} make PREFIX=${CONDA_PREFIX} install ) ( wget -q https://github.com/FFmpeg/FFmpeg/archive/refs/tags/n${FFMPEG_VERSION}.tar.gz tar -xf n${FFMPEG_VERSION}.tar.gz cd ./FFmpeg-n${FFMPEG_VERSION} export revision=${FFMPEG_VERSION} ./configure \ --prefix=${CONDA_PREFIX} \ --extra-cflags="-I${CONDA_PREFIX}/include" \ --extra-ldflags="-L${CONDA_PREFIX}/lib" \ --nvccflags="-gencode arch=compute_${COMPUTE_CAPABILITY},code=sm_${COMPUTE_CAPABILITY} -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 make clean make -j > /dev/null 2>&1 make install # test # src="https://download.pytorch.org/torchaudio/tutorial-assets/stream-api/NASAs_Most_Scientifically_Complex_Space_Observatory_Requires_Precision-MP4_small.mp4" # ffmpeg -y -vsync 0 -hwaccel cuvid -hwaccel_output_format cuda -c:v h264_cuvid -resize 360x240 -i "${src}" -c:a copy -c:v h264_nvenc -b:v 5M test.mp4 ) # Install runtime dependencies pip --quiet install git+https://github.com/kpu/kenlm/ flashlight-text # Install build tools conda install --quiet -y -c conda-forge pandoc doxygen pysoundfile pip install --quiet -r docs/requirements.txt -r docs/requirements-tutorials.txt # Build docs export BUILD_GALLERY=true (cd docs && make html) cp -rf docs/build/html/* "${RUNNER_DOCS_DIR}" mv docs/build/html /artifacts/ 2023-07-13T14:51:31.4805437Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-07-13T14:51:31.4805787Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-07-13T14:51:31.4806121Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-07-13T14:51:31.4806426Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-07-13T14:51:31.4806678Z ##[endgroup] 2023-07-13T14:51:31.6929313Z With the provided path, there will be 1084 files uploaded 2023-07-13T14:51:31.6931576Z Starting artifact upload 2023-07-13T14:51:31.6932230Z For more detailed logs during the artifact upload process, enable step-debugging: https://docs.github.com/actions/monitoring-and-troubleshooting-workflows/enabling-debug-logging#enabling-step-debug-logging 2023-07-13T14:51:31.6932701Z Artifact name is valid! 2023-07-13T14:51:31.7525516Z Container for artifact "docs" successfully created. Starting upload of file(s) 2023-07-13T14:51:41.7659272Z Total file count: 1084 ---- Processed file #135 (12.4%) 2023-07-13T14:51:51.7824199Z Total file count: 1084 ---- Processed file #249 (22.9%) 2023-07-13T14:52:01.7831254Z Total file count: 1084 ---- Processed file #425 (39.2%) 2023-07-13T14:52:11.7970978Z Total file count: 1084 ---- Processed file #661 (60.9%) 2023-07-13T14:52:21.7979089Z Total file count: 1084 ---- Processed file #695 (64.1%) 2023-07-13T14:52:23.5217407Z Uploaded /home/ec2-user/actions-runner/_work/_temp/artifacts/html/_sources/tutorials/online_asr_tutorial.rst.txt (75.6%) bytes 0:8388607 2023-07-13T14:52:24.7522351Z Uploaded /home/ec2-user/actions-runner/_work/_temp/artifacts/html/_sources/tutorials/online_asr_tutorial.rst.txt (100.0%) bytes 8388608:11087989 2023-07-13T14:52:31.7979359Z Total file count: 1084 ---- Processed file #906 (83.5%) 2023-07-13T14:52:41.8084128Z Total file count: 1084 ---- Processed file #1067 (98.4%) 2023-07-13T14:52:49.5435100Z Uploaded /home/ec2-user/actions-runner/_work/_temp/artifacts/html/tutorials/online_asr_tutorial.html (75.5%) bytes 0:8388607 2023-07-13T14:52:50.6762311Z Uploaded /home/ec2-user/actions-runner/_work/_temp/artifacts/html/tutorials/online_asr_tutorial.html (100.0%) bytes 8388608:11098234 2023-07-13T14:52:50.6768153Z Total size of all the files uploaded is 95689093 bytes 2023-07-13T14:52:50.6768483Z File upload process has finished. Finalizing the artifact upload 2023-07-13T14:52:50.7059010Z Artifact has been finalized. All files have been successfully uploaded! 2023-07-13T14:52:50.7059225Z 2023-07-13T14:52:50.7059500Z The raw size of all the files that were specified for upload is 151398415 bytes 2023-07-13T14:52:50.7060021Z The size of all the files that were uploaded is 95689093 bytes. This takes into account any gzip compression used to reduce the upload size, time and storage 2023-07-13T14:52:50.7060401Z 2023-07-13T14:52:50.7060938Z Note: The size of downloaded zips can differ significantly from the reported size. For more information see: https://github.com/actions/upload-artifact#zipped-artifact-downloads 2023-07-13T14:52:50.7061274Z 2023-07-13T14:52:50.7061401Z Artifact docs has been successfully uploaded! 2023-07-13T14:52:50.7260071Z ##[group]Run seemethere/upload-artifact-s3@v5 2023-07-13T14:52:50.7260319Z with: 2023-07-13T14:52:50.7260510Z retention-days: 14 2023-07-13T14:52:50.7260719Z s3-bucket: doc-previews 2023-07-13T14:52:50.7260945Z if-no-files-found: error 2023-07-13T14:52:50.7261209Z path: /home/ec2-user/actions-runner/_work/_temp/docs 2023-07-13T14:52:50.7261465Z s3-prefix: pytorch/audio/306 2023-07-13T14:52:50.7261683Z name: artifact 2023-07-13T14:52:50.7261877Z region: us-east-1 2023-07-13T14:52:50.7262055Z env: 2023-07-13T14:52:50.7262279Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-07-13T14:52:50.7262530Z REPOSITORY: pytorch/audio 2023-07-13T14:52:50.7262735Z PR_NUMBER: 306 2023-07-13T14:52:50.7266139Z SCRIPT: # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export FFMPEG_VERSION=6.0 export CODEC_HEADER_VERSION=n12.0.16.0 export COMPUTE_CAPABILITY=86 export BUILD_VERSION="$( cut -f 1 -d a version.txt )".dev"$(date "+%Y%m%d")" # 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 # Create Conda Env conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env # Install PyTorch / TorchAudio first set -ex set +u # don't know why conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" # Install torchaudio conda install --quiet --yes pkg-config cmake>=3.18.0 ninja pip install --progress-bar off -v -e . --no-use-pep517 # Install FFmpeg-dependencies conda install --quiet --yes -c conda-forge yasm x264 gnutls pkg-config lame libopus libvpx openh264 openssl x264 # Build FFmpeg with NVIDIA Video Codec SDK # TODO cache this ( git clone --quiet https://git.videolan.org/git/ffmpeg/nv-codec-headers.git cd nv-codec-headers git checkout ${CODEC_HEADER_VERSION} make PREFIX=${CONDA_PREFIX} install ) ( wget -q https://github.com/FFmpeg/FFmpeg/archive/refs/tags/n${FFMPEG_VERSION}.tar.gz tar -xf n${FFMPEG_VERSION}.tar.gz cd ./FFmpeg-n${FFMPEG_VERSION} export revision=${FFMPEG_VERSION} ./configure \ --prefix=${CONDA_PREFIX} \ --extra-cflags="-I${CONDA_PREFIX}/include" \ --extra-ldflags="-L${CONDA_PREFIX}/lib" \ --nvccflags="-gencode arch=compute_${COMPUTE_CAPABILITY},code=sm_${COMPUTE_CAPABILITY} -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 make clean make -j > /dev/null 2>&1 make install # test # src="https://download.pytorch.org/torchaudio/tutorial-assets/stream-api/NASAs_Most_Scientifically_Complex_Space_Observatory_Requires_Precision-MP4_small.mp4" # ffmpeg -y -vsync 0 -hwaccel cuvid -hwaccel_output_format cuda -c:v h264_cuvid -resize 360x240 -i "${src}" -c:a copy -c:v h264_nvenc -b:v 5M test.mp4 ) # Install runtime dependencies pip --quiet install git+https://github.com/kpu/kenlm/ flashlight-text # Install build tools conda install --quiet -y -c conda-forge pandoc doxygen pysoundfile pip install --quiet -r docs/requirements.txt -r docs/requirements-tutorials.txt # Build docs export BUILD_GALLERY=true (cd docs && make html) cp -rf docs/build/html/* "${RUNNER_DOCS_DIR}" mv docs/build/html /artifacts/ 2023-07-13T14:52:50.7269894Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-07-13T14:52:50.7270255Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-07-13T14:52:50.7270643Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-07-13T14:52:50.7270955Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-07-13T14:52:50.7271203Z ##[endgroup] 2023-07-13T14:52:51.1989231Z NOTE: s3-prefix specified, ignoring name parameter 2023-07-13T14:52:51.1989695Z With the provided path, there will be 1083 files uploaded 2023-07-13T14:52:51.1990094Z Uploading to s3 prefix: pytorch/audio/306 2023-07-13T14:52:51.1996706Z Starting upload of _downloads/08314ca72c2aad9b7951279f0a24a983/audio_data_augmentation_tutorial.ipynb 2023-07-13T14:52:51.2955923Z Finished upload of _downloads/08314ca72c2aad9b7951279f0a24a983/audio_data_augmentation_tutorial.ipynb 2023-07-13T14:52:51.2957358Z Starting upload of _downloads/0face80178ed0d1cefd2a173a7262afb/audio_feature_extractions_tutorial.py 2023-07-13T14:52:51.3480245Z Finished upload of _downloads/0face80178ed0d1cefd2a173a7262afb/audio_feature_extractions_tutorial.py 2023-07-13T14:52:51.3481338Z Starting upload of _downloads/160356f33d521341c47ec6b1406a3c2e/forced_alignment_tutorial.ipynb 2023-07-13T14:52:51.4310514Z Finished upload of _downloads/160356f33d521341c47ec6b1406a3c2e/forced_alignment_tutorial.ipynb 2023-07-13T14:52:51.4311324Z Starting upload of _downloads/21502c17878277ad648c064df573f05e/streamreader_advanced_tutorial.py 2023-07-13T14:52:51.4916945Z Finished upload of _downloads/21502c17878277ad648c064df573f05e/streamreader_advanced_tutorial.py 2023-07-13T14:52:51.4917645Z Starting upload of _downloads/242b4f86f5d51a9a90d3080d8ce32681/squim_tutorial.ipynb 2023-07-13T14:52:51.6070228Z Finished upload of _downloads/242b4f86f5d51a9a90d3080d8ce32681/squim_tutorial.ipynb 2023-07-13T14:52:51.6071396Z Starting upload of _downloads/2b51f71e4505865cc313762deb71d572/streamreader_basic_tutorial.ipynb 2023-07-13T14:52:51.6610662Z Finished upload of _downloads/2b51f71e4505865cc313762deb71d572/streamreader_basic_tutorial.ipynb 2023-07-13T14:52:51.6611970Z Starting upload of _downloads/35b17eb90c4f61debd1025eb60d50269/effector_tutorial.py 2023-07-13T14:52:51.7216291Z Finished upload of _downloads/35b17eb90c4f61debd1025eb60d50269/effector_tutorial.py 2023-07-13T14:52:51.7218369Z Starting upload of _downloads/3b47d1fda1ff1ba89f9df8fcc2d3ba6d/additive_synthesis_tutorial.py 2023-07-13T14:52:51.8285918Z Finished upload of _downloads/3b47d1fda1ff1ba89f9df8fcc2d3ba6d/additive_synthesis_tutorial.py 2023-07-13T14:52:51.8287185Z Starting upload of _downloads/454ce4c8debdfeda1ab0ab945c52976d/forced_alignment_for_multilingual_data_tutorial.ipynb 2023-07-13T14:52:51.9674320Z Finished upload of _downloads/454ce4c8debdfeda1ab0ab945c52976d/forced_alignment_for_multilingual_data_tutorial.ipynb 2023-07-13T14:52:51.9675589Z Starting upload of _downloads/4841a3a3adc6a20ed07aec2707356406/audio_datasets_tutorial.ipynb 2023-07-13T14:52:52.0400410Z Finished upload of _downloads/4841a3a3adc6a20ed07aec2707356406/audio_datasets_tutorial.ipynb 2023-07-13T14:52:52.0401701Z Starting upload of _downloads/4d63e50ab0e70c0e96fd6641e0823ce8/audio_io_tutorial.ipynb 2023-07-13T14:52:52.1620975Z Finished upload of _downloads/4d63e50ab0e70c0e96fd6641e0823ce8/audio_io_tutorial.ipynb 2023-07-13T14:52:52.1622276Z Starting upload of _downloads/5035f46f2e1c1557dfa0ffabb90a0b0a/audio_data_augmentation_tutorial.py 2023-07-13T14:52:52.2425835Z Finished upload of _downloads/5035f46f2e1c1557dfa0ffabb90a0b0a/audio_data_augmentation_tutorial.py 2023-07-13T14:52:52.2427500Z Starting upload of _downloads/50de4231f2cfe5d85bac91915f27f92c/mvdr_tutorial.py 2023-07-13T14:52:52.3140724Z Finished upload of _downloads/50de4231f2cfe5d85bac91915f27f92c/mvdr_tutorial.py 2023-07-13T14:52:52.3141712Z Starting upload of _downloads/5479a6afc671384df1c364f38943e580/oscillator_tutorial.py 2023-07-13T14:52:52.4416879Z Finished upload of _downloads/5479a6afc671384df1c364f38943e580/oscillator_tutorial.py 2023-07-13T14:52:52.4417978Z Starting upload of _downloads/59ad7db3945dd23dbc0f8d9eef766370/audio_resampling_tutorial.py 2023-07-13T14:52:52.5040231Z Finished upload of _downloads/59ad7db3945dd23dbc0f8d9eef766370/audio_resampling_tutorial.py 2023-07-13T14:52:52.5041042Z Starting upload of _downloads/5ff2f7762ef4d114b8d7b7a77e9e6967/filter_design_tutorial.py 2023-07-13T14:52:52.5827209Z Finished upload of _downloads/5ff2f7762ef4d114b8d7b7a77e9e6967/filter_design_tutorial.py 2023-07-13T14:52:52.5828204Z Starting upload of _downloads/63ad2005fc24f143f3f078cd2c6b0d60/tacotron2_pipeline_tutorial.ipynb 2023-07-13T14:52:52.6531247Z Finished upload of _downloads/63ad2005fc24f143f3f078cd2c6b0d60/tacotron2_pipeline_tutorial.ipynb 2023-07-13T14:52:52.6532133Z Starting upload of _downloads/68fedf50687e692876b68727022ad06e/audio_resampling_tutorial.ipynb 2023-07-13T14:52:52.7462402Z Finished upload of _downloads/68fedf50687e692876b68727022ad06e/audio_resampling_tutorial.ipynb 2023-07-13T14:52:52.7463879Z Starting upload of _downloads/704d5dbcf9fe3b5e90a8eaa9f949e8cf/subtractive_synthesis_tutorial.ipynb 2023-07-13T14:52:52.8130828Z Finished upload of _downloads/704d5dbcf9fe3b5e90a8eaa9f949e8cf/subtractive_synthesis_tutorial.ipynb 2023-07-13T14:52:52.8131741Z Starting upload of _downloads/743bf71677318e38b748ce39acd11a62/audio_feature_extractions_tutorial.ipynb 2023-07-13T14:52:52.8641119Z Finished upload of _downloads/743bf71677318e38b748ce39acd11a62/audio_feature_extractions_tutorial.ipynb 2023-07-13T14:52:52.8641922Z Starting upload of _downloads/78e5305a9c1fa517857bc0197643e56d/streamwriter_basic_tutorial.ipynb 2023-07-13T14:52:52.9589677Z Finished upload of _downloads/78e5305a9c1fa517857bc0197643e56d/streamwriter_basic_tutorial.ipynb 2023-07-13T14:52:52.9590404Z Starting upload of _downloads/8009eae2a3a1a322f175ecc138597775/device_asr.py 2023-07-13T14:52:53.0699264Z Finished upload of _downloads/8009eae2a3a1a322f175ecc138597775/device_asr.py 2023-07-13T14:52:53.0700438Z Starting upload of _downloads/842a84f824a58d554488a544749d2a2d/filter_design_tutorial.ipynb 2023-07-13T14:52:53.1317605Z Finished upload of _downloads/842a84f824a58d554488a544749d2a2d/filter_design_tutorial.ipynb 2023-07-13T14:52:53.1318801Z Starting upload of _downloads/85c13601458553ad52e6b12e51df5327/audio_datasets_tutorial.py 2023-07-13T14:52:53.1921680Z Finished upload of _downloads/85c13601458553ad52e6b12e51df5327/audio_datasets_tutorial.py 2023-07-13T14:52:53.1922610Z Starting upload of _downloads/8a8cfc8ebb2019fd08c3306b95c1b3ef/effector_tutorial.ipynb 2023-07-13T14:52:53.2979925Z Finished upload of _downloads/8a8cfc8ebb2019fd08c3306b95c1b3ef/effector_tutorial.ipynb 2023-07-13T14:52:53.2980777Z Starting upload of _downloads/95ad2a02082b86065ac66ebb90a9ad5b/streamwriter_advanced.ipynb 2023-07-13T14:52:53.3597049Z Finished upload of _downloads/95ad2a02082b86065ac66ebb90a9ad5b/streamwriter_advanced.ipynb 2023-07-13T14:52:53.3598655Z Starting upload of _downloads/964bcef8c44a49827f48a287ad198e38/audio_feature_augmentation_tutorial.ipynb 2023-07-13T14:52:53.4264144Z Finished upload of _downloads/964bcef8c44a49827f48a287ad198e38/audio_feature_augmentation_tutorial.ipynb 2023-07-13T14:52:53.4264881Z Starting upload of _downloads/97729a601eea05725da9715649633311/ctc_forced_alignment_api_tutorial.ipynb 2023-07-13T14:52:53.4777269Z Finished upload of _downloads/97729a601eea05725da9715649633311/ctc_forced_alignment_api_tutorial.ipynb 2023-07-13T14:52:53.4778055Z Starting upload of _downloads/9772cbd0af96f57f17a2da758b365a43/tacotron2_pipeline_tutorial.py 2023-07-13T14:52:53.5741015Z Finished upload of _downloads/9772cbd0af96f57f17a2da758b365a43/tacotron2_pipeline_tutorial.py 2023-07-13T14:52:53.5741713Z Starting upload of _downloads/990b89939a1ec55aa67059703f290ab8/audio_feature_augmentation_tutorial.py 2023-07-13T14:52:53.6483350Z Finished upload of _downloads/990b89939a1ec55aa67059703f290ab8/audio_feature_augmentation_tutorial.py 2023-07-13T14:52:53.6484107Z Starting upload of _downloads/a0b5016bbf34fce4ac5549f4075dd10f/speech_recognition_pipeline_tutorial.py 2023-07-13T14:52:53.7006804Z Finished upload of _downloads/a0b5016bbf34fce4ac5549f4075dd10f/speech_recognition_pipeline_tutorial.py 2023-07-13T14:52:53.7007776Z Starting upload of _downloads/a50b7a9d7eda039b9579621100be1417/audio_io_tutorial.py 2023-07-13T14:52:53.8282926Z Finished upload of _downloads/a50b7a9d7eda039b9579621100be1417/audio_io_tutorial.py 2023-07-13T14:52:53.8284036Z Starting upload of _downloads/a662d1f1f11633103b4b95ad4b68013c/forced_alignment_for_multilingual_data_tutorial.py 2023-07-13T14:52:53.9118498Z Finished upload of _downloads/a662d1f1f11633103b4b95ad4b68013c/forced_alignment_for_multilingual_data_tutorial.py 2023-07-13T14:52:53.9119349Z Starting upload of _downloads/acd5f4d113437b875fa5999e86a2ba3b/streamwriter_advanced.py 2023-07-13T14:52:53.9950230Z Finished upload of _downloads/acd5f4d113437b875fa5999e86a2ba3b/streamwriter_advanced.py 2023-07-13T14:52:53.9950956Z Starting upload of _downloads/ad8cfe3c85e0370f75a48f091e5a301d/mvdr_tutorial.ipynb 2023-07-13T14:52:54.0834537Z Finished upload of _downloads/ad8cfe3c85e0370f75a48f091e5a301d/mvdr_tutorial.ipynb 2023-07-13T14:52:54.0835295Z Starting upload of _downloads/ade1a3c3b444796d2a34839c7ea75426/asr_inference_with_ctc_decoder_tutorial.ipynb 2023-07-13T14:52:54.1535028Z Finished upload of _downloads/ade1a3c3b444796d2a34839c7ea75426/asr_inference_with_ctc_decoder_tutorial.ipynb 2023-07-13T14:52:54.1536392Z Starting upload of _downloads/bd34dff0656a1aa627d444a8d1a5957f/online_asr_tutorial.ipynb 2023-07-13T14:52:54.2508219Z Finished upload of _downloads/bd34dff0656a1aa627d444a8d1a5957f/online_asr_tutorial.ipynb 2023-07-13T14:52:54.2508901Z Starting upload of _downloads/c3b45fd5e3c80988ff7e06619382f4bb/oscillator_tutorial.ipynb 2023-07-13T14:52:54.3400595Z Finished upload of _downloads/c3b45fd5e3c80988ff7e06619382f4bb/oscillator_tutorial.ipynb 2023-07-13T14:52:54.3401218Z Starting upload of _downloads/c8265c298ed19ff44b504d5c3aa72563/device_asr.ipynb 2023-07-13T14:52:54.5169632Z Finished upload of _downloads/c8265c298ed19ff44b504d5c3aa72563/device_asr.ipynb 2023-07-13T14:52:54.5170284Z Starting upload of _downloads/c943e35bc7cad6e8d9b1df2a7034a8fc/squim_tutorial.py 2023-07-13T14:52:54.6517636Z Finished upload of _downloads/c943e35bc7cad6e8d9b1df2a7034a8fc/squim_tutorial.py 2023-07-13T14:52:54.6518653Z Starting upload of _downloads/c9521dfc1feb227de7d892f0131bbc95/hybrid_demucs_tutorial.ipynb 2023-07-13T14:52:54.7397235Z Finished upload of _downloads/c9521dfc1feb227de7d892f0131bbc95/hybrid_demucs_tutorial.ipynb 2023-07-13T14:52:54.7398995Z Starting upload of _downloads/ca83af2ea8d7db05fb63211d515b7fde/speech_recognition_pipeline_tutorial.ipynb 2023-07-13T14:52:54.8823780Z Finished upload of _downloads/ca83af2ea8d7db05fb63211d515b7fde/speech_recognition_pipeline_tutorial.ipynb 2023-07-13T14:52:54.8824615Z Starting upload of _downloads/d2ec3ac999c9665c76413f1e36232990/additive_synthesis_tutorial.ipynb 2023-07-13T14:52:54.9665200Z Finished upload of _downloads/d2ec3ac999c9665c76413f1e36232990/additive_synthesis_tutorial.ipynb 2023-07-13T14:52:54.9667075Z Starting upload of _downloads/d3b39e207bd40f4cddd5c53e3fdae429/subtractive_synthesis_tutorial.py 2023-07-13T14:52:55.0898472Z Finished upload of _downloads/d3b39e207bd40f4cddd5c53e3fdae429/subtractive_synthesis_tutorial.py 2023-07-13T14:52:55.0899336Z Starting upload of _downloads/d7783185e54fb77cb13eb7133fa130a3/hybrid_demucs_tutorial.py 2023-07-13T14:52:55.1788713Z Finished upload of _downloads/d7783185e54fb77cb13eb7133fa130a3/hybrid_demucs_tutorial.py 2023-07-13T14:52:55.1789404Z Starting upload of _downloads/d8d57badf5e878c5beb8d32b0aefc7dd/streamwriter_basic_tutorial.py 2023-07-13T14:52:55.2883002Z Finished upload of _downloads/d8d57badf5e878c5beb8d32b0aefc7dd/streamwriter_basic_tutorial.py 2023-07-13T14:52:55.2883706Z Starting upload of _downloads/da151acc525ba1fb468e2a4904659af1/asr_inference_with_ctc_decoder_tutorial.py 2023-07-13T14:52:55.3643194Z Finished upload of _downloads/da151acc525ba1fb468e2a4904659af1/asr_inference_with_ctc_decoder_tutorial.py 2023-07-13T14:52:55.3643880Z Starting upload of _downloads/dc81b404e96c6cb650e0c5a8115bc1f1/streamreader_basic_tutorial.py 2023-07-13T14:52:55.5685037Z Finished upload of _downloads/dc81b404e96c6cb650e0c5a8115bc1f1/streamreader_basic_tutorial.py 2023-07-13T14:52:55.5685934Z Starting upload of _downloads/f3b1cbeaf1ae66d226233d2ca3d0ef3d/streamreader_advanced_tutorial.ipynb 2023-07-13T14:52:55.6462234Z Finished upload of _downloads/f3b1cbeaf1ae66d226233d2ca3d0ef3d/streamreader_advanced_tutorial.ipynb 2023-07-13T14:52:55.6462891Z Starting upload of _downloads/f9f593098569966df0b815e29c13dd20/online_asr_tutorial.py 2023-07-13T14:52:55.7622679Z Finished upload of _downloads/f9f593098569966df0b815e29c13dd20/online_asr_tutorial.py 2023-07-13T14:52:55.7624002Z Starting upload of _downloads/fa57890a830bd47c0baa254781b3a8e1/forced_alignment_tutorial.py 2023-07-13T14:52:55.8271677Z Finished upload of _downloads/fa57890a830bd47c0baa254781b3a8e1/forced_alignment_tutorial.py 2023-07-13T14:52:55.8272482Z Starting upload of _downloads/fd312a07c77ccd892cb337379bf91f16/ctc_forced_alignment_api_tutorial.py 2023-07-13T14:52:55.9093116Z Finished upload of _downloads/fd312a07c77ccd892cb337379bf91f16/ctc_forced_alignment_api_tutorial.py 2023-07-13T14:52:55.9093877Z Starting upload of _images/304d5440efdca77d8969ce1760648aa666bc677fbe8bdce0aa756cb6a99fcad5.svg 2023-07-13T14:52:55.9709621Z Finished upload of _images/304d5440efdca77d8969ce1760648aa666bc677fbe8bdce0aa756cb6a99fcad5.svg 2023-07-13T14:52:55.9710305Z Starting upload of _images/4f5c4872f982dc9b424393646bb6c7c34fe2c478499eb80f3a2470339a73837c.svg 2023-07-13T14:52:56.0086723Z Finished upload of _images/4f5c4872f982dc9b424393646bb6c7c34fe2c478499eb80f3a2470339a73837c.svg 2023-07-13T14:52:56.0087617Z Starting upload of _images/6f921ff5b3be21ecb1bc4c704713f340a88edbd1f97f2711e07a486d7b53dea2.svg 2023-07-13T14:52:56.0776658Z Finished upload of _images/6f921ff5b3be21ecb1bc4c704713f340a88edbd1f97f2711e07a486d7b53dea2.svg 2023-07-13T14:52:56.0777339Z Starting upload of _images/842c6e7cf1798066d580c63886e1f8f16beadb856d19a33e879858e991748432.svg 2023-07-13T14:52:56.1654234Z Finished upload of _images/842c6e7cf1798066d580c63886e1f8f16beadb856d19a33e879858e991748432.svg 2023-07-13T14:52:56.1656243Z Starting upload of _images/e293eae5f4516a625dc07ed0eed1ff8b2f18eef5a9da1f8561cc97c78ab0600c.svg 2023-07-13T14:52:56.2393752Z Finished upload of _images/e293eae5f4516a625dc07ed0eed1ff8b2f18eef5a9da1f8561cc97c78ab0600c.svg 2023-07-13T14:52:56.2394539Z Starting upload of _images/f04dfdd7619480b49d72cc9f0fb641c626bd3593f7715ed8c58c6f4eb493910b.svg 2023-07-13T14:52:56.3588280Z Finished upload of _images/f04dfdd7619480b49d72cc9f0fb641c626bd3593f7715ed8c58c6f4eb493910b.svg 2023-07-13T14:52:56.3589459Z Starting upload of _images/hw_acceleration_tutorial_60_1.png 2023-07-13T14:52:56.5249047Z Finished upload of _images/hw_acceleration_tutorial_60_1.png 2023-07-13T14:52:56.5249896Z Starting upload of _images/hw_acceleration_tutorial_91_0.png 2023-07-13T14:52:56.6044449Z Finished upload of _images/hw_acceleration_tutorial_91_0.png 2023-07-13T14:52:56.6044987Z Starting upload of _images/logo.png 2023-07-13T14:52:56.6874605Z Finished upload of _images/logo.png 2023-07-13T14:52:56.6875440Z Starting upload of _images/sphx_glr_additive_synthesis_tutorial_001.png 2023-07-13T14:52:56.7913108Z Finished upload of _images/sphx_glr_additive_synthesis_tutorial_001.png 2023-07-13T14:52:56.7915543Z Starting upload of _images/sphx_glr_additive_synthesis_tutorial_002.png 2023-07-13T14:52:56.9512041Z Finished upload of _images/sphx_glr_additive_synthesis_tutorial_002.png 2023-07-13T14:52:56.9512770Z Starting upload of _images/sphx_glr_additive_synthesis_tutorial_003.png 2023-07-13T14:52:57.0658779Z Finished upload of _images/sphx_glr_additive_synthesis_tutorial_003.png 2023-07-13T14:52:57.0659861Z Starting upload of _images/sphx_glr_additive_synthesis_tutorial_004.png 2023-07-13T14:52:57.1737677Z Finished upload of _images/sphx_glr_additive_synthesis_tutorial_004.png 2023-07-13T14:52:57.1738587Z Starting upload of _images/sphx_glr_additive_synthesis_tutorial_005.png 2023-07-13T14:52:57.9239643Z Finished upload of _images/sphx_glr_additive_synthesis_tutorial_005.png 2023-07-13T14:52:57.9240587Z Starting upload of _images/sphx_glr_additive_synthesis_tutorial_006.png 2023-07-13T14:52:58.0615149Z Finished upload of _images/sphx_glr_additive_synthesis_tutorial_006.png 2023-07-13T14:52:58.0615899Z Starting upload of _images/sphx_glr_additive_synthesis_tutorial_thumb.png 2023-07-13T14:52:58.1461009Z Finished upload of _images/sphx_glr_additive_synthesis_tutorial_thumb.png 2023-07-13T14:52:58.1461927Z Starting upload of _images/sphx_glr_asr_inference_with_ctc_decoder_tutorial_001.png 2023-07-13T14:52:58.2251373Z Finished upload of _images/sphx_glr_asr_inference_with_ctc_decoder_tutorial_001.png 2023-07-13T14:52:58.2252539Z Starting upload of _images/sphx_glr_asr_inference_with_ctc_decoder_tutorial_thumb.png 2023-07-13T14:52:58.3637328Z Finished upload of _images/sphx_glr_asr_inference_with_ctc_decoder_tutorial_thumb.png 2023-07-13T14:52:58.3638513Z Starting upload of _images/sphx_glr_audio_data_augmentation_tutorial_001.png 2023-07-13T14:52:58.4571071Z Finished upload of _images/sphx_glr_audio_data_augmentation_tutorial_001.png 2023-07-13T14:52:58.4571969Z Starting upload of _images/sphx_glr_audio_data_augmentation_tutorial_002.png 2023-07-13T14:52:58.6741109Z Finished upload of _images/sphx_glr_audio_data_augmentation_tutorial_002.png 2023-07-13T14:52:58.6742050Z Starting upload of _images/sphx_glr_audio_data_augmentation_tutorial_003.png 2023-07-13T14:52:58.8185431Z Finished upload of _images/sphx_glr_audio_data_augmentation_tutorial_003.png 2023-07-13T14:52:58.8186267Z Starting upload of _images/sphx_glr_audio_data_augmentation_tutorial_004.png 2023-07-13T14:52:58.9687661Z Finished upload of _images/sphx_glr_audio_data_augmentation_tutorial_004.png 2023-07-13T14:52:58.9688633Z Starting upload of _images/sphx_glr_audio_data_augmentation_tutorial_005.png 2023-07-13T14:52:59.0625721Z Finished upload of _images/sphx_glr_audio_data_augmentation_tutorial_005.png 2023-07-13T14:52:59.0626785Z Starting upload of _images/sphx_glr_audio_data_augmentation_tutorial_006.png 2023-07-13T14:52:59.2198821Z Finished upload of _images/sphx_glr_audio_data_augmentation_tutorial_006.png 2023-07-13T14:52:59.2200183Z Starting upload of _images/sphx_glr_audio_data_augmentation_tutorial_007.png 2023-07-13T14:52:59.2820497Z Finished upload of _images/sphx_glr_audio_data_augmentation_tutorial_007.png 2023-07-13T14:52:59.2821299Z Starting upload of _images/sphx_glr_audio_data_augmentation_tutorial_008.png 2023-07-13T14:52:59.3702571Z Finished upload of _images/sphx_glr_audio_data_augmentation_tutorial_008.png 2023-07-13T14:52:59.3703662Z Starting upload of _images/sphx_glr_audio_data_augmentation_tutorial_009.png 2023-07-13T14:52:59.5201145Z Finished upload of _images/sphx_glr_audio_data_augmentation_tutorial_009.png 2023-07-13T14:52:59.5201980Z Starting upload of _images/sphx_glr_audio_data_augmentation_tutorial_010.png 2023-07-13T14:52:59.6517018Z Finished upload of _images/sphx_glr_audio_data_augmentation_tutorial_010.png 2023-07-13T14:52:59.6518263Z Starting upload of _images/sphx_glr_audio_data_augmentation_tutorial_011.png 2023-07-13T14:52:59.8158798Z Finished upload of _images/sphx_glr_audio_data_augmentation_tutorial_011.png 2023-07-13T14:52:59.8160191Z Starting upload of _images/sphx_glr_audio_data_augmentation_tutorial_012.png 2023-07-13T14:52:59.9521075Z Finished upload of _images/sphx_glr_audio_data_augmentation_tutorial_012.png 2023-07-13T14:52:59.9522083Z Starting upload of _images/sphx_glr_audio_data_augmentation_tutorial_013.png 2023-07-13T14:53:00.1093538Z Finished upload of _images/sphx_glr_audio_data_augmentation_tutorial_013.png 2023-07-13T14:53:00.1094571Z Starting upload of _images/sphx_glr_audio_data_augmentation_tutorial_014.png 2023-07-13T14:53:00.2251862Z Finished upload of _images/sphx_glr_audio_data_augmentation_tutorial_014.png 2023-07-13T14:53:00.2252606Z Starting upload of _images/sphx_glr_audio_data_augmentation_tutorial_015.png 2023-07-13T14:53:00.4604830Z Finished upload of _images/sphx_glr_audio_data_augmentation_tutorial_015.png 2023-07-13T14:53:00.4605734Z Starting upload of _images/sphx_glr_audio_data_augmentation_tutorial_016.png 2023-07-13T14:53:00.5524342Z Finished upload of _images/sphx_glr_audio_data_augmentation_tutorial_016.png 2023-07-13T14:53:00.5525088Z Starting upload of _images/sphx_glr_audio_data_augmentation_tutorial_017.png 2023-07-13T14:53:00.6909013Z Finished upload of _images/sphx_glr_audio_data_augmentation_tutorial_017.png 2023-07-13T14:53:00.6909974Z Starting upload of _images/sphx_glr_audio_data_augmentation_tutorial_018.png 2023-07-13T14:53:00.7545225Z Finished upload of _images/sphx_glr_audio_data_augmentation_tutorial_018.png 2023-07-13T14:53:00.7546035Z Starting upload of _images/sphx_glr_audio_data_augmentation_tutorial_019.png 2023-07-13T14:53:01.0160359Z Finished upload of _images/sphx_glr_audio_data_augmentation_tutorial_019.png 2023-07-13T14:53:01.0161131Z Starting upload of _images/sphx_glr_audio_data_augmentation_tutorial_020.png 2023-07-13T14:53:01.0761535Z Finished upload of _images/sphx_glr_audio_data_augmentation_tutorial_020.png 2023-07-13T14:53:01.0762409Z Starting upload of _images/sphx_glr_audio_data_augmentation_tutorial_021.png 2023-07-13T14:53:01.2296985Z Finished upload of _images/sphx_glr_audio_data_augmentation_tutorial_021.png 2023-07-13T14:53:01.2298280Z Starting upload of _images/sphx_glr_audio_data_augmentation_tutorial_022.png 2023-07-13T14:53:01.3178996Z Finished upload of _images/sphx_glr_audio_data_augmentation_tutorial_022.png 2023-07-13T14:53:01.3180269Z Starting upload of _images/sphx_glr_audio_data_augmentation_tutorial_023.png 2023-07-13T14:53:01.5101445Z Finished upload of _images/sphx_glr_audio_data_augmentation_tutorial_023.png 2023-07-13T14:53:01.5102444Z Starting upload of _images/sphx_glr_audio_data_augmentation_tutorial_024.png 2023-07-13T14:53:01.5964375Z Finished upload of _images/sphx_glr_audio_data_augmentation_tutorial_024.png 2023-07-13T14:53:01.5965620Z Starting upload of _images/sphx_glr_audio_data_augmentation_tutorial_025.png 2023-07-13T14:53:01.7425519Z Finished upload of _images/sphx_glr_audio_data_augmentation_tutorial_025.png 2023-07-13T14:53:01.7426548Z Starting upload of _images/sphx_glr_audio_data_augmentation_tutorial_026.png 2023-07-13T14:53:01.8542504Z Finished upload of _images/sphx_glr_audio_data_augmentation_tutorial_026.png 2023-07-13T14:53:01.8543274Z Starting upload of _images/sphx_glr_audio_data_augmentation_tutorial_027.png 2023-07-13T14:53:01.9980820Z Finished upload of _images/sphx_glr_audio_data_augmentation_tutorial_027.png 2023-07-13T14:53:01.9981540Z Starting upload of _images/sphx_glr_audio_data_augmentation_tutorial_028.png 2023-07-13T14:53:02.1617267Z Finished upload of _images/sphx_glr_audio_data_augmentation_tutorial_028.png 2023-07-13T14:53:02.1618022Z Starting upload of _images/sphx_glr_audio_data_augmentation_tutorial_029.png 2023-07-13T14:53:02.3219967Z Finished upload of _images/sphx_glr_audio_data_augmentation_tutorial_029.png 2023-07-13T14:53:02.3221155Z Starting upload of _images/sphx_glr_audio_data_augmentation_tutorial_030.png 2023-07-13T14:53:02.4516008Z Finished upload of _images/sphx_glr_audio_data_augmentation_tutorial_030.png 2023-07-13T14:53:02.4516669Z Starting upload of _images/sphx_glr_audio_data_augmentation_tutorial_031.png 2023-07-13T14:53:02.6364014Z Finished upload of _images/sphx_glr_audio_data_augmentation_tutorial_031.png 2023-07-13T14:53:02.6365691Z Starting upload of _images/sphx_glr_audio_data_augmentation_tutorial_032.png 2023-07-13T14:53:02.7383799Z Finished upload of _images/sphx_glr_audio_data_augmentation_tutorial_032.png 2023-07-13T14:53:02.7384702Z Starting upload of _images/sphx_glr_audio_data_augmentation_tutorial_thumb.png 2023-07-13T14:53:02.8256779Z Finished upload of _images/sphx_glr_audio_data_augmentation_tutorial_thumb.png 2023-07-13T14:53:02.8258067Z Starting upload of _images/sphx_glr_audio_datasets_tutorial_001.png 2023-07-13T14:53:02.9193027Z Finished upload of _images/sphx_glr_audio_datasets_tutorial_001.png 2023-07-13T14:53:02.9193846Z Starting upload of _images/sphx_glr_audio_datasets_tutorial_002.png 2023-07-13T14:53:03.0445606Z Finished upload of _images/sphx_glr_audio_datasets_tutorial_002.png 2023-07-13T14:53:03.0446608Z Starting upload of _images/sphx_glr_audio_datasets_tutorial_003.png 2023-07-13T14:53:03.2378945Z Finished upload of _images/sphx_glr_audio_datasets_tutorial_003.png 2023-07-13T14:53:03.2379551Z Starting upload of _images/sphx_glr_audio_datasets_tutorial_thumb.png 2023-07-13T14:53:03.3038607Z Finished upload of _images/sphx_glr_audio_datasets_tutorial_thumb.png 2023-07-13T14:53:03.3039342Z Starting upload of _images/sphx_glr_audio_feature_augmentation_tutorial_001.png 2023-07-13T14:53:03.4566998Z Finished upload of _images/sphx_glr_audio_feature_augmentation_tutorial_001.png 2023-07-13T14:53:03.4567637Z Starting upload of _images/sphx_glr_audio_feature_augmentation_tutorial_002.png 2023-07-13T14:53:03.6089552Z Finished upload of _images/sphx_glr_audio_feature_augmentation_tutorial_002.png 2023-07-13T14:53:03.6090195Z Starting upload of _images/sphx_glr_audio_feature_augmentation_tutorial_003.png 2023-07-13T14:53:03.7089857Z Finished upload of _images/sphx_glr_audio_feature_augmentation_tutorial_003.png 2023-07-13T14:53:03.7090501Z Starting upload of _images/sphx_glr_audio_feature_augmentation_tutorial_004.png 2023-07-13T14:53:03.9499403Z Finished upload of _images/sphx_glr_audio_feature_augmentation_tutorial_004.png 2023-07-13T14:53:03.9500942Z Starting upload of _images/sphx_glr_audio_feature_augmentation_tutorial_005.png 2023-07-13T14:53:04.0678229Z Finished upload of _images/sphx_glr_audio_feature_augmentation_tutorial_005.png 2023-07-13T14:53:04.0680159Z Starting upload of _images/sphx_glr_audio_feature_augmentation_tutorial_006.png 2023-07-13T14:53:04.2040931Z Finished upload of _images/sphx_glr_audio_feature_augmentation_tutorial_006.png 2023-07-13T14:53:04.2042278Z Starting upload of _images/sphx_glr_audio_feature_augmentation_tutorial_007.png 2023-07-13T14:53:04.3578267Z Finished upload of _images/sphx_glr_audio_feature_augmentation_tutorial_007.png 2023-07-13T14:53:04.3579787Z Starting upload of _images/sphx_glr_audio_feature_augmentation_tutorial_thumb.png 2023-07-13T14:53:04.5092065Z Finished upload of _images/sphx_glr_audio_feature_augmentation_tutorial_thumb.png 2023-07-13T14:53:04.5092900Z Starting upload of _images/sphx_glr_audio_feature_extractions_tutorial_001.png 2023-07-13T14:53:04.6566162Z Finished upload of _images/sphx_glr_audio_feature_extractions_tutorial_001.png 2023-07-13T14:53:04.6567073Z Starting upload of _images/sphx_glr_audio_feature_extractions_tutorial_002.png 2023-07-13T14:53:04.7630213Z Finished upload of _images/sphx_glr_audio_feature_extractions_tutorial_002.png 2023-07-13T14:53:04.7631721Z Starting upload of _images/sphx_glr_audio_feature_extractions_tutorial_003.png 2023-07-13T14:53:04.8435627Z Finished upload of _images/sphx_glr_audio_feature_extractions_tutorial_003.png 2023-07-13T14:53:04.8436498Z Starting upload of _images/sphx_glr_audio_feature_extractions_tutorial_004.png 2023-07-13T14:53:04.9512628Z Finished upload of _images/sphx_glr_audio_feature_extractions_tutorial_004.png 2023-07-13T14:53:04.9513324Z Starting upload of _images/sphx_glr_audio_feature_extractions_tutorial_005.png 2023-07-13T14:53:05.0514521Z Finished upload of _images/sphx_glr_audio_feature_extractions_tutorial_005.png 2023-07-13T14:53:05.0515233Z Starting upload of _images/sphx_glr_audio_feature_extractions_tutorial_006.png 2023-07-13T14:53:05.1412997Z Finished upload of _images/sphx_glr_audio_feature_extractions_tutorial_006.png 2023-07-13T14:53:05.1413670Z Starting upload of _images/sphx_glr_audio_feature_extractions_tutorial_007.png 2023-07-13T14:53:05.2103092Z Finished upload of _images/sphx_glr_audio_feature_extractions_tutorial_007.png 2023-07-13T14:53:05.2103732Z Starting upload of _images/sphx_glr_audio_feature_extractions_tutorial_008.png 2023-07-13T14:53:05.2962932Z Finished upload of _images/sphx_glr_audio_feature_extractions_tutorial_008.png 2023-07-13T14:53:05.2963758Z Starting upload of _images/sphx_glr_audio_feature_extractions_tutorial_009.png 2023-07-13T14:53:05.3839497Z Finished upload of _images/sphx_glr_audio_feature_extractions_tutorial_009.png 2023-07-13T14:53:05.3841669Z Starting upload of _images/sphx_glr_audio_feature_extractions_tutorial_010.png 2023-07-13T14:53:05.4550043Z Finished upload of _images/sphx_glr_audio_feature_extractions_tutorial_010.png 2023-07-13T14:53:05.4550919Z Starting upload of _images/sphx_glr_audio_feature_extractions_tutorial_011.png 2023-07-13T14:53:05.6719002Z Finished upload of _images/sphx_glr_audio_feature_extractions_tutorial_011.png 2023-07-13T14:53:05.6719912Z Starting upload of _images/sphx_glr_audio_feature_extractions_tutorial_012.png 2023-07-13T14:53:05.7908820Z Finished upload of _images/sphx_glr_audio_feature_extractions_tutorial_012.png 2023-07-13T14:53:05.7910357Z Starting upload of _images/sphx_glr_audio_feature_extractions_tutorial_thumb.png 2023-07-13T14:53:05.9172368Z Finished upload of _images/sphx_glr_audio_feature_extractions_tutorial_thumb.png 2023-07-13T14:53:05.9173209Z Starting upload of _images/sphx_glr_audio_io_tutorial_001.png 2023-07-13T14:53:06.0225783Z Finished upload of _images/sphx_glr_audio_io_tutorial_001.png 2023-07-13T14:53:06.0226989Z Starting upload of _images/sphx_glr_audio_io_tutorial_002.png 2023-07-13T14:53:06.1730642Z Finished upload of _images/sphx_glr_audio_io_tutorial_002.png 2023-07-13T14:53:06.1731548Z Starting upload of _images/sphx_glr_audio_io_tutorial_003.png 2023-07-13T14:53:06.3577997Z Finished upload of _images/sphx_glr_audio_io_tutorial_003.png 2023-07-13T14:53:06.3579335Z Starting upload of _images/sphx_glr_audio_io_tutorial_004.png 2023-07-13T14:53:06.5406116Z Finished upload of _images/sphx_glr_audio_io_tutorial_004.png 2023-07-13T14:53:06.5406809Z Starting upload of _images/sphx_glr_audio_io_tutorial_005.png 2023-07-13T14:53:06.7091440Z Finished upload of _images/sphx_glr_audio_io_tutorial_005.png 2023-07-13T14:53:06.7092518Z Starting upload of _images/sphx_glr_audio_io_tutorial_thumb.png 2023-07-13T14:53:06.8196953Z Finished upload of _images/sphx_glr_audio_io_tutorial_thumb.png 2023-07-13T14:53:06.8197964Z Starting upload of _images/sphx_glr_audio_resampling_tutorial_001.png 2023-07-13T14:53:06.9008057Z Finished upload of _images/sphx_glr_audio_resampling_tutorial_001.png 2023-07-13T14:53:06.9008946Z Starting upload of _images/sphx_glr_audio_resampling_tutorial_002.png 2023-07-13T14:53:07.0569834Z Finished upload of _images/sphx_glr_audio_resampling_tutorial_002.png 2023-07-13T14:53:07.0570770Z Starting upload of _images/sphx_glr_audio_resampling_tutorial_003.png 2023-07-13T14:53:07.1976706Z Finished upload of _images/sphx_glr_audio_resampling_tutorial_003.png 2023-07-13T14:53:07.1977548Z Starting upload of _images/sphx_glr_audio_resampling_tutorial_004.png 2023-07-13T14:53:07.3976748Z Finished upload of _images/sphx_glr_audio_resampling_tutorial_004.png 2023-07-13T14:53:07.3977481Z Starting upload of _images/sphx_glr_audio_resampling_tutorial_005.png 2023-07-13T14:53:07.5127563Z Finished upload of _images/sphx_glr_audio_resampling_tutorial_005.png 2023-07-13T14:53:07.5128399Z Starting upload of _images/sphx_glr_audio_resampling_tutorial_006.png 2023-07-13T14:53:07.6277635Z Finished upload of _images/sphx_glr_audio_resampling_tutorial_006.png 2023-07-13T14:53:07.6279527Z Starting upload of _images/sphx_glr_audio_resampling_tutorial_007.png 2023-07-13T14:53:07.7781351Z Finished upload of _images/sphx_glr_audio_resampling_tutorial_007.png 2023-07-13T14:53:07.7782098Z Starting upload of _images/sphx_glr_audio_resampling_tutorial_008.png 2023-07-13T14:53:07.9833134Z Finished upload of _images/sphx_glr_audio_resampling_tutorial_008.png 2023-07-13T14:53:07.9834198Z Starting upload of _images/sphx_glr_audio_resampling_tutorial_009.png 2023-07-13T14:53:08.1241616Z Finished upload of _images/sphx_glr_audio_resampling_tutorial_009.png 2023-07-13T14:53:08.1242581Z Starting upload of _images/sphx_glr_audio_resampling_tutorial_010.png 2023-07-13T14:53:08.2206317Z Finished upload of _images/sphx_glr_audio_resampling_tutorial_010.png 2023-07-13T14:53:08.2207272Z Starting upload of _images/sphx_glr_audio_resampling_tutorial_011.png 2023-07-13T14:53:08.2859004Z Finished upload of _images/sphx_glr_audio_resampling_tutorial_011.png 2023-07-13T14:53:08.2860434Z Starting upload of _images/sphx_glr_audio_resampling_tutorial_012.png 2023-07-13T14:53:08.4558954Z Finished upload of _images/sphx_glr_audio_resampling_tutorial_012.png 2023-07-13T14:53:08.4559801Z Starting upload of _images/sphx_glr_audio_resampling_tutorial_013.png 2023-07-13T14:53:08.5476253Z Finished upload of _images/sphx_glr_audio_resampling_tutorial_013.png 2023-07-13T14:53:08.5477017Z Starting upload of _images/sphx_glr_audio_resampling_tutorial_014.png 2023-07-13T14:53:08.6391214Z Finished upload of _images/sphx_glr_audio_resampling_tutorial_014.png 2023-07-13T14:53:08.6392168Z Starting upload of _images/sphx_glr_audio_resampling_tutorial_015.png 2023-07-13T14:53:08.7185771Z Finished upload of _images/sphx_glr_audio_resampling_tutorial_015.png 2023-07-13T14:53:08.7186621Z Starting upload of _images/sphx_glr_audio_resampling_tutorial_016.png 2023-07-13T14:53:08.8372365Z Finished upload of _images/sphx_glr_audio_resampling_tutorial_016.png 2023-07-13T14:53:08.8373203Z Starting upload of _images/sphx_glr_audio_resampling_tutorial_thumb.png 2023-07-13T14:53:08.9575964Z Finished upload of _images/sphx_glr_audio_resampling_tutorial_thumb.png 2023-07-13T14:53:08.9576803Z Starting upload of _images/sphx_glr_ctc_forced_alignment_api_tutorial_001.png 2023-07-13T14:53:09.0509803Z Finished upload of _images/sphx_glr_ctc_forced_alignment_api_tutorial_001.png 2023-07-13T14:53:09.0510627Z Starting upload of _images/sphx_glr_ctc_forced_alignment_api_tutorial_002.png 2023-07-13T14:53:09.1743687Z Finished upload of _images/sphx_glr_ctc_forced_alignment_api_tutorial_002.png 2023-07-13T14:53:09.1744598Z Starting upload of _images/sphx_glr_ctc_forced_alignment_api_tutorial_003.png 2023-07-13T14:53:09.2448516Z Finished upload of _images/sphx_glr_ctc_forced_alignment_api_tutorial_003.png 2023-07-13T14:53:09.2449224Z Starting upload of _images/sphx_glr_ctc_forced_alignment_api_tutorial_004.png 2023-07-13T14:53:09.3150892Z Finished upload of _images/sphx_glr_ctc_forced_alignment_api_tutorial_004.png 2023-07-13T14:53:09.3151767Z Starting upload of _images/sphx_glr_ctc_forced_alignment_api_tutorial_005.png 2023-07-13T14:53:09.4845398Z Finished upload of _images/sphx_glr_ctc_forced_alignment_api_tutorial_005.png 2023-07-13T14:53:09.4846271Z Starting upload of _images/sphx_glr_ctc_forced_alignment_api_tutorial_006.png 2023-07-13T14:53:09.6441172Z Finished upload of _images/sphx_glr_ctc_forced_alignment_api_tutorial_006.png 2023-07-13T14:53:09.6442769Z Starting upload of _images/sphx_glr_ctc_forced_alignment_api_tutorial_thumb.png 2023-07-13T14:53:09.7125042Z Finished upload of _images/sphx_glr_ctc_forced_alignment_api_tutorial_thumb.png 2023-07-13T14:53:09.7126565Z Starting upload of _images/sphx_glr_device_asr_thumb.png 2023-07-13T14:53:09.8108133Z Finished upload of _images/sphx_glr_device_asr_thumb.png 2023-07-13T14:53:09.8108885Z Starting upload of _images/sphx_glr_effector_tutorial_001.png 2023-07-13T14:53:09.9406566Z Finished upload of _images/sphx_glr_effector_tutorial_001.png 2023-07-13T14:53:09.9407357Z Starting upload of _images/sphx_glr_effector_tutorial_002.png 2023-07-13T14:53:10.0244307Z Finished upload of _images/sphx_glr_effector_tutorial_002.png 2023-07-13T14:53:10.0245117Z Starting upload of _images/sphx_glr_effector_tutorial_003.png 2023-07-13T14:53:10.1515873Z Finished upload of _images/sphx_glr_effector_tutorial_003.png 2023-07-13T14:53:10.1516648Z Starting upload of _images/sphx_glr_effector_tutorial_004.png 2023-07-13T14:53:10.2255223Z Finished upload of _images/sphx_glr_effector_tutorial_004.png 2023-07-13T14:53:10.2256022Z Starting upload of _images/sphx_glr_effector_tutorial_005.png 2023-07-13T14:53:10.3290111Z Finished upload of _images/sphx_glr_effector_tutorial_005.png 2023-07-13T14:53:10.3290945Z Starting upload of _images/sphx_glr_effector_tutorial_006.png 2023-07-13T14:53:10.4147399Z Finished upload of _images/sphx_glr_effector_tutorial_006.png 2023-07-13T14:53:10.4148200Z Starting upload of _images/sphx_glr_effector_tutorial_007.png 2023-07-13T14:53:10.5272465Z Finished upload of _images/sphx_glr_effector_tutorial_007.png 2023-07-13T14:53:10.5273243Z Starting upload of _images/sphx_glr_effector_tutorial_008.png 2023-07-13T14:53:10.6241300Z Finished upload of _images/sphx_glr_effector_tutorial_008.png 2023-07-13T14:53:10.6242050Z Starting upload of _images/sphx_glr_effector_tutorial_009.png 2023-07-13T14:53:10.7142638Z Finished upload of _images/sphx_glr_effector_tutorial_009.png 2023-07-13T14:53:10.7143892Z Starting upload of _images/sphx_glr_effector_tutorial_010.png 2023-07-13T14:53:10.7810044Z Finished upload of _images/sphx_glr_effector_tutorial_010.png 2023-07-13T14:53:10.7810906Z Starting upload of _images/sphx_glr_effector_tutorial_011.png 2023-07-13T14:53:10.8423171Z Finished upload of _images/sphx_glr_effector_tutorial_011.png 2023-07-13T14:53:10.8424673Z Starting upload of _images/sphx_glr_effector_tutorial_012.png 2023-07-13T14:53:10.9397720Z Finished upload of _images/sphx_glr_effector_tutorial_012.png 2023-07-13T14:53:10.9398816Z Starting upload of _images/sphx_glr_effector_tutorial_013.png 2023-07-13T14:53:11.0371443Z Finished upload of _images/sphx_glr_effector_tutorial_013.png 2023-07-13T14:53:11.0373447Z Starting upload of _images/sphx_glr_effector_tutorial_014.png 2023-07-13T14:53:11.1763993Z Finished upload of _images/sphx_glr_effector_tutorial_014.png 2023-07-13T14:53:11.1764672Z Starting upload of _images/sphx_glr_effector_tutorial_015.png 2023-07-13T14:53:11.2665721Z Finished upload of _images/sphx_glr_effector_tutorial_015.png 2023-07-13T14:53:11.2666646Z Starting upload of _images/sphx_glr_effector_tutorial_016.png 2023-07-13T14:53:11.3553423Z Finished upload of _images/sphx_glr_effector_tutorial_016.png 2023-07-13T14:53:11.3554168Z Starting upload of _images/sphx_glr_effector_tutorial_017.png 2023-07-13T14:53:11.4488004Z Finished upload of _images/sphx_glr_effector_tutorial_017.png 2023-07-13T14:53:11.4488627Z Starting upload of _images/sphx_glr_effector_tutorial_018.png 2023-07-13T14:53:11.5103634Z Finished upload of _images/sphx_glr_effector_tutorial_018.png 2023-07-13T14:53:11.5104269Z Starting upload of _images/sphx_glr_effector_tutorial_019.png 2023-07-13T14:53:11.6287638Z Finished upload of _images/sphx_glr_effector_tutorial_019.png 2023-07-13T14:53:11.6288827Z Starting upload of _images/sphx_glr_effector_tutorial_020.png 2023-07-13T14:53:11.7256832Z Finished upload of _images/sphx_glr_effector_tutorial_020.png 2023-07-13T14:53:11.7257653Z Starting upload of _images/sphx_glr_effector_tutorial_021.png 2023-07-13T14:53:11.9197330Z Finished upload of _images/sphx_glr_effector_tutorial_021.png 2023-07-13T14:53:11.9198293Z Starting upload of _images/sphx_glr_effector_tutorial_022.png 2023-07-13T14:53:12.0334654Z Finished upload of _images/sphx_glr_effector_tutorial_022.png 2023-07-13T14:53:12.0335496Z Starting upload of _images/sphx_glr_effector_tutorial_023.png 2023-07-13T14:53:12.2369798Z Finished upload of _images/sphx_glr_effector_tutorial_023.png 2023-07-13T14:53:12.2370746Z Starting upload of _images/sphx_glr_effector_tutorial_024.png 2023-07-13T14:53:12.3681918Z Finished upload of _images/sphx_glr_effector_tutorial_024.png 2023-07-13T14:53:12.3683509Z Starting upload of _images/sphx_glr_effector_tutorial_thumb.png 2023-07-13T14:53:12.5051201Z Finished upload of _images/sphx_glr_effector_tutorial_thumb.png 2023-07-13T14:53:12.5051914Z Starting upload of _images/sphx_glr_filter_design_tutorial_001.png 2023-07-13T14:53:12.5754281Z Finished upload of _images/sphx_glr_filter_design_tutorial_001.png 2023-07-13T14:53:12.5755167Z Starting upload of _images/sphx_glr_filter_design_tutorial_002.png 2023-07-13T14:53:12.6679455Z Finished upload of _images/sphx_glr_filter_design_tutorial_002.png 2023-07-13T14:53:12.6681165Z Starting upload of _images/sphx_glr_filter_design_tutorial_003.png 2023-07-13T14:53:12.7406460Z Finished upload of _images/sphx_glr_filter_design_tutorial_003.png 2023-07-13T14:53:12.7407267Z Starting upload of _images/sphx_glr_filter_design_tutorial_004.png 2023-07-13T14:53:12.8121451Z Finished upload of _images/sphx_glr_filter_design_tutorial_004.png 2023-07-13T14:53:12.8122538Z Starting upload of _images/sphx_glr_filter_design_tutorial_005.png 2023-07-13T14:53:12.8823815Z Finished upload of _images/sphx_glr_filter_design_tutorial_005.png 2023-07-13T14:53:12.8824509Z Starting upload of _images/sphx_glr_filter_design_tutorial_006.png 2023-07-13T14:53:13.0642265Z Finished upload of _images/sphx_glr_filter_design_tutorial_006.png 2023-07-13T14:53:13.0642961Z Starting upload of _images/sphx_glr_filter_design_tutorial_007.png 2023-07-13T14:53:13.1719939Z Finished upload of _images/sphx_glr_filter_design_tutorial_007.png 2023-07-13T14:53:13.1721352Z Starting upload of _images/sphx_glr_filter_design_tutorial_008.png 2023-07-13T14:53:13.2922868Z Finished upload of _images/sphx_glr_filter_design_tutorial_008.png 2023-07-13T14:53:13.2924184Z Starting upload of _images/sphx_glr_filter_design_tutorial_009.png 2023-07-13T14:53:13.4054637Z Finished upload of _images/sphx_glr_filter_design_tutorial_009.png 2023-07-13T14:53:13.4056319Z Starting upload of _images/sphx_glr_filter_design_tutorial_010.png 2023-07-13T14:53:13.4763835Z Finished upload of _images/sphx_glr_filter_design_tutorial_010.png 2023-07-13T14:53:13.4764798Z Starting upload of _images/sphx_glr_filter_design_tutorial_thumb.png 2023-07-13T14:53:13.5932143Z Finished upload of _images/sphx_glr_filter_design_tutorial_thumb.png 2023-07-13T14:53:13.5934763Z Starting upload of _images/sphx_glr_forced_alignment_for_multilingual_data_tutorial_001.png 2023-07-13T14:53:13.7328983Z Finished upload of _images/sphx_glr_forced_alignment_for_multilingual_data_tutorial_001.png 2023-07-13T14:53:13.7329830Z Starting upload of _images/sphx_glr_forced_alignment_for_multilingual_data_tutorial_002.png 2023-07-13T14:53:13.7970384Z Finished upload of _images/sphx_glr_forced_alignment_for_multilingual_data_tutorial_002.png 2023-07-13T14:53:13.7971138Z Starting upload of _images/sphx_glr_forced_alignment_for_multilingual_data_tutorial_003.png 2023-07-13T14:53:13.8727505Z Finished upload of _images/sphx_glr_forced_alignment_for_multilingual_data_tutorial_003.png 2023-07-13T14:53:13.8729033Z Starting upload of _images/sphx_glr_forced_alignment_for_multilingual_data_tutorial_004.png 2023-07-13T14:53:13.9701760Z Finished upload of _images/sphx_glr_forced_alignment_for_multilingual_data_tutorial_004.png 2023-07-13T14:53:13.9702712Z Starting upload of _images/sphx_glr_forced_alignment_for_multilingual_data_tutorial_005.png 2023-07-13T14:53:14.0789852Z Finished upload of _images/sphx_glr_forced_alignment_for_multilingual_data_tutorial_005.png 2023-07-13T14:53:14.0791203Z Starting upload of _images/sphx_glr_forced_alignment_for_multilingual_data_tutorial_thumb.png 2023-07-13T14:53:14.1450007Z Finished upload of _images/sphx_glr_forced_alignment_for_multilingual_data_tutorial_thumb.png 2023-07-13T14:53:14.1450869Z Starting upload of _images/sphx_glr_forced_alignment_tutorial_001.png 2023-07-13T14:53:14.2525940Z Finished upload of _images/sphx_glr_forced_alignment_tutorial_001.png 2023-07-13T14:53:14.2527134Z Starting upload of _images/sphx_glr_forced_alignment_tutorial_002.png 2023-07-13T14:53:14.3239586Z Finished upload of _images/sphx_glr_forced_alignment_tutorial_002.png 2023-07-13T14:53:14.3240975Z Starting upload of _images/sphx_glr_forced_alignment_tutorial_003.png 2023-07-13T14:53:14.4045090Z Finished upload of _images/sphx_glr_forced_alignment_tutorial_003.png 2023-07-13T14:53:14.4045774Z Starting upload of _images/sphx_glr_forced_alignment_tutorial_004.png 2023-07-13T14:53:14.5104494Z Finished upload of _images/sphx_glr_forced_alignment_tutorial_004.png 2023-07-13T14:53:14.5105537Z Starting upload of _images/sphx_glr_forced_alignment_tutorial_005.png 2023-07-13T14:53:14.6165283Z Finished upload of _images/sphx_glr_forced_alignment_tutorial_005.png 2023-07-13T14:53:14.6166325Z Starting upload of _images/sphx_glr_forced_alignment_tutorial_thumb.png 2023-07-13T14:53:14.7007580Z Finished upload of _images/sphx_glr_forced_alignment_tutorial_thumb.png 2023-07-13T14:53:14.7008388Z Starting upload of _images/sphx_glr_hybrid_demucs_tutorial_001.png 2023-07-13T14:53:14.7786165Z Finished upload of _images/sphx_glr_hybrid_demucs_tutorial_001.png 2023-07-13T14:53:14.7787005Z Starting upload of _images/sphx_glr_hybrid_demucs_tutorial_002.png 2023-07-13T14:53:14.9090010Z Finished upload of _images/sphx_glr_hybrid_demucs_tutorial_002.png 2023-07-13T14:53:14.9091041Z Starting upload of _images/sphx_glr_hybrid_demucs_tutorial_003.png 2023-07-13T14:53:15.0837217Z Finished upload of _images/sphx_glr_hybrid_demucs_tutorial_003.png 2023-07-13T14:53:15.0838009Z Starting upload of _images/sphx_glr_hybrid_demucs_tutorial_004.png 2023-07-13T14:53:15.2952947Z Finished upload of _images/sphx_glr_hybrid_demucs_tutorial_004.png 2023-07-13T14:53:15.2954334Z Starting upload of _images/sphx_glr_hybrid_demucs_tutorial_005.png 2023-07-13T14:53:15.4659379Z Finished upload of _images/sphx_glr_hybrid_demucs_tutorial_005.png 2023-07-13T14:53:15.4660865Z Starting upload of _images/sphx_glr_hybrid_demucs_tutorial_thumb.png 2023-07-13T14:53:15.5438411Z Finished upload of _images/sphx_glr_hybrid_demucs_tutorial_thumb.png 2023-07-13T14:53:15.5439385Z Starting upload of _images/sphx_glr_mvdr_tutorial_001.png 2023-07-13T14:53:15.6990480Z Finished upload of _images/sphx_glr_mvdr_tutorial_001.png 2023-07-13T14:53:15.6991303Z Starting upload of _images/sphx_glr_mvdr_tutorial_002.png 2023-07-13T14:53:15.8165851Z Finished upload of _images/sphx_glr_mvdr_tutorial_002.png 2023-07-13T14:53:15.8166636Z Starting upload of _images/sphx_glr_mvdr_tutorial_003.png 2023-07-13T14:53:16.0072529Z Finished upload of _images/sphx_glr_mvdr_tutorial_003.png 2023-07-13T14:53:16.0073268Z Starting upload of _images/sphx_glr_mvdr_tutorial_004.png 2023-07-13T14:53:16.1625988Z Finished upload of _images/sphx_glr_mvdr_tutorial_004.png 2023-07-13T14:53:16.1626817Z Starting upload of _images/sphx_glr_mvdr_tutorial_005.png 2023-07-13T14:53:16.2756104Z Finished upload of _images/sphx_glr_mvdr_tutorial_005.png 2023-07-13T14:53:16.2757313Z Starting upload of _images/sphx_glr_mvdr_tutorial_006.png 2023-07-13T14:53:16.4327313Z Finished upload of _images/sphx_glr_mvdr_tutorial_006.png 2023-07-13T14:53:16.4328161Z Starting upload of _images/sphx_glr_mvdr_tutorial_007.png 2023-07-13T14:53:16.5256945Z Finished upload of _images/sphx_glr_mvdr_tutorial_007.png 2023-07-13T14:53:16.5258227Z Starting upload of _images/sphx_glr_mvdr_tutorial_008.png 2023-07-13T14:53:16.6253649Z Finished upload of _images/sphx_glr_mvdr_tutorial_008.png 2023-07-13T14:53:16.6254592Z Starting upload of _images/sphx_glr_mvdr_tutorial_thumb.png 2023-07-13T14:53:16.7149714Z Finished upload of _images/sphx_glr_mvdr_tutorial_thumb.png 2023-07-13T14:53:16.7150636Z Starting upload of _images/sphx_glr_online_asr_tutorial_001.png 2023-07-13T14:53:16.9142402Z Finished upload of _images/sphx_glr_online_asr_tutorial_001.png 2023-07-13T14:53:16.9144139Z Starting upload of _images/sphx_glr_online_asr_tutorial_002.png 2023-07-13T14:53:17.0489875Z Finished upload of _images/sphx_glr_online_asr_tutorial_002.png 2023-07-13T14:53:17.0490847Z Starting upload of _images/sphx_glr_online_asr_tutorial_003.png 2023-07-13T14:53:17.1865006Z Finished upload of _images/sphx_glr_online_asr_tutorial_003.png 2023-07-13T14:53:17.1866307Z Starting upload of _images/sphx_glr_online_asr_tutorial_004.png 2023-07-13T14:53:17.3785575Z Finished upload of _images/sphx_glr_online_asr_tutorial_004.png 2023-07-13T14:53:17.3786529Z Starting upload of _images/sphx_glr_online_asr_tutorial_005.png 2023-07-13T14:53:17.4939960Z Finished upload of _images/sphx_glr_online_asr_tutorial_005.png 2023-07-13T14:53:17.4941315Z Starting upload of _images/sphx_glr_online_asr_tutorial_006.png 2023-07-13T14:53:17.6375136Z Finished upload of _images/sphx_glr_online_asr_tutorial_006.png 2023-07-13T14:53:17.6376037Z Starting upload of _images/sphx_glr_online_asr_tutorial_007.png 2023-07-13T14:53:17.7388525Z Finished upload of _images/sphx_glr_online_asr_tutorial_007.png 2023-07-13T14:53:17.7389766Z Starting upload of _images/sphx_glr_online_asr_tutorial_008.png 2023-07-13T14:53:17.8651193Z Finished upload of _images/sphx_glr_online_asr_tutorial_008.png 2023-07-13T14:53:17.8652872Z Starting upload of _images/sphx_glr_online_asr_tutorial_009.png 2023-07-13T14:53:17.9867813Z Finished upload of _images/sphx_glr_online_asr_tutorial_009.png 2023-07-13T14:53:17.9869055Z Starting upload of _images/sphx_glr_online_asr_tutorial_010.png 2023-07-13T14:53:18.1481503Z Finished upload of _images/sphx_glr_online_asr_tutorial_010.png 2023-07-13T14:53:18.1482301Z Starting upload of _images/sphx_glr_online_asr_tutorial_011.png 2023-07-13T14:53:18.3559795Z Finished upload of _images/sphx_glr_online_asr_tutorial_011.png 2023-07-13T14:53:18.3560858Z Starting upload of _images/sphx_glr_online_asr_tutorial_012.png 2023-07-13T14:53:18.4879051Z Finished upload of _images/sphx_glr_online_asr_tutorial_012.png 2023-07-13T14:53:18.4879784Z Starting upload of _images/sphx_glr_online_asr_tutorial_013.png 2023-07-13T14:53:18.7280562Z Finished upload of _images/sphx_glr_online_asr_tutorial_013.png 2023-07-13T14:53:18.7281303Z Starting upload of _images/sphx_glr_online_asr_tutorial_thumb.png 2023-07-13T14:53:18.8289015Z Finished upload of _images/sphx_glr_online_asr_tutorial_thumb.png 2023-07-13T14:53:18.8289628Z Starting upload of _images/sphx_glr_oscillator_tutorial_001.png 2023-07-13T14:53:18.9225583Z Finished upload of _images/sphx_glr_oscillator_tutorial_001.png 2023-07-13T14:53:18.9226585Z Starting upload of _images/sphx_glr_oscillator_tutorial_002.png 2023-07-13T14:53:19.0450847Z Finished upload of _images/sphx_glr_oscillator_tutorial_002.png 2023-07-13T14:53:19.0451554Z Starting upload of _images/sphx_glr_oscillator_tutorial_003.png 2023-07-13T14:53:19.1168593Z Finished upload of _images/sphx_glr_oscillator_tutorial_003.png 2023-07-13T14:53:19.1169285Z Starting upload of _images/sphx_glr_oscillator_tutorial_004.png 2023-07-13T14:53:19.3938086Z Finished upload of _images/sphx_glr_oscillator_tutorial_004.png 2023-07-13T14:53:19.3939258Z Starting upload of _images/sphx_glr_oscillator_tutorial_005.png 2023-07-13T14:53:19.5228791Z Finished upload of _images/sphx_glr_oscillator_tutorial_005.png 2023-07-13T14:53:19.5230688Z Starting upload of _images/sphx_glr_oscillator_tutorial_006.png 2023-07-13T14:53:19.6791435Z Finished upload of _images/sphx_glr_oscillator_tutorial_006.png 2023-07-13T14:53:19.6792895Z Starting upload of _images/sphx_glr_oscillator_tutorial_007.png 2023-07-13T14:53:19.8175091Z Finished upload of _images/sphx_glr_oscillator_tutorial_007.png 2023-07-13T14:53:19.8176094Z Starting upload of _images/sphx_glr_oscillator_tutorial_008.png 2023-07-13T14:53:19.9263704Z Finished upload of _images/sphx_glr_oscillator_tutorial_008.png 2023-07-13T14:53:19.9264850Z Starting upload of _images/sphx_glr_oscillator_tutorial_thumb.png 2023-07-13T14:53:20.0532083Z Finished upload of _images/sphx_glr_oscillator_tutorial_thumb.png 2023-07-13T14:53:20.0532808Z Starting upload of _images/sphx_glr_speech_recognition_pipeline_tutorial_001.png 2023-07-13T14:53:20.2262651Z Finished upload of _images/sphx_glr_speech_recognition_pipeline_tutorial_001.png 2023-07-13T14:53:20.2263630Z Starting upload of _images/sphx_glr_speech_recognition_pipeline_tutorial_002.png 2023-07-13T14:53:20.3009693Z Finished upload of _images/sphx_glr_speech_recognition_pipeline_tutorial_002.png 2023-07-13T14:53:20.3010837Z Starting upload of _images/sphx_glr_speech_recognition_pipeline_tutorial_thumb.png 2023-07-13T14:53:20.3928962Z Finished upload of _images/sphx_glr_speech_recognition_pipeline_tutorial_thumb.png 2023-07-13T14:53:20.3929900Z Starting upload of _images/sphx_glr_squim_tutorial_001.png 2023-07-13T14:53:20.5033775Z Finished upload of _images/sphx_glr_squim_tutorial_001.png 2023-07-13T14:53:20.5034760Z Starting upload of _images/sphx_glr_squim_tutorial_002.png 2023-07-13T14:53:20.6098228Z Finished upload of _images/sphx_glr_squim_tutorial_002.png 2023-07-13T14:53:20.6099221Z Starting upload of _images/sphx_glr_squim_tutorial_003.png 2023-07-13T14:53:20.7000064Z Finished upload of _images/sphx_glr_squim_tutorial_003.png 2023-07-13T14:53:20.7000777Z Starting upload of _images/sphx_glr_squim_tutorial_004.png 2023-07-13T14:53:20.7871265Z Finished upload of _images/sphx_glr_squim_tutorial_004.png 2023-07-13T14:53:20.7872369Z Starting upload of _images/sphx_glr_squim_tutorial_005.png 2023-07-13T14:53:20.8470108Z Finished upload of _images/sphx_glr_squim_tutorial_005.png 2023-07-13T14:53:20.8471022Z Starting upload of _images/sphx_glr_squim_tutorial_006.png 2023-07-13T14:53:20.9598516Z Finished upload of _images/sphx_glr_squim_tutorial_006.png 2023-07-13T14:53:20.9599670Z Starting upload of _images/sphx_glr_squim_tutorial_007.png 2023-07-13T14:53:21.0284293Z Finished upload of _images/sphx_glr_squim_tutorial_007.png 2023-07-13T14:53:21.0284983Z Starting upload of _images/sphx_glr_squim_tutorial_008.png 2023-07-13T14:53:21.1436871Z Finished upload of _images/sphx_glr_squim_tutorial_008.png 2023-07-13T14:53:21.1437978Z Starting upload of _images/sphx_glr_squim_tutorial_thumb.png 2023-07-13T14:53:21.2174549Z Finished upload of _images/sphx_glr_squim_tutorial_thumb.png 2023-07-13T14:53:21.2175327Z Starting upload of _images/sphx_glr_streamreader_advanced_tutorial_001.png 2023-07-13T14:53:21.2946843Z Finished upload of _images/sphx_glr_streamreader_advanced_tutorial_001.png 2023-07-13T14:53:21.2947784Z Starting upload of _images/sphx_glr_streamreader_advanced_tutorial_002.png 2023-07-13T14:53:21.4501555Z Finished upload of _images/sphx_glr_streamreader_advanced_tutorial_002.png 2023-07-13T14:53:21.4502179Z Starting upload of _images/sphx_glr_streamreader_advanced_tutorial_003.png 2023-07-13T14:53:21.6958350Z Finished upload of _images/sphx_glr_streamreader_advanced_tutorial_003.png 2023-07-13T14:53:21.6959143Z Starting upload of _images/sphx_glr_streamreader_advanced_tutorial_004.png 2023-07-13T14:53:21.8344602Z Finished upload of _images/sphx_glr_streamreader_advanced_tutorial_004.png 2023-07-13T14:53:21.8346031Z Starting upload of _images/sphx_glr_streamreader_advanced_tutorial_005.png 2023-07-13T14:53:21.9133633Z Finished upload of _images/sphx_glr_streamreader_advanced_tutorial_005.png 2023-07-13T14:53:21.9135027Z Starting upload of _images/sphx_glr_streamreader_advanced_tutorial_006.png 2023-07-13T14:53:22.0950543Z Finished upload of _images/sphx_glr_streamreader_advanced_tutorial_006.png 2023-07-13T14:53:22.0952414Z Starting upload of _images/sphx_glr_streamreader_advanced_tutorial_007.png 2023-07-13T14:53:22.1710159Z Finished upload of _images/sphx_glr_streamreader_advanced_tutorial_007.png 2023-07-13T14:53:22.1710938Z Starting upload of _images/sphx_glr_streamreader_advanced_tutorial_008.png 2023-07-13T14:53:22.3345691Z Finished upload of _images/sphx_glr_streamreader_advanced_tutorial_008.png 2023-07-13T14:53:22.3346575Z Starting upload of _images/sphx_glr_streamreader_advanced_tutorial_009.png 2023-07-13T14:53:22.4643502Z Finished upload of _images/sphx_glr_streamreader_advanced_tutorial_009.png 2023-07-13T14:53:22.4644276Z Starting upload of _images/sphx_glr_streamreader_advanced_tutorial_thumb.png 2023-07-13T14:53:22.5067342Z Finished upload of _images/sphx_glr_streamreader_advanced_tutorial_thumb.png 2023-07-13T14:53:22.5068319Z Starting upload of _images/sphx_glr_streamreader_basic_tutorial_001.png 2023-07-13T14:53:22.6853999Z Finished upload of _images/sphx_glr_streamreader_basic_tutorial_001.png 2023-07-13T14:53:22.6854900Z Starting upload of _images/sphx_glr_streamreader_basic_tutorial_thumb.png 2023-07-13T14:53:22.7687038Z Finished upload of _images/sphx_glr_streamreader_basic_tutorial_thumb.png 2023-07-13T14:53:22.7687801Z Starting upload of _images/sphx_glr_streamwriter_advanced_thumb.png 2023-07-13T14:53:22.8310122Z Finished upload of _images/sphx_glr_streamwriter_advanced_thumb.png 2023-07-13T14:53:22.8310725Z Starting upload of _images/sphx_glr_streamwriter_basic_tutorial_001.png 2023-07-13T14:53:22.9460577Z Finished upload of _images/sphx_glr_streamwriter_basic_tutorial_001.png 2023-07-13T14:53:22.9461812Z Starting upload of _images/sphx_glr_streamwriter_basic_tutorial_thumb.png 2023-07-13T14:53:23.1413050Z Finished upload of _images/sphx_glr_streamwriter_basic_tutorial_thumb.png 2023-07-13T14:53:23.1414649Z Starting upload of _images/sphx_glr_subtractive_synthesis_tutorial_001.png 2023-07-13T14:53:23.2988567Z Finished upload of _images/sphx_glr_subtractive_synthesis_tutorial_001.png 2023-07-13T14:53:23.2989419Z Starting upload of _images/sphx_glr_subtractive_synthesis_tutorial_002.png 2023-07-13T14:53:23.4210553Z Finished upload of _images/sphx_glr_subtractive_synthesis_tutorial_002.png 2023-07-13T14:53:23.4211426Z Starting upload of _images/sphx_glr_subtractive_synthesis_tutorial_003.png 2023-07-13T14:53:23.6250731Z Finished upload of _images/sphx_glr_subtractive_synthesis_tutorial_003.png 2023-07-13T14:53:23.6252330Z Starting upload of _images/sphx_glr_subtractive_synthesis_tutorial_004.png 2023-07-13T14:53:23.6894936Z Finished upload of _images/sphx_glr_subtractive_synthesis_tutorial_004.png 2023-07-13T14:53:23.6896856Z Starting upload of _images/sphx_glr_subtractive_synthesis_tutorial_005.png 2023-07-13T14:53:23.8440654Z Finished upload of _images/sphx_glr_subtractive_synthesis_tutorial_005.png 2023-07-13T14:53:23.8441483Z Starting upload of _images/sphx_glr_subtractive_synthesis_tutorial_006.png 2023-07-13T14:53:23.9766135Z Finished upload of _images/sphx_glr_subtractive_synthesis_tutorial_006.png 2023-07-13T14:53:23.9767083Z Starting upload of _images/sphx_glr_subtractive_synthesis_tutorial_007.png 2023-07-13T14:53:24.0735605Z Finished upload of _images/sphx_glr_subtractive_synthesis_tutorial_007.png 2023-07-13T14:53:24.0736349Z Starting upload of _images/sphx_glr_subtractive_synthesis_tutorial_thumb.png 2023-07-13T14:53:24.1364485Z Finished upload of _images/sphx_glr_subtractive_synthesis_tutorial_thumb.png 2023-07-13T14:53:24.1365413Z Starting upload of _images/sphx_glr_tacotron2_pipeline_tutorial_001.png 2023-07-13T14:53:24.2089163Z Finished upload of _images/sphx_glr_tacotron2_pipeline_tutorial_001.png 2023-07-13T14:53:24.2090088Z Starting upload of _images/sphx_glr_tacotron2_pipeline_tutorial_002.png 2023-07-13T14:53:24.3198819Z Finished upload of _images/sphx_glr_tacotron2_pipeline_tutorial_002.png 2023-07-13T14:53:24.3199768Z Starting upload of _images/sphx_glr_tacotron2_pipeline_tutorial_003.png 2023-07-13T14:53:24.3919310Z Finished upload of _images/sphx_glr_tacotron2_pipeline_tutorial_003.png 2023-07-13T14:53:24.3920239Z Starting upload of _images/sphx_glr_tacotron2_pipeline_tutorial_004.png 2023-07-13T14:53:24.4602102Z Finished upload of _images/sphx_glr_tacotron2_pipeline_tutorial_004.png 2023-07-13T14:53:24.4603111Z Starting upload of _images/sphx_glr_tacotron2_pipeline_tutorial_005.png 2023-07-13T14:53:24.5261159Z Finished upload of _images/sphx_glr_tacotron2_pipeline_tutorial_005.png 2023-07-13T14:53:24.5262075Z Starting upload of _images/sphx_glr_tacotron2_pipeline_tutorial_thumb.png 2023-07-13T14:53:24.5993745Z Finished upload of _images/sphx_glr_tacotron2_pipeline_tutorial_thumb.png 2023-07-13T14:53:24.5994753Z Starting upload of _modules/index.html 2023-07-13T14:53:24.6874521Z Finished upload of _modules/index.html 2023-07-13T14:53:24.6875088Z Starting upload of _modules/torchaudio/backend/common.html 2023-07-13T14:53:24.7927702Z Finished upload of _modules/torchaudio/backend/common.html 2023-07-13T14:53:24.7928322Z Starting upload of _modules/torchaudio/backend/soundfile_backend.html 2023-07-13T14:53:24.8780836Z Finished upload of _modules/torchaudio/backend/soundfile_backend.html 2023-07-13T14:53:24.8781447Z Starting upload of _modules/torchaudio/backend/sox_io_backend.html 2023-07-13T14:53:24.9624671Z Finished upload of _modules/torchaudio/backend/sox_io_backend.html 2023-07-13T14:53:24.9625484Z Starting upload of _modules/torchaudio/backend/utils.html 2023-07-13T14:53:25.0724240Z Finished upload of _modules/torchaudio/backend/utils.html 2023-07-13T14:53:25.0725934Z Starting upload of _modules/torchaudio/compliance/kaldi.html 2023-07-13T14:53:25.2155554Z Finished upload of _modules/torchaudio/compliance/kaldi.html 2023-07-13T14:53:25.2156416Z Starting upload of _modules/torchaudio/datasets/cmuarctic.html 2023-07-13T14:53:25.3017087Z Finished upload of _modules/torchaudio/datasets/cmuarctic.html 2023-07-13T14:53:25.3018956Z Starting upload of _modules/torchaudio/datasets/cmudict.html 2023-07-13T14:53:25.4306605Z Finished upload of _modules/torchaudio/datasets/cmudict.html 2023-07-13T14:53:25.4308321Z Starting upload of _modules/torchaudio/datasets/commonvoice.html 2023-07-13T14:53:25.5042215Z Finished upload of _modules/torchaudio/datasets/commonvoice.html 2023-07-13T14:53:25.5042806Z Starting upload of _modules/torchaudio/datasets/dr_vctk.html 2023-07-13T14:53:25.7034352Z Finished upload of _modules/torchaudio/datasets/dr_vctk.html 2023-07-13T14:53:25.7034960Z Starting upload of _modules/torchaudio/datasets/fluentcommands.html 2023-07-13T14:53:25.8053048Z Finished upload of _modules/torchaudio/datasets/fluentcommands.html 2023-07-13T14:53:25.8054320Z Starting upload of _modules/torchaudio/datasets/gtzan.html 2023-07-13T14:53:25.9951054Z Finished upload of _modules/torchaudio/datasets/gtzan.html 2023-07-13T14:53:25.9952046Z Starting upload of _modules/torchaudio/datasets/iemocap.html 2023-07-13T14:53:26.1240353Z Finished upload of _modules/torchaudio/datasets/iemocap.html 2023-07-13T14:53:26.1241227Z Starting upload of _modules/torchaudio/datasets/librilight_limited.html 2023-07-13T14:53:26.2173905Z Finished upload of _modules/torchaudio/datasets/librilight_limited.html 2023-07-13T14:53:26.2174562Z Starting upload of _modules/torchaudio/datasets/librimix.html 2023-07-13T14:53:26.3244719Z Finished upload of _modules/torchaudio/datasets/librimix.html 2023-07-13T14:53:26.3246708Z Starting upload of _modules/torchaudio/datasets/librispeech.html 2023-07-13T14:53:26.4210895Z Finished upload of _modules/torchaudio/datasets/librispeech.html 2023-07-13T14:53:26.4211859Z Starting upload of _modules/torchaudio/datasets/libritts.html 2023-07-13T14:53:26.5308358Z Finished upload of _modules/torchaudio/datasets/libritts.html 2023-07-13T14:53:26.5312232Z Starting upload of _modules/torchaudio/datasets/ljspeech.html 2023-07-13T14:53:26.6465016Z Finished upload of _modules/torchaudio/datasets/ljspeech.html 2023-07-13T14:53:26.6477152Z Starting upload of _modules/torchaudio/datasets/musdb_hq.html 2023-07-13T14:53:26.7655632Z Finished upload of _modules/torchaudio/datasets/musdb_hq.html 2023-07-13T14:53:26.7656908Z Starting upload of _modules/torchaudio/datasets/quesst14.html 2023-07-13T14:53:26.8723223Z Finished upload of _modules/torchaudio/datasets/quesst14.html 2023-07-13T14:53:26.8723896Z Starting upload of _modules/torchaudio/datasets/snips.html 2023-07-13T14:53:26.9745242Z Finished upload of _modules/torchaudio/datasets/snips.html 2023-07-13T14:53:26.9745841Z Starting upload of _modules/torchaudio/datasets/speechcommands.html 2023-07-13T14:53:27.1024944Z Finished upload of _modules/torchaudio/datasets/speechcommands.html 2023-07-13T14:53:27.1025565Z Starting upload of _modules/torchaudio/datasets/tedlium.html 2023-07-13T14:53:27.1773316Z Finished upload of _modules/torchaudio/datasets/tedlium.html 2023-07-13T14:53:27.1774037Z Starting upload of _modules/torchaudio/datasets/vctk.html 2023-07-13T14:53:27.3666049Z Finished upload of _modules/torchaudio/datasets/vctk.html 2023-07-13T14:53:27.3667747Z Starting upload of _modules/torchaudio/datasets/voxceleb1.html 2023-07-13T14:53:27.5365378Z Finished upload of _modules/torchaudio/datasets/voxceleb1.html 2023-07-13T14:53:27.5366460Z Starting upload of _modules/torchaudio/datasets/yesno.html 2023-07-13T14:53:27.7210147Z Finished upload of _modules/torchaudio/datasets/yesno.html 2023-07-13T14:53:27.7211140Z Starting upload of _modules/torchaudio/functional/filtering.html 2023-07-13T14:53:27.8611871Z Finished upload of _modules/torchaudio/functional/filtering.html 2023-07-13T14:53:27.8612681Z Starting upload of _modules/torchaudio/functional/functional.html 2023-07-13T14:53:28.0188674Z Finished upload of _modules/torchaudio/functional/functional.html 2023-07-13T14:53:28.0189442Z Starting upload of _modules/torchaudio/io/_effector.html 2023-07-13T14:53:28.1113882Z Finished upload of _modules/torchaudio/io/_effector.html 2023-07-13T14:53:28.1114873Z Starting upload of _modules/torchaudio/io/_playback.html 2023-07-13T14:53:28.2306000Z Finished upload of _modules/torchaudio/io/_playback.html 2023-07-13T14:53:28.2307053Z Starting upload of _modules/torchaudio/io/_stream_reader.html 2023-07-13T14:53:28.3668422Z Finished upload of _modules/torchaudio/io/_stream_reader.html 2023-07-13T14:53:28.3669409Z Starting upload of _modules/torchaudio/io/_stream_writer.html 2023-07-13T14:53:28.5619449Z Finished upload of _modules/torchaudio/io/_stream_writer.html 2023-07-13T14:53:28.5620531Z Starting upload of _modules/torchaudio/kaldi_io.html 2023-07-13T14:53:28.6849682Z Finished upload of _modules/torchaudio/kaldi_io.html 2023-07-13T14:53:28.6850825Z Starting upload of _modules/torchaudio/models/_hdemucs.html 2023-07-13T14:53:28.8509753Z Finished upload of _modules/torchaudio/models/_hdemucs.html 2023-07-13T14:53:28.8510539Z Starting upload of _modules/torchaudio/models/conformer.html 2023-07-13T14:53:28.9298904Z Finished upload of _modules/torchaudio/models/conformer.html 2023-07-13T14:53:28.9299675Z Starting upload of _modules/torchaudio/models/conv_tasnet.html 2023-07-13T14:53:29.0011123Z Finished upload of _modules/torchaudio/models/conv_tasnet.html 2023-07-13T14:53:29.0011956Z Starting upload of _modules/torchaudio/models/decoder/_ctc_decoder.html 2023-07-13T14:53:29.0603463Z Finished upload of _modules/torchaudio/models/decoder/_ctc_decoder.html 2023-07-13T14:53:29.0604278Z Starting upload of _modules/torchaudio/models/decoder/_cuda_ctc_decoder.html 2023-07-13T14:53:29.1893954Z Finished upload of _modules/torchaudio/models/decoder/_cuda_ctc_decoder.html 2023-07-13T14:53:29.1894640Z Starting upload of _modules/torchaudio/models/deepspeech.html 2023-07-13T14:53:29.3251716Z Finished upload of _modules/torchaudio/models/deepspeech.html 2023-07-13T14:53:29.3252909Z Starting upload of _modules/torchaudio/models/emformer.html 2023-07-13T14:53:29.4757639Z Finished upload of _modules/torchaudio/models/emformer.html 2023-07-13T14:53:29.4759332Z Starting upload of _modules/torchaudio/models/rnnt.html 2023-07-13T14:53:29.6210517Z Finished upload of _modules/torchaudio/models/rnnt.html 2023-07-13T14:53:29.6211097Z Starting upload of _modules/torchaudio/models/rnnt_decoder.html 2023-07-13T14:53:29.7211049Z Finished upload of _modules/torchaudio/models/rnnt_decoder.html 2023-07-13T14:53:29.7212192Z Starting upload of _modules/torchaudio/models/tacotron2.html 2023-07-13T14:53:29.8689247Z Finished upload of _modules/torchaudio/models/tacotron2.html 2023-07-13T14:53:29.8690030Z Starting upload of _modules/torchaudio/models/wav2letter.html 2023-07-13T14:53:29.9498142Z Finished upload of _modules/torchaudio/models/wav2letter.html 2023-07-13T14:53:29.9499307Z Starting upload of _modules/torchaudio/models/wav2vec2/model.html 2023-07-13T14:53:30.0839666Z Finished upload of _modules/torchaudio/models/wav2vec2/model.html 2023-07-13T14:53:30.0840424Z Starting upload of _modules/torchaudio/models/wav2vec2/utils/import_fairseq.html 2023-07-13T14:53:30.1528847Z Finished upload of _modules/torchaudio/models/wav2vec2/utils/import_fairseq.html 2023-07-13T14:53:30.1529605Z Starting upload of _modules/torchaudio/models/wav2vec2/utils/import_huggingface.html 2023-07-13T14:53:30.2574392Z Finished upload of _modules/torchaudio/models/wav2vec2/utils/import_huggingface.html 2023-07-13T14:53:30.2575141Z Starting upload of _modules/torchaudio/models/wavernn.html 2023-07-13T14:53:30.3859208Z Finished upload of _modules/torchaudio/models/wavernn.html 2023-07-13T14:53:30.3859967Z Starting upload of _modules/torchaudio/pipelines/_source_separation_pipeline.html 2023-07-13T14:53:30.4904109Z Finished upload of _modules/torchaudio/pipelines/_source_separation_pipeline.html 2023-07-13T14:53:30.4904976Z Starting upload of _modules/torchaudio/pipelines/_tts/interface.html 2023-07-13T14:53:30.6112215Z Finished upload of _modules/torchaudio/pipelines/_tts/interface.html 2023-07-13T14:53:30.6113195Z Starting upload of _modules/torchaudio/pipelines/_wav2vec2/impl.html 2023-07-13T14:53:30.7942178Z Finished upload of _modules/torchaudio/pipelines/_wav2vec2/impl.html 2023-07-13T14:53:30.7943270Z Starting upload of _modules/torchaudio/pipelines/rnnt_pipeline.html 2023-07-13T14:53:30.9894395Z Finished upload of _modules/torchaudio/pipelines/rnnt_pipeline.html 2023-07-13T14:53:30.9895883Z Starting upload of _modules/torchaudio/prototype/datasets/musan.html 2023-07-13T14:53:31.0818779Z Finished upload of _modules/torchaudio/prototype/datasets/musan.html 2023-07-13T14:53:31.0819600Z Starting upload of _modules/torchaudio/prototype/functional/_dsp.html 2023-07-13T14:53:31.2605339Z Finished upload of _modules/torchaudio/prototype/functional/_dsp.html 2023-07-13T14:53:31.2606086Z Starting upload of _modules/torchaudio/prototype/functional/_rir.html 2023-07-13T14:53:31.3760894Z Finished upload of _modules/torchaudio/prototype/functional/_rir.html 2023-07-13T14:53:31.3761695Z Starting upload of _modules/torchaudio/prototype/functional/functional.html 2023-07-13T14:53:31.5301268Z Finished upload of _modules/torchaudio/prototype/functional/functional.html 2023-07-13T14:53:31.5302176Z Starting upload of _modules/torchaudio/prototype/models/_conformer_wav2vec2.html 2023-07-13T14:53:31.6693645Z Finished upload of _modules/torchaudio/prototype/models/_conformer_wav2vec2.html 2023-07-13T14:53:31.6694468Z Starting upload of _modules/torchaudio/prototype/models/_emformer_hubert.html 2023-07-13T14:53:31.7508418Z Finished upload of _modules/torchaudio/prototype/models/_emformer_hubert.html 2023-07-13T14:53:31.7509978Z Starting upload of _modules/torchaudio/prototype/models/conv_emformer.html 2023-07-13T14:53:31.8634398Z Finished upload of _modules/torchaudio/prototype/models/conv_emformer.html 2023-07-13T14:53:31.8635189Z Starting upload of _modules/torchaudio/prototype/models/hifi_gan.html 2023-07-13T14:53:31.9532819Z Finished upload of _modules/torchaudio/prototype/models/hifi_gan.html 2023-07-13T14:53:31.9533665Z Starting upload of _modules/torchaudio/prototype/models/rnnt.html 2023-07-13T14:53:32.0222771Z Finished upload of _modules/torchaudio/prototype/models/rnnt.html 2023-07-13T14:53:32.0224488Z Starting upload of _modules/torchaudio/prototype/models/squim/objective.html 2023-07-13T14:53:32.1351765Z Finished upload of _modules/torchaudio/prototype/models/squim/objective.html 2023-07-13T14:53:32.1352672Z Starting upload of _modules/torchaudio/prototype/models/squim/subjective.html 2023-07-13T14:53:32.2309941Z Finished upload of _modules/torchaudio/prototype/models/squim/subjective.html 2023-07-13T14:53:32.2310893Z Starting upload of _modules/torchaudio/prototype/pipelines/hifigan_pipeline.html 2023-07-13T14:53:32.3312953Z Finished upload of _modules/torchaudio/prototype/pipelines/hifigan_pipeline.html 2023-07-13T14:53:32.3313604Z Starting upload of _modules/torchaudio/prototype/pipelines/squim_pipeline.html 2023-07-13T14:53:32.4524648Z Finished upload of _modules/torchaudio/prototype/pipelines/squim_pipeline.html 2023-07-13T14:53:32.4525557Z Starting upload of _modules/torchaudio/prototype/transforms/_transforms.html 2023-07-13T14:53:32.6620965Z Finished upload of _modules/torchaudio/prototype/transforms/_transforms.html 2023-07-13T14:53:32.6621689Z Starting upload of _modules/torchaudio/sox_effects/sox_effects.html 2023-07-13T14:53:32.8074286Z Finished upload of _modules/torchaudio/sox_effects/sox_effects.html 2023-07-13T14:53:32.8075529Z Starting upload of _modules/torchaudio/transforms/_multi_channel.html 2023-07-13T14:53:32.8736363Z Finished upload of _modules/torchaudio/transforms/_multi_channel.html 2023-07-13T14:53:32.8737492Z Starting upload of _modules/torchaudio/transforms/_transforms.html 2023-07-13T14:53:33.0275064Z Finished upload of _modules/torchaudio/transforms/_transforms.html 2023-07-13T14:53:33.0275754Z Starting upload of _modules/torchaudio/utils/ffmpeg_utils.html 2023-07-13T14:53:33.1633263Z Finished upload of _modules/torchaudio/utils/ffmpeg_utils.html 2023-07-13T14:53:33.1633916Z Starting upload of _modules/torchaudio/utils/sox_utils.html 2023-07-13T14:53:33.2334890Z Finished upload of _modules/torchaudio/utils/sox_utils.html 2023-07-13T14:53:33.2336075Z Starting upload of _sources/backend.rst.txt 2023-07-13T14:53:33.2874788Z Finished upload of _sources/backend.rst.txt 2023-07-13T14:53:33.2897553Z Starting upload of _sources/build.ffmpeg.rst.txt 2023-07-13T14:53:33.3812296Z Finished upload of _sources/build.ffmpeg.rst.txt 2023-07-13T14:53:33.3813448Z Starting upload of _sources/build.jetson.rst.txt 2023-07-13T14:53:33.4155294Z Finished upload of _sources/build.jetson.rst.txt 2023-07-13T14:53:33.4155877Z Starting upload of _sources/build.linux.rst.txt 2023-07-13T14:53:33.5059516Z Finished upload of _sources/build.linux.rst.txt 2023-07-13T14:53:33.5060514Z Starting upload of _sources/build.rst.txt 2023-07-13T14:53:33.5740862Z Finished upload of _sources/build.rst.txt 2023-07-13T14:53:33.5742196Z Starting upload of _sources/build.windows.rst.txt 2023-07-13T14:53:33.6561874Z Finished upload of _sources/build.windows.rst.txt 2023-07-13T14:53:33.6562721Z Starting upload of _sources/compliance.kaldi.rst.txt 2023-07-13T14:53:33.7268205Z Finished upload of _sources/compliance.kaldi.rst.txt 2023-07-13T14:53:33.7269096Z Starting upload of _sources/datasets.rst.txt 2023-07-13T14:53:33.7858201Z Finished upload of _sources/datasets.rst.txt 2023-07-13T14:53:33.7859505Z Starting upload of _sources/feature_classifications.rst.txt 2023-07-13T14:53:33.8590591Z Finished upload of _sources/feature_classifications.rst.txt 2023-07-13T14:53:33.8591401Z Starting upload of _sources/functional.rst.txt 2023-07-13T14:53:33.8987522Z Finished upload of _sources/functional.rst.txt 2023-07-13T14:53:33.8988417Z Starting upload of _sources/generated/torchaudio.compliance.kaldi.fbank.rst.txt 2023-07-13T14:53:33.9512963Z Finished upload of _sources/generated/torchaudio.compliance.kaldi.fbank.rst.txt 2023-07-13T14:53:33.9513855Z Starting upload of _sources/generated/torchaudio.compliance.kaldi.mfcc.rst.txt 2023-07-13T14:53:34.0120065Z Finished upload of _sources/generated/torchaudio.compliance.kaldi.mfcc.rst.txt 2023-07-13T14:53:34.0121425Z Starting upload of _sources/generated/torchaudio.compliance.kaldi.spectrogram.rst.txt 2023-07-13T14:53:34.0602351Z Finished upload of _sources/generated/torchaudio.compliance.kaldi.spectrogram.rst.txt 2023-07-13T14:53:34.0603289Z Starting upload of _sources/generated/torchaudio.datasets.CMUARCTIC.rst.txt 2023-07-13T14:53:34.1176286Z Finished upload of _sources/generated/torchaudio.datasets.CMUARCTIC.rst.txt 2023-07-13T14:53:34.1177207Z Starting upload of _sources/generated/torchaudio.datasets.CMUDict.rst.txt 2023-07-13T14:53:34.1754782Z Finished upload of _sources/generated/torchaudio.datasets.CMUDict.rst.txt 2023-07-13T14:53:34.1755628Z Starting upload of _sources/generated/torchaudio.datasets.COMMONVOICE.rst.txt 2023-07-13T14:53:34.2424350Z Finished upload of _sources/generated/torchaudio.datasets.COMMONVOICE.rst.txt 2023-07-13T14:53:34.2425881Z Starting upload of _sources/generated/torchaudio.datasets.DR_VCTK.rst.txt 2023-07-13T14:53:34.3428366Z Finished upload of _sources/generated/torchaudio.datasets.DR_VCTK.rst.txt 2023-07-13T14:53:34.3430040Z Starting upload of _sources/generated/torchaudio.datasets.FluentSpeechCommands.rst.txt 2023-07-13T14:53:34.4442629Z Finished upload of _sources/generated/torchaudio.datasets.FluentSpeechCommands.rst.txt 2023-07-13T14:53:34.4443477Z Starting upload of _sources/generated/torchaudio.datasets.GTZAN.rst.txt 2023-07-13T14:53:34.5082219Z Finished upload of _sources/generated/torchaudio.datasets.GTZAN.rst.txt 2023-07-13T14:53:34.5083065Z Starting upload of _sources/generated/torchaudio.datasets.IEMOCAP.rst.txt 2023-07-13T14:53:34.5970773Z Finished upload of _sources/generated/torchaudio.datasets.IEMOCAP.rst.txt 2023-07-13T14:53:34.5971659Z Starting upload of _sources/generated/torchaudio.datasets.LIBRISPEECH.rst.txt 2023-07-13T14:53:34.7345723Z Finished upload of _sources/generated/torchaudio.datasets.LIBRISPEECH.rst.txt 2023-07-13T14:53:34.7346549Z Starting upload of _sources/generated/torchaudio.datasets.LIBRITTS.rst.txt 2023-07-13T14:53:34.7949781Z Finished upload of _sources/generated/torchaudio.datasets.LIBRITTS.rst.txt 2023-07-13T14:53:34.7951520Z Starting upload of _sources/generated/torchaudio.datasets.LJSPEECH.rst.txt 2023-07-13T14:53:34.8532998Z Finished upload of _sources/generated/torchaudio.datasets.LJSPEECH.rst.txt 2023-07-13T14:53:34.8534690Z Starting upload of _sources/generated/torchaudio.datasets.LibriLightLimited.rst.txt 2023-07-13T14:53:34.9098777Z Finished upload of _sources/generated/torchaudio.datasets.LibriLightLimited.rst.txt 2023-07-13T14:53:34.9100379Z Starting upload of _sources/generated/torchaudio.datasets.LibriMix.rst.txt 2023-07-13T14:53:35.0227469Z Finished upload of _sources/generated/torchaudio.datasets.LibriMix.rst.txt 2023-07-13T14:53:35.0228283Z Starting upload of _sources/generated/torchaudio.datasets.MUSDB_HQ.rst.txt 2023-07-13T14:53:35.1034275Z Finished upload of _sources/generated/torchaudio.datasets.MUSDB_HQ.rst.txt 2023-07-13T14:53:35.1035128Z Starting upload of _sources/generated/torchaudio.datasets.QUESST14.rst.txt 2023-07-13T14:53:35.1598580Z Finished upload of _sources/generated/torchaudio.datasets.QUESST14.rst.txt 2023-07-13T14:53:35.1599451Z Starting upload of _sources/generated/torchaudio.datasets.SPEECHCOMMANDS.rst.txt 2023-07-13T14:53:35.2272791Z Finished upload of _sources/generated/torchaudio.datasets.SPEECHCOMMANDS.rst.txt 2023-07-13T14:53:35.2274416Z Starting upload of _sources/generated/torchaudio.datasets.Snips.rst.txt 2023-07-13T14:53:35.2854195Z Finished upload of _sources/generated/torchaudio.datasets.Snips.rst.txt 2023-07-13T14:53:35.2855760Z Starting upload of _sources/generated/torchaudio.datasets.TEDLIUM.rst.txt 2023-07-13T14:53:35.3499694Z Finished upload of _sources/generated/torchaudio.datasets.TEDLIUM.rst.txt 2023-07-13T14:53:35.3501140Z Starting upload of _sources/generated/torchaudio.datasets.VCTK_092.rst.txt 2023-07-13T14:53:35.4060529Z Finished upload of _sources/generated/torchaudio.datasets.VCTK_092.rst.txt 2023-07-13T14:53:35.4062046Z Starting upload of _sources/generated/torchaudio.datasets.VoxCeleb1Identification.rst.txt 2023-07-13T14:53:35.4578322Z Finished upload of _sources/generated/torchaudio.datasets.VoxCeleb1Identification.rst.txt 2023-07-13T14:53:35.4579292Z Starting upload of _sources/generated/torchaudio.datasets.VoxCeleb1Verification.rst.txt 2023-07-13T14:53:35.4922971Z Finished upload of _sources/generated/torchaudio.datasets.VoxCeleb1Verification.rst.txt 2023-07-13T14:53:35.4923806Z Starting upload of _sources/generated/torchaudio.datasets.YESNO.rst.txt 2023-07-13T14:53:35.5615465Z Finished upload of _sources/generated/torchaudio.datasets.YESNO.rst.txt 2023-07-13T14:53:35.5616398Z Starting upload of _sources/generated/torchaudio.functional.DB_to_amplitude.rst.txt 2023-07-13T14:53:35.6369382Z Finished upload of _sources/generated/torchaudio.functional.DB_to_amplitude.rst.txt 2023-07-13T14:53:35.6370283Z Starting upload of _sources/generated/torchaudio.functional.add_noise.rst.txt 2023-07-13T14:53:35.6722047Z Finished upload of _sources/generated/torchaudio.functional.add_noise.rst.txt 2023-07-13T14:53:35.6722956Z Starting upload of _sources/generated/torchaudio.functional.allpass_biquad.rst.txt 2023-07-13T14:53:35.7310409Z Finished upload of _sources/generated/torchaudio.functional.allpass_biquad.rst.txt 2023-07-13T14:53:35.7311264Z Starting upload of _sources/generated/torchaudio.functional.amplitude_to_DB.rst.txt 2023-07-13T14:53:35.7743938Z Finished upload of _sources/generated/torchaudio.functional.amplitude_to_DB.rst.txt 2023-07-13T14:53:35.7745558Z Starting upload of _sources/generated/torchaudio.functional.apply_beamforming.rst.txt 2023-07-13T14:53:35.8209106Z Finished upload of _sources/generated/torchaudio.functional.apply_beamforming.rst.txt 2023-07-13T14:53:35.8210734Z Starting upload of _sources/generated/torchaudio.functional.apply_codec.rst.txt 2023-07-13T14:53:35.8535442Z Finished upload of _sources/generated/torchaudio.functional.apply_codec.rst.txt 2023-07-13T14:53:35.8536334Z Starting upload of _sources/generated/torchaudio.functional.band_biquad.rst.txt 2023-07-13T14:53:35.9138962Z Finished upload of _sources/generated/torchaudio.functional.band_biquad.rst.txt 2023-07-13T14:53:35.9140984Z Starting upload of _sources/generated/torchaudio.functional.bandpass_biquad.rst.txt 2023-07-13T14:53:35.9715955Z Finished upload of _sources/generated/torchaudio.functional.bandpass_biquad.rst.txt 2023-07-13T14:53:35.9716869Z Starting upload of _sources/generated/torchaudio.functional.bandreject_biquad.rst.txt 2023-07-13T14:53:36.0217821Z Finished upload of _sources/generated/torchaudio.functional.bandreject_biquad.rst.txt 2023-07-13T14:53:36.0219625Z Starting upload of _sources/generated/torchaudio.functional.bass_biquad.rst.txt 2023-07-13T14:53:36.0684831Z Finished upload of _sources/generated/torchaudio.functional.bass_biquad.rst.txt 2023-07-13T14:53:36.0685712Z Starting upload of _sources/generated/torchaudio.functional.biquad.rst.txt 2023-07-13T14:53:36.1585446Z Finished upload of _sources/generated/torchaudio.functional.biquad.rst.txt 2023-07-13T14:53:36.1586576Z Starting upload of _sources/generated/torchaudio.functional.compute_deltas.rst.txt 2023-07-13T14:53:36.1878509Z Finished upload of _sources/generated/torchaudio.functional.compute_deltas.rst.txt 2023-07-13T14:53:36.1880560Z Starting upload of _sources/generated/torchaudio.functional.contrast.rst.txt 2023-07-13T14:53:36.2278950Z Finished upload of _sources/generated/torchaudio.functional.contrast.rst.txt 2023-07-13T14:53:36.2279747Z Starting upload of _sources/generated/torchaudio.functional.convolve.rst.txt 2023-07-13T14:53:36.2662451Z Finished upload of _sources/generated/torchaudio.functional.convolve.rst.txt 2023-07-13T14:53:36.2663232Z Starting upload of _sources/generated/torchaudio.functional.create_dct.rst.txt 2023-07-13T14:53:36.3213333Z Finished upload of _sources/generated/torchaudio.functional.create_dct.rst.txt 2023-07-13T14:53:36.3214587Z Starting upload of _sources/generated/torchaudio.functional.dcshift.rst.txt 2023-07-13T14:53:36.3864678Z Finished upload of _sources/generated/torchaudio.functional.dcshift.rst.txt 2023-07-13T14:53:36.3866259Z Starting upload of _sources/generated/torchaudio.functional.deemph_biquad.rst.txt 2023-07-13T14:53:36.4431012Z Finished upload of _sources/generated/torchaudio.functional.deemph_biquad.rst.txt 2023-07-13T14:53:36.4432252Z Starting upload of _sources/generated/torchaudio.functional.deemphasis.rst.txt 2023-07-13T14:53:36.5063365Z Finished upload of _sources/generated/torchaudio.functional.deemphasis.rst.txt 2023-07-13T14:53:36.5064638Z Starting upload of _sources/generated/torchaudio.functional.detect_pitch_frequency.rst.txt 2023-07-13T14:53:36.5586076Z Finished upload of _sources/generated/torchaudio.functional.detect_pitch_frequency.rst.txt 2023-07-13T14:53:36.5587651Z Starting upload of _sources/generated/torchaudio.functional.dither.rst.txt 2023-07-13T14:53:36.6335763Z Finished upload of _sources/generated/torchaudio.functional.dither.rst.txt 2023-07-13T14:53:36.6337063Z Starting upload of _sources/generated/torchaudio.functional.edit_distance.rst.txt 2023-07-13T14:53:36.6627133Z Finished upload of _sources/generated/torchaudio.functional.edit_distance.rst.txt 2023-07-13T14:53:36.6628070Z Starting upload of _sources/generated/torchaudio.functional.equalizer_biquad.rst.txt 2023-07-13T14:53:36.7160592Z Finished upload of _sources/generated/torchaudio.functional.equalizer_biquad.rst.txt 2023-07-13T14:53:36.7161510Z Starting upload of _sources/generated/torchaudio.functional.fftconvolve.rst.txt 2023-07-13T14:53:36.7659337Z Finished upload of _sources/generated/torchaudio.functional.fftconvolve.rst.txt 2023-07-13T14:53:36.7660199Z Starting upload of _sources/generated/torchaudio.functional.filtfilt.rst.txt 2023-07-13T14:53:36.8264430Z Finished upload of _sources/generated/torchaudio.functional.filtfilt.rst.txt 2023-07-13T14:53:36.8265260Z Starting upload of _sources/generated/torchaudio.functional.flanger.rst.txt 2023-07-13T14:53:36.8603415Z Finished upload of _sources/generated/torchaudio.functional.flanger.rst.txt 2023-07-13T14:53:36.8604480Z Starting upload of _sources/generated/torchaudio.functional.forced_align.rst.txt 2023-07-13T14:53:36.9160659Z Finished upload of _sources/generated/torchaudio.functional.forced_align.rst.txt 2023-07-13T14:53:36.9161346Z Starting upload of _sources/generated/torchaudio.functional.gain.rst.txt 2023-07-13T14:53:36.9923654Z Finished upload of _sources/generated/torchaudio.functional.gain.rst.txt 2023-07-13T14:53:36.9924310Z Starting upload of _sources/generated/torchaudio.functional.griffinlim.rst.txt 2023-07-13T14:53:37.0272570Z Finished upload of _sources/generated/torchaudio.functional.griffinlim.rst.txt 2023-07-13T14:53:37.0273317Z Starting upload of _sources/generated/torchaudio.functional.highpass_biquad.rst.txt 2023-07-13T14:53:37.0983179Z Finished upload of _sources/generated/torchaudio.functional.highpass_biquad.rst.txt 2023-07-13T14:53:37.0984083Z Starting upload of _sources/generated/torchaudio.functional.inverse_spectrogram.rst.txt 2023-07-13T14:53:37.1709058Z Finished upload of _sources/generated/torchaudio.functional.inverse_spectrogram.rst.txt 2023-07-13T14:53:37.1709863Z Starting upload of _sources/generated/torchaudio.functional.lfilter.rst.txt 2023-07-13T14:53:37.2649724Z Finished upload of _sources/generated/torchaudio.functional.lfilter.rst.txt 2023-07-13T14:53:37.2651211Z Starting upload of _sources/generated/torchaudio.functional.linear_fbanks.rst.txt 2023-07-13T14:53:37.3277541Z Finished upload of _sources/generated/torchaudio.functional.linear_fbanks.rst.txt 2023-07-13T14:53:37.3278994Z Starting upload of _sources/generated/torchaudio.functional.loudness.rst.txt 2023-07-13T14:53:37.4292282Z Finished upload of _sources/generated/torchaudio.functional.loudness.rst.txt 2023-07-13T14:53:37.4293009Z Starting upload of _sources/generated/torchaudio.functional.lowpass_biquad.rst.txt 2023-07-13T14:53:37.4880769Z Finished upload of _sources/generated/torchaudio.functional.lowpass_biquad.rst.txt 2023-07-13T14:53:37.4881573Z Starting upload of _sources/generated/torchaudio.functional.mask_along_axis.rst.txt 2023-07-13T14:53:37.5413956Z Finished upload of _sources/generated/torchaudio.functional.mask_along_axis.rst.txt 2023-07-13T14:53:37.5414670Z Starting upload of _sources/generated/torchaudio.functional.mask_along_axis_iid.rst.txt 2023-07-13T14:53:37.5975262Z Finished upload of _sources/generated/torchaudio.functional.mask_along_axis_iid.rst.txt 2023-07-13T14:53:37.5975921Z Starting upload of _sources/generated/torchaudio.functional.melscale_fbanks.rst.txt 2023-07-13T14:53:37.6474115Z Finished upload of _sources/generated/torchaudio.functional.melscale_fbanks.rst.txt 2023-07-13T14:53:37.6475510Z Starting upload of _sources/generated/torchaudio.functional.mu_law_decoding.rst.txt 2023-07-13T14:53:37.7073601Z Finished upload of _sources/generated/torchaudio.functional.mu_law_decoding.rst.txt 2023-07-13T14:53:37.7074249Z Starting upload of _sources/generated/torchaudio.functional.mu_law_encoding.rst.txt 2023-07-13T14:53:37.7669460Z Finished upload of _sources/generated/torchaudio.functional.mu_law_encoding.rst.txt 2023-07-13T14:53:37.7670109Z Starting upload of _sources/generated/torchaudio.functional.mvdr_weights_rtf.rst.txt 2023-07-13T14:53:37.8161871Z Finished upload of _sources/generated/torchaudio.functional.mvdr_weights_rtf.rst.txt 2023-07-13T14:53:37.8162524Z Starting upload of _sources/generated/torchaudio.functional.mvdr_weights_souden.rst.txt 2023-07-13T14:53:37.8867665Z Finished upload of _sources/generated/torchaudio.functional.mvdr_weights_souden.rst.txt 2023-07-13T14:53:37.8868951Z Starting upload of _sources/generated/torchaudio.functional.overdrive.rst.txt 2023-07-13T14:53:37.9465982Z Finished upload of _sources/generated/torchaudio.functional.overdrive.rst.txt 2023-07-13T14:53:37.9467407Z Starting upload of _sources/generated/torchaudio.functional.phase_vocoder.rst.txt 2023-07-13T14:53:38.0030651Z Finished upload of _sources/generated/torchaudio.functional.phase_vocoder.rst.txt 2023-07-13T14:53:38.0032382Z Starting upload of _sources/generated/torchaudio.functional.phaser.rst.txt 2023-07-13T14:53:38.0542710Z Finished upload of _sources/generated/torchaudio.functional.phaser.rst.txt 2023-07-13T14:53:38.0543743Z Starting upload of _sources/generated/torchaudio.functional.pitch_shift.rst.txt 2023-07-13T14:53:38.1075254Z Finished upload of _sources/generated/torchaudio.functional.pitch_shift.rst.txt 2023-07-13T14:53:38.1076597Z Starting upload of _sources/generated/torchaudio.functional.preemphasis.rst.txt 2023-07-13T14:53:38.1644956Z Finished upload of _sources/generated/torchaudio.functional.preemphasis.rst.txt 2023-07-13T14:53:38.1645667Z Starting upload of _sources/generated/torchaudio.functional.psd.rst.txt 2023-07-13T14:53:38.2250892Z Finished upload of _sources/generated/torchaudio.functional.psd.rst.txt 2023-07-13T14:53:38.2251610Z Starting upload of _sources/generated/torchaudio.functional.resample.rst.txt 2023-07-13T14:53:38.2855513Z Finished upload of _sources/generated/torchaudio.functional.resample.rst.txt 2023-07-13T14:53:38.2856228Z Starting upload of _sources/generated/torchaudio.functional.riaa_biquad.rst.txt 2023-07-13T14:53:38.3399338Z Finished upload of _sources/generated/torchaudio.functional.riaa_biquad.rst.txt 2023-07-13T14:53:38.3400005Z Starting upload of _sources/generated/torchaudio.functional.rnnt_loss.rst.txt 2023-07-13T14:53:38.3881275Z Finished upload of _sources/generated/torchaudio.functional.rnnt_loss.rst.txt 2023-07-13T14:53:38.3882048Z Starting upload of _sources/generated/torchaudio.functional.rtf_evd.rst.txt 2023-07-13T14:53:38.4406947Z Finished upload of _sources/generated/torchaudio.functional.rtf_evd.rst.txt 2023-07-13T14:53:38.4407680Z Starting upload of _sources/generated/torchaudio.functional.rtf_power.rst.txt 2023-07-13T14:53:38.4898313Z Finished upload of _sources/generated/torchaudio.functional.rtf_power.rst.txt 2023-07-13T14:53:38.4899103Z Starting upload of _sources/generated/torchaudio.functional.sliding_window_cmn.rst.txt 2023-07-13T14:53:38.6082531Z Finished upload of _sources/generated/torchaudio.functional.sliding_window_cmn.rst.txt 2023-07-13T14:53:38.6083397Z Starting upload of _sources/generated/torchaudio.functional.spectral_centroid.rst.txt 2023-07-13T14:53:38.6669570Z Finished upload of _sources/generated/torchaudio.functional.spectral_centroid.rst.txt 2023-07-13T14:53:38.6671138Z Starting upload of _sources/generated/torchaudio.functional.spectrogram.rst.txt 2023-07-13T14:53:38.7228273Z Finished upload of _sources/generated/torchaudio.functional.spectrogram.rst.txt 2023-07-13T14:53:38.7229180Z Starting upload of _sources/generated/torchaudio.functional.speed.rst.txt 2023-07-13T14:53:38.7797177Z Finished upload of _sources/generated/torchaudio.functional.speed.rst.txt 2023-07-13T14:53:38.7798631Z Starting upload of _sources/generated/torchaudio.functional.treble_biquad.rst.txt 2023-07-13T14:53:38.8577712Z Finished upload of _sources/generated/torchaudio.functional.treble_biquad.rst.txt 2023-07-13T14:53:38.8578809Z Starting upload of _sources/generated/torchaudio.functional.vad.rst.txt 2023-07-13T14:53:38.9075501Z Finished upload of _sources/generated/torchaudio.functional.vad.rst.txt 2023-07-13T14:53:38.9076160Z Starting upload of _sources/generated/torchaudio.io.AudioEffector.rst.txt 2023-07-13T14:53:38.9641388Z Finished upload of _sources/generated/torchaudio.io.AudioEffector.rst.txt 2023-07-13T14:53:38.9642779Z Starting upload of _sources/generated/torchaudio.io.StreamReader.rst.txt 2023-07-13T14:53:39.0264439Z Finished upload of _sources/generated/torchaudio.io.StreamReader.rst.txt 2023-07-13T14:53:39.0265345Z Starting upload of _sources/generated/torchaudio.io.StreamWriter.rst.txt 2023-07-13T14:53:39.0949080Z Finished upload of _sources/generated/torchaudio.io.StreamWriter.rst.txt 2023-07-13T14:53:39.0950380Z Starting upload of _sources/generated/torchaudio.io.play_audio.rst.txt 2023-07-13T14:53:39.1481082Z Finished upload of _sources/generated/torchaudio.io.play_audio.rst.txt 2023-07-13T14:53:39.1482248Z Starting upload of _sources/generated/torchaudio.models.Conformer.rst.txt 2023-07-13T14:53:39.2490505Z Finished upload of _sources/generated/torchaudio.models.Conformer.rst.txt 2023-07-13T14:53:39.2491175Z Starting upload of _sources/generated/torchaudio.models.ConvTasNet.rst.txt 2023-07-13T14:53:39.2972139Z Finished upload of _sources/generated/torchaudio.models.ConvTasNet.rst.txt 2023-07-13T14:53:39.2972797Z Starting upload of _sources/generated/torchaudio.models.DeepSpeech.rst.txt 2023-07-13T14:53:39.3711859Z Finished upload of _sources/generated/torchaudio.models.DeepSpeech.rst.txt 2023-07-13T14:53:39.3712961Z Starting upload of _sources/generated/torchaudio.models.Emformer.rst.txt 2023-07-13T14:53:39.4319551Z Finished upload of _sources/generated/torchaudio.models.Emformer.rst.txt 2023-07-13T14:53:39.4320222Z Starting upload of _sources/generated/torchaudio.models.HDemucs.rst.txt 2023-07-13T14:53:39.4922585Z Finished upload of _sources/generated/torchaudio.models.HDemucs.rst.txt 2023-07-13T14:53:39.4923375Z Starting upload of _sources/generated/torchaudio.models.HuBERTPretrainModel.rst.txt 2023-07-13T14:53:39.5945020Z Finished upload of _sources/generated/torchaudio.models.HuBERTPretrainModel.rst.txt 2023-07-13T14:53:39.5945802Z Starting upload of _sources/generated/torchaudio.models.RNNT.rst.txt 2023-07-13T14:53:39.6530753Z Finished upload of _sources/generated/torchaudio.models.RNNT.rst.txt 2023-07-13T14:53:39.6531497Z Starting upload of _sources/generated/torchaudio.models.RNNTBeamSearch.rst.txt 2023-07-13T14:53:39.7119535Z Finished upload of _sources/generated/torchaudio.models.RNNTBeamSearch.rst.txt 2023-07-13T14:53:39.7120914Z Starting upload of _sources/generated/torchaudio.models.Tacotron2.rst.txt 2023-07-13T14:53:39.7797869Z Finished upload of _sources/generated/torchaudio.models.Tacotron2.rst.txt 2023-07-13T14:53:39.7799402Z Starting upload of _sources/generated/torchaudio.models.Wav2Letter.rst.txt 2023-07-13T14:53:39.8299688Z Finished upload of _sources/generated/torchaudio.models.Wav2Letter.rst.txt 2023-07-13T14:53:39.8302024Z Starting upload of _sources/generated/torchaudio.models.Wav2Vec2Model.rst.txt 2023-07-13T14:53:39.9308629Z Finished upload of _sources/generated/torchaudio.models.Wav2Vec2Model.rst.txt 2023-07-13T14:53:39.9310328Z Starting upload of _sources/generated/torchaudio.models.WaveRNN.rst.txt 2023-07-13T14:53:39.9912552Z Finished upload of _sources/generated/torchaudio.models.WaveRNN.rst.txt 2023-07-13T14:53:39.9913687Z Starting upload of _sources/generated/torchaudio.models.conv_tasnet_base.rst.txt 2023-07-13T14:53:40.0436108Z Finished upload of _sources/generated/torchaudio.models.conv_tasnet_base.rst.txt 2023-07-13T14:53:40.0437280Z Starting upload of _sources/generated/torchaudio.models.decoder.CTCDecoder.rst.txt 2023-07-13T14:53:40.1091933Z Finished upload of _sources/generated/torchaudio.models.decoder.CTCDecoder.rst.txt 2023-07-13T14:53:40.1093180Z Starting upload of _sources/generated/torchaudio.models.decoder.CUCTCDecoder.rst.txt 2023-07-13T14:53:40.1801618Z Finished upload of _sources/generated/torchaudio.models.decoder.CUCTCDecoder.rst.txt 2023-07-13T14:53:40.1803082Z Starting upload of _sources/generated/torchaudio.models.decoder.ctc_decoder.rst.txt 2023-07-13T14:53:40.2339516Z Finished upload of _sources/generated/torchaudio.models.decoder.ctc_decoder.rst.txt 2023-07-13T14:53:40.2340197Z Starting upload of _sources/generated/torchaudio.models.decoder.cuda_ctc_decoder.rst.txt 2023-07-13T14:53:40.3436898Z Finished upload of _sources/generated/torchaudio.models.decoder.cuda_ctc_decoder.rst.txt 2023-07-13T14:53:40.3437588Z Starting upload of _sources/generated/torchaudio.models.decoder.download_pretrained_files.rst.txt 2023-07-13T14:53:40.4186081Z Finished upload of _sources/generated/torchaudio.models.decoder.download_pretrained_files.rst.txt 2023-07-13T14:53:40.4186745Z Starting upload of _sources/generated/torchaudio.models.emformer_rnnt_base.rst.txt 2023-07-13T14:53:40.4778798Z Finished upload of _sources/generated/torchaudio.models.emformer_rnnt_base.rst.txt 2023-07-13T14:53:40.4779438Z Starting upload of _sources/generated/torchaudio.models.emformer_rnnt_model.rst.txt 2023-07-13T14:53:40.5308396Z Finished upload of _sources/generated/torchaudio.models.emformer_rnnt_model.rst.txt 2023-07-13T14:53:40.5309966Z Starting upload of _sources/generated/torchaudio.models.hdemucs_high.rst.txt 2023-07-13T14:53:40.5817678Z Finished upload of _sources/generated/torchaudio.models.hdemucs_high.rst.txt 2023-07-13T14:53:40.5818325Z Starting upload of _sources/generated/torchaudio.models.hdemucs_low.rst.txt 2023-07-13T14:53:40.6158342Z Finished upload of _sources/generated/torchaudio.models.hdemucs_low.rst.txt 2023-07-13T14:53:40.6158959Z Starting upload of _sources/generated/torchaudio.models.hdemucs_medium.rst.txt 2023-07-13T14:53:40.6457632Z Finished upload of _sources/generated/torchaudio.models.hdemucs_medium.rst.txt 2023-07-13T14:53:40.6458238Z Starting upload of _sources/generated/torchaudio.models.hubert_base.rst.txt 2023-07-13T14:53:40.6941810Z Finished upload of _sources/generated/torchaudio.models.hubert_base.rst.txt 2023-07-13T14:53:40.6942433Z Starting upload of _sources/generated/torchaudio.models.hubert_large.rst.txt 2023-07-13T14:53:40.7495946Z Finished upload of _sources/generated/torchaudio.models.hubert_large.rst.txt 2023-07-13T14:53:40.7497387Z Starting upload of _sources/generated/torchaudio.models.hubert_pretrain_base.rst.txt 2023-07-13T14:53:40.8049940Z Finished upload of _sources/generated/torchaudio.models.hubert_pretrain_base.rst.txt 2023-07-13T14:53:40.8050985Z Starting upload of _sources/generated/torchaudio.models.hubert_pretrain_large.rst.txt 2023-07-13T14:53:40.8774963Z Finished upload of _sources/generated/torchaudio.models.hubert_pretrain_large.rst.txt 2023-07-13T14:53:40.8776832Z Starting upload of _sources/generated/torchaudio.models.hubert_pretrain_model.rst.txt 2023-07-13T14:53:40.9317160Z Finished upload of _sources/generated/torchaudio.models.hubert_pretrain_model.rst.txt 2023-07-13T14:53:40.9317969Z Starting upload of _sources/generated/torchaudio.models.hubert_pretrain_xlarge.rst.txt 2023-07-13T14:53:40.9909894Z Finished upload of _sources/generated/torchaudio.models.hubert_pretrain_xlarge.rst.txt 2023-07-13T14:53:40.9911016Z Starting upload of _sources/generated/torchaudio.models.hubert_xlarge.rst.txt 2023-07-13T14:53:41.0871466Z Finished upload of _sources/generated/torchaudio.models.hubert_xlarge.rst.txt 2023-07-13T14:53:41.0872404Z Starting upload of _sources/generated/torchaudio.models.wav2vec2.utils.import_fairseq_model.rst.txt 2023-07-13T14:53:41.2055172Z Finished upload of _sources/generated/torchaudio.models.wav2vec2.utils.import_fairseq_model.rst.txt 2023-07-13T14:53:41.2056186Z Starting upload of _sources/generated/torchaudio.models.wav2vec2.utils.import_huggingface_model.rst.txt 2023-07-13T14:53:41.2634656Z Finished upload of _sources/generated/torchaudio.models.wav2vec2.utils.import_huggingface_model.rst.txt 2023-07-13T14:53:41.2635506Z Starting upload of _sources/generated/torchaudio.models.wav2vec2_base.rst.txt 2023-07-13T14:53:41.3235043Z Finished upload of _sources/generated/torchaudio.models.wav2vec2_base.rst.txt 2023-07-13T14:53:41.3235750Z Starting upload of _sources/generated/torchaudio.models.wav2vec2_large.rst.txt 2023-07-13T14:53:41.3677566Z Finished upload of _sources/generated/torchaudio.models.wav2vec2_large.rst.txt 2023-07-13T14:53:41.3678518Z Starting upload of _sources/generated/torchaudio.models.wav2vec2_large_lv60k.rst.txt 2023-07-13T14:53:41.4261939Z Finished upload of _sources/generated/torchaudio.models.wav2vec2_large_lv60k.rst.txt 2023-07-13T14:53:41.4262600Z Starting upload of _sources/generated/torchaudio.models.wav2vec2_model.rst.txt 2023-07-13T14:53:41.4828993Z Finished upload of _sources/generated/torchaudio.models.wav2vec2_model.rst.txt 2023-07-13T14:53:41.4830313Z Starting upload of _sources/generated/torchaudio.models.wav2vec2_xlsr_1b.rst.txt 2023-07-13T14:53:41.5344239Z Finished upload of _sources/generated/torchaudio.models.wav2vec2_xlsr_1b.rst.txt 2023-07-13T14:53:41.5344977Z Starting upload of _sources/generated/torchaudio.models.wav2vec2_xlsr_2b.rst.txt 2023-07-13T14:53:41.5910615Z Finished upload of _sources/generated/torchaudio.models.wav2vec2_xlsr_2b.rst.txt 2023-07-13T14:53:41.5911311Z Starting upload of _sources/generated/torchaudio.models.wav2vec2_xlsr_300m.rst.txt 2023-07-13T14:53:41.6421812Z Finished upload of _sources/generated/torchaudio.models.wav2vec2_xlsr_300m.rst.txt 2023-07-13T14:53:41.6423067Z Starting upload of _sources/generated/torchaudio.models.wavlm_base.rst.txt 2023-07-13T14:53:41.6969873Z Finished upload of _sources/generated/torchaudio.models.wavlm_base.rst.txt 2023-07-13T14:53:41.6970594Z Starting upload of _sources/generated/torchaudio.models.wavlm_large.rst.txt 2023-07-13T14:53:41.7323089Z Finished upload of _sources/generated/torchaudio.models.wavlm_large.rst.txt 2023-07-13T14:53:41.7324019Z Starting upload of _sources/generated/torchaudio.models.wavlm_model.rst.txt 2023-07-13T14:53:41.7875046Z Finished upload of _sources/generated/torchaudio.models.wavlm_model.rst.txt 2023-07-13T14:53:41.7875833Z Starting upload of _sources/generated/torchaudio.pipelines.CONVTASNET_BASE_LIBRI2MIX.rst.txt 2023-07-13T14:53:41.8484986Z Finished upload of _sources/generated/torchaudio.pipelines.CONVTASNET_BASE_LIBRI2MIX.rst.txt 2023-07-13T14:53:41.8485743Z Starting upload of _sources/generated/torchaudio.pipelines.EMFORMER_RNNT_BASE_LIBRISPEECH.rst.txt 2023-07-13T14:53:41.9128028Z Finished upload of _sources/generated/torchaudio.pipelines.EMFORMER_RNNT_BASE_LIBRISPEECH.rst.txt 2023-07-13T14:53:41.9128829Z Starting upload of _sources/generated/torchaudio.pipelines.HDEMUCS_HIGH_MUSDB.rst.txt 2023-07-13T14:53:41.9887702Z Finished upload of _sources/generated/torchaudio.pipelines.HDEMUCS_HIGH_MUSDB.rst.txt 2023-07-13T14:53:41.9888396Z Starting upload of _sources/generated/torchaudio.pipelines.HDEMUCS_HIGH_MUSDB_PLUS.rst.txt 2023-07-13T14:53:42.0253324Z Finished upload of _sources/generated/torchaudio.pipelines.HDEMUCS_HIGH_MUSDB_PLUS.rst.txt 2023-07-13T14:53:42.0254441Z Starting upload of _sources/generated/torchaudio.pipelines.HUBERT_ASR_LARGE.rst.txt 2023-07-13T14:53:42.1002509Z Finished upload of _sources/generated/torchaudio.pipelines.HUBERT_ASR_LARGE.rst.txt 2023-07-13T14:53:42.1004089Z Starting upload of _sources/generated/torchaudio.pipelines.HUBERT_ASR_XLARGE.rst.txt 2023-07-13T14:53:42.1684205Z Finished upload of _sources/generated/torchaudio.pipelines.HUBERT_ASR_XLARGE.rst.txt 2023-07-13T14:53:42.1685244Z Starting upload of _sources/generated/torchaudio.pipelines.HUBERT_BASE.rst.txt 2023-07-13T14:53:42.2063765Z Finished upload of _sources/generated/torchaudio.pipelines.HUBERT_BASE.rst.txt 2023-07-13T14:53:42.2064937Z Starting upload of _sources/generated/torchaudio.pipelines.HUBERT_LARGE.rst.txt 2023-07-13T14:53:42.2925171Z Finished upload of _sources/generated/torchaudio.pipelines.HUBERT_LARGE.rst.txt 2023-07-13T14:53:42.2926551Z Starting upload of _sources/generated/torchaudio.pipelines.HUBERT_XLARGE.rst.txt 2023-07-13T14:53:42.3633471Z Finished upload of _sources/generated/torchaudio.pipelines.HUBERT_XLARGE.rst.txt 2023-07-13T14:53:42.3634700Z Starting upload of _sources/generated/torchaudio.pipelines.RNNTBundle.FeatureExtractor.rst.txt 2023-07-13T14:53:42.4283019Z Finished upload of _sources/generated/torchaudio.pipelines.RNNTBundle.FeatureExtractor.rst.txt 2023-07-13T14:53:42.4284471Z Starting upload of _sources/generated/torchaudio.pipelines.RNNTBundle.TokenProcessor.rst.txt 2023-07-13T14:53:42.5494712Z Finished upload of _sources/generated/torchaudio.pipelines.RNNTBundle.TokenProcessor.rst.txt 2023-07-13T14:53:42.5496026Z Starting upload of _sources/generated/torchaudio.pipelines.RNNTBundle.rst.txt 2023-07-13T14:53:42.6048905Z Finished upload of _sources/generated/torchaudio.pipelines.RNNTBundle.rst.txt 2023-07-13T14:53:42.6050200Z Starting upload of _sources/generated/torchaudio.pipelines.SourceSeparationBundle.rst.txt 2023-07-13T14:53:42.6609510Z Finished upload of _sources/generated/torchaudio.pipelines.SourceSeparationBundle.rst.txt 2023-07-13T14:53:42.6610860Z Starting upload of _sources/generated/torchaudio.pipelines.TACOTRON2_GRIFFINLIM_CHAR_LJSPEECH.rst.txt 2023-07-13T14:53:42.7299412Z Finished upload of _sources/generated/torchaudio.pipelines.TACOTRON2_GRIFFINLIM_CHAR_LJSPEECH.rst.txt 2023-07-13T14:53:42.7300856Z Starting upload of _sources/generated/torchaudio.pipelines.TACOTRON2_GRIFFINLIM_PHONE_LJSPEECH.rst.txt 2023-07-13T14:53:42.7931299Z Finished upload of _sources/generated/torchaudio.pipelines.TACOTRON2_GRIFFINLIM_PHONE_LJSPEECH.rst.txt 2023-07-13T14:53:42.7932514Z Starting upload of _sources/generated/torchaudio.pipelines.TACOTRON2_WAVERNN_CHAR_LJSPEECH.rst.txt 2023-07-13T14:53:42.8376305Z Finished upload of _sources/generated/torchaudio.pipelines.TACOTRON2_WAVERNN_CHAR_LJSPEECH.rst.txt 2023-07-13T14:53:42.8377471Z Starting upload of _sources/generated/torchaudio.pipelines.TACOTRON2_WAVERNN_PHONE_LJSPEECH.rst.txt 2023-07-13T14:53:42.9326268Z Finished upload of _sources/generated/torchaudio.pipelines.TACOTRON2_WAVERNN_PHONE_LJSPEECH.rst.txt 2023-07-13T14:53:42.9327591Z Starting upload of _sources/generated/torchaudio.pipelines.Tacotron2TTSBundle.TextProcessor.rst.txt 2023-07-13T14:53:42.9984666Z Finished upload of _sources/generated/torchaudio.pipelines.Tacotron2TTSBundle.TextProcessor.rst.txt 2023-07-13T14:53:42.9986261Z Starting upload of _sources/generated/torchaudio.pipelines.Tacotron2TTSBundle.Vocoder.rst.txt 2023-07-13T14:53:43.0653319Z Finished upload of _sources/generated/torchaudio.pipelines.Tacotron2TTSBundle.Vocoder.rst.txt 2023-07-13T14:53:43.0654566Z Starting upload of _sources/generated/torchaudio.pipelines.Tacotron2TTSBundle.rst.txt 2023-07-13T14:53:43.1265899Z Finished upload of _sources/generated/torchaudio.pipelines.Tacotron2TTSBundle.rst.txt 2023-07-13T14:53:43.1267399Z Starting upload of _sources/generated/torchaudio.pipelines.VOXPOPULI_ASR_BASE_10K_DE.rst.txt 2023-07-13T14:53:43.1774976Z Finished upload of _sources/generated/torchaudio.pipelines.VOXPOPULI_ASR_BASE_10K_DE.rst.txt 2023-07-13T14:53:43.1776096Z Starting upload of _sources/generated/torchaudio.pipelines.VOXPOPULI_ASR_BASE_10K_EN.rst.txt 2023-07-13T14:53:43.2734225Z Finished upload of _sources/generated/torchaudio.pipelines.VOXPOPULI_ASR_BASE_10K_EN.rst.txt 2023-07-13T14:53:43.2735205Z Starting upload of _sources/generated/torchaudio.pipelines.VOXPOPULI_ASR_BASE_10K_ES.rst.txt 2023-07-13T14:53:43.3893132Z Finished upload of _sources/generated/torchaudio.pipelines.VOXPOPULI_ASR_BASE_10K_ES.rst.txt 2023-07-13T14:53:43.3894285Z Starting upload of _sources/generated/torchaudio.pipelines.VOXPOPULI_ASR_BASE_10K_FR.rst.txt 2023-07-13T14:53:43.4519883Z Finished upload of _sources/generated/torchaudio.pipelines.VOXPOPULI_ASR_BASE_10K_FR.rst.txt 2023-07-13T14:53:43.4522204Z Starting upload of _sources/generated/torchaudio.pipelines.VOXPOPULI_ASR_BASE_10K_IT.rst.txt 2023-07-13T14:53:43.5274442Z Finished upload of _sources/generated/torchaudio.pipelines.VOXPOPULI_ASR_BASE_10K_IT.rst.txt 2023-07-13T14:53:43.5275697Z Starting upload of _sources/generated/torchaudio.pipelines.WAV2VEC2_ASR_BASE_100H.rst.txt 2023-07-13T14:53:43.5980411Z Finished upload of _sources/generated/torchaudio.pipelines.WAV2VEC2_ASR_BASE_100H.rst.txt 2023-07-13T14:53:43.5981594Z Starting upload of _sources/generated/torchaudio.pipelines.WAV2VEC2_ASR_BASE_10M.rst.txt 2023-07-13T14:53:43.6610790Z Finished upload of _sources/generated/torchaudio.pipelines.WAV2VEC2_ASR_BASE_10M.rst.txt 2023-07-13T14:53:43.6611867Z Starting upload of _sources/generated/torchaudio.pipelines.WAV2VEC2_ASR_BASE_960H.rst.txt 2023-07-13T14:53:43.6954486Z Finished upload of _sources/generated/torchaudio.pipelines.WAV2VEC2_ASR_BASE_960H.rst.txt 2023-07-13T14:53:43.6955758Z Starting upload of _sources/generated/torchaudio.pipelines.WAV2VEC2_ASR_LARGE_100H.rst.txt 2023-07-13T14:53:43.7842314Z Finished upload of _sources/generated/torchaudio.pipelines.WAV2VEC2_ASR_LARGE_100H.rst.txt 2023-07-13T14:53:43.7843064Z Starting upload of _sources/generated/torchaudio.pipelines.WAV2VEC2_ASR_LARGE_10M.rst.txt 2023-07-13T14:53:43.8483302Z Finished upload of _sources/generated/torchaudio.pipelines.WAV2VEC2_ASR_LARGE_10M.rst.txt 2023-07-13T14:53:43.8484414Z Starting upload of _sources/generated/torchaudio.pipelines.WAV2VEC2_ASR_LARGE_960H.rst.txt 2023-07-13T14:53:43.9493943Z Finished upload of _sources/generated/torchaudio.pipelines.WAV2VEC2_ASR_LARGE_960H.rst.txt 2023-07-13T14:53:43.9495506Z Starting upload of _sources/generated/torchaudio.pipelines.WAV2VEC2_ASR_LARGE_LV60K_100H.rst.txt 2023-07-13T14:53:43.9828394Z Finished upload of _sources/generated/torchaudio.pipelines.WAV2VEC2_ASR_LARGE_LV60K_100H.rst.txt 2023-07-13T14:53:43.9829405Z Starting upload of _sources/generated/torchaudio.pipelines.WAV2VEC2_ASR_LARGE_LV60K_10M.rst.txt 2023-07-13T14:53:44.0522042Z Finished upload of _sources/generated/torchaudio.pipelines.WAV2VEC2_ASR_LARGE_LV60K_10M.rst.txt 2023-07-13T14:53:44.0523508Z Starting upload of _sources/generated/torchaudio.pipelines.WAV2VEC2_ASR_LARGE_LV60K_960H.rst.txt 2023-07-13T14:53:44.1292649Z Finished upload of _sources/generated/torchaudio.pipelines.WAV2VEC2_ASR_LARGE_LV60K_960H.rst.txt 2023-07-13T14:53:44.1293454Z Starting upload of _sources/generated/torchaudio.pipelines.WAV2VEC2_BASE.rst.txt 2023-07-13T14:53:44.1970072Z Finished upload of _sources/generated/torchaudio.pipelines.WAV2VEC2_BASE.rst.txt 2023-07-13T14:53:44.1970862Z Starting upload of _sources/generated/torchaudio.pipelines.WAV2VEC2_LARGE.rst.txt 2023-07-13T14:53:44.2787572Z Finished upload of _sources/generated/torchaudio.pipelines.WAV2VEC2_LARGE.rst.txt 2023-07-13T14:53:44.2788788Z Starting upload of _sources/generated/torchaudio.pipelines.WAV2VEC2_LARGE_LV60K.rst.txt 2023-07-13T14:53:44.3422885Z Finished upload of _sources/generated/torchaudio.pipelines.WAV2VEC2_LARGE_LV60K.rst.txt 2023-07-13T14:53:44.3423521Z Starting upload of _sources/generated/torchaudio.pipelines.WAV2VEC2_XLSR53.rst.txt 2023-07-13T14:53:44.3852122Z Finished upload of _sources/generated/torchaudio.pipelines.WAV2VEC2_XLSR53.rst.txt 2023-07-13T14:53:44.3852761Z Starting upload of _sources/generated/torchaudio.pipelines.WAV2VEC2_XLSR_1B.rst.txt 2023-07-13T14:53:44.4990300Z Finished upload of _sources/generated/torchaudio.pipelines.WAV2VEC2_XLSR_1B.rst.txt 2023-07-13T14:53:44.4990963Z Starting upload of _sources/generated/torchaudio.pipelines.WAV2VEC2_XLSR_2B.rst.txt 2023-07-13T14:53:44.5564383Z Finished upload of _sources/generated/torchaudio.pipelines.WAV2VEC2_XLSR_2B.rst.txt 2023-07-13T14:53:44.5565343Z Starting upload of _sources/generated/torchaudio.pipelines.WAV2VEC2_XLSR_300M.rst.txt 2023-07-13T14:53:44.6455559Z Finished upload of _sources/generated/torchaudio.pipelines.WAV2VEC2_XLSR_300M.rst.txt 2023-07-13T14:53:44.6456323Z Starting upload of _sources/generated/torchaudio.pipelines.WAVLM_BASE.rst.txt 2023-07-13T14:53:44.7418969Z Finished upload of _sources/generated/torchaudio.pipelines.WAVLM_BASE.rst.txt 2023-07-13T14:53:44.7419857Z Starting upload of _sources/generated/torchaudio.pipelines.WAVLM_BASE_PLUS.rst.txt 2023-07-13T14:53:44.8044922Z Finished upload of _sources/generated/torchaudio.pipelines.WAVLM_BASE_PLUS.rst.txt 2023-07-13T14:53:44.8045760Z Starting upload of _sources/generated/torchaudio.pipelines.WAVLM_LARGE.rst.txt 2023-07-13T14:53:44.8813903Z Finished upload of _sources/generated/torchaudio.pipelines.WAVLM_LARGE.rst.txt 2023-07-13T14:53:44.8815144Z Starting upload of _sources/generated/torchaudio.pipelines.Wav2Vec2ASRBundle.rst.txt 2023-07-13T14:53:44.9755266Z Finished upload of _sources/generated/torchaudio.pipelines.Wav2Vec2ASRBundle.rst.txt 2023-07-13T14:53:44.9756280Z Starting upload of _sources/generated/torchaudio.pipelines.Wav2Vec2Bundle.rst.txt 2023-07-13T14:53:45.0512549Z Finished upload of _sources/generated/torchaudio.pipelines.Wav2Vec2Bundle.rst.txt 2023-07-13T14:53:45.0514227Z Starting upload of _sources/generated/torchaudio.prototype.datasets.Musan.rst.txt 2023-07-13T14:53:45.1052043Z Finished upload of _sources/generated/torchaudio.prototype.datasets.Musan.rst.txt 2023-07-13T14:53:45.1053726Z Starting upload of _sources/generated/torchaudio.prototype.functional.adsr_envelope.rst.txt 2023-07-13T14:53:45.2133662Z Finished upload of _sources/generated/torchaudio.prototype.functional.adsr_envelope.rst.txt 2023-07-13T14:53:45.2135063Z Starting upload of _sources/generated/torchaudio.prototype.functional.barkscale_fbanks.rst.txt 2023-07-13T14:53:45.3111508Z Finished upload of _sources/generated/torchaudio.prototype.functional.barkscale_fbanks.rst.txt 2023-07-13T14:53:45.3112845Z Starting upload of _sources/generated/torchaudio.prototype.functional.chroma_filterbank.rst.txt 2023-07-13T14:53:45.3945804Z Finished upload of _sources/generated/torchaudio.prototype.functional.chroma_filterbank.rst.txt 2023-07-13T14:53:45.3947526Z Starting upload of _sources/generated/torchaudio.prototype.functional.extend_pitch.rst.txt 2023-07-13T14:53:45.4949924Z Finished upload of _sources/generated/torchaudio.prototype.functional.extend_pitch.rst.txt 2023-07-13T14:53:45.4950805Z Starting upload of _sources/generated/torchaudio.prototype.functional.filter_waveform.rst.txt 2023-07-13T14:53:45.5478365Z Finished upload of _sources/generated/torchaudio.prototype.functional.filter_waveform.rst.txt 2023-07-13T14:53:45.5479284Z Starting upload of _sources/generated/torchaudio.prototype.functional.frequency_impulse_response.rst.txt 2023-07-13T14:53:45.5963159Z Finished upload of _sources/generated/torchaudio.prototype.functional.frequency_impulse_response.rst.txt 2023-07-13T14:53:45.5964166Z Starting upload of _sources/generated/torchaudio.prototype.functional.oscillator_bank.rst.txt 2023-07-13T14:53:45.6751495Z Finished upload of _sources/generated/torchaudio.prototype.functional.oscillator_bank.rst.txt 2023-07-13T14:53:45.6753416Z Starting upload of _sources/generated/torchaudio.prototype.functional.simulate_rir_ism.rst.txt 2023-07-13T14:53:45.7273171Z Finished upload of _sources/generated/torchaudio.prototype.functional.simulate_rir_ism.rst.txt 2023-07-13T14:53:45.7274104Z Starting upload of _sources/generated/torchaudio.prototype.functional.sinc_impulse_response.rst.txt 2023-07-13T14:53:45.7637249Z Finished upload of _sources/generated/torchaudio.prototype.functional.sinc_impulse_response.rst.txt 2023-07-13T14:53:45.7638441Z Starting upload of _sources/generated/torchaudio.prototype.models.ConformerWav2Vec2PretrainModel.rst.txt 2023-07-13T14:53:45.8084401Z Finished upload of _sources/generated/torchaudio.prototype.models.ConformerWav2Vec2PretrainModel.rst.txt 2023-07-13T14:53:45.8085801Z Starting upload of _sources/generated/torchaudio.prototype.models.ConvEmformer.rst.txt 2023-07-13T14:53:45.8754530Z Finished upload of _sources/generated/torchaudio.prototype.models.ConvEmformer.rst.txt 2023-07-13T14:53:45.8755923Z Starting upload of _sources/generated/torchaudio.prototype.models.HiFiGANVocoder.rst.txt 2023-07-13T14:53:45.9402107Z Finished upload of _sources/generated/torchaudio.prototype.models.HiFiGANVocoder.rst.txt 2023-07-13T14:53:45.9403420Z Starting upload of _sources/generated/torchaudio.prototype.models.SquimObjective.rst.txt 2023-07-13T14:53:45.9983123Z Finished upload of _sources/generated/torchaudio.prototype.models.SquimObjective.rst.txt 2023-07-13T14:53:45.9985104Z Starting upload of _sources/generated/torchaudio.prototype.models.SquimSubjective.rst.txt 2023-07-13T14:53:46.0714353Z Finished upload of _sources/generated/torchaudio.prototype.models.SquimSubjective.rst.txt 2023-07-13T14:53:46.0715220Z Starting upload of _sources/generated/torchaudio.prototype.models.conformer_rnnt_base.rst.txt 2023-07-13T14:53:46.1305996Z Finished upload of _sources/generated/torchaudio.prototype.models.conformer_rnnt_base.rst.txt 2023-07-13T14:53:46.1306859Z Starting upload of _sources/generated/torchaudio.prototype.models.conformer_rnnt_model.rst.txt 2023-07-13T14:53:46.2015231Z Finished upload of _sources/generated/torchaudio.prototype.models.conformer_rnnt_model.rst.txt 2023-07-13T14:53:46.2016049Z Starting upload of _sources/generated/torchaudio.prototype.models.conformer_wav2vec2_base.rst.txt 2023-07-13T14:53:46.3362784Z Finished upload of _sources/generated/torchaudio.prototype.models.conformer_wav2vec2_base.rst.txt 2023-07-13T14:53:46.3363618Z Starting upload of _sources/generated/torchaudio.prototype.models.conformer_wav2vec2_model.rst.txt 2023-07-13T14:53:46.3981719Z Finished upload of _sources/generated/torchaudio.prototype.models.conformer_wav2vec2_model.rst.txt 2023-07-13T14:53:46.3982887Z Starting upload of _sources/generated/torchaudio.prototype.models.conformer_wav2vec2_pretrain_base.rst.txt 2023-07-13T14:53:46.4703838Z Finished upload of _sources/generated/torchaudio.prototype.models.conformer_wav2vec2_pretrain_base.rst.txt 2023-07-13T14:53:46.4704727Z Starting upload of _sources/generated/torchaudio.prototype.models.conformer_wav2vec2_pretrain_large.rst.txt 2023-07-13T14:53:46.5389575Z Finished upload of _sources/generated/torchaudio.prototype.models.conformer_wav2vec2_pretrain_large.rst.txt 2023-07-13T14:53:46.5390400Z Starting upload of _sources/generated/torchaudio.prototype.models.conformer_wav2vec2_pretrain_model.rst.txt 2023-07-13T14:53:46.6024080Z Finished upload of _sources/generated/torchaudio.prototype.models.conformer_wav2vec2_pretrain_model.rst.txt 2023-07-13T14:53:46.6024956Z Starting upload of _sources/generated/torchaudio.prototype.models.emformer_hubert_base.rst.txt 2023-07-13T14:53:46.6587285Z Finished upload of _sources/generated/torchaudio.prototype.models.emformer_hubert_base.rst.txt 2023-07-13T14:53:46.6588103Z Starting upload of _sources/generated/torchaudio.prototype.models.emformer_hubert_model.rst.txt 2023-07-13T14:53:46.7321795Z Finished upload of _sources/generated/torchaudio.prototype.models.emformer_hubert_model.rst.txt 2023-07-13T14:53:46.7322660Z Starting upload of _sources/generated/torchaudio.prototype.models.hifigan_vocoder.rst.txt 2023-07-13T14:53:46.8498257Z Finished upload of _sources/generated/torchaudio.prototype.models.hifigan_vocoder.rst.txt 2023-07-13T14:53:46.8499695Z Starting upload of _sources/generated/torchaudio.prototype.models.hifigan_vocoder_v1.rst.txt 2023-07-13T14:53:46.9023891Z Finished upload of _sources/generated/torchaudio.prototype.models.hifigan_vocoder_v1.rst.txt 2023-07-13T14:53:46.9024766Z Starting upload of _sources/generated/torchaudio.prototype.models.hifigan_vocoder_v2.rst.txt 2023-07-13T14:53:46.9701279Z Finished upload of _sources/generated/torchaudio.prototype.models.hifigan_vocoder_v2.rst.txt 2023-07-13T14:53:46.9702501Z Starting upload of _sources/generated/torchaudio.prototype.models.hifigan_vocoder_v3.rst.txt 2023-07-13T14:53:47.0224408Z Finished upload of _sources/generated/torchaudio.prototype.models.hifigan_vocoder_v3.rst.txt 2023-07-13T14:53:47.0225250Z Starting upload of _sources/generated/torchaudio.prototype.models.squim_objective_base.rst.txt 2023-07-13T14:53:47.1020496Z Finished upload of _sources/generated/torchaudio.prototype.models.squim_objective_base.rst.txt 2023-07-13T14:53:47.1021997Z Starting upload of _sources/generated/torchaudio.prototype.models.squim_objective_model.rst.txt 2023-07-13T14:53:47.1707030Z Finished upload of _sources/generated/torchaudio.prototype.models.squim_objective_model.rst.txt 2023-07-13T14:53:47.1707848Z Starting upload of _sources/generated/torchaudio.prototype.models.squim_subjective_base.rst.txt 2023-07-13T14:53:47.2164522Z Finished upload of _sources/generated/torchaudio.prototype.models.squim_subjective_base.rst.txt 2023-07-13T14:53:47.2165386Z Starting upload of _sources/generated/torchaudio.prototype.models.squim_subjective_model.rst.txt 2023-07-13T14:53:47.2717656Z Finished upload of _sources/generated/torchaudio.prototype.models.squim_subjective_model.rst.txt 2023-07-13T14:53:47.2718727Z Starting upload of _sources/generated/torchaudio.prototype.pipelines.EMFORMER_RNNT_BASE_MUSTC.rst.txt 2023-07-13T14:53:47.3659998Z Finished upload of _sources/generated/torchaudio.prototype.pipelines.EMFORMER_RNNT_BASE_MUSTC.rst.txt 2023-07-13T14:53:47.3660803Z Starting upload of _sources/generated/torchaudio.prototype.pipelines.EMFORMER_RNNT_BASE_TEDLIUM3.rst.txt 2023-07-13T14:53:47.5113411Z Finished upload of _sources/generated/torchaudio.prototype.pipelines.EMFORMER_RNNT_BASE_TEDLIUM3.rst.txt 2023-07-13T14:53:47.5114232Z Starting upload of _sources/generated/torchaudio.prototype.pipelines.HIFIGAN_VOCODER_V3_LJSPEECH.rst.txt 2023-07-13T14:53:47.5853830Z Finished upload of _sources/generated/torchaudio.prototype.pipelines.HIFIGAN_VOCODER_V3_LJSPEECH.rst.txt 2023-07-13T14:53:47.5854686Z Starting upload of _sources/generated/torchaudio.prototype.pipelines.HiFiGANVocoderBundle.rst.txt 2023-07-13T14:53:47.6675128Z Finished upload of _sources/generated/torchaudio.prototype.pipelines.HiFiGANVocoderBundle.rst.txt 2023-07-13T14:53:47.6675899Z Starting upload of _sources/generated/torchaudio.prototype.pipelines.SQUIM_OBJECTIVE.rst.txt 2023-07-13T14:53:47.7078833Z Finished upload of _sources/generated/torchaudio.prototype.pipelines.SQUIM_OBJECTIVE.rst.txt 2023-07-13T14:53:47.7079640Z Starting upload of _sources/generated/torchaudio.prototype.pipelines.SQUIM_SUBJECTIVE.rst.txt 2023-07-13T14:53:47.7748716Z Finished upload of _sources/generated/torchaudio.prototype.pipelines.SQUIM_SUBJECTIVE.rst.txt 2023-07-13T14:53:47.7749490Z Starting upload of _sources/generated/torchaudio.prototype.pipelines.SquimObjectiveBundle.rst.txt 2023-07-13T14:53:47.8684371Z Finished upload of _sources/generated/torchaudio.prototype.pipelines.SquimObjectiveBundle.rst.txt 2023-07-13T14:53:47.8685706Z Starting upload of _sources/generated/torchaudio.prototype.pipelines.SquimSubjectiveBundle.rst.txt 2023-07-13T14:53:47.9241910Z Finished upload of _sources/generated/torchaudio.prototype.pipelines.SquimSubjectiveBundle.rst.txt 2023-07-13T14:53:47.9242681Z Starting upload of _sources/generated/torchaudio.prototype.transforms.BarkScale.rst.txt 2023-07-13T14:53:47.9872300Z Finished upload of _sources/generated/torchaudio.prototype.transforms.BarkScale.rst.txt 2023-07-13T14:53:47.9873134Z Starting upload of _sources/generated/torchaudio.prototype.transforms.BarkSpectrogram.rst.txt 2023-07-13T14:53:48.0772715Z Finished upload of _sources/generated/torchaudio.prototype.transforms.BarkSpectrogram.rst.txt 2023-07-13T14:53:48.0773536Z Starting upload of _sources/generated/torchaudio.prototype.transforms.ChromaScale.rst.txt 2023-07-13T14:53:48.1547931Z Finished upload of _sources/generated/torchaudio.prototype.transforms.ChromaScale.rst.txt 2023-07-13T14:53:48.1548804Z Starting upload of _sources/generated/torchaudio.prototype.transforms.ChromaSpectrogram.rst.txt 2023-07-13T14:53:48.2280073Z Finished upload of _sources/generated/torchaudio.prototype.transforms.ChromaSpectrogram.rst.txt 2023-07-13T14:53:48.2280942Z Starting upload of _sources/generated/torchaudio.prototype.transforms.InverseBarkScale.rst.txt 2023-07-13T14:53:48.2877585Z Finished upload of _sources/generated/torchaudio.prototype.transforms.InverseBarkScale.rst.txt 2023-07-13T14:53:48.2878779Z Starting upload of _sources/generated/torchaudio.sox_effects.apply_effects_file.rst.txt 2023-07-13T14:53:48.3300325Z Finished upload of _sources/generated/torchaudio.sox_effects.apply_effects_file.rst.txt 2023-07-13T14:53:48.3301132Z Starting upload of _sources/generated/torchaudio.sox_effects.apply_effects_tensor.rst.txt 2023-07-13T14:53:48.3921101Z Finished upload of _sources/generated/torchaudio.sox_effects.apply_effects_tensor.rst.txt 2023-07-13T14:53:48.3921889Z Starting upload of _sources/generated/torchaudio.sox_effects.effect_names.rst.txt 2023-07-13T14:53:48.4344696Z Finished upload of _sources/generated/torchaudio.sox_effects.effect_names.rst.txt 2023-07-13T14:53:48.4345432Z Starting upload of _sources/generated/torchaudio.transforms.AddNoise.rst.txt 2023-07-13T14:53:48.4948204Z Finished upload of _sources/generated/torchaudio.transforms.AddNoise.rst.txt 2023-07-13T14:53:48.4948933Z Starting upload of _sources/generated/torchaudio.transforms.AmplitudeToDB.rst.txt 2023-07-13T14:53:48.5239026Z Finished upload of _sources/generated/torchaudio.transforms.AmplitudeToDB.rst.txt 2023-07-13T14:53:48.5239752Z Starting upload of _sources/generated/torchaudio.transforms.ComputeDeltas.rst.txt 2023-07-13T14:53:48.5878572Z Finished upload of _sources/generated/torchaudio.transforms.ComputeDeltas.rst.txt 2023-07-13T14:53:48.5879345Z Starting upload of _sources/generated/torchaudio.transforms.Convolve.rst.txt 2023-07-13T14:53:48.6538592Z Finished upload of _sources/generated/torchaudio.transforms.Convolve.rst.txt 2023-07-13T14:53:48.6539298Z Starting upload of _sources/generated/torchaudio.transforms.Deemphasis.rst.txt 2023-07-13T14:53:48.7083901Z Finished upload of _sources/generated/torchaudio.transforms.Deemphasis.rst.txt 2023-07-13T14:53:48.7084595Z Starting upload of _sources/generated/torchaudio.transforms.FFTConvolve.rst.txt 2023-07-13T14:53:48.7612251Z Finished upload of _sources/generated/torchaudio.transforms.FFTConvolve.rst.txt 2023-07-13T14:53:48.7612955Z Starting upload of _sources/generated/torchaudio.transforms.Fade.rst.txt 2023-07-13T14:53:48.8315987Z Finished upload of _sources/generated/torchaudio.transforms.Fade.rst.txt 2023-07-13T14:53:48.8316771Z Starting upload of _sources/generated/torchaudio.transforms.FrequencyMasking.rst.txt 2023-07-13T14:53:48.8859168Z Finished upload of _sources/generated/torchaudio.transforms.FrequencyMasking.rst.txt 2023-07-13T14:53:48.8859877Z Starting upload of _sources/generated/torchaudio.transforms.GriffinLim.rst.txt 2023-07-13T14:53:48.9173328Z Finished upload of _sources/generated/torchaudio.transforms.GriffinLim.rst.txt 2023-07-13T14:53:48.9174166Z Starting upload of _sources/generated/torchaudio.transforms.InverseMelScale.rst.txt 2023-07-13T14:53:48.9698953Z Finished upload of _sources/generated/torchaudio.transforms.InverseMelScale.rst.txt 2023-07-13T14:53:48.9700542Z Starting upload of _sources/generated/torchaudio.transforms.InverseSpectrogram.rst.txt 2023-07-13T14:53:49.0682944Z Finished upload of _sources/generated/torchaudio.transforms.InverseSpectrogram.rst.txt 2023-07-13T14:53:49.0684448Z Starting upload of _sources/generated/torchaudio.transforms.LFCC.rst.txt 2023-07-13T14:53:49.1281760Z Finished upload of _sources/generated/torchaudio.transforms.LFCC.rst.txt 2023-07-13T14:53:49.1282915Z Starting upload of _sources/generated/torchaudio.transforms.Loudness.rst.txt 2023-07-13T14:53:49.1790772Z Finished upload of _sources/generated/torchaudio.transforms.Loudness.rst.txt 2023-07-13T14:53:49.1791822Z Starting upload of _sources/generated/torchaudio.transforms.MFCC.rst.txt 2023-07-13T14:53:49.2293483Z Finished upload of _sources/generated/torchaudio.transforms.MFCC.rst.txt 2023-07-13T14:53:49.2295817Z Starting upload of _sources/generated/torchaudio.transforms.MVDR.rst.txt 2023-07-13T14:53:49.2902064Z Finished upload of _sources/generated/torchaudio.transforms.MVDR.rst.txt 2023-07-13T14:53:49.2902840Z Starting upload of _sources/generated/torchaudio.transforms.MelScale.rst.txt 2023-07-13T14:53:49.3454393Z Finished upload of _sources/generated/torchaudio.transforms.MelScale.rst.txt 2023-07-13T14:53:49.3455242Z Starting upload of _sources/generated/torchaudio.transforms.MelSpectrogram.rst.txt 2023-07-13T14:53:49.3955425Z Finished upload of _sources/generated/torchaudio.transforms.MelSpectrogram.rst.txt 2023-07-13T14:53:49.3956422Z Starting upload of _sources/generated/torchaudio.transforms.MuLawDecoding.rst.txt 2023-07-13T14:53:49.4584570Z Finished upload of _sources/generated/torchaudio.transforms.MuLawDecoding.rst.txt 2023-07-13T14:53:49.4585507Z Starting upload of _sources/generated/torchaudio.transforms.MuLawEncoding.rst.txt 2023-07-13T14:53:49.5115067Z Finished upload of _sources/generated/torchaudio.transforms.MuLawEncoding.rst.txt 2023-07-13T14:53:49.5116138Z Starting upload of _sources/generated/torchaudio.transforms.PSD.rst.txt 2023-07-13T14:53:49.5626684Z Finished upload of _sources/generated/torchaudio.transforms.PSD.rst.txt 2023-07-13T14:53:49.5627755Z Starting upload of _sources/generated/torchaudio.transforms.PitchShift.rst.txt 2023-07-13T14:53:49.6168838Z Finished upload of _sources/generated/torchaudio.transforms.PitchShift.rst.txt 2023-07-13T14:53:49.6169741Z Starting upload of _sources/generated/torchaudio.transforms.Preemphasis.rst.txt 2023-07-13T14:53:49.6687221Z Finished upload of _sources/generated/torchaudio.transforms.Preemphasis.rst.txt 2023-07-13T14:53:49.6688824Z Starting upload of _sources/generated/torchaudio.transforms.RNNTLoss.rst.txt 2023-07-13T14:53:49.7236275Z Finished upload of _sources/generated/torchaudio.transforms.RNNTLoss.rst.txt 2023-07-13T14:53:49.7237140Z Starting upload of _sources/generated/torchaudio.transforms.RTFMVDR.rst.txt 2023-07-13T14:53:49.7877756Z Finished upload of _sources/generated/torchaudio.transforms.RTFMVDR.rst.txt 2023-07-13T14:53:49.7879259Z Starting upload of _sources/generated/torchaudio.transforms.Resample.rst.txt 2023-07-13T14:53:49.8430022Z Finished upload of _sources/generated/torchaudio.transforms.Resample.rst.txt 2023-07-13T14:53:49.8431719Z Starting upload of _sources/generated/torchaudio.transforms.SlidingWindowCmn.rst.txt 2023-07-13T14:53:49.9188002Z Finished upload of _sources/generated/torchaudio.transforms.SlidingWindowCmn.rst.txt 2023-07-13T14:53:49.9188949Z Starting upload of _sources/generated/torchaudio.transforms.SoudenMVDR.rst.txt 2023-07-13T14:53:49.9734886Z Finished upload of _sources/generated/torchaudio.transforms.SoudenMVDR.rst.txt 2023-07-13T14:53:49.9735918Z Starting upload of _sources/generated/torchaudio.transforms.SpectralCentroid.rst.txt 2023-07-13T14:53:50.0331239Z Finished upload of _sources/generated/torchaudio.transforms.SpectralCentroid.rst.txt 2023-07-13T14:53:50.0332143Z Starting upload of _sources/generated/torchaudio.transforms.Spectrogram.rst.txt 2023-07-13T14:53:50.0901613Z Finished upload of _sources/generated/torchaudio.transforms.Spectrogram.rst.txt 2023-07-13T14:53:50.0902504Z Starting upload of _sources/generated/torchaudio.transforms.Speed.rst.txt 2023-07-13T14:53:50.1463202Z Finished upload of _sources/generated/torchaudio.transforms.Speed.rst.txt 2023-07-13T14:53:50.1464113Z Starting upload of _sources/generated/torchaudio.transforms.SpeedPerturbation.rst.txt 2023-07-13T14:53:50.2353713Z Finished upload of _sources/generated/torchaudio.transforms.SpeedPerturbation.rst.txt 2023-07-13T14:53:50.2354651Z Starting upload of _sources/generated/torchaudio.transforms.TimeMasking.rst.txt 2023-07-13T14:53:50.2768161Z Finished upload of _sources/generated/torchaudio.transforms.TimeMasking.rst.txt 2023-07-13T14:53:50.2769834Z Starting upload of _sources/generated/torchaudio.transforms.TimeStretch.rst.txt 2023-07-13T14:53:50.3343339Z Finished upload of _sources/generated/torchaudio.transforms.TimeStretch.rst.txt 2023-07-13T14:53:50.3344513Z Starting upload of _sources/generated/torchaudio.transforms.Vad.rst.txt 2023-07-13T14:53:50.4046372Z Finished upload of _sources/generated/torchaudio.transforms.Vad.rst.txt 2023-07-13T14:53:50.4047215Z Starting upload of _sources/generated/torchaudio.transforms.Vol.rst.txt 2023-07-13T14:53:50.4554369Z Finished upload of _sources/generated/torchaudio.transforms.Vol.rst.txt 2023-07-13T14:53:50.4555191Z Starting upload of _sources/generated/torchaudio.utils.ffmpeg_utils.rst.txt 2023-07-13T14:53:50.5166388Z Finished upload of _sources/generated/torchaudio.utils.ffmpeg_utils.rst.txt 2023-07-13T14:53:50.5167225Z Starting upload of _sources/generated/torchaudio.utils.sox_utils.rst.txt 2023-07-13T14:53:50.5819204Z Finished upload of _sources/generated/torchaudio.utils.sox_utils.rst.txt 2023-07-13T14:53:50.5820748Z Starting upload of _sources/hw_acceleration_tutorial.ipynb.txt 2023-07-13T14:53:50.7556725Z Finished upload of _sources/hw_acceleration_tutorial.ipynb.txt 2023-07-13T14:53:50.7557579Z Starting upload of _sources/index.rst.txt 2023-07-13T14:53:50.9169984Z Finished upload of _sources/index.rst.txt 2023-07-13T14:53:50.9170764Z Starting upload of _sources/installation.rst.txt 2023-07-13T14:53:50.9745803Z Finished upload of _sources/installation.rst.txt 2023-07-13T14:53:50.9746929Z Starting upload of _sources/io.rst.txt 2023-07-13T14:53:51.0920769Z Finished upload of _sources/io.rst.txt 2023-07-13T14:53:51.0921559Z Starting upload of _sources/kaldi_io.rst.txt 2023-07-13T14:53:51.1757619Z Finished upload of _sources/kaldi_io.rst.txt 2023-07-13T14:53:51.1758550Z Starting upload of _sources/libtorchaudio.rst.txt 2023-07-13T14:53:51.2364484Z Finished upload of _sources/libtorchaudio.rst.txt 2023-07-13T14:53:51.2365311Z Starting upload of _sources/libtorchaudio.stream_reader.rst.txt 2023-07-13T14:53:51.3783139Z Finished upload of _sources/libtorchaudio.stream_reader.rst.txt 2023-07-13T14:53:51.3783952Z Starting upload of _sources/libtorchaudio.stream_writer.rst.txt 2023-07-13T14:53:51.4781034Z Finished upload of _sources/libtorchaudio.stream_writer.rst.txt 2023-07-13T14:53:51.4782932Z Starting upload of _sources/logo.rst.txt 2023-07-13T14:53:51.5448144Z Finished upload of _sources/logo.rst.txt 2023-07-13T14:53:51.5448947Z Starting upload of _sources/models.decoder.rst.txt 2023-07-13T14:53:51.6102641Z Finished upload of _sources/models.decoder.rst.txt 2023-07-13T14:53:51.6103489Z Starting upload of _sources/models.rst.txt 2023-07-13T14:53:51.6966206Z Finished upload of _sources/models.rst.txt 2023-07-13T14:53:51.6967090Z Starting upload of _sources/pipelines.rst.txt 2023-07-13T14:53:51.7837152Z Finished upload of _sources/pipelines.rst.txt 2023-07-13T14:53:51.7837990Z Starting upload of _sources/prototype.datasets.rst.txt 2023-07-13T14:53:51.8513817Z Finished upload of _sources/prototype.datasets.rst.txt 2023-07-13T14:53:51.8514501Z Starting upload of _sources/prototype.functional.rst.txt 2023-07-13T14:53:51.9357161Z Finished upload of _sources/prototype.functional.rst.txt 2023-07-13T14:53:51.9357809Z Starting upload of _sources/prototype.models.rst.txt 2023-07-13T14:53:51.9756854Z Finished upload of _sources/prototype.models.rst.txt 2023-07-13T14:53:51.9757463Z Starting upload of _sources/prototype.pipelines.rst.txt 2023-07-13T14:53:52.0166666Z Finished upload of _sources/prototype.pipelines.rst.txt 2023-07-13T14:53:52.0167796Z Starting upload of _sources/prototype.rst.txt 2023-07-13T14:53:52.0761802Z Finished upload of _sources/prototype.rst.txt 2023-07-13T14:53:52.0762471Z Starting upload of _sources/prototype.transforms.rst.txt 2023-07-13T14:53:52.1282551Z Finished upload of _sources/prototype.transforms.rst.txt 2023-07-13T14:53:52.1283630Z Starting upload of _sources/references.rst.txt 2023-07-13T14:53:52.1804118Z Finished upload of _sources/references.rst.txt 2023-07-13T14:53:52.1804762Z Starting upload of _sources/sox_effects.rst.txt 2023-07-13T14:53:52.2411119Z Finished upload of _sources/sox_effects.rst.txt 2023-07-13T14:53:52.2412095Z Starting upload of _sources/supported_features.rst.txt 2023-07-13T14:53:52.3098421Z Finished upload of _sources/supported_features.rst.txt 2023-07-13T14:53:52.3099069Z Starting upload of _sources/torchaudio.rst.txt 2023-07-13T14:53:52.4097783Z Finished upload of _sources/torchaudio.rst.txt 2023-07-13T14:53:52.4098442Z Starting upload of _sources/transforms.rst.txt 2023-07-13T14:53:52.4846265Z Finished upload of _sources/transforms.rst.txt 2023-07-13T14:53:52.4846923Z Starting upload of _sources/tutorials/additive_synthesis_tutorial.rst.txt 2023-07-13T14:53:52.7584034Z Finished upload of _sources/tutorials/additive_synthesis_tutorial.rst.txt 2023-07-13T14:53:52.7585409Z Starting upload of _sources/tutorials/asr_inference_with_ctc_decoder_tutorial.rst.txt 2023-07-13T14:53:52.9295361Z Finished upload of _sources/tutorials/asr_inference_with_ctc_decoder_tutorial.rst.txt 2023-07-13T14:53:52.9296104Z Starting upload of _sources/tutorials/audio_data_augmentation_tutorial.rst.txt 2023-07-13T14:53:53.0968727Z Finished upload of _sources/tutorials/audio_data_augmentation_tutorial.rst.txt 2023-07-13T14:53:53.0969715Z Starting upload of _sources/tutorials/audio_datasets_tutorial.rst.txt 2023-07-13T14:53:53.1841498Z Finished upload of _sources/tutorials/audio_datasets_tutorial.rst.txt 2023-07-13T14:53:53.1842202Z Starting upload of _sources/tutorials/audio_feature_augmentation_tutorial.rst.txt 2023-07-13T14:53:53.2532977Z Finished upload of _sources/tutorials/audio_feature_augmentation_tutorial.rst.txt 2023-07-13T14:53:53.2533715Z Starting upload of _sources/tutorials/audio_feature_extractions_tutorial.rst.txt 2023-07-13T14:53:53.3718781Z Finished upload of _sources/tutorials/audio_feature_extractions_tutorial.rst.txt 2023-07-13T14:53:53.3719437Z Starting upload of _sources/tutorials/audio_io_tutorial.rst.txt 2023-07-13T14:53:53.5231405Z Finished upload of _sources/tutorials/audio_io_tutorial.rst.txt 2023-07-13T14:53:53.5232171Z Starting upload of _sources/tutorials/audio_resampling_tutorial.rst.txt 2023-07-13T14:53:53.6913157Z Finished upload of _sources/tutorials/audio_resampling_tutorial.rst.txt 2023-07-13T14:53:53.6914686Z Starting upload of _sources/tutorials/ctc_forced_alignment_api_tutorial.rst.txt 2023-07-13T14:53:53.8294689Z Finished upload of _sources/tutorials/ctc_forced_alignment_api_tutorial.rst.txt 2023-07-13T14:53:53.8295949Z Starting upload of _sources/tutorials/device_asr.rst.txt 2023-07-13T14:53:53.8843832Z Finished upload of _sources/tutorials/device_asr.rst.txt 2023-07-13T14:53:53.8844888Z Starting upload of _sources/tutorials/effector_tutorial.rst.txt 2023-07-13T14:53:54.0386114Z Finished upload of _sources/tutorials/effector_tutorial.rst.txt 2023-07-13T14:53:54.0387269Z Starting upload of _sources/tutorials/filter_design_tutorial.rst.txt 2023-07-13T14:53:54.1234015Z Finished upload of _sources/tutorials/filter_design_tutorial.rst.txt 2023-07-13T14:53:54.1234670Z Starting upload of _sources/tutorials/forced_alignment_for_multilingual_data_tutorial.rst.txt 2023-07-13T14:53:54.2842562Z Finished upload of _sources/tutorials/forced_alignment_for_multilingual_data_tutorial.rst.txt 2023-07-13T14:53:54.2843372Z Starting upload of _sources/tutorials/forced_alignment_tutorial.rst.txt 2023-07-13T14:53:54.4543642Z Finished upload of _sources/tutorials/forced_alignment_tutorial.rst.txt 2023-07-13T14:53:54.4544248Z Starting upload of _sources/tutorials/hybrid_demucs_tutorial.rst.txt 2023-07-13T14:53:54.7377209Z Finished upload of _sources/tutorials/hybrid_demucs_tutorial.rst.txt 2023-07-13T14:53:54.7378133Z Starting upload of _sources/tutorials/mvdr_tutorial.rst.txt 2023-07-13T14:53:54.8844223Z Finished upload of _sources/tutorials/mvdr_tutorial.rst.txt 2023-07-13T14:53:54.8844831Z Starting upload of _sources/tutorials/online_asr_tutorial.rst.txt 2023-07-13T14:53:55.4538098Z Finished upload of _sources/tutorials/online_asr_tutorial.rst.txt 2023-07-13T14:53:55.4539486Z Starting upload of _sources/tutorials/oscillator_tutorial.rst.txt 2023-07-13T14:53:55.6006194Z Finished upload of _sources/tutorials/oscillator_tutorial.rst.txt 2023-07-13T14:53:55.6007264Z Starting upload of _sources/tutorials/sg_execution_times.rst.txt 2023-07-13T14:53:55.6724853Z Finished upload of _sources/tutorials/sg_execution_times.rst.txt 2023-07-13T14:53:55.6725691Z Starting upload of _sources/tutorials/speech_recognition_pipeline_tutorial.rst.txt 2023-07-13T14:53:55.7539660Z Finished upload of _sources/tutorials/speech_recognition_pipeline_tutorial.rst.txt 2023-07-13T14:53:55.7540557Z Starting upload of _sources/tutorials/squim_tutorial.rst.txt 2023-07-13T14:53:55.9032967Z Finished upload of _sources/tutorials/squim_tutorial.rst.txt 2023-07-13T14:53:55.9033857Z Starting upload of _sources/tutorials/streamreader_advanced_tutorial.rst.txt 2023-07-13T14:53:56.0323872Z Finished upload of _sources/tutorials/streamreader_advanced_tutorial.rst.txt 2023-07-13T14:53:56.0324800Z Starting upload of _sources/tutorials/streamreader_basic_tutorial.rst.txt 2023-07-13T14:53:56.1320908Z Finished upload of _sources/tutorials/streamreader_basic_tutorial.rst.txt 2023-07-13T14:53:56.1321786Z Starting upload of _sources/tutorials/streamwriter_advanced.rst.txt 2023-07-13T14:53:56.2380356Z Finished upload of _sources/tutorials/streamwriter_advanced.rst.txt 2023-07-13T14:53:56.2381979Z Starting upload of _sources/tutorials/streamwriter_basic_tutorial.rst.txt 2023-07-13T14:53:56.3641735Z Finished upload of _sources/tutorials/streamwriter_basic_tutorial.rst.txt 2023-07-13T14:53:56.3642652Z Starting upload of _sources/tutorials/subtractive_synthesis_tutorial.rst.txt 2023-07-13T14:53:56.5254276Z Finished upload of _sources/tutorials/subtractive_synthesis_tutorial.rst.txt 2023-07-13T14:53:56.5255201Z Starting upload of _sources/tutorials/tacotron2_pipeline_tutorial.rst.txt 2023-07-13T14:53:56.8915237Z Finished upload of _sources/tutorials/tacotron2_pipeline_tutorial.rst.txt 2023-07-13T14:53:56.8916903Z Starting upload of _sources/utils.rst.txt 2023-07-13T14:53:56.9482859Z Finished upload of _sources/utils.rst.txt 2023-07-13T14:53:56.9483674Z Starting upload of _static/_sphinx_javascript_frameworks_compat.js 2023-07-13T14:53:57.0109977Z Finished upload of _static/_sphinx_javascript_frameworks_compat.js 2023-07-13T14:53:57.0111198Z Starting upload of _static/basic.css 2023-07-13T14:53:57.1453546Z Finished upload of _static/basic.css 2023-07-13T14:53:57.1454230Z Starting upload of _static/binder_badge_logo.svg 2023-07-13T14:53:57.2510077Z Finished upload of _static/binder_badge_logo.svg 2023-07-13T14:53:57.2510792Z Starting upload of _static/broken_example.png 2023-07-13T14:53:57.3202189Z Finished upload of _static/broken_example.png 2023-07-13T14:53:57.3202860Z Starting upload of _static/css/custom.css 2023-07-13T14:53:57.3862822Z Finished upload of _static/css/custom.css 2023-07-13T14:53:57.3863473Z Starting upload of _static/css/theme.css 2023-07-13T14:53:57.5889370Z Finished upload of _static/css/theme.css 2023-07-13T14:53:57.5890113Z Starting upload of _static/doctools.js 2023-07-13T14:53:57.6869755Z Finished upload of _static/doctools.js 2023-07-13T14:53:57.6870491Z Starting upload of _static/documentation_options.js 2023-07-13T14:53:57.7542025Z Finished upload of _static/documentation_options.js 2023-07-13T14:53:57.7542720Z Starting upload of _static/favicon.ico 2023-07-13T14:53:57.8396198Z Finished upload of _static/favicon.ico 2023-07-13T14:53:57.8396812Z Starting upload of _static/file.png 2023-07-13T14:53:57.9009207Z Finished upload of _static/file.png 2023-07-13T14:53:57.9009981Z Starting upload of _static/fonts/FreightSans/freight-sans-bold-italic.woff 2023-07-13T14:53:57.9904260Z Finished upload of _static/fonts/FreightSans/freight-sans-bold-italic.woff 2023-07-13T14:53:57.9905496Z Starting upload of _static/fonts/FreightSans/freight-sans-bold-italic.woff2 2023-07-13T14:53:58.0454668Z Finished upload of _static/fonts/FreightSans/freight-sans-bold-italic.woff2 2023-07-13T14:53:58.0455339Z Starting upload of _static/fonts/FreightSans/freight-sans-bold.woff 2023-07-13T14:53:58.1441466Z Finished upload of _static/fonts/FreightSans/freight-sans-bold.woff 2023-07-13T14:53:58.1442450Z Starting upload of _static/fonts/FreightSans/freight-sans-bold.woff2 2023-07-13T14:53:58.2056221Z Finished upload of _static/fonts/FreightSans/freight-sans-bold.woff2 2023-07-13T14:53:58.2056926Z Starting upload of _static/fonts/FreightSans/freight-sans-book-italic.woff 2023-07-13T14:53:58.3416254Z Finished upload of _static/fonts/FreightSans/freight-sans-book-italic.woff 2023-07-13T14:53:58.3416995Z Starting upload of _static/fonts/FreightSans/freight-sans-book-italic.woff2 2023-07-13T14:53:58.4413854Z Finished upload of _static/fonts/FreightSans/freight-sans-book-italic.woff2 2023-07-13T14:53:58.4414540Z Starting upload of _static/fonts/FreightSans/freight-sans-book.woff 2023-07-13T14:53:58.5184639Z Finished upload of _static/fonts/FreightSans/freight-sans-book.woff 2023-07-13T14:53:58.5185732Z Starting upload of _static/fonts/FreightSans/freight-sans-book.woff2 2023-07-13T14:53:58.6299673Z Finished upload of _static/fonts/FreightSans/freight-sans-book.woff2 2023-07-13T14:53:58.6300369Z Starting upload of _static/fonts/FreightSans/freight-sans-light-italic.woff 2023-07-13T14:53:58.6920518Z Finished upload of _static/fonts/FreightSans/freight-sans-light-italic.woff 2023-07-13T14:53:58.6921247Z Starting upload of _static/fonts/FreightSans/freight-sans-light-italic.woff2 2023-07-13T14:53:58.7505873Z Finished upload of _static/fonts/FreightSans/freight-sans-light-italic.woff2 2023-07-13T14:53:58.7506513Z Starting upload of _static/fonts/FreightSans/freight-sans-light.woff 2023-07-13T14:53:58.8239969Z Finished upload of _static/fonts/FreightSans/freight-sans-light.woff 2023-07-13T14:53:58.8240680Z Starting upload of _static/fonts/FreightSans/freight-sans-light.woff2 2023-07-13T14:53:58.8872386Z Finished upload of _static/fonts/FreightSans/freight-sans-light.woff2 2023-07-13T14:53:58.8873096Z Starting upload of _static/fonts/FreightSans/freight-sans-medium-italic.woff 2023-07-13T14:53:59.0433619Z Finished upload of _static/fonts/FreightSans/freight-sans-medium-italic.woff 2023-07-13T14:53:59.0434997Z Starting upload of _static/fonts/FreightSans/freight-sans-medium-italic.woff2 2023-07-13T14:53:59.1870321Z Finished upload of _static/fonts/FreightSans/freight-sans-medium-italic.woff2 2023-07-13T14:53:59.1871069Z Starting upload of _static/fonts/FreightSans/freight-sans-medium.woff 2023-07-13T14:53:59.3109764Z Finished upload of _static/fonts/FreightSans/freight-sans-medium.woff 2023-07-13T14:53:59.3110507Z Starting upload of _static/fonts/FreightSans/freight-sans-medium.woff2 2023-07-13T14:53:59.3969251Z Finished upload of _static/fonts/FreightSans/freight-sans-medium.woff2 2023-07-13T14:53:59.3969967Z Starting upload of _static/fonts/IBMPlexMono/IBMPlexMono-Light.woff 2023-07-13T14:53:59.4909609Z Finished upload of _static/fonts/IBMPlexMono/IBMPlexMono-Light.woff 2023-07-13T14:53:59.4910329Z Starting upload of _static/fonts/IBMPlexMono/IBMPlexMono-Light.woff2 2023-07-13T14:53:59.5861382Z Finished upload of _static/fonts/IBMPlexMono/IBMPlexMono-Light.woff2 2023-07-13T14:53:59.5862700Z Starting upload of _static/fonts/IBMPlexMono/IBMPlexMono-Medium.woff 2023-07-13T14:53:59.6773946Z Finished upload of _static/fonts/IBMPlexMono/IBMPlexMono-Medium.woff 2023-07-13T14:53:59.6774669Z Starting upload of _static/fonts/IBMPlexMono/IBMPlexMono-Medium.woff2 2023-07-13T14:53:59.7761857Z Finished upload of _static/fonts/IBMPlexMono/IBMPlexMono-Medium.woff2 2023-07-13T14:53:59.7762536Z Starting upload of _static/fonts/IBMPlexMono/IBMPlexMono-Regular.woff 2023-07-13T14:53:59.8686147Z Finished upload of _static/fonts/IBMPlexMono/IBMPlexMono-Regular.woff 2023-07-13T14:53:59.8687264Z Starting upload of _static/fonts/IBMPlexMono/IBMPlexMono-Regular.woff2 2023-07-13T14:53:59.9991921Z Finished upload of _static/fonts/IBMPlexMono/IBMPlexMono-Regular.woff2 2023-07-13T14:53:59.9992652Z Starting upload of _static/fonts/IBMPlexMono/IBMPlexMono-SemiBold.woff 2023-07-13T14:54:00.1056355Z Finished upload of _static/fonts/IBMPlexMono/IBMPlexMono-SemiBold.woff 2023-07-13T14:54:00.1057534Z Starting upload of _static/fonts/IBMPlexMono/IBMPlexMono-SemiBold.woff2 2023-07-13T14:54:00.1954589Z Finished upload of _static/fonts/IBMPlexMono/IBMPlexMono-SemiBold.woff2 2023-07-13T14:54:00.1955990Z Starting upload of _static/images/arrow-down-orange.svg 2023-07-13T14:54:00.2852857Z Finished upload of _static/images/arrow-down-orange.svg 2023-07-13T14:54:00.2853491Z Starting upload of _static/images/arrow-right-with-tail.svg 2023-07-13T14:54:00.3586025Z Finished upload of _static/images/arrow-right-with-tail.svg 2023-07-13T14:54:00.3586887Z Starting upload of _static/images/chevron-down-black.svg 2023-07-13T14:54:00.4130743Z Finished upload of _static/images/chevron-down-black.svg 2023-07-13T14:54:00.4131716Z Starting upload of _static/images/chevron-down-grey.svg 2023-07-13T14:54:00.5110533Z Finished upload of _static/images/chevron-down-grey.svg 2023-07-13T14:54:00.5112123Z Starting upload of _static/images/chevron-down-orange.svg 2023-07-13T14:54:00.5664558Z Finished upload of _static/images/chevron-down-orange.svg 2023-07-13T14:54:00.5665211Z Starting upload of _static/images/chevron-down-white.svg 2023-07-13T14:54:00.6429361Z Finished upload of _static/images/chevron-down-white.svg 2023-07-13T14:54:00.6430579Z Starting upload of _static/images/chevron-right-orange.svg 2023-07-13T14:54:00.7159313Z Finished upload of _static/images/chevron-right-orange.svg 2023-07-13T14:54:00.7159958Z Starting upload of _static/images/chevron-right-white.svg 2023-07-13T14:54:00.7969156Z Finished upload of _static/images/chevron-right-white.svg 2023-07-13T14:54:00.7969819Z Starting upload of _static/images/home-footer-background.jpg 2023-07-13T14:54:00.9205349Z Finished upload of _static/images/home-footer-background.jpg 2023-07-13T14:54:00.9206385Z Starting upload of _static/images/icon-close.svg 2023-07-13T14:54:01.0073432Z Finished upload of _static/images/icon-close.svg 2023-07-13T14:54:01.0074421Z Starting upload of _static/images/icon-menu-dots-dark.svg 2023-07-13T14:54:01.0944026Z Finished upload of _static/images/icon-menu-dots-dark.svg 2023-07-13T14:54:01.0945045Z Starting upload of _static/images/logo-dark.svg 2023-07-13T14:54:01.1494707Z Finished upload of _static/images/logo-dark.svg 2023-07-13T14:54:01.1496105Z Starting upload of _static/images/logo-facebook-dark.svg 2023-07-13T14:54:01.2103182Z Finished upload of _static/images/logo-facebook-dark.svg 2023-07-13T14:54:01.2103840Z Starting upload of _static/images/logo-icon.svg 2023-07-13T14:54:01.2852134Z Finished upload of _static/images/logo-icon.svg 2023-07-13T14:54:01.2853689Z Starting upload of _static/images/logo-twitter-dark.svg 2023-07-13T14:54:01.3459218Z Finished upload of _static/images/logo-twitter-dark.svg 2023-07-13T14:54:01.3460092Z Starting upload of _static/images/logo-youtube-dark.svg 2023-07-13T14:54:01.4041130Z Finished upload of _static/images/logo-youtube-dark.svg 2023-07-13T14:54:01.4041814Z Starting upload of _static/images/logo.svg 2023-07-13T14:54:01.4980943Z Finished upload of _static/images/logo.svg 2023-07-13T14:54:01.4982499Z Starting upload of _static/images/pytorch-colab.svg 2023-07-13T14:54:01.5741429Z Finished upload of _static/images/pytorch-colab.svg 2023-07-13T14:54:01.5742283Z Starting upload of _static/images/pytorch-download.svg 2023-07-13T14:54:01.6510838Z Finished upload of _static/images/pytorch-download.svg 2023-07-13T14:54:01.6511754Z Starting upload of _static/images/pytorch-github.svg 2023-07-13T14:54:01.6897541Z Finished upload of _static/images/pytorch-github.svg 2023-07-13T14:54:01.6898962Z Starting upload of _static/images/pytorch-x.svg 2023-07-13T14:54:01.7420029Z Finished upload of _static/images/pytorch-x.svg 2023-07-13T14:54:01.7420791Z Starting upload of _static/images/search-icon.svg 2023-07-13T14:54:01.8381027Z Finished upload of _static/images/search-icon.svg 2023-07-13T14:54:01.8381827Z Starting upload of _static/images/view-page-source-icon.svg 2023-07-13T14:54:01.8949665Z Finished upload of _static/images/view-page-source-icon.svg 2023-07-13T14:54:01.8950425Z Starting upload of _static/img/favicon.ico 2023-07-13T14:54:02.0616836Z Finished upload of _static/img/favicon.ico 2023-07-13T14:54:02.0617856Z Starting upload of _static/img/logo.png 2023-07-13T14:54:02.1409428Z Finished upload of _static/img/logo.png 2023-07-13T14:54:02.1410377Z Starting upload of _static/jquery-3.6.0.js 2023-07-13T14:54:02.3412894Z Finished upload of _static/jquery-3.6.0.js 2023-07-13T14:54:02.3413548Z Starting upload of _static/jquery.js 2023-07-13T14:54:02.5621131Z Finished upload of _static/jquery.js 2023-07-13T14:54:02.5621796Z Starting upload of _static/js/modernizr.min.js 2023-07-13T14:54:02.6632087Z Finished upload of _static/js/modernizr.min.js 2023-07-13T14:54:02.6632655Z Starting upload of _static/js/theme.js 2023-07-13T14:54:02.7536496Z Finished upload of _static/js/theme.js 2023-07-13T14:54:02.7537264Z Starting upload of _static/js/vendor/anchor.min.js 2023-07-13T14:54:02.8488331Z Finished upload of _static/js/vendor/anchor.min.js 2023-07-13T14:54:02.8489993Z Starting upload of _static/js/vendor/bootstrap.min.js 2023-07-13T14:54:02.9415153Z Finished upload of _static/js/vendor/bootstrap.min.js 2023-07-13T14:54:02.9416576Z Starting upload of _static/js/vendor/popper.min.js 2023-07-13T14:54:03.0128057Z Finished upload of _static/js/vendor/popper.min.js 2023-07-13T14:54:03.0129395Z Starting upload of _static/katex-math.css 2023-07-13T14:54:03.1323545Z Finished upload of _static/katex-math.css 2023-07-13T14:54:03.1324302Z Starting upload of _static/katex_autorenderer.js 2023-07-13T14:54:03.1896094Z Finished upload of _static/katex_autorenderer.js 2023-07-13T14:54:03.1896786Z Starting upload of _static/language_data.js 2023-07-13T14:54:03.2297673Z Finished upload of _static/language_data.js 2023-07-13T14:54:03.2298456Z Starting upload of _static/minus.png 2023-07-13T14:54:03.2903152Z Finished upload of _static/minus.png 2023-07-13T14:54:03.2903982Z Starting upload of _static/no_image.png 2023-07-13T14:54:03.3531794Z Finished upload of _static/no_image.png 2023-07-13T14:54:03.3532632Z Starting upload of _static/plus.png 2023-07-13T14:54:03.4817532Z Finished upload of _static/plus.png 2023-07-13T14:54:03.4818314Z Starting upload of _static/pygments.css 2023-07-13T14:54:03.5576565Z Finished upload of _static/pygments.css 2023-07-13T14:54:03.5577574Z Starting upload of _static/searchtools.js 2023-07-13T14:54:03.6737002Z Finished upload of _static/searchtools.js 2023-07-13T14:54:03.6737761Z Starting upload of _static/sg_gallery-binder.css 2023-07-13T14:54:03.7068739Z Finished upload of _static/sg_gallery-binder.css 2023-07-13T14:54:03.7070095Z Starting upload of _static/sg_gallery-dataframe.css 2023-07-13T14:54:03.7817517Z Finished upload of _static/sg_gallery-dataframe.css 2023-07-13T14:54:03.7818330Z Starting upload of _static/sg_gallery-rendered-html.css 2023-07-13T14:54:03.8517383Z Finished upload of _static/sg_gallery-rendered-html.css 2023-07-13T14:54:03.8518296Z Starting upload of _static/sg_gallery.css 2023-07-13T14:54:03.9361978Z Finished upload of _static/sg_gallery.css 2023-07-13T14:54:03.9363505Z Starting upload of _static/underscore-1.13.1.js 2023-07-13T14:54:04.0263474Z Finished upload of _static/underscore-1.13.1.js 2023-07-13T14:54:04.0264219Z Starting upload of _static/underscore.js 2023-07-13T14:54:04.1029643Z Finished upload of _static/underscore.js 2023-07-13T14:54:04.1030412Z Starting upload of backend.html 2023-07-13T14:54:04.2516299Z Finished upload of backend.html 2023-07-13T14:54:04.2516968Z Starting upload of build.ffmpeg.html 2023-07-13T14:54:04.3581928Z Finished upload of build.ffmpeg.html 2023-07-13T14:54:04.3582591Z Starting upload of build.html 2023-07-13T14:54:04.4090997Z Finished upload of build.html 2023-07-13T14:54:04.4091750Z Starting upload of build.jetson.html 2023-07-13T14:54:04.4872056Z Finished upload of build.jetson.html 2023-07-13T14:54:04.4872821Z Starting upload of build.linux.html 2023-07-13T14:54:04.5510418Z Finished upload of build.linux.html 2023-07-13T14:54:04.5511187Z Starting upload of build.windows.html 2023-07-13T14:54:04.6383307Z Finished upload of build.windows.html 2023-07-13T14:54:04.6384119Z Starting upload of compliance.kaldi.html 2023-07-13T14:54:04.7488103Z Finished upload of compliance.kaldi.html 2023-07-13T14:54:04.7488901Z Starting upload of datasets.html 2023-07-13T14:54:04.8762779Z Finished upload of datasets.html 2023-07-13T14:54:04.8763517Z Starting upload of feature_classifications.html 2023-07-13T14:54:04.9740008Z Finished upload of feature_classifications.html 2023-07-13T14:54:04.9741041Z Starting upload of functional.html 2023-07-13T14:54:05.0631001Z Finished upload of functional.html 2023-07-13T14:54:05.0631871Z Starting upload of generated/torchaudio.compliance.kaldi.fbank.html 2023-07-13T14:54:05.1466650Z Finished upload of generated/torchaudio.compliance.kaldi.fbank.html 2023-07-13T14:54:05.1467511Z Starting upload of generated/torchaudio.compliance.kaldi.mfcc.html 2023-07-13T14:54:05.2718024Z Finished upload of generated/torchaudio.compliance.kaldi.mfcc.html 2023-07-13T14:54:05.2719060Z Starting upload of generated/torchaudio.compliance.kaldi.spectrogram.html 2023-07-13T14:54:05.4010913Z Finished upload of generated/torchaudio.compliance.kaldi.spectrogram.html 2023-07-13T14:54:05.4011821Z Starting upload of generated/torchaudio.datasets.CMUARCTIC.html 2023-07-13T14:54:05.4842288Z Finished upload of generated/torchaudio.datasets.CMUARCTIC.html 2023-07-13T14:54:05.4843207Z Starting upload of generated/torchaudio.datasets.CMUDict.html 2023-07-13T14:54:05.6515722Z Finished upload of generated/torchaudio.datasets.CMUDict.html 2023-07-13T14:54:05.6517333Z Starting upload of generated/torchaudio.datasets.COMMONVOICE.html 2023-07-13T14:54:05.7092961Z Finished upload of generated/torchaudio.datasets.COMMONVOICE.html 2023-07-13T14:54:05.7093764Z Starting upload of generated/torchaudio.datasets.DR_VCTK.html 2023-07-13T14:54:05.8158962Z Finished upload of generated/torchaudio.datasets.DR_VCTK.html 2023-07-13T14:54:05.8168299Z Starting upload of generated/torchaudio.datasets.FluentSpeechCommands.html 2023-07-13T14:54:05.9736518Z Finished upload of generated/torchaudio.datasets.FluentSpeechCommands.html 2023-07-13T14:54:05.9738196Z Starting upload of generated/torchaudio.datasets.GTZAN.html 2023-07-13T14:54:06.1229050Z Finished upload of generated/torchaudio.datasets.GTZAN.html 2023-07-13T14:54:06.1231048Z Starting upload of generated/torchaudio.datasets.IEMOCAP.html 2023-07-13T14:54:06.1845519Z Finished upload of generated/torchaudio.datasets.IEMOCAP.html 2023-07-13T14:54:06.1846338Z Starting upload of generated/torchaudio.datasets.LIBRISPEECH.html 2023-07-13T14:54:06.2927703Z Finished upload of generated/torchaudio.datasets.LIBRISPEECH.html 2023-07-13T14:54:06.2928565Z Starting upload of generated/torchaudio.datasets.LIBRITTS.html 2023-07-13T14:54:06.4218169Z Finished upload of generated/torchaudio.datasets.LIBRITTS.html 2023-07-13T14:54:06.4219688Z Starting upload of generated/torchaudio.datasets.LJSPEECH.html 2023-07-13T14:54:06.5225297Z Finished upload of generated/torchaudio.datasets.LJSPEECH.html 2023-07-13T14:54:06.5226285Z Starting upload of generated/torchaudio.datasets.LibriLightLimited.html 2023-07-13T14:54:06.6630620Z Finished upload of generated/torchaudio.datasets.LibriLightLimited.html 2023-07-13T14:54:06.6631662Z Starting upload of generated/torchaudio.datasets.LibriMix.html 2023-07-13T14:54:06.7672448Z Finished upload of generated/torchaudio.datasets.LibriMix.html 2023-07-13T14:54:06.7673331Z Starting upload of generated/torchaudio.datasets.MUSDB_HQ.html 2023-07-13T14:54:06.8697649Z Finished upload of generated/torchaudio.datasets.MUSDB_HQ.html 2023-07-13T14:54:06.8698555Z Starting upload of generated/torchaudio.datasets.QUESST14.html 2023-07-13T14:54:06.9654683Z Finished upload of generated/torchaudio.datasets.QUESST14.html 2023-07-13T14:54:06.9655387Z Starting upload of generated/torchaudio.datasets.SPEECHCOMMANDS.html 2023-07-13T14:54:07.0588056Z Finished upload of generated/torchaudio.datasets.SPEECHCOMMANDS.html 2023-07-13T14:54:07.0588813Z Starting upload of generated/torchaudio.datasets.Snips.html 2023-07-13T14:54:07.1178663Z Finished upload of generated/torchaudio.datasets.Snips.html 2023-07-13T14:54:07.1179316Z Starting upload of generated/torchaudio.datasets.TEDLIUM.html 2023-07-13T14:54:07.2197855Z Finished upload of generated/torchaudio.datasets.TEDLIUM.html 2023-07-13T14:54:07.2199372Z Starting upload of generated/torchaudio.datasets.VCTK_092.html 2023-07-13T14:54:07.3568229Z Finished upload of generated/torchaudio.datasets.VCTK_092.html 2023-07-13T14:54:07.3568923Z Starting upload of generated/torchaudio.datasets.VoxCeleb1Identification.html 2023-07-13T14:54:07.4509960Z Finished upload of generated/torchaudio.datasets.VoxCeleb1Identification.html 2023-07-13T14:54:07.4510632Z Starting upload of generated/torchaudio.datasets.VoxCeleb1Verification.html 2023-07-13T14:54:07.5138182Z Finished upload of generated/torchaudio.datasets.VoxCeleb1Verification.html 2023-07-13T14:54:07.5138808Z Starting upload of generated/torchaudio.datasets.YESNO.html 2023-07-13T14:54:07.6244010Z Finished upload of generated/torchaudio.datasets.YESNO.html 2023-07-13T14:54:07.6244750Z Starting upload of generated/torchaudio.functional.DB_to_amplitude.html 2023-07-13T14:54:07.7197246Z Finished upload of generated/torchaudio.functional.DB_to_amplitude.html 2023-07-13T14:54:07.7198275Z Starting upload of generated/torchaudio.functional.add_noise.html 2023-07-13T14:54:07.8147453Z Finished upload of generated/torchaudio.functional.add_noise.html 2023-07-13T14:54:07.8148349Z Starting upload of generated/torchaudio.functional.allpass_biquad.html 2023-07-13T14:54:07.9113019Z Finished upload of generated/torchaudio.functional.allpass_biquad.html 2023-07-13T14:54:07.9113919Z Starting upload of generated/torchaudio.functional.amplitude_to_DB.html 2023-07-13T14:54:08.0403621Z Finished upload of generated/torchaudio.functional.amplitude_to_DB.html 2023-07-13T14:54:08.0404577Z Starting upload of generated/torchaudio.functional.apply_beamforming.html 2023-07-13T14:54:08.1277527Z Finished upload of generated/torchaudio.functional.apply_beamforming.html 2023-07-13T14:54:08.1278522Z Starting upload of generated/torchaudio.functional.apply_codec.html 2023-07-13T14:54:08.2434890Z Finished upload of generated/torchaudio.functional.apply_codec.html 2023-07-13T14:54:08.2435856Z Starting upload of generated/torchaudio.functional.band_biquad.html 2023-07-13T14:54:08.3230668Z Finished upload of generated/torchaudio.functional.band_biquad.html 2023-07-13T14:54:08.3231890Z Starting upload of generated/torchaudio.functional.bandpass_biquad.html 2023-07-13T14:54:08.5344081Z Finished upload of generated/torchaudio.functional.bandpass_biquad.html 2023-07-13T14:54:08.5344944Z Starting upload of generated/torchaudio.functional.bandreject_biquad.html 2023-07-13T14:54:08.6657556Z Finished upload of generated/torchaudio.functional.bandreject_biquad.html 2023-07-13T14:54:08.6658395Z Starting upload of generated/torchaudio.functional.bass_biquad.html 2023-07-13T14:54:08.7886023Z Finished upload of generated/torchaudio.functional.bass_biquad.html 2023-07-13T14:54:08.7886759Z Starting upload of generated/torchaudio.functional.biquad.html 2023-07-13T14:54:08.8977122Z Finished upload of generated/torchaudio.functional.biquad.html 2023-07-13T14:54:08.8978079Z Starting upload of generated/torchaudio.functional.compute_deltas.html 2023-07-13T14:54:09.0367476Z Finished upload of generated/torchaudio.functional.compute_deltas.html 2023-07-13T14:54:09.0368415Z Starting upload of generated/torchaudio.functional.contrast.html 2023-07-13T14:54:09.1876284Z Finished upload of generated/torchaudio.functional.contrast.html 2023-07-13T14:54:09.1877069Z Starting upload of generated/torchaudio.functional.convolve.html 2023-07-13T14:54:09.2733474Z Finished upload of generated/torchaudio.functional.convolve.html 2023-07-13T14:54:09.2734343Z Starting upload of generated/torchaudio.functional.create_dct.html 2023-07-13T14:54:09.3761908Z Finished upload of generated/torchaudio.functional.create_dct.html 2023-07-13T14:54:09.3762823Z Starting upload of generated/torchaudio.functional.dcshift.html 2023-07-13T14:54:09.4866241Z Finished upload of generated/torchaudio.functional.dcshift.html 2023-07-13T14:54:09.4866960Z Starting upload of generated/torchaudio.functional.deemph_biquad.html 2023-07-13T14:54:09.5625891Z Finished upload of generated/torchaudio.functional.deemph_biquad.html 2023-07-13T14:54:09.5627133Z Starting upload of generated/torchaudio.functional.deemphasis.html 2023-07-13T14:54:09.6584123Z Finished upload of generated/torchaudio.functional.deemphasis.html 2023-07-13T14:54:09.6585428Z Starting upload of generated/torchaudio.functional.detect_pitch_frequency.html 2023-07-13T14:54:09.7760792Z Finished upload of generated/torchaudio.functional.detect_pitch_frequency.html 2023-07-13T14:54:09.7761483Z Starting upload of generated/torchaudio.functional.dither.html 2023-07-13T14:54:09.8950246Z Finished upload of generated/torchaudio.functional.dither.html 2023-07-13T14:54:09.8950846Z Starting upload of generated/torchaudio.functional.edit_distance.html 2023-07-13T14:54:10.0942268Z Finished upload of generated/torchaudio.functional.edit_distance.html 2023-07-13T14:54:10.0943057Z Starting upload of generated/torchaudio.functional.equalizer_biquad.html 2023-07-13T14:54:10.1876601Z Finished upload of generated/torchaudio.functional.equalizer_biquad.html 2023-07-13T14:54:10.1877388Z Starting upload of generated/torchaudio.functional.fftconvolve.html 2023-07-13T14:54:10.2979355Z Finished upload of generated/torchaudio.functional.fftconvolve.html 2023-07-13T14:54:10.2980217Z Starting upload of generated/torchaudio.functional.filtfilt.html 2023-07-13T14:54:10.3806053Z Finished upload of generated/torchaudio.functional.filtfilt.html 2023-07-13T14:54:10.3806726Z Starting upload of generated/torchaudio.functional.flanger.html 2023-07-13T14:54:10.4902447Z Finished upload of generated/torchaudio.functional.flanger.html 2023-07-13T14:54:10.4903491Z Starting upload of generated/torchaudio.functional.forced_align.html 2023-07-13T14:54:10.5749230Z Finished upload of generated/torchaudio.functional.forced_align.html 2023-07-13T14:54:10.5749985Z Starting upload of generated/torchaudio.functional.gain.html 2023-07-13T14:54:10.7222551Z Finished upload of generated/torchaudio.functional.gain.html 2023-07-13T14:54:10.7223261Z Starting upload of generated/torchaudio.functional.griffinlim.html 2023-07-13T14:54:10.8303216Z Finished upload of generated/torchaudio.functional.griffinlim.html 2023-07-13T14:54:10.8304089Z Starting upload of generated/torchaudio.functional.highpass_biquad.html 2023-07-13T14:54:10.9419595Z Finished upload of generated/torchaudio.functional.highpass_biquad.html 2023-07-13T14:54:10.9421124Z Starting upload of generated/torchaudio.functional.inverse_spectrogram.html 2023-07-13T14:54:11.0937990Z Finished upload of generated/torchaudio.functional.inverse_spectrogram.html 2023-07-13T14:54:11.0938807Z Starting upload of generated/torchaudio.functional.lfilter.html 2023-07-13T14:54:11.1883986Z Finished upload of generated/torchaudio.functional.lfilter.html 2023-07-13T14:54:11.1885054Z Starting upload of generated/torchaudio.functional.linear_fbanks.html 2023-07-13T14:54:11.2921485Z Finished upload of generated/torchaudio.functional.linear_fbanks.html 2023-07-13T14:54:11.2922316Z Starting upload of generated/torchaudio.functional.loudness.html 2023-07-13T14:54:11.3543981Z Finished upload of generated/torchaudio.functional.loudness.html 2023-07-13T14:54:11.3545312Z Starting upload of generated/torchaudio.functional.lowpass_biquad.html 2023-07-13T14:54:11.4470347Z Finished upload of generated/torchaudio.functional.lowpass_biquad.html 2023-07-13T14:54:11.4471781Z Starting upload of generated/torchaudio.functional.mask_along_axis.html 2023-07-13T14:54:11.5320198Z Finished upload of generated/torchaudio.functional.mask_along_axis.html 2023-07-13T14:54:11.5321077Z Starting upload of generated/torchaudio.functional.mask_along_axis_iid.html 2023-07-13T14:54:11.6334635Z Finished upload of generated/torchaudio.functional.mask_along_axis_iid.html 2023-07-13T14:54:11.6335501Z Starting upload of generated/torchaudio.functional.melscale_fbanks.html 2023-07-13T14:54:11.7780416Z Finished upload of generated/torchaudio.functional.melscale_fbanks.html 2023-07-13T14:54:11.7782490Z Starting upload of generated/torchaudio.functional.mu_law_decoding.html 2023-07-13T14:54:11.8911697Z Finished upload of generated/torchaudio.functional.mu_law_decoding.html 2023-07-13T14:54:11.8912818Z Starting upload of generated/torchaudio.functional.mu_law_encoding.html 2023-07-13T14:54:11.9849047Z Finished upload of generated/torchaudio.functional.mu_law_encoding.html 2023-07-13T14:54:11.9850169Z Starting upload of generated/torchaudio.functional.mvdr_weights_rtf.html 2023-07-13T14:54:12.0380826Z Finished upload of generated/torchaudio.functional.mvdr_weights_rtf.html 2023-07-13T14:54:12.0381547Z Starting upload of generated/torchaudio.functional.mvdr_weights_souden.html 2023-07-13T14:54:12.1304648Z Finished upload of generated/torchaudio.functional.mvdr_weights_souden.html 2023-07-13T14:54:12.1305306Z Starting upload of generated/torchaudio.functional.overdrive.html 2023-07-13T14:54:12.2510830Z Finished upload of generated/torchaudio.functional.overdrive.html 2023-07-13T14:54:12.2511502Z Starting upload of generated/torchaudio.functional.phase_vocoder.html 2023-07-13T14:54:12.3302814Z Finished upload of generated/torchaudio.functional.phase_vocoder.html 2023-07-13T14:54:12.3303644Z Starting upload of generated/torchaudio.functional.phaser.html 2023-07-13T14:54:12.3936570Z Finished upload of generated/torchaudio.functional.phaser.html 2023-07-13T14:54:12.3937406Z Starting upload of generated/torchaudio.functional.pitch_shift.html 2023-07-13T14:54:12.4979612Z Finished upload of generated/torchaudio.functional.pitch_shift.html 2023-07-13T14:54:12.4980511Z Starting upload of generated/torchaudio.functional.preemphasis.html 2023-07-13T14:54:12.6178212Z Finished upload of generated/torchaudio.functional.preemphasis.html 2023-07-13T14:54:12.6179273Z Starting upload of generated/torchaudio.functional.psd.html 2023-07-13T14:54:12.7334407Z Finished upload of generated/torchaudio.functional.psd.html 2023-07-13T14:54:12.7335471Z Starting upload of generated/torchaudio.functional.resample.html 2023-07-13T14:54:12.8370448Z Finished upload of generated/torchaudio.functional.resample.html 2023-07-13T14:54:12.8371719Z Starting upload of generated/torchaudio.functional.riaa_biquad.html 2023-07-13T14:54:12.9895504Z Finished upload of generated/torchaudio.functional.riaa_biquad.html 2023-07-13T14:54:12.9896423Z Starting upload of generated/torchaudio.functional.rnnt_loss.html 2023-07-13T14:54:13.1048097Z Finished upload of generated/torchaudio.functional.rnnt_loss.html 2023-07-13T14:54:13.1048914Z Starting upload of generated/torchaudio.functional.rtf_evd.html 2023-07-13T14:54:13.2066096Z Finished upload of generated/torchaudio.functional.rtf_evd.html 2023-07-13T14:54:13.2066727Z Starting upload of generated/torchaudio.functional.rtf_power.html 2023-07-13T14:54:13.3136668Z Finished upload of generated/torchaudio.functional.rtf_power.html 2023-07-13T14:54:13.3138022Z Starting upload of generated/torchaudio.functional.sliding_window_cmn.html 2023-07-13T14:54:13.4265771Z Finished upload of generated/torchaudio.functional.sliding_window_cmn.html 2023-07-13T14:54:13.4267176Z Starting upload of generated/torchaudio.functional.spectral_centroid.html 2023-07-13T14:54:13.5572933Z Finished upload of generated/torchaudio.functional.spectral_centroid.html 2023-07-13T14:54:13.5573678Z Starting upload of generated/torchaudio.functional.spectrogram.html 2023-07-13T14:54:13.7716969Z Finished upload of generated/torchaudio.functional.spectrogram.html 2023-07-13T14:54:13.7718660Z Starting upload of generated/torchaudio.functional.speed.html 2023-07-13T14:54:13.9005056Z Finished upload of generated/torchaudio.functional.speed.html 2023-07-13T14:54:13.9005842Z Starting upload of generated/torchaudio.functional.treble_biquad.html 2023-07-13T14:54:13.9784934Z Finished upload of generated/torchaudio.functional.treble_biquad.html 2023-07-13T14:54:13.9785648Z Starting upload of generated/torchaudio.functional.vad.html 2023-07-13T14:54:14.1013193Z Finished upload of generated/torchaudio.functional.vad.html 2023-07-13T14:54:14.1013846Z Starting upload of generated/torchaudio.io.AudioEffector.html 2023-07-13T14:54:14.2025786Z Finished upload of generated/torchaudio.io.AudioEffector.html 2023-07-13T14:54:14.2026534Z Starting upload of generated/torchaudio.io.StreamReader.html 2023-07-13T14:54:14.3076180Z Finished upload of generated/torchaudio.io.StreamReader.html 2023-07-13T14:54:14.3076931Z Starting upload of generated/torchaudio.io.StreamWriter.html 2023-07-13T14:54:14.4014323Z Finished upload of generated/torchaudio.io.StreamWriter.html 2023-07-13T14:54:14.4015065Z Starting upload of generated/torchaudio.io.play_audio.html 2023-07-13T14:54:14.5035256Z Finished upload of generated/torchaudio.io.play_audio.html 2023-07-13T14:54:14.5035904Z Starting upload of generated/torchaudio.models.Conformer.html 2023-07-13T14:54:14.5795410Z Finished upload of generated/torchaudio.models.Conformer.html 2023-07-13T14:54:14.5796123Z Starting upload of generated/torchaudio.models.ConvTasNet.html 2023-07-13T14:54:14.7221713Z Finished upload of generated/torchaudio.models.ConvTasNet.html 2023-07-13T14:54:14.7222474Z Starting upload of generated/torchaudio.models.DeepSpeech.html 2023-07-13T14:54:14.7906778Z Finished upload of generated/torchaudio.models.DeepSpeech.html 2023-07-13T14:54:14.7907665Z Starting upload of generated/torchaudio.models.Emformer.html 2023-07-13T14:54:14.8707623Z Finished upload of generated/torchaudio.models.Emformer.html 2023-07-13T14:54:14.8708247Z Starting upload of generated/torchaudio.models.HDemucs.html 2023-07-13T14:54:14.9824372Z Finished upload of generated/torchaudio.models.HDemucs.html 2023-07-13T14:54:14.9825783Z Starting upload of generated/torchaudio.models.HuBERTPretrainModel.html 2023-07-13T14:54:15.1004398Z Finished upload of generated/torchaudio.models.HuBERTPretrainModel.html 2023-07-13T14:54:15.1005116Z Starting upload of generated/torchaudio.models.RNNT.html 2023-07-13T14:54:15.2400791Z Finished upload of generated/torchaudio.models.RNNT.html 2023-07-13T14:54:15.2402237Z Starting upload of generated/torchaudio.models.RNNTBeamSearch.html 2023-07-13T14:54:15.3894005Z Finished upload of generated/torchaudio.models.RNNTBeamSearch.html 2023-07-13T14:54:15.3895107Z Starting upload of generated/torchaudio.models.Tacotron2.html 2023-07-13T14:54:15.4570646Z Finished upload of generated/torchaudio.models.Tacotron2.html 2023-07-13T14:54:15.4571492Z Starting upload of generated/torchaudio.models.Wav2Letter.html 2023-07-13T14:54:15.5738523Z Finished upload of generated/torchaudio.models.Wav2Letter.html 2023-07-13T14:54:15.5739318Z Starting upload of generated/torchaudio.models.Wav2Vec2Model.html 2023-07-13T14:54:15.7235719Z Finished upload of generated/torchaudio.models.Wav2Vec2Model.html 2023-07-13T14:54:15.7237096Z Starting upload of generated/torchaudio.models.WaveRNN.html 2023-07-13T14:54:15.8479997Z Finished upload of generated/torchaudio.models.WaveRNN.html 2023-07-13T14:54:15.8480713Z Starting upload of generated/torchaudio.models.conv_tasnet_base.html 2023-07-13T14:54:15.9139907Z Finished upload of generated/torchaudio.models.conv_tasnet_base.html 2023-07-13T14:54:15.9141667Z Starting upload of generated/torchaudio.models.decoder.CTCDecoder.html 2023-07-13T14:54:16.0330406Z Finished upload of generated/torchaudio.models.decoder.CTCDecoder.html 2023-07-13T14:54:16.0331785Z Starting upload of generated/torchaudio.models.decoder.CUCTCDecoder.html 2023-07-13T14:54:16.1923338Z Finished upload of generated/torchaudio.models.decoder.CUCTCDecoder.html 2023-07-13T14:54:16.1924610Z Starting upload of generated/torchaudio.models.decoder.ctc_decoder.html 2023-07-13T14:54:16.2691728Z Finished upload of generated/torchaudio.models.decoder.ctc_decoder.html 2023-07-13T14:54:16.2692432Z Starting upload of generated/torchaudio.models.decoder.cuda_ctc_decoder.html 2023-07-13T14:54:16.3513901Z Finished upload of generated/torchaudio.models.decoder.cuda_ctc_decoder.html 2023-07-13T14:54:16.3514720Z Starting upload of generated/torchaudio.models.decoder.download_pretrained_files.html 2023-07-13T14:54:16.4656818Z Finished upload of generated/torchaudio.models.decoder.download_pretrained_files.html 2023-07-13T14:54:16.4658031Z Starting upload of generated/torchaudio.models.emformer_rnnt_base.html 2023-07-13T14:54:16.5904415Z Finished upload of generated/torchaudio.models.emformer_rnnt_base.html 2023-07-13T14:54:16.5905169Z Starting upload of generated/torchaudio.models.emformer_rnnt_model.html 2023-07-13T14:54:16.7270028Z Finished upload of generated/torchaudio.models.emformer_rnnt_model.html 2023-07-13T14:54:16.7270777Z Starting upload of generated/torchaudio.models.hdemucs_high.html 2023-07-13T14:54:16.8345954Z Finished upload of generated/torchaudio.models.hdemucs_high.html 2023-07-13T14:54:16.8347362Z Starting upload of generated/torchaudio.models.hdemucs_low.html 2023-07-13T14:54:16.8939715Z Finished upload of generated/torchaudio.models.hdemucs_low.html 2023-07-13T14:54:16.8940512Z Starting upload of generated/torchaudio.models.hdemucs_medium.html 2023-07-13T14:54:16.9511475Z Finished upload of generated/torchaudio.models.hdemucs_medium.html 2023-07-13T14:54:16.9513030Z Starting upload of generated/torchaudio.models.hubert_base.html 2023-07-13T14:54:17.0245865Z Finished upload of generated/torchaudio.models.hubert_base.html 2023-07-13T14:54:17.0246611Z Starting upload of generated/torchaudio.models.hubert_large.html 2023-07-13T14:54:17.1078921Z Finished upload of generated/torchaudio.models.hubert_large.html 2023-07-13T14:54:17.1079779Z Starting upload of generated/torchaudio.models.hubert_pretrain_base.html 2023-07-13T14:54:17.2245164Z Finished upload of generated/torchaudio.models.hubert_pretrain_base.html 2023-07-13T14:54:17.2246026Z Starting upload of generated/torchaudio.models.hubert_pretrain_large.html 2023-07-13T14:54:17.3297119Z Finished upload of generated/torchaudio.models.hubert_pretrain_large.html 2023-07-13T14:54:17.3298010Z Starting upload of generated/torchaudio.models.hubert_pretrain_model.html 2023-07-13T14:54:17.4131351Z Finished upload of generated/torchaudio.models.hubert_pretrain_model.html 2023-07-13T14:54:17.4132172Z Starting upload of generated/torchaudio.models.hubert_pretrain_xlarge.html 2023-07-13T14:54:17.4909006Z Finished upload of generated/torchaudio.models.hubert_pretrain_xlarge.html 2023-07-13T14:54:17.4910995Z Starting upload of generated/torchaudio.models.hubert_xlarge.html 2023-07-13T14:54:17.5756740Z Finished upload of generated/torchaudio.models.hubert_xlarge.html 2023-07-13T14:54:17.5757676Z Starting upload of generated/torchaudio.models.wav2vec2.utils.import_fairseq_model.html 2023-07-13T14:54:17.7887936Z Finished upload of generated/torchaudio.models.wav2vec2.utils.import_fairseq_model.html 2023-07-13T14:54:17.7888861Z Starting upload of generated/torchaudio.models.wav2vec2.utils.import_huggingface_model.html 2023-07-13T14:54:17.9071875Z Finished upload of generated/torchaudio.models.wav2vec2.utils.import_huggingface_model.html 2023-07-13T14:54:17.9072788Z Starting upload of generated/torchaudio.models.wav2vec2_base.html 2023-07-13T14:54:18.0026947Z Finished upload of generated/torchaudio.models.wav2vec2_base.html 2023-07-13T14:54:18.0027895Z Starting upload of generated/torchaudio.models.wav2vec2_large.html 2023-07-13T14:54:18.0879083Z Finished upload of generated/torchaudio.models.wav2vec2_large.html 2023-07-13T14:54:18.0879964Z Starting upload of generated/torchaudio.models.wav2vec2_large_lv60k.html 2023-07-13T14:54:18.1629966Z Finished upload of generated/torchaudio.models.wav2vec2_large_lv60k.html 2023-07-13T14:54:18.1631480Z Starting upload of generated/torchaudio.models.wav2vec2_model.html 2023-07-13T14:54:18.2777250Z Finished upload of generated/torchaudio.models.wav2vec2_model.html 2023-07-13T14:54:18.2778054Z Starting upload of generated/torchaudio.models.wav2vec2_xlsr_1b.html 2023-07-13T14:54:18.3551270Z Finished upload of generated/torchaudio.models.wav2vec2_xlsr_1b.html 2023-07-13T14:54:18.3552837Z Starting upload of generated/torchaudio.models.wav2vec2_xlsr_2b.html 2023-07-13T14:54:18.3972433Z Finished upload of generated/torchaudio.models.wav2vec2_xlsr_2b.html 2023-07-13T14:54:18.3973257Z Starting upload of generated/torchaudio.models.wav2vec2_xlsr_300m.html 2023-07-13T14:54:18.4663386Z Finished upload of generated/torchaudio.models.wav2vec2_xlsr_300m.html 2023-07-13T14:54:18.4664883Z Starting upload of generated/torchaudio.models.wavlm_base.html 2023-07-13T14:54:18.5445119Z Finished upload of generated/torchaudio.models.wavlm_base.html 2023-07-13T14:54:18.5446012Z Starting upload of generated/torchaudio.models.wavlm_large.html 2023-07-13T14:54:18.6797286Z Finished upload of generated/torchaudio.models.wavlm_large.html 2023-07-13T14:54:18.6798733Z Starting upload of generated/torchaudio.models.wavlm_model.html 2023-07-13T14:54:18.7739923Z Finished upload of generated/torchaudio.models.wavlm_model.html 2023-07-13T14:54:18.7740588Z Starting upload of generated/torchaudio.pipelines.CONVTASNET_BASE_LIBRI2MIX.html 2023-07-13T14:54:18.8563023Z Finished upload of generated/torchaudio.pipelines.CONVTASNET_BASE_LIBRI2MIX.html 2023-07-13T14:54:18.8564368Z Starting upload of generated/torchaudio.pipelines.EMFORMER_RNNT_BASE_LIBRISPEECH.html 2023-07-13T14:54:18.9496709Z Finished upload of generated/torchaudio.pipelines.EMFORMER_RNNT_BASE_LIBRISPEECH.html 2023-07-13T14:54:18.9497408Z Starting upload of generated/torchaudio.pipelines.HDEMUCS_HIGH_MUSDB.html 2023-07-13T14:54:19.0463222Z Finished upload of generated/torchaudio.pipelines.HDEMUCS_HIGH_MUSDB.html 2023-07-13T14:54:19.0464527Z Starting upload of generated/torchaudio.pipelines.HDEMUCS_HIGH_MUSDB_PLUS.html 2023-07-13T14:54:19.1750755Z Finished upload of generated/torchaudio.pipelines.HDEMUCS_HIGH_MUSDB_PLUS.html 2023-07-13T14:54:19.1752415Z Starting upload of generated/torchaudio.pipelines.HUBERT_ASR_LARGE.html 2023-07-13T14:54:19.2795134Z Finished upload of generated/torchaudio.pipelines.HUBERT_ASR_LARGE.html 2023-07-13T14:54:19.2796027Z Starting upload of generated/torchaudio.pipelines.HUBERT_ASR_XLARGE.html 2023-07-13T14:54:19.3601334Z Finished upload of generated/torchaudio.pipelines.HUBERT_ASR_XLARGE.html 2023-07-13T14:54:19.3601967Z Starting upload of generated/torchaudio.pipelines.HUBERT_BASE.html 2023-07-13T14:54:19.4531756Z Finished upload of generated/torchaudio.pipelines.HUBERT_BASE.html 2023-07-13T14:54:19.4532909Z Starting upload of generated/torchaudio.pipelines.HUBERT_LARGE.html 2023-07-13T14:54:19.5520642Z Finished upload of generated/torchaudio.pipelines.HUBERT_LARGE.html 2023-07-13T14:54:19.5521409Z Starting upload of generated/torchaudio.pipelines.HUBERT_XLARGE.html 2023-07-13T14:54:19.6666371Z Finished upload of generated/torchaudio.pipelines.HUBERT_XLARGE.html 2023-07-13T14:54:19.6667720Z Starting upload of generated/torchaudio.pipelines.RNNTBundle.FeatureExtractor.html 2023-07-13T14:54:19.8336962Z Finished upload of generated/torchaudio.pipelines.RNNTBundle.FeatureExtractor.html 2023-07-13T14:54:19.8337900Z Starting upload of generated/torchaudio.pipelines.RNNTBundle.TokenProcessor.html 2023-07-13T14:54:19.9342288Z Finished upload of generated/torchaudio.pipelines.RNNTBundle.TokenProcessor.html 2023-07-13T14:54:19.9343365Z Starting upload of generated/torchaudio.pipelines.RNNTBundle.html 2023-07-13T14:54:20.0760957Z Finished upload of generated/torchaudio.pipelines.RNNTBundle.html 2023-07-13T14:54:20.0762566Z Starting upload of generated/torchaudio.pipelines.SourceSeparationBundle.html 2023-07-13T14:54:20.1963403Z Finished upload of generated/torchaudio.pipelines.SourceSeparationBundle.html 2023-07-13T14:54:20.1964332Z Starting upload of generated/torchaudio.pipelines.TACOTRON2_GRIFFINLIM_CHAR_LJSPEECH.html 2023-07-13T14:54:20.2829385Z Finished upload of generated/torchaudio.pipelines.TACOTRON2_GRIFFINLIM_CHAR_LJSPEECH.html 2023-07-13T14:54:20.2830189Z Starting upload of generated/torchaudio.pipelines.TACOTRON2_GRIFFINLIM_PHONE_LJSPEECH.html 2023-07-13T14:54:20.3324002Z Finished upload of generated/torchaudio.pipelines.TACOTRON2_GRIFFINLIM_PHONE_LJSPEECH.html 2023-07-13T14:54:20.3324808Z Starting upload of generated/torchaudio.pipelines.TACOTRON2_WAVERNN_CHAR_LJSPEECH.html 2023-07-13T14:54:20.4319641Z Finished upload of generated/torchaudio.pipelines.TACOTRON2_WAVERNN_CHAR_LJSPEECH.html 2023-07-13T14:54:20.4320849Z Starting upload of generated/torchaudio.pipelines.TACOTRON2_WAVERNN_PHONE_LJSPEECH.html 2023-07-13T14:54:20.5112448Z Finished upload of generated/torchaudio.pipelines.TACOTRON2_WAVERNN_PHONE_LJSPEECH.html 2023-07-13T14:54:20.5113264Z Starting upload of generated/torchaudio.pipelines.Tacotron2TTSBundle.TextProcessor.html 2023-07-13T14:54:20.6044011Z Finished upload of generated/torchaudio.pipelines.Tacotron2TTSBundle.TextProcessor.html 2023-07-13T14:54:20.6045287Z Starting upload of generated/torchaudio.pipelines.Tacotron2TTSBundle.Vocoder.html 2023-07-13T14:54:20.7164438Z Finished upload of generated/torchaudio.pipelines.Tacotron2TTSBundle.Vocoder.html 2023-07-13T14:54:20.7165503Z Starting upload of generated/torchaudio.pipelines.Tacotron2TTSBundle.html 2023-07-13T14:54:20.8285161Z Finished upload of generated/torchaudio.pipelines.Tacotron2TTSBundle.html 2023-07-13T14:54:20.8286080Z Starting upload of generated/torchaudio.pipelines.VOXPOPULI_ASR_BASE_10K_DE.html 2023-07-13T14:54:20.9121033Z Finished upload of generated/torchaudio.pipelines.VOXPOPULI_ASR_BASE_10K_DE.html 2023-07-13T14:54:20.9121724Z Starting upload of generated/torchaudio.pipelines.VOXPOPULI_ASR_BASE_10K_EN.html 2023-07-13T14:54:21.0100436Z Finished upload of generated/torchaudio.pipelines.VOXPOPULI_ASR_BASE_10K_EN.html 2023-07-13T14:54:21.0101701Z Starting upload of generated/torchaudio.pipelines.VOXPOPULI_ASR_BASE_10K_ES.html 2023-07-13T14:54:21.1141210Z Finished upload of generated/torchaudio.pipelines.VOXPOPULI_ASR_BASE_10K_ES.html 2023-07-13T14:54:21.1141989Z Starting upload of generated/torchaudio.pipelines.VOXPOPULI_ASR_BASE_10K_FR.html 2023-07-13T14:54:21.2446099Z Finished upload of generated/torchaudio.pipelines.VOXPOPULI_ASR_BASE_10K_FR.html 2023-07-13T14:54:21.2446774Z Starting upload of generated/torchaudio.pipelines.VOXPOPULI_ASR_BASE_10K_IT.html 2023-07-13T14:54:21.3707316Z Finished upload of generated/torchaudio.pipelines.VOXPOPULI_ASR_BASE_10K_IT.html 2023-07-13T14:54:21.3708012Z Starting upload of generated/torchaudio.pipelines.WAV2VEC2_ASR_BASE_100H.html 2023-07-13T14:54:21.4622331Z Finished upload of generated/torchaudio.pipelines.WAV2VEC2_ASR_BASE_100H.html 2023-07-13T14:54:21.4623624Z Starting upload of generated/torchaudio.pipelines.WAV2VEC2_ASR_BASE_10M.html 2023-07-13T14:54:21.5796099Z Finished upload of generated/torchaudio.pipelines.WAV2VEC2_ASR_BASE_10M.html 2023-07-13T14:54:21.5796799Z Starting upload of generated/torchaudio.pipelines.WAV2VEC2_ASR_BASE_960H.html 2023-07-13T14:54:21.6731563Z Finished upload of generated/torchaudio.pipelines.WAV2VEC2_ASR_BASE_960H.html 2023-07-13T14:54:21.6732274Z Starting upload of generated/torchaudio.pipelines.WAV2VEC2_ASR_LARGE_100H.html 2023-07-13T14:54:21.7986024Z Finished upload of generated/torchaudio.pipelines.WAV2VEC2_ASR_LARGE_100H.html 2023-07-13T14:54:21.7986892Z Starting upload of generated/torchaudio.pipelines.WAV2VEC2_ASR_LARGE_10M.html 2023-07-13T14:54:21.9713376Z Finished upload of generated/torchaudio.pipelines.WAV2VEC2_ASR_LARGE_10M.html 2023-07-13T14:54:21.9714306Z Starting upload of generated/torchaudio.pipelines.WAV2VEC2_ASR_LARGE_960H.html 2023-07-13T14:54:22.0836640Z Finished upload of generated/torchaudio.pipelines.WAV2VEC2_ASR_LARGE_960H.html 2023-07-13T14:54:22.0837399Z Starting upload of generated/torchaudio.pipelines.WAV2VEC2_ASR_LARGE_LV60K_100H.html 2023-07-13T14:54:22.2035075Z Finished upload of generated/torchaudio.pipelines.WAV2VEC2_ASR_LARGE_LV60K_100H.html 2023-07-13T14:54:22.2036081Z Starting upload of generated/torchaudio.pipelines.WAV2VEC2_ASR_LARGE_LV60K_10M.html 2023-07-13T14:54:22.2973641Z Finished upload of generated/torchaudio.pipelines.WAV2VEC2_ASR_LARGE_LV60K_10M.html 2023-07-13T14:54:22.2975104Z Starting upload of generated/torchaudio.pipelines.WAV2VEC2_ASR_LARGE_LV60K_960H.html 2023-07-13T14:54:22.4800991Z Finished upload of generated/torchaudio.pipelines.WAV2VEC2_ASR_LARGE_LV60K_960H.html 2023-07-13T14:54:22.4801976Z Starting upload of generated/torchaudio.pipelines.WAV2VEC2_BASE.html 2023-07-13T14:54:22.5884071Z Finished upload of generated/torchaudio.pipelines.WAV2VEC2_BASE.html 2023-07-13T14:54:22.5885377Z Starting upload of generated/torchaudio.pipelines.WAV2VEC2_LARGE.html 2023-07-13T14:54:22.6542368Z Finished upload of generated/torchaudio.pipelines.WAV2VEC2_LARGE.html 2023-07-13T14:54:22.6543094Z Starting upload of generated/torchaudio.pipelines.WAV2VEC2_LARGE_LV60K.html 2023-07-13T14:54:22.7549203Z Finished upload of generated/torchaudio.pipelines.WAV2VEC2_LARGE_LV60K.html 2023-07-13T14:54:22.7549960Z Starting upload of generated/torchaudio.pipelines.WAV2VEC2_XLSR53.html 2023-07-13T14:54:22.8778127Z Finished upload of generated/torchaudio.pipelines.WAV2VEC2_XLSR53.html 2023-07-13T14:54:22.8778806Z Starting upload of generated/torchaudio.pipelines.WAV2VEC2_XLSR_1B.html 2023-07-13T14:54:22.9675657Z Finished upload of generated/torchaudio.pipelines.WAV2VEC2_XLSR_1B.html 2023-07-13T14:54:22.9676416Z Starting upload of generated/torchaudio.pipelines.WAV2VEC2_XLSR_2B.html 2023-07-13T14:54:23.0677828Z Finished upload of generated/torchaudio.pipelines.WAV2VEC2_XLSR_2B.html 2023-07-13T14:54:23.0678760Z Starting upload of generated/torchaudio.pipelines.WAV2VEC2_XLSR_300M.html 2023-07-13T14:54:23.1757096Z Finished upload of generated/torchaudio.pipelines.WAV2VEC2_XLSR_300M.html 2023-07-13T14:54:23.1758655Z Starting upload of generated/torchaudio.pipelines.WAVLM_BASE.html 2023-07-13T14:54:23.2756875Z Finished upload of generated/torchaudio.pipelines.WAVLM_BASE.html 2023-07-13T14:54:23.2757518Z Starting upload of generated/torchaudio.pipelines.WAVLM_BASE_PLUS.html 2023-07-13T14:54:23.3877112Z Finished upload of generated/torchaudio.pipelines.WAVLM_BASE_PLUS.html 2023-07-13T14:54:23.3877882Z Starting upload of generated/torchaudio.pipelines.WAVLM_LARGE.html 2023-07-13T14:54:23.4765633Z Finished upload of generated/torchaudio.pipelines.WAVLM_LARGE.html 2023-07-13T14:54:23.4766298Z Starting upload of generated/torchaudio.pipelines.Wav2Vec2ASRBundle.html 2023-07-13T14:54:23.5928872Z Finished upload of generated/torchaudio.pipelines.Wav2Vec2ASRBundle.html 2023-07-13T14:54:23.5929644Z Starting upload of generated/torchaudio.pipelines.Wav2Vec2Bundle.html 2023-07-13T14:54:23.6843981Z Finished upload of generated/torchaudio.pipelines.Wav2Vec2Bundle.html 2023-07-13T14:54:23.6844681Z Starting upload of generated/torchaudio.prototype.datasets.Musan.html 2023-07-13T14:54:23.7834000Z Finished upload of generated/torchaudio.prototype.datasets.Musan.html 2023-07-13T14:54:23.7834813Z Starting upload of generated/torchaudio.prototype.functional.adsr_envelope.html 2023-07-13T14:54:23.8734775Z Finished upload of generated/torchaudio.prototype.functional.adsr_envelope.html 2023-07-13T14:54:23.8736354Z Starting upload of generated/torchaudio.prototype.functional.barkscale_fbanks.html 2023-07-13T14:54:23.9701130Z Finished upload of generated/torchaudio.prototype.functional.barkscale_fbanks.html 2023-07-13T14:54:23.9701951Z Starting upload of generated/torchaudio.prototype.functional.chroma_filterbank.html 2023-07-13T14:54:24.0883736Z Finished upload of generated/torchaudio.prototype.functional.chroma_filterbank.html 2023-07-13T14:54:24.0884463Z Starting upload of generated/torchaudio.prototype.functional.extend_pitch.html 2023-07-13T14:54:24.2246786Z Finished upload of generated/torchaudio.prototype.functional.extend_pitch.html 2023-07-13T14:54:24.2247503Z Starting upload of generated/torchaudio.prototype.functional.filter_waveform.html 2023-07-13T14:54:24.3468688Z Finished upload of generated/torchaudio.prototype.functional.filter_waveform.html 2023-07-13T14:54:24.3469806Z Starting upload of generated/torchaudio.prototype.functional.frequency_impulse_response.html 2023-07-13T14:54:24.4443267Z Finished upload of generated/torchaudio.prototype.functional.frequency_impulse_response.html 2023-07-13T14:54:24.4444108Z Starting upload of generated/torchaudio.prototype.functional.oscillator_bank.html 2023-07-13T14:54:24.5486779Z Finished upload of generated/torchaudio.prototype.functional.oscillator_bank.html 2023-07-13T14:54:24.5487554Z Starting upload of generated/torchaudio.prototype.functional.simulate_rir_ism.html 2023-07-13T14:54:24.6221429Z Finished upload of generated/torchaudio.prototype.functional.simulate_rir_ism.html 2023-07-13T14:54:24.6222835Z Starting upload of generated/torchaudio.prototype.functional.sinc_impulse_response.html 2023-07-13T14:54:24.7880755Z Finished upload of generated/torchaudio.prototype.functional.sinc_impulse_response.html 2023-07-13T14:54:24.7882300Z Starting upload of generated/torchaudio.prototype.models.ConformerWav2Vec2PretrainModel.html 2023-07-13T14:54:24.9222449Z Finished upload of generated/torchaudio.prototype.models.ConformerWav2Vec2PretrainModel.html 2023-07-13T14:54:24.9224553Z Starting upload of generated/torchaudio.prototype.models.ConvEmformer.html 2023-07-13T14:54:24.9645015Z Finished upload of generated/torchaudio.prototype.models.ConvEmformer.html 2023-07-13T14:54:24.9646044Z Starting upload of generated/torchaudio.prototype.models.HiFiGANVocoder.html 2023-07-13T14:54:25.0709738Z Finished upload of generated/torchaudio.prototype.models.HiFiGANVocoder.html 2023-07-13T14:54:25.0710818Z Starting upload of generated/torchaudio.prototype.models.SquimObjective.html 2023-07-13T14:54:25.1759796Z Finished upload of generated/torchaudio.prototype.models.SquimObjective.html 2023-07-13T14:54:25.1760959Z Starting upload of generated/torchaudio.prototype.models.SquimSubjective.html 2023-07-13T14:54:25.2809800Z Finished upload of generated/torchaudio.prototype.models.SquimSubjective.html 2023-07-13T14:54:25.2810686Z Starting upload of generated/torchaudio.prototype.models.conformer_rnnt_base.html 2023-07-13T14:54:25.3434724Z Finished upload of generated/torchaudio.prototype.models.conformer_rnnt_base.html 2023-07-13T14:54:25.3436415Z Starting upload of generated/torchaudio.prototype.models.conformer_rnnt_model.html 2023-07-13T14:54:25.4735188Z Finished upload of generated/torchaudio.prototype.models.conformer_rnnt_model.html 2023-07-13T14:54:25.4736239Z Starting upload of generated/torchaudio.prototype.models.conformer_wav2vec2_base.html 2023-07-13T14:54:25.5488789Z Finished upload of generated/torchaudio.prototype.models.conformer_wav2vec2_base.html 2023-07-13T14:54:25.5490308Z Starting upload of generated/torchaudio.prototype.models.conformer_wav2vec2_model.html 2023-07-13T14:54:25.6579373Z Finished upload of generated/torchaudio.prototype.models.conformer_wav2vec2_model.html 2023-07-13T14:54:25.6580176Z Starting upload of generated/torchaudio.prototype.models.conformer_wav2vec2_pretrain_base.html 2023-07-13T14:54:25.7533822Z Finished upload of generated/torchaudio.prototype.models.conformer_wav2vec2_pretrain_base.html 2023-07-13T14:54:25.7535248Z Starting upload of generated/torchaudio.prototype.models.conformer_wav2vec2_pretrain_large.html 2023-07-13T14:54:25.8402383Z Finished upload of generated/torchaudio.prototype.models.conformer_wav2vec2_pretrain_large.html 2023-07-13T14:54:25.8403172Z Starting upload of generated/torchaudio.prototype.models.conformer_wav2vec2_pretrain_model.html 2023-07-13T14:54:25.9084610Z Finished upload of generated/torchaudio.prototype.models.conformer_wav2vec2_pretrain_model.html 2023-07-13T14:54:25.9085365Z Starting upload of generated/torchaudio.prototype.models.emformer_hubert_base.html 2023-07-13T14:54:26.0198761Z Finished upload of generated/torchaudio.prototype.models.emformer_hubert_base.html 2023-07-13T14:54:26.0199556Z Starting upload of generated/torchaudio.prototype.models.emformer_hubert_model.html 2023-07-13T14:54:26.1152143Z Finished upload of generated/torchaudio.prototype.models.emformer_hubert_model.html 2023-07-13T14:54:26.1152853Z Starting upload of generated/torchaudio.prototype.models.hifigan_vocoder.html 2023-07-13T14:54:26.2411760Z Finished upload of generated/torchaudio.prototype.models.hifigan_vocoder.html 2023-07-13T14:54:26.2412547Z Starting upload of generated/torchaudio.prototype.models.hifigan_vocoder_v1.html 2023-07-13T14:54:26.3279643Z Finished upload of generated/torchaudio.prototype.models.hifigan_vocoder_v1.html 2023-07-13T14:54:26.3280339Z Starting upload of generated/torchaudio.prototype.models.hifigan_vocoder_v2.html 2023-07-13T14:54:26.4449266Z Finished upload of generated/torchaudio.prototype.models.hifigan_vocoder_v2.html 2023-07-13T14:54:26.4449997Z Starting upload of generated/torchaudio.prototype.models.hifigan_vocoder_v3.html 2023-07-13T14:54:26.5769199Z Finished upload of generated/torchaudio.prototype.models.hifigan_vocoder_v3.html 2023-07-13T14:54:26.5795133Z Starting upload of generated/torchaudio.prototype.models.squim_objective_base.html 2023-07-13T14:54:26.6764445Z Finished upload of generated/torchaudio.prototype.models.squim_objective_base.html 2023-07-13T14:54:26.6765567Z Starting upload of generated/torchaudio.prototype.models.squim_objective_model.html 2023-07-13T14:54:26.8682834Z Finished upload of generated/torchaudio.prototype.models.squim_objective_model.html 2023-07-13T14:54:26.8683672Z Starting upload of generated/torchaudio.prototype.models.squim_subjective_base.html 2023-07-13T14:54:26.9504450Z Finished upload of generated/torchaudio.prototype.models.squim_subjective_base.html 2023-07-13T14:54:26.9505344Z Starting upload of generated/torchaudio.prototype.models.squim_subjective_model.html 2023-07-13T14:54:27.1204757Z Finished upload of generated/torchaudio.prototype.models.squim_subjective_model.html 2023-07-13T14:54:27.1205941Z Starting upload of generated/torchaudio.prototype.pipelines.EMFORMER_RNNT_BASE_MUSTC.html 2023-07-13T14:54:27.3153243Z Finished upload of generated/torchaudio.prototype.pipelines.EMFORMER_RNNT_BASE_MUSTC.html 2023-07-13T14:54:27.3154344Z Starting upload of generated/torchaudio.prototype.pipelines.EMFORMER_RNNT_BASE_TEDLIUM3.html 2023-07-13T14:54:27.5380488Z Finished upload of generated/torchaudio.prototype.pipelines.EMFORMER_RNNT_BASE_TEDLIUM3.html 2023-07-13T14:54:27.5381824Z Starting upload of generated/torchaudio.prototype.pipelines.HIFIGAN_VOCODER_V3_LJSPEECH.html 2023-07-13T14:54:27.6288203Z Finished upload of generated/torchaudio.prototype.pipelines.HIFIGAN_VOCODER_V3_LJSPEECH.html 2023-07-13T14:54:27.6289444Z Starting upload of generated/torchaudio.prototype.pipelines.HiFiGANVocoderBundle.html 2023-07-13T14:54:27.7231153Z Finished upload of generated/torchaudio.prototype.pipelines.HiFiGANVocoderBundle.html 2023-07-13T14:54:27.7232399Z Starting upload of generated/torchaudio.prototype.pipelines.SQUIM_OBJECTIVE.html 2023-07-13T14:54:27.8750414Z Finished upload of generated/torchaudio.prototype.pipelines.SQUIM_OBJECTIVE.html 2023-07-13T14:54:27.8751396Z Starting upload of generated/torchaudio.prototype.pipelines.SQUIM_SUBJECTIVE.html 2023-07-13T14:54:28.1059452Z Finished upload of generated/torchaudio.prototype.pipelines.SQUIM_SUBJECTIVE.html 2023-07-13T14:54:28.1060260Z Starting upload of generated/torchaudio.prototype.pipelines.SquimObjectiveBundle.html 2023-07-13T14:54:28.2103780Z Finished upload of generated/torchaudio.prototype.pipelines.SquimObjectiveBundle.html 2023-07-13T14:54:28.2104640Z Starting upload of generated/torchaudio.prototype.pipelines.SquimSubjectiveBundle.html 2023-07-13T14:54:28.3185655Z Finished upload of generated/torchaudio.prototype.pipelines.SquimSubjectiveBundle.html 2023-07-13T14:54:28.3186570Z Starting upload of generated/torchaudio.prototype.transforms.BarkScale.html 2023-07-13T14:54:28.4016090Z Finished upload of generated/torchaudio.prototype.transforms.BarkScale.html 2023-07-13T14:54:28.4016913Z Starting upload of generated/torchaudio.prototype.transforms.BarkSpectrogram.html 2023-07-13T14:54:28.5134618Z Finished upload of generated/torchaudio.prototype.transforms.BarkSpectrogram.html 2023-07-13T14:54:28.5135518Z Starting upload of generated/torchaudio.prototype.transforms.ChromaScale.html 2023-07-13T14:54:28.6054399Z Finished upload of generated/torchaudio.prototype.transforms.ChromaScale.html 2023-07-13T14:54:28.6055296Z Starting upload of generated/torchaudio.prototype.transforms.ChromaSpectrogram.html 2023-07-13T14:54:28.7261628Z Finished upload of generated/torchaudio.prototype.transforms.ChromaSpectrogram.html 2023-07-13T14:54:28.7262681Z Starting upload of generated/torchaudio.prototype.transforms.InverseBarkScale.html 2023-07-13T14:54:28.8188970Z Finished upload of generated/torchaudio.prototype.transforms.InverseBarkScale.html 2023-07-13T14:54:28.8189893Z Starting upload of generated/torchaudio.sox_effects.apply_effects_file.html 2023-07-13T14:54:28.9222801Z Finished upload of generated/torchaudio.sox_effects.apply_effects_file.html 2023-07-13T14:54:28.9223701Z Starting upload of generated/torchaudio.sox_effects.apply_effects_tensor.html 2023-07-13T14:54:29.0254585Z Finished upload of generated/torchaudio.sox_effects.apply_effects_tensor.html 2023-07-13T14:54:29.0255615Z Starting upload of generated/torchaudio.sox_effects.effect_names.html 2023-07-13T14:54:29.1276248Z Finished upload of generated/torchaudio.sox_effects.effect_names.html 2023-07-13T14:54:29.1277085Z Starting upload of generated/torchaudio.transforms.AddNoise.html 2023-07-13T14:54:29.2511662Z Finished upload of generated/torchaudio.transforms.AddNoise.html 2023-07-13T14:54:29.2512518Z Starting upload of generated/torchaudio.transforms.AmplitudeToDB.html 2023-07-13T14:54:29.3535297Z Finished upload of generated/torchaudio.transforms.AmplitudeToDB.html 2023-07-13T14:54:29.3536489Z Starting upload of generated/torchaudio.transforms.ComputeDeltas.html 2023-07-13T14:54:29.4740836Z Finished upload of generated/torchaudio.transforms.ComputeDeltas.html 2023-07-13T14:54:29.4741545Z Starting upload of generated/torchaudio.transforms.Convolve.html 2023-07-13T14:54:29.5730327Z Finished upload of generated/torchaudio.transforms.Convolve.html 2023-07-13T14:54:29.5731995Z Starting upload of generated/torchaudio.transforms.Deemphasis.html 2023-07-13T14:54:29.6656416Z Finished upload of generated/torchaudio.transforms.Deemphasis.html 2023-07-13T14:54:29.6657979Z Starting upload of generated/torchaudio.transforms.FFTConvolve.html 2023-07-13T14:54:29.8076290Z Finished upload of generated/torchaudio.transforms.FFTConvolve.html 2023-07-13T14:54:29.8078423Z Starting upload of generated/torchaudio.transforms.Fade.html 2023-07-13T14:54:29.9177234Z Finished upload of generated/torchaudio.transforms.Fade.html 2023-07-13T14:54:29.9178808Z Starting upload of generated/torchaudio.transforms.FrequencyMasking.html 2023-07-13T14:54:30.0188441Z Finished upload of generated/torchaudio.transforms.FrequencyMasking.html 2023-07-13T14:54:30.0189408Z Starting upload of generated/torchaudio.transforms.GriffinLim.html 2023-07-13T14:54:30.1383021Z Finished upload of generated/torchaudio.transforms.GriffinLim.html 2023-07-13T14:54:30.1383860Z Starting upload of generated/torchaudio.transforms.InverseMelScale.html 2023-07-13T14:54:30.2581090Z Finished upload of generated/torchaudio.transforms.InverseMelScale.html 2023-07-13T14:54:30.2581855Z Starting upload of generated/torchaudio.transforms.InverseSpectrogram.html 2023-07-13T14:54:30.3283832Z Finished upload of generated/torchaudio.transforms.InverseSpectrogram.html 2023-07-13T14:54:30.3284480Z Starting upload of generated/torchaudio.transforms.LFCC.html 2023-07-13T14:54:30.4556484Z Finished upload of generated/torchaudio.transforms.LFCC.html 2023-07-13T14:54:30.4557272Z Starting upload of generated/torchaudio.transforms.Loudness.html 2023-07-13T14:54:30.5726805Z Finished upload of generated/torchaudio.transforms.Loudness.html 2023-07-13T14:54:30.5727553Z Starting upload of generated/torchaudio.transforms.MFCC.html 2023-07-13T14:54:30.6609768Z Finished upload of generated/torchaudio.transforms.MFCC.html 2023-07-13T14:54:30.6610596Z Starting upload of generated/torchaudio.transforms.MVDR.html 2023-07-13T14:54:30.7485599Z Finished upload of generated/torchaudio.transforms.MVDR.html 2023-07-13T14:54:30.7486286Z Starting upload of generated/torchaudio.transforms.MelScale.html 2023-07-13T14:54:30.8544690Z Finished upload of generated/torchaudio.transforms.MelScale.html 2023-07-13T14:54:30.8546196Z Starting upload of generated/torchaudio.transforms.MelSpectrogram.html 2023-07-13T14:54:30.9229394Z Finished upload of generated/torchaudio.transforms.MelSpectrogram.html 2023-07-13T14:54:30.9230294Z Starting upload of generated/torchaudio.transforms.MuLawDecoding.html 2023-07-13T14:54:31.0246299Z Finished upload of generated/torchaudio.transforms.MuLawDecoding.html 2023-07-13T14:54:31.0247595Z Starting upload of generated/torchaudio.transforms.MuLawEncoding.html 2023-07-13T14:54:31.1140323Z Finished upload of generated/torchaudio.transforms.MuLawEncoding.html 2023-07-13T14:54:31.1141714Z Starting upload of generated/torchaudio.transforms.PSD.html 2023-07-13T14:54:31.1965562Z Finished upload of generated/torchaudio.transforms.PSD.html 2023-07-13T14:54:31.1966196Z Starting upload of generated/torchaudio.transforms.PitchShift.html 2023-07-13T14:54:31.2898548Z Finished upload of generated/torchaudio.transforms.PitchShift.html 2023-07-13T14:54:31.2899362Z Starting upload of generated/torchaudio.transforms.Preemphasis.html 2023-07-13T14:54:31.3815435Z Finished upload of generated/torchaudio.transforms.Preemphasis.html 2023-07-13T14:54:31.3816080Z Starting upload of generated/torchaudio.transforms.RNNTLoss.html 2023-07-13T14:54:31.5129421Z Finished upload of generated/torchaudio.transforms.RNNTLoss.html 2023-07-13T14:54:31.5130234Z Starting upload of generated/torchaudio.transforms.RTFMVDR.html 2023-07-13T14:54:31.6190805Z Finished upload of generated/torchaudio.transforms.RTFMVDR.html 2023-07-13T14:54:31.6191879Z Starting upload of generated/torchaudio.transforms.Resample.html 2023-07-13T14:54:31.7063903Z Finished upload of generated/torchaudio.transforms.Resample.html 2023-07-13T14:54:31.7064649Z Starting upload of generated/torchaudio.transforms.SlidingWindowCmn.html 2023-07-13T14:54:31.7886991Z Finished upload of generated/torchaudio.transforms.SlidingWindowCmn.html 2023-07-13T14:54:31.7887649Z Starting upload of generated/torchaudio.transforms.SoudenMVDR.html 2023-07-13T14:54:31.8731462Z Finished upload of generated/torchaudio.transforms.SoudenMVDR.html 2023-07-13T14:54:31.8732119Z Starting upload of generated/torchaudio.transforms.SpectralCentroid.html 2023-07-13T14:54:31.9928748Z Finished upload of generated/torchaudio.transforms.SpectralCentroid.html 2023-07-13T14:54:31.9929550Z Starting upload of generated/torchaudio.transforms.Spectrogram.html 2023-07-13T14:54:32.1134425Z Finished upload of generated/torchaudio.transforms.Spectrogram.html 2023-07-13T14:54:32.1135694Z Starting upload of generated/torchaudio.transforms.Speed.html 2023-07-13T14:54:32.2153098Z Finished upload of generated/torchaudio.transforms.Speed.html 2023-07-13T14:54:32.2154550Z Starting upload of generated/torchaudio.transforms.SpeedPerturbation.html 2023-07-13T14:54:32.2999493Z Finished upload of generated/torchaudio.transforms.SpeedPerturbation.html 2023-07-13T14:54:32.3000249Z Starting upload of generated/torchaudio.transforms.TimeMasking.html 2023-07-13T14:54:32.4040694Z Finished upload of generated/torchaudio.transforms.TimeMasking.html 2023-07-13T14:54:32.4041359Z Starting upload of generated/torchaudio.transforms.TimeStretch.html 2023-07-13T14:54:32.4776041Z Finished upload of generated/torchaudio.transforms.TimeStretch.html 2023-07-13T14:54:32.4777331Z Starting upload of generated/torchaudio.transforms.Vad.html 2023-07-13T14:54:32.6010221Z Finished upload of generated/torchaudio.transforms.Vad.html 2023-07-13T14:54:32.6010848Z Starting upload of generated/torchaudio.transforms.Vol.html 2023-07-13T14:54:32.7076142Z Finished upload of generated/torchaudio.transforms.Vol.html 2023-07-13T14:54:32.7077094Z Starting upload of generated/torchaudio.utils.ffmpeg_utils.html 2023-07-13T14:54:32.7767176Z Finished upload of generated/torchaudio.utils.ffmpeg_utils.html 2023-07-13T14:54:32.7767863Z Starting upload of generated/torchaudio.utils.sox_utils.html 2023-07-13T14:54:32.8762490Z Finished upload of generated/torchaudio.utils.sox_utils.html 2023-07-13T14:54:32.8763023Z Starting upload of genindex.html 2023-07-13T14:54:33.0432479Z Finished upload of genindex.html 2023-07-13T14:54:33.0433492Z Starting upload of hw_acceleration_tutorial.html 2023-07-13T14:54:33.1828595Z Finished upload of hw_acceleration_tutorial.html 2023-07-13T14:54:33.1829788Z Starting upload of hw_acceleration_tutorial.ipynb 2023-07-13T14:54:33.4552293Z Finished upload of hw_acceleration_tutorial.ipynb 2023-07-13T14:54:33.4553545Z Starting upload of index.html 2023-07-13T14:54:33.6170097Z Finished upload of index.html 2023-07-13T14:54:33.6170807Z Starting upload of installation.html 2023-07-13T14:54:33.7314711Z Finished upload of installation.html 2023-07-13T14:54:33.7315211Z Starting upload of io.html 2023-07-13T14:54:33.8559325Z Finished upload of io.html 2023-07-13T14:54:33.8560060Z Starting upload of kaldi_io.html 2023-07-13T14:54:33.9625971Z Finished upload of kaldi_io.html 2023-07-13T14:54:33.9626925Z Starting upload of libtorchaudio.html 2023-07-13T14:54:34.1397308Z Finished upload of libtorchaudio.html 2023-07-13T14:54:34.1398287Z Starting upload of libtorchaudio.stream_reader.html 2023-07-13T14:54:34.2550160Z Finished upload of libtorchaudio.stream_reader.html 2023-07-13T14:54:34.2551810Z Starting upload of libtorchaudio.stream_writer.html 2023-07-13T14:54:34.3794539Z Finished upload of libtorchaudio.stream_writer.html 2023-07-13T14:54:34.3795775Z Starting upload of logo.html 2023-07-13T14:54:34.4794561Z Finished upload of logo.html 2023-07-13T14:54:34.4795313Z Starting upload of models.decoder.html 2023-07-13T14:54:34.5799056Z Finished upload of models.decoder.html 2023-07-13T14:54:34.5799857Z Starting upload of models.html 2023-07-13T14:54:34.6824911Z Finished upload of models.html 2023-07-13T14:54:34.6825950Z Starting upload of objects.inv 2023-07-13T14:54:34.7673650Z Finished upload of objects.inv 2023-07-13T14:54:34.7674813Z Starting upload of pipelines.html 2023-07-13T14:54:34.8959222Z Finished upload of pipelines.html 2023-07-13T14:54:34.8960330Z Starting upload of prototype.datasets.html 2023-07-13T14:54:34.9978560Z Finished upload of prototype.datasets.html 2023-07-13T14:54:34.9979236Z Starting upload of prototype.functional.html 2023-07-13T14:54:35.1000727Z Finished upload of prototype.functional.html 2023-07-13T14:54:35.1001526Z Starting upload of prototype.html 2023-07-13T14:54:35.2157313Z Finished upload of prototype.html 2023-07-13T14:54:35.2157968Z Starting upload of prototype.models.html 2023-07-13T14:54:35.2797777Z Finished upload of prototype.models.html 2023-07-13T14:54:35.2798733Z Starting upload of prototype.pipelines.html 2023-07-13T14:54:35.3852666Z Finished upload of prototype.pipelines.html 2023-07-13T14:54:35.3853593Z Starting upload of prototype.transforms.html 2023-07-13T14:54:35.4639505Z Finished upload of prototype.transforms.html 2023-07-13T14:54:35.4640980Z Starting upload of py-modindex.html 2023-07-13T14:54:35.5749327Z Finished upload of py-modindex.html 2023-07-13T14:54:35.5749818Z Starting upload of references.html 2023-07-13T14:54:35.6850812Z Finished upload of references.html 2023-07-13T14:54:35.6851573Z Starting upload of search.html 2023-07-13T14:54:35.8213746Z Finished upload of search.html 2023-07-13T14:54:35.8214434Z Starting upload of searchindex.js 2023-07-13T14:54:35.9736855Z Finished upload of searchindex.js 2023-07-13T14:54:35.9737575Z Starting upload of sox_effects.html 2023-07-13T14:54:36.0901288Z Finished upload of sox_effects.html 2023-07-13T14:54:36.0902223Z Starting upload of supported_features.html 2023-07-13T14:54:36.1833072Z Finished upload of supported_features.html 2023-07-13T14:54:36.1833828Z Starting upload of torchaudio.html 2023-07-13T14:54:36.2931432Z Finished upload of torchaudio.html 2023-07-13T14:54:36.2932749Z Starting upload of transforms.html 2023-07-13T14:54:36.4296025Z Finished upload of transforms.html 2023-07-13T14:54:36.4296801Z Starting upload of tutorials/additive_synthesis_tutorial.html 2023-07-13T14:54:36.5738906Z Finished upload of tutorials/additive_synthesis_tutorial.html 2023-07-13T14:54:36.5741901Z Starting upload of tutorials/asr_inference_with_ctc_decoder_tutorial.html 2023-07-13T14:54:36.7625103Z Finished upload of tutorials/asr_inference_with_ctc_decoder_tutorial.html 2023-07-13T14:54:36.7626482Z Starting upload of tutorials/audio_data_augmentation_tutorial.html 2023-07-13T14:54:37.0527595Z Finished upload of tutorials/audio_data_augmentation_tutorial.html 2023-07-13T14:54:37.0528835Z Starting upload of tutorials/audio_datasets_tutorial.html 2023-07-13T14:54:37.1457982Z Finished upload of tutorials/audio_datasets_tutorial.html 2023-07-13T14:54:37.1458587Z Starting upload of tutorials/audio_feature_augmentation_tutorial.html 2023-07-13T14:54:37.2512167Z Finished upload of tutorials/audio_feature_augmentation_tutorial.html 2023-07-13T14:54:37.2513016Z Starting upload of tutorials/audio_feature_extractions_tutorial.html 2023-07-13T14:54:37.4116913Z Finished upload of tutorials/audio_feature_extractions_tutorial.html 2023-07-13T14:54:37.4117639Z Starting upload of tutorials/audio_io_tutorial.html 2023-07-13T14:54:37.5563194Z Finished upload of tutorials/audio_io_tutorial.html 2023-07-13T14:54:37.5563913Z Starting upload of tutorials/audio_resampling_tutorial.html 2023-07-13T14:54:37.8077146Z Finished upload of tutorials/audio_resampling_tutorial.html 2023-07-13T14:54:37.8078872Z Starting upload of tutorials/ctc_forced_alignment_api_tutorial.html 2023-07-13T14:54:37.9502171Z Finished upload of tutorials/ctc_forced_alignment_api_tutorial.html 2023-07-13T14:54:37.9502973Z Starting upload of tutorials/device_asr.html 2023-07-13T14:54:38.1122485Z Finished upload of tutorials/device_asr.html 2023-07-13T14:54:38.1123207Z Starting upload of tutorials/effector_tutorial.html 2023-07-13T14:54:38.3252622Z Finished upload of tutorials/effector_tutorial.html 2023-07-13T14:54:38.3253450Z Starting upload of tutorials/filter_design_tutorial.html 2023-07-13T14:54:38.4015504Z Finished upload of tutorials/filter_design_tutorial.html 2023-07-13T14:54:38.4016313Z Starting upload of tutorials/forced_alignment_for_multilingual_data_tutorial.html 2023-07-13T14:54:38.6024191Z Finished upload of tutorials/forced_alignment_for_multilingual_data_tutorial.html 2023-07-13T14:54:38.6025002Z Starting upload of tutorials/forced_alignment_tutorial.html 2023-07-13T14:54:38.7679718Z Finished upload of tutorials/forced_alignment_tutorial.html 2023-07-13T14:54:38.7680756Z Starting upload of tutorials/hybrid_demucs_tutorial.html 2023-07-13T14:54:38.9264431Z Finished upload of tutorials/hybrid_demucs_tutorial.html 2023-07-13T14:54:38.9266020Z Starting upload of tutorials/mvdr_tutorial.html 2023-07-13T14:54:39.1289740Z Finished upload of tutorials/mvdr_tutorial.html 2023-07-13T14:54:39.1290488Z Starting upload of tutorials/online_asr_tutorial.html 2023-07-13T14:54:39.6766354Z Finished upload of tutorials/online_asr_tutorial.html 2023-07-13T14:54:39.6767135Z Starting upload of tutorials/oscillator_tutorial.html 2023-07-13T14:54:39.7727801Z Finished upload of tutorials/oscillator_tutorial.html 2023-07-13T14:54:39.7728553Z Starting upload of tutorials/sg_execution_times.html 2023-07-13T14:54:39.8323933Z Finished upload of tutorials/sg_execution_times.html 2023-07-13T14:54:39.8325104Z Starting upload of tutorials/speech_recognition_pipeline_tutorial.html 2023-07-13T14:54:39.9524389Z Finished upload of tutorials/speech_recognition_pipeline_tutorial.html 2023-07-13T14:54:39.9525606Z Starting upload of tutorials/squim_tutorial.html 2023-07-13T14:54:40.0962201Z Finished upload of tutorials/squim_tutorial.html 2023-07-13T14:54:40.0962996Z Starting upload of tutorials/streamreader_advanced_tutorial.html 2023-07-13T14:54:40.1886602Z Finished upload of tutorials/streamreader_advanced_tutorial.html 2023-07-13T14:54:40.1888120Z Starting upload of tutorials/streamreader_basic_tutorial.html 2023-07-13T14:54:40.2887810Z Finished upload of tutorials/streamreader_basic_tutorial.html 2023-07-13T14:54:40.2888746Z Starting upload of tutorials/streamwriter_advanced.html 2023-07-13T14:54:40.3844835Z Finished upload of tutorials/streamwriter_advanced.html 2023-07-13T14:54:40.3846206Z Starting upload of tutorials/streamwriter_basic_tutorial.html 2023-07-13T14:54:40.5472421Z Finished upload of tutorials/streamwriter_basic_tutorial.html 2023-07-13T14:54:40.5473158Z Starting upload of tutorials/subtractive_synthesis_tutorial.html 2023-07-13T14:54:40.7004141Z Finished upload of tutorials/subtractive_synthesis_tutorial.html 2023-07-13T14:54:40.7005061Z Starting upload of tutorials/tacotron2_pipeline_tutorial.html 2023-07-13T14:54:40.8358569Z Finished upload of tutorials/tacotron2_pipeline_tutorial.html 2023-07-13T14:54:40.8359265Z Starting upload of utils.html 2023-07-13T14:54:40.9030018Z Finished upload of utils.html 2023-07-13T14:54:40.9145908Z Prepare all required actions 2023-07-13T14:54:40.9166708Z ##[group]Run ./test-infra/.github/actions/teardown-linux 2023-07-13T14:54:40.9166947Z with: 2023-07-13T14:54:40.9167119Z env: 2023-07-13T14:54:40.9167334Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-07-13T14:54:40.9167585Z REPOSITORY: pytorch/audio 2023-07-13T14:54:40.9167800Z PR_NUMBER: 306 2023-07-13T14:54:40.9171315Z SCRIPT: # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export FFMPEG_VERSION=6.0 export CODEC_HEADER_VERSION=n12.0.16.0 export COMPUTE_CAPABILITY=86 export BUILD_VERSION="$( cut -f 1 -d a version.txt )".dev"$(date "+%Y%m%d")" # 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 # Create Conda Env conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env # Install PyTorch / TorchAudio first set -ex set +u # don't know why conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" # Install torchaudio conda install --quiet --yes pkg-config cmake>=3.18.0 ninja pip install --progress-bar off -v -e . --no-use-pep517 # Install FFmpeg-dependencies conda install --quiet --yes -c conda-forge yasm x264 gnutls pkg-config lame libopus libvpx openh264 openssl x264 # Build FFmpeg with NVIDIA Video Codec SDK # TODO cache this ( git clone --quiet https://git.videolan.org/git/ffmpeg/nv-codec-headers.git cd nv-codec-headers git checkout ${CODEC_HEADER_VERSION} make PREFIX=${CONDA_PREFIX} install ) ( wget -q https://github.com/FFmpeg/FFmpeg/archive/refs/tags/n${FFMPEG_VERSION}.tar.gz tar -xf n${FFMPEG_VERSION}.tar.gz cd ./FFmpeg-n${FFMPEG_VERSION} export revision=${FFMPEG_VERSION} ./configure \ --prefix=${CONDA_PREFIX} \ --extra-cflags="-I${CONDA_PREFIX}/include" \ --extra-ldflags="-L${CONDA_PREFIX}/lib" \ --nvccflags="-gencode arch=compute_${COMPUTE_CAPABILITY},code=sm_${COMPUTE_CAPABILITY} -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 make clean make -j > /dev/null 2>&1 make install # test # src="https://download.pytorch.org/torchaudio/tutorial-assets/stream-api/NASAs_Most_Scientifically_Complex_Space_Observatory_Requires_Precision-MP4_small.mp4" # ffmpeg -y -vsync 0 -hwaccel cuvid -hwaccel_output_format cuda -c:v h264_cuvid -resize 360x240 -i "${src}" -c:a copy -c:v h264_nvenc -b:v 5M test.mp4 ) # Install runtime dependencies pip --quiet install git+https://github.com/kpu/kenlm/ flashlight-text # Install build tools conda install --quiet -y -c conda-forge pandoc doxygen pysoundfile pip install --quiet -r docs/requirements.txt -r docs/requirements-tutorials.txt # Build docs export BUILD_GALLERY=true (cd docs && make html) cp -rf docs/build/html/* "${RUNNER_DOCS_DIR}" mv docs/build/html /artifacts/ 2023-07-13T14:54:40.9175089Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-07-13T14:54:40.9175444Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-07-13T14:54:40.9175778Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-07-13T14:54:40.9176207Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-07-13T14:54:40.9176451Z ##[endgroup] 2023-07-13T14:54:40.9191864Z ##[group]Run set -eou pipefail 2023-07-13T14:54:40.9192152Z set -eou pipefail 2023-07-13T14:54:40.9192438Z  2023-07-13T14:54:40.9192710Z echo "Holding runner for 2 hours until all ssh sessions have logged out" 2023-07-13T14:54:40.9192981Z for _ in $(seq 1440); do 2023-07-13T14:54:40.9193232Z  # Break if no ssh session exists anymore 2023-07-13T14:54:40.9193633Z  if [ "$(who)" = "" ]; then 2023-07-13T14:54:40.9193834Z  break 2023-07-13T14:54:40.9194022Z  fi 2023-07-13T14:54:40.9194210Z  echo "." 2023-07-13T14:54:40.9194402Z  sleep 5 2023-07-13T14:54:40.9194596Z done 2023-07-13T14:54:40.9205596Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2023-07-13T14:54:40.9205839Z env: 2023-07-13T14:54:40.9206061Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-07-13T14:54:40.9206314Z REPOSITORY: pytorch/audio 2023-07-13T14:54:40.9206529Z PR_NUMBER: 306 2023-07-13T14:54:40.9209894Z SCRIPT: # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export FFMPEG_VERSION=6.0 export CODEC_HEADER_VERSION=n12.0.16.0 export COMPUTE_CAPABILITY=86 export BUILD_VERSION="$( cut -f 1 -d a version.txt )".dev"$(date "+%Y%m%d")" # 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 # Create Conda Env conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env # Install PyTorch / TorchAudio first set -ex set +u # don't know why conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" # Install torchaudio conda install --quiet --yes pkg-config cmake>=3.18.0 ninja pip install --progress-bar off -v -e . --no-use-pep517 # Install FFmpeg-dependencies conda install --quiet --yes -c conda-forge yasm x264 gnutls pkg-config lame libopus libvpx openh264 openssl x264 # Build FFmpeg with NVIDIA Video Codec SDK # TODO cache this ( git clone --quiet https://git.videolan.org/git/ffmpeg/nv-codec-headers.git cd nv-codec-headers git checkout ${CODEC_HEADER_VERSION} make PREFIX=${CONDA_PREFIX} install ) ( wget -q https://github.com/FFmpeg/FFmpeg/archive/refs/tags/n${FFMPEG_VERSION}.tar.gz tar -xf n${FFMPEG_VERSION}.tar.gz cd ./FFmpeg-n${FFMPEG_VERSION} export revision=${FFMPEG_VERSION} ./configure \ --prefix=${CONDA_PREFIX} \ --extra-cflags="-I${CONDA_PREFIX}/include" \ --extra-ldflags="-L${CONDA_PREFIX}/lib" \ --nvccflags="-gencode arch=compute_${COMPUTE_CAPABILITY},code=sm_${COMPUTE_CAPABILITY} -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 make clean make -j > /dev/null 2>&1 make install # test # src="https://download.pytorch.org/torchaudio/tutorial-assets/stream-api/NASAs_Most_Scientifically_Complex_Space_Observatory_Requires_Precision-MP4_small.mp4" # ffmpeg -y -vsync 0 -hwaccel cuvid -hwaccel_output_format cuda -c:v h264_cuvid -resize 360x240 -i "${src}" -c:a copy -c:v h264_nvenc -b:v 5M test.mp4 ) # Install runtime dependencies pip --quiet install git+https://github.com/kpu/kenlm/ flashlight-text # Install build tools conda install --quiet -y -c conda-forge pandoc doxygen pysoundfile pip install --quiet -r docs/requirements.txt -r docs/requirements-tutorials.txt # Build docs export BUILD_GALLERY=true (cd docs && make html) cp -rf docs/build/html/* "${RUNNER_DOCS_DIR}" mv docs/build/html /artifacts/ 2023-07-13T14:54:40.9213585Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-07-13T14:54:40.9213940Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-07-13T14:54:40.9214275Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-07-13T14:54:40.9214579Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-07-13T14:54:40.9214829Z ##[endgroup] 2023-07-13T14:54:40.9236467Z Holding runner for 2 hours until all ssh sessions have logged out 2023-07-13T14:54:40.9272229Z ##[group]Run # ignore expansion of "docker ps -q" since it could be empty 2023-07-13T14:54:40.9272574Z # ignore expansion of "docker ps -q" since it could be empty 2023-07-13T14:54:40.9272856Z # shellcheck disable=SC2046 2023-07-13T14:54:40.9273119Z docker stop $(docker ps -q) || true 2023-07-13T14:54:40.9273366Z # Prune all of the docker images 2023-07-13T14:54:40.9273613Z docker system prune -af 2023-07-13T14:54:40.9282804Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2023-07-13T14:54:40.9283042Z env: 2023-07-13T14:54:40.9283265Z DOCKER_IMAGE: pytorch/conda-builder:cuda11.8 2023-07-13T14:54:40.9283510Z REPOSITORY: pytorch/audio 2023-07-13T14:54:40.9283722Z PR_NUMBER: 306 2023-07-13T14:54:40.9287150Z SCRIPT: # Mark Build Directory Safe git config --global --add safe.directory /__w/audio/audio # Set up Environment Variables export PYTHON_VERSION="3.10" export CU_VERSION="11.8" export CUDATOOLKIT="pytorch-cuda=${CU_VERSION}" export FFMPEG_VERSION=6.0 export CODEC_HEADER_VERSION=n12.0.16.0 export COMPUTE_CAPABILITY=86 export BUILD_VERSION="$( cut -f 1 -d a version.txt )".dev"$(date "+%Y%m%d")" # 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 # Create Conda Env conda create --quiet -y --prefix ci_env python="${PYTHON_VERSION}" conda activate ./ci_env # Install PyTorch / TorchAudio first set -ex set +u # don't know why conda install \ --yes \ --quiet \ -c "pytorch-${CHANNEL}" \ -c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${CU_VERSION}*"] \ "${CUDATOOLKIT}" # Install torchaudio conda install --quiet --yes pkg-config cmake>=3.18.0 ninja pip install --progress-bar off -v -e . --no-use-pep517 # Install FFmpeg-dependencies conda install --quiet --yes -c conda-forge yasm x264 gnutls pkg-config lame libopus libvpx openh264 openssl x264 # Build FFmpeg with NVIDIA Video Codec SDK # TODO cache this ( git clone --quiet https://git.videolan.org/git/ffmpeg/nv-codec-headers.git cd nv-codec-headers git checkout ${CODEC_HEADER_VERSION} make PREFIX=${CONDA_PREFIX} install ) ( wget -q https://github.com/FFmpeg/FFmpeg/archive/refs/tags/n${FFMPEG_VERSION}.tar.gz tar -xf n${FFMPEG_VERSION}.tar.gz cd ./FFmpeg-n${FFMPEG_VERSION} export revision=${FFMPEG_VERSION} ./configure \ --prefix=${CONDA_PREFIX} \ --extra-cflags="-I${CONDA_PREFIX}/include" \ --extra-ldflags="-L${CONDA_PREFIX}/lib" \ --nvccflags="-gencode arch=compute_${COMPUTE_CAPABILITY},code=sm_${COMPUTE_CAPABILITY} -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 make clean make -j > /dev/null 2>&1 make install # test # src="https://download.pytorch.org/torchaudio/tutorial-assets/stream-api/NASAs_Most_Scientifically_Complex_Space_Observatory_Requires_Precision-MP4_small.mp4" # ffmpeg -y -vsync 0 -hwaccel cuvid -hwaccel_output_format cuda -c:v h264_cuvid -resize 360x240 -i "${src}" -c:a copy -c:v h264_nvenc -b:v 5M test.mp4 ) # Install runtime dependencies pip --quiet install git+https://github.com/kpu/kenlm/ flashlight-text # Install build tools conda install --quiet -y -c conda-forge pandoc doxygen pysoundfile pip install --quiet -r docs/requirements.txt -r docs/requirements-tutorials.txt # Build docs export BUILD_GALLERY=true (cd docs && make html) cp -rf docs/build/html/* "${RUNNER_DOCS_DIR}" mv docs/build/html /artifacts/ 2023-07-13T14:54:40.9290784Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2023-07-13T14:54:40.9291134Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2023-07-13T14:54:40.9291457Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2023-07-13T14:54:40.9291764Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2023-07-13T14:54:40.9292021Z ##[endgroup] 2023-07-13T14:54:51.3853602Z b6e1be200814 2023-07-13T14:54:53.9053069Z Deleted Containers: 2023-07-13T14:54:53.9053388Z b6e1be200814fd95b0f05ebb49b85b4bf553e8c5b2b727604c60f3868a266852 2023-07-13T14:54:53.9053574Z 2023-07-13T14:54:58.3685821Z Deleted Images: 2023-07-13T14:54:58.3686506Z untagged: pytorch/conda-builder:cuda11.8 2023-07-13T14:54:58.3687270Z untagged: pytorch/conda-builder@sha256:5fee47bc124a0ed44d8d74af710d4825c9f96a5454399b86028e45592dbc8c3f 2023-07-13T14:54:58.3687909Z deleted: sha256:0803663685900d71dc6eedbb2aebc10e845b93f3154f6f1c95b5f32cfa40a452 2023-07-13T14:54:58.3688502Z deleted: sha256:0fb4203b62a572c05612c2a50c85da3ad4720fcb5ec17fde82b88ed2dfdab956 2023-07-13T14:54:58.3688988Z deleted: sha256:6445c6f6f89631e951f3c94206ecc2214ee011c670c22e74b57e285eeb55a68d 2023-07-13T14:54:58.3689536Z deleted: sha256:54959cf4a4cfafc419fa02a4e8d12ab154f5d82a337ddc61a127657c5487364e 2023-07-13T14:54:58.3691230Z deleted: sha256:839b1e46bcacbd72a976f7d9cdb62a425c3b0c186d52b510198da2243258319c 2023-07-13T14:54:58.3691877Z deleted: sha256:2b0c8de7c2abf284dc9de45a5e170dc8fbf8943998767cf44146ae1277e04db6 2023-07-13T14:54:58.3692425Z deleted: sha256:fcf23081db516fd88a9ff3cd47ddd31bc7fe19894642c0cc9eb1a1745dc5ae6a 2023-07-13T14:54:58.3692811Z deleted: sha256:03bb51ef2389e190c138a23b93ed1a394e24c136cbd018adb0bbde6511319d5b 2023-07-13T14:54:58.3693231Z deleted: sha256:c8926ad2398010e39eb990df332ab8eb6010cac3ac70b11f123957c6d994533c 2023-07-13T14:54:58.3693738Z deleted: sha256:844c416bbe739ec4fd800cc5d8065a52a345d9dd4f7c8b6820cf38f30fb8e925 2023-07-13T14:54:58.3694196Z deleted: sha256:6528d2d84f5899bf8fec5ccc3848942f3d132b6a5bc9f5fd97e34d413dd56149 2023-07-13T14:54:58.3694552Z deleted: sha256:41ab98c841092d917439cefabf46c0d688ac80958ae99b268ff008cb7616d0b9 2023-07-13T14:54:58.3694902Z deleted: sha256:1088639d3f053fc9d55f3ef6f41dbc29466d2bb46d8aa80378145fdeb421b037 2023-07-13T14:54:58.3695253Z deleted: sha256:48291a42ab986da9103f064d8a2ae1290b1b3be97baede9351ac7ee44f9713ed 2023-07-13T14:54:58.3695613Z deleted: sha256:d60fc98270a40439f44025e75ebca7860dc1641c70eac7a6fb7f44c7775e8bc1 2023-07-13T14:54:58.3695973Z deleted: sha256:621caabbbb5679e6f469a027ea8a8db1fa8729ab5c944eb1d3000f42eb53aede 2023-07-13T14:54:58.3696332Z deleted: sha256:62530fc546e75b1b3f71135012a24fa3f4203975bc7e28a38b7254dfaf3d9079 2023-07-13T14:54:58.3696688Z deleted: sha256:051c101eb3cb2d61b8eea3ad5aac843a83f9239a4babc2a1d9c98391c182805c 2023-07-13T14:54:58.3697096Z deleted: sha256:16e7770e5d221bed660fe7d8c77e14ab566675de45a6e15313f0e94f56fd66fe 2023-07-13T14:54:58.3697434Z deleted: sha256:7786634cbc71898b12c27aa6ca5a2e35c91353c660234c6c8272c8de94bbeea6 2023-07-13T14:54:58.3697782Z deleted: sha256:2c764404cda355f281887f6fd7f7cf04f42e240dfb2e0c05e9534493ea4e9c5a 2023-07-13T14:54:58.3698118Z deleted: sha256:174f5685490326fc0a1c0f5570b8663732189b327007e47ff13d2ca59673db02 2023-07-13T14:54:58.3698551Z untagged: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine:latest 2023-07-13T14:54:58.3699102Z untagged: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine@sha256:def822f9851ca422481ec6fee59a9966f12b351c62ccb9aca841526ffaa9f748 2023-07-13T14:54:58.3699748Z deleted: sha256:6dbb9cc54074106d46d4ccb330f2a40a682d49dda5f4844962b7dce9fe44aaec 2023-07-13T14:54:58.3700207Z deleted: sha256:b2d5eeeaba3a22b9b8aa97261957974a6bd65274ebd43e1d81d0a7b8b752b116 2023-07-13T14:54:58.3700417Z 2023-07-13T14:54:58.3724845Z Total reclaimed space: 29.7GB 2023-07-13T14:54:58.3781721Z Post job cleanup. 2023-07-13T14:54:58.4590663Z [command]/usr/bin/git version 2023-07-13T14:54:58.4807220Z git version 2.40.1 2023-07-13T14:54:58.4846621Z Temporarily overriding HOME='/home/ec2-user/actions-runner/_work/_temp/018c474f-b49c-4ed8-95d0-89c7e9e61c89' before making global git config changes 2023-07-13T14:54:58.4847312Z Adding repository directory to the temporary git global config as a safe directory 2023-07-13T14:54:58.4852593Z [command]/usr/bin/git config --global --add safe.directory /home/ec2-user/actions-runner/_work/audio/audio/pytorch/audio 2023-07-13T14:54:58.4888125Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2023-07-13T14:54:58.4915265Z [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-07-13T14:54:58.5181339Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2023-07-13T14:54:58.5197458Z http.https://github.com/.extraheader 2023-07-13T14:54:58.5205608Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader 2023-07-13T14:54:58.5225911Z [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-07-13T14:54:58.5525650Z Post job cleanup. 2023-07-13T14:54:58.6335147Z [command]/usr/bin/git version 2023-07-13T14:54:58.6375914Z git version 2.40.1 2023-07-13T14:54:58.6417698Z Temporarily overriding HOME='/home/ec2-user/actions-runner/_work/_temp/32326170-a0d2-49a3-b605-33359f3ee108' before making global git config changes 2023-07-13T14:54:58.6418590Z Adding repository directory to the temporary git global config as a safe directory 2023-07-13T14:54:58.6423834Z [command]/usr/bin/git config --global --add safe.directory /home/ec2-user/actions-runner/_work/audio/audio/test-infra 2023-07-13T14:54:58.6454770Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2023-07-13T14:54:58.6476307Z [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-07-13T14:54:58.6687691Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2023-07-13T14:54:58.6704723Z http.https://github.com/.extraheader 2023-07-13T14:54:58.6712592Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader 2023-07-13T14:54:58.6734138Z [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-07-13T14:54:58.7109275Z Cleaning up orphan processes