2024-08-22T20:27:32.1001105Z Current runner version: '2.319.1' 2024-08-22T20:27:32.1007546Z Runner name: 'i-0eff7f5d1c54b6a46' 2024-08-22T20:27:32.1008428Z Runner group name: 'Default' 2024-08-22T20:27:32.1009311Z Machine name: 'ip-10-0-38-42' 2024-08-22T20:27:32.1025648Z Testing runner upgrade compatibility 2024-08-22T20:27:32.2227328Z ##[group]GITHUB_TOKEN Permissions 2024-08-22T20:27:32.2229355Z Contents: read 2024-08-22T20:27:32.2229886Z Metadata: read 2024-08-22T20:27:32.2230401Z Packages: read 2024-08-22T20:27:32.2230980Z ##[endgroup] 2024-08-22T20:27:32.2234133Z Secret source: Actions 2024-08-22T20:27:32.2234983Z Prepare workflow directory 2024-08-22T20:27:32.7893104Z Prepare all required actions 2024-08-22T20:27:32.8063537Z Getting action download info 2024-08-22T20:27:32.9836127Z Download action repository 'actions/checkout@v3' (SHA:f43a0e5ff2bd294095638e18286ca9a3d1956744) 2024-08-22T20:27:33.2331604Z Download action repository 'actions/download-artifact@v3' (SHA:9bc31d5ccc31df68ecc42ccf4149144866c47d8a) 2024-08-22T20:27:33.3729071Z Download action repository 'pmeier/pytest-results-action@v0.3.0' (SHA:a2c1430e2bddadbad9f49a6f9b879f062c6b19b1) 2024-08-22T20:27:33.4736890Z Download action repository 'actions/upload-artifact@v3' (SHA:a8a3f3ad30e3422c9c7b888a15615d19a852ae32) 2024-08-22T20:27:33.5850522Z Download action repository 'seemethere/upload-artifact-s3@v5' (SHA:baba72d0712b404f646cebe0730933554ebce96a) 2024-08-22T20:27:33.8763061Z Uses: pytorch/test-infra/.github/workflows/linux_job.yml@refs/heads/main (6dab351bed7d1c647665a8b8e883ec5b1c973feb) 2024-08-22T20:27:33.8765213Z ##[group] Inputs 2024-08-22T20:27:33.8785294Z script: echo "::group::Print machine info" uname -a echo "::endgroup::" echo "::group::Install newer objcopy that supports --set-section-alignment" yum install -y devtoolset-10-binutils export PATH=/opt/rh/devtoolset-10/root/usr/bin/:$PATH echo "::endgroup::" echo "::group::Download checkpoints" # Install requirements ./install_requirements.sh cuda pip3 list python3 -c 'import torch;print(f"torch: {torch.__version__, torch.version.git_version}")' echo "::endgroup::" echo "::group::Download checkpoints" mkdir -p checkpoints/stories15M pushd checkpoints/stories15M wget https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.pt wget https://github.com/karpathy/llama2.c/raw/master/tokenizer.model popd echo "::endgroup::" echo "::group::Run inference" export MODEL_PATH=checkpoints/stories15M/stories15M.pt export MODEL_NAME=stories15M export MODEL_DIR=/tmp for DTYPE in bfloat16 float16 float32; do ################################################################### # group with different temperatures python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 ################################################################### # group with different temperatures and prefill, and compile # and prefill compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --compile --compile-prefill ################################################################### # group with different temperatures and sequential prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill ################################################################### # group with different temperatures and prefill, and compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill --compile done echo "tests complete" echo "******************************************" echo "::endgroup::" 2024-08-22T20:27:33.8805511Z timeout: 60 2024-08-22T20:27:33.8805970Z runner: linux.g5.4xlarge.nvidia.gpu 2024-08-22T20:27:33.8806563Z upload-artifact: 2024-08-22T20:27:33.8806985Z download-artifact: 2024-08-22T20:27:33.8807390Z repository: 2024-08-22T20:27:33.8807856Z fetch-depth: 1 2024-08-22T20:27:33.8808354Z submodules: 2024-08-22T20:27:33.8808695Z ref: 2024-08-22T20:27:33.8809160Z test-infra-repository: pytorch/test-infra 2024-08-22T20:27:33.8809659Z test-infra-ref: 2024-08-22T20:27:33.8810115Z docker-image: pytorch/conda-builder 2024-08-22T20:27:33.8810758Z docker-build-dir: .ci/docker 2024-08-22T20:27:33.8811253Z gpu-arch-type: cuda 2024-08-22T20:27:33.8811645Z gpu-arch-version: 12.1 2024-08-22T20:27:33.8812134Z job-name: linux-job 2024-08-22T20:27:33.8812932Z continue-on-error: false 2024-08-22T20:27:33.8813345Z binary-matrix: 2024-08-22T20:27:33.8813822Z run-with-docker: true 2024-08-22T20:27:33.8814236Z secrets-env: 2024-08-22T20:27:33.8814630Z no-sudo: false 2024-08-22T20:27:33.8815160Z ##[endgroup] 2024-08-22T20:27:33.8815802Z Complete job name: test-cuda / linux-job 2024-08-22T20:27:33.9495215Z A job started hook has been configured by the self-hosted runner administrator 2024-08-22T20:27:33.9671774Z ##[group]Run '/home/ec2-user/runner-scripts/before_job.sh' 2024-08-22T20:27:33.9684828Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2024-08-22T20:27:33.9685582Z ##[endgroup] 2024-08-22T20:27:35.6172141Z Runner Type: linux.g5.4xlarge.nvidia.gpu 2024-08-22T20:27:35.6172706Z Instance Type: g5.4xlarge 2024-08-22T20:27:35.6173398Z AMI Name: al2023-ami-2023.5.20240701.0-kernel-6.1-x86_64 2024-08-22T20:27:35.6173930Z AMI ID: ami-06c68f701d8090592 2024-08-22T20:27:41.4008286Z ##[group]Run set -euxo pipefail 2024-08-22T20:27:41.4008822Z set -euxo pipefail 2024-08-22T20:27:41.4009279Z if [[ "${NO_SUDO}" == "false" ]]; then 2024-08-22T20:27:41.4009853Z  echo "::group::Cleanup with-sudo debug output" 2024-08-22T20:27:41.4010401Z  sudo rm -rfv "${GITHUB_WORKSPACE}" 2024-08-22T20:27:41.4010836Z else 2024-08-22T20:27:41.4011215Z  echo "::group::Cleanup no-sudo debug output" 2024-08-22T20:27:41.4011925Z  rm -rfv "${GITHUB_WORKSPACE}" 2024-08-22T20:27:41.4012337Z fi 2024-08-22T20:27:41.4012606Z  2024-08-22T20:27:41.4012922Z mkdir -p "${GITHUB_WORKSPACE}" 2024-08-22T20:27:41.4013352Z echo "::endgroup::" 2024-08-22T20:27:41.4022431Z shell: /usr/bin/bash -e {0} 2024-08-22T20:27:41.4022793Z env: 2024-08-22T20:27:41.4023128Z DOCKER_IMAGE: pytorch/conda-builder:cuda12.1 2024-08-22T20:27:41.4023588Z REPOSITORY: pytorch/torchchat 2024-08-22T20:27:41.4023999Z PR_NUMBER: 1044 2024-08-22T20:27:41.4042884Z SCRIPT: echo "::group::Print machine info" uname -a echo "::endgroup::" echo "::group::Install newer objcopy that supports --set-section-alignment" yum install -y devtoolset-10-binutils export PATH=/opt/rh/devtoolset-10/root/usr/bin/:$PATH echo "::endgroup::" echo "::group::Download checkpoints" # Install requirements ./install_requirements.sh cuda pip3 list python3 -c 'import torch;print(f"torch: {torch.__version__, torch.version.git_version}")' echo "::endgroup::" echo "::group::Download checkpoints" mkdir -p checkpoints/stories15M pushd checkpoints/stories15M wget https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.pt wget https://github.com/karpathy/llama2.c/raw/master/tokenizer.model popd echo "::endgroup::" echo "::group::Run inference" export MODEL_PATH=checkpoints/stories15M/stories15M.pt export MODEL_NAME=stories15M export MODEL_DIR=/tmp for DTYPE in bfloat16 float16 float32; do ################################################################### # group with different temperatures python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 ################################################################### # group with different temperatures and prefill, and compile # and prefill compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --compile --compile-prefill ################################################################### # group with different temperatures and sequential prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill ################################################################### # group with different temperatures and prefill, and compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill --compile done echo "tests complete" echo "******************************************" echo "::endgroup::" 2024-08-22T20:27:41.4062174Z NO_SUDO: false 2024-08-22T20:27:41.4062478Z ##[endgroup] 2024-08-22T20:27:41.4094003Z + [[ false == \f\a\l\s\e ]] 2024-08-22T20:27:41.4114592Z ##[group]Cleanup with-sudo debug output 2024-08-22T20:27:41.4123506Z + echo '::group::Cleanup with-sudo debug output' 2024-08-22T20:27:41.4124215Z + sudo rm -rfv /home/ec2-user/actions-runner/_work/torchchat/torchchat 2024-08-22T20:27:41.4841723Z removed directory '/home/ec2-user/actions-runner/_work/torchchat/torchchat' 2024-08-22T20:27:41.4862745Z + mkdir -p /home/ec2-user/actions-runner/_work/torchchat/torchchat 2024-08-22T20:27:41.4877130Z + echo ::endgroup:: 2024-08-22T20:27:41.4878362Z ##[endgroup] 2024-08-22T20:27:41.4996449Z ##[group]Run actions/checkout@v3 2024-08-22T20:27:41.4996858Z with: 2024-08-22T20:27:41.4997143Z repository: pytorch/test-infra 2024-08-22T20:27:41.4997522Z path: test-infra 2024-08-22T20:27:41.4997831Z submodules: recursive 2024-08-22T20:27:41.4998399Z token: *** 2024-08-22T20:27:41.4998713Z ssh-strict: true 2024-08-22T20:27:41.4999037Z persist-credentials: true 2024-08-22T20:27:41.4999380Z clean: true 2024-08-22T20:27:41.4999709Z sparse-checkout-cone-mode: true 2024-08-22T20:27:41.5000092Z fetch-depth: 1 2024-08-22T20:27:41.5000378Z fetch-tags: false 2024-08-22T20:27:41.5000676Z lfs: false 2024-08-22T20:27:41.5000969Z set-safe-directory: true 2024-08-22T20:27:41.5001292Z env: 2024-08-22T20:27:41.5001606Z DOCKER_IMAGE: pytorch/conda-builder:cuda12.1 2024-08-22T20:27:41.5002057Z REPOSITORY: pytorch/torchchat 2024-08-22T20:27:41.5002416Z PR_NUMBER: 1044 2024-08-22T20:27:41.5021505Z SCRIPT: echo "::group::Print machine info" uname -a echo "::endgroup::" echo "::group::Install newer objcopy that supports --set-section-alignment" yum install -y devtoolset-10-binutils export PATH=/opt/rh/devtoolset-10/root/usr/bin/:$PATH echo "::endgroup::" echo "::group::Download checkpoints" # Install requirements ./install_requirements.sh cuda pip3 list python3 -c 'import torch;print(f"torch: {torch.__version__, torch.version.git_version}")' echo "::endgroup::" echo "::group::Download checkpoints" mkdir -p checkpoints/stories15M pushd checkpoints/stories15M wget https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.pt wget https://github.com/karpathy/llama2.c/raw/master/tokenizer.model popd echo "::endgroup::" echo "::group::Run inference" export MODEL_PATH=checkpoints/stories15M/stories15M.pt export MODEL_NAME=stories15M export MODEL_DIR=/tmp for DTYPE in bfloat16 float16 float32; do ################################################################### # group with different temperatures python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 ################################################################### # group with different temperatures and prefill, and compile # and prefill compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --compile --compile-prefill ################################################################### # group with different temperatures and sequential prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill ################################################################### # group with different temperatures and prefill, and compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill --compile done echo "tests complete" echo "******************************************" echo "::endgroup::" 2024-08-22T20:27:41.5040776Z ##[endgroup] 2024-08-22T20:27:41.6104845Z Syncing repository: pytorch/test-infra 2024-08-22T20:27:41.6105692Z ##[group]Getting Git version info 2024-08-22T20:27:41.6106481Z Working directory is '/home/ec2-user/actions-runner/_work/torchchat/torchchat/test-infra' 2024-08-22T20:27:41.6107416Z [command]/usr/bin/git version 2024-08-22T20:27:41.6107778Z git version 2.40.1 2024-08-22T20:27:41.6113206Z ##[endgroup] 2024-08-22T20:27:41.6126727Z Temporarily overriding HOME='/home/ec2-user/actions-runner/_work/_temp/fc80e4d1-ea49-4adf-a8be-0f5aa6269bf6' before making global git config changes 2024-08-22T20:27:41.6127973Z Adding repository directory to the temporary git global config as a safe directory 2024-08-22T20:27:41.6132073Z [command]/usr/bin/git config --global --add safe.directory /home/ec2-user/actions-runner/_work/torchchat/torchchat/test-infra 2024-08-22T20:27:41.6179187Z ##[group]Initializing the repository 2024-08-22T20:27:41.6182289Z [command]/usr/bin/git init /home/ec2-user/actions-runner/_work/torchchat/torchchat/test-infra 2024-08-22T20:27:41.6228087Z hint: Using 'master' as the name for the initial branch. This default branch name 2024-08-22T20:27:41.6229221Z hint: is subject to change. To configure the initial branch name to use in all 2024-08-22T20:27:41.6230359Z hint: of your new repositories, which will suppress this warning, call: 2024-08-22T20:27:41.6230919Z hint: 2024-08-22T20:27:41.6231392Z hint: git config --global init.defaultBranch 2024-08-22T20:27:41.6231864Z hint: 2024-08-22T20:27:41.6232384Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and 2024-08-22T20:27:41.6233214Z hint: 'development'. The just-created branch can be renamed via this command: 2024-08-22T20:27:41.6233802Z hint: 2024-08-22T20:27:41.6234154Z hint: git branch -m 2024-08-22T20:27:41.6235675Z Initialized empty Git repository in /home/ec2-user/actions-runner/_work/torchchat/torchchat/test-infra/.git/ 2024-08-22T20:27:41.6242795Z [command]/usr/bin/git remote add origin https://github.com/pytorch/test-infra 2024-08-22T20:27:41.6287062Z ##[endgroup] 2024-08-22T20:27:41.6287715Z ##[group]Disabling automatic garbage collection 2024-08-22T20:27:41.6290180Z [command]/usr/bin/git config --local gc.auto 0 2024-08-22T20:27:41.6332535Z ##[endgroup] 2024-08-22T20:27:41.6333099Z ##[group]Setting up auth 2024-08-22T20:27:41.6338323Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2024-08-22T20:27:41.6381748Z [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' || :" 2024-08-22T20:27:41.6737415Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2024-08-22T20:27:41.6780205Z [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' || :" 2024-08-22T20:27:41.7142320Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** 2024-08-22T20:27:41.7197574Z ##[endgroup] 2024-08-22T20:27:41.7198285Z ##[group]Determining the default branch 2024-08-22T20:27:41.7201110Z Retrieving the default branch name 2024-08-22T20:27:41.8804636Z Default branch 'main' 2024-08-22T20:27:41.8805493Z ##[endgroup] 2024-08-22T20:27:41.8806041Z ##[group]Fetching the repository 2024-08-22T20:27:41.8811292Z [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 2024-08-22T20:27:42.0518062Z remote: Enumerating objects: 1649, done. 2024-08-22T20:27:42.0520483Z remote: Counting objects: 0% (1/1649) 2024-08-22T20:27:42.0521815Z remote: Counting objects: 1% (17/1649) 2024-08-22T20:27:42.0523123Z remote: Counting objects: 2% (33/1649) 2024-08-22T20:27:42.0524437Z remote: Counting objects: 3% (50/1649) 2024-08-22T20:27:42.0525941Z remote: Counting objects: 4% (66/1649) 2024-08-22T20:27:42.0526970Z remote: Counting objects: 5% (83/1649) 2024-08-22T20:27:42.0527653Z remote: Counting objects: 6% (99/1649) 2024-08-22T20:27:42.0528483Z remote: Counting objects: 7% (116/1649) 2024-08-22T20:27:42.0529231Z remote: Counting objects: 8% (132/1649) 2024-08-22T20:27:42.0529917Z remote: Counting objects: 9% (149/1649) 2024-08-22T20:27:42.0530581Z remote: Counting objects: 10% (165/1649) 2024-08-22T20:27:42.0531200Z remote: Counting objects: 11% (182/1649) 2024-08-22T20:27:42.0531691Z remote: Counting objects: 12% (198/1649) 2024-08-22T20:27:42.0532259Z remote: Counting objects: 13% (215/1649) 2024-08-22T20:27:42.0532737Z remote: Counting objects: 14% (231/1649) 2024-08-22T20:27:42.0533418Z remote: Counting objects: 15% (248/1649) 2024-08-22T20:27:42.0533981Z remote: Counting objects: 16% (264/1649) 2024-08-22T20:27:42.0534466Z remote: Counting objects: 17% (281/1649) 2024-08-22T20:27:42.0535073Z remote: Counting objects: 18% (297/1649) 2024-08-22T20:27:42.0535609Z remote: Counting objects: 19% (314/1649) 2024-08-22T20:27:42.0536383Z remote: Counting objects: 20% (330/1649) 2024-08-22T20:27:42.0536863Z remote: Counting objects: 21% (347/1649) 2024-08-22T20:27:42.0537338Z remote: Counting objects: 22% (363/1649) 2024-08-22T20:27:42.0537827Z remote: Counting objects: 23% (380/1649) 2024-08-22T20:27:42.0538364Z remote: Counting objects: 24% (396/1649) 2024-08-22T20:27:42.0538882Z remote: Counting objects: 25% (413/1649) 2024-08-22T20:27:42.0539378Z remote: Counting objects: 26% (429/1649) 2024-08-22T20:27:42.0539858Z remote: Counting objects: 27% (446/1649) 2024-08-22T20:27:42.0540328Z remote: Counting objects: 28% (462/1649) 2024-08-22T20:27:42.0540853Z remote: Counting objects: 29% (479/1649) 2024-08-22T20:27:42.0541333Z remote: Counting objects: 30% (495/1649) 2024-08-22T20:27:42.0541802Z remote: Counting objects: 31% (512/1649) 2024-08-22T20:27:42.0542294Z remote: Counting objects: 32% (528/1649) 2024-08-22T20:27:42.0542775Z remote: Counting objects: 33% (545/1649) 2024-08-22T20:27:42.0543325Z remote: Counting objects: 34% (561/1649) 2024-08-22T20:27:42.0543810Z remote: Counting objects: 35% (578/1649) 2024-08-22T20:27:42.0544288Z remote: Counting objects: 36% (594/1649) 2024-08-22T20:27:42.0544759Z remote: Counting objects: 37% (611/1649) 2024-08-22T20:27:42.0545236Z remote: Counting objects: 38% (627/1649) 2024-08-22T20:27:42.0545914Z remote: Counting objects: 39% (644/1649) 2024-08-22T20:27:42.0546450Z remote: Counting objects: 40% (660/1649) 2024-08-22T20:27:42.0546924Z remote: Counting objects: 41% (677/1649) 2024-08-22T20:27:42.0547404Z remote: Counting objects: 42% (693/1649) 2024-08-22T20:27:42.0547885Z remote: Counting objects: 43% (710/1649) 2024-08-22T20:27:42.0548358Z remote: Counting objects: 44% (726/1649) 2024-08-22T20:27:42.0548894Z remote: Counting objects: 45% (743/1649) 2024-08-22T20:27:42.0549378Z remote: Counting objects: 46% (759/1649) 2024-08-22T20:27:42.0549853Z remote: Counting objects: 47% (776/1649) 2024-08-22T20:27:42.0550332Z remote: Counting objects: 48% (792/1649) 2024-08-22T20:27:42.0550813Z remote: Counting objects: 49% (809/1649) 2024-08-22T20:27:42.0551328Z remote: Counting objects: 50% (825/1649) 2024-08-22T20:27:42.0551847Z remote: Counting objects: 51% (841/1649) 2024-08-22T20:27:42.0552337Z remote: Counting objects: 52% (858/1649) 2024-08-22T20:27:42.0552810Z remote: Counting objects: 53% (874/1649) 2024-08-22T20:27:42.0553290Z remote: Counting objects: 54% (891/1649) 2024-08-22T20:27:42.0553815Z remote: Counting objects: 55% (907/1649) 2024-08-22T20:27:42.0554328Z remote: Counting objects: 56% (924/1649) 2024-08-22T20:27:42.0554884Z remote: Counting objects: 57% (940/1649) 2024-08-22T20:27:42.0555455Z remote: Counting objects: 58% (957/1649) 2024-08-22T20:27:42.0555937Z remote: Counting objects: 59% (973/1649) 2024-08-22T20:27:42.0556478Z remote: Counting objects: 60% (990/1649) 2024-08-22T20:27:42.0557017Z remote: Counting objects: 61% (1006/1649) 2024-08-22T20:27:42.0557524Z remote: Counting objects: 62% (1023/1649) 2024-08-22T20:27:42.0558022Z remote: Counting objects: 63% (1039/1649) 2024-08-22T20:27:42.0558536Z remote: Counting objects: 64% (1056/1649) 2024-08-22T20:27:42.0559094Z remote: Counting objects: 65% (1072/1649) 2024-08-22T20:27:42.0559597Z remote: Counting objects: 66% (1089/1649) 2024-08-22T20:27:42.0560091Z remote: Counting objects: 67% (1105/1649) 2024-08-22T20:27:42.0560590Z remote: Counting objects: 68% (1122/1649) 2024-08-22T20:27:42.0561088Z remote: Counting objects: 69% (1138/1649) 2024-08-22T20:27:42.0561618Z remote: Counting objects: 70% (1155/1649) 2024-08-22T20:27:42.0562273Z remote: Counting objects: 71% (1171/1649) 2024-08-22T20:27:42.0562773Z remote: Counting objects: 72% (1188/1649) 2024-08-22T20:27:42.0563265Z remote: Counting objects: 73% (1204/1649) 2024-08-22T20:27:42.0563760Z remote: Counting objects: 74% (1221/1649) 2024-08-22T20:27:42.0564308Z remote: Counting objects: 75% (1237/1649) 2024-08-22T20:27:42.0564794Z remote: Counting objects: 76% (1254/1649) 2024-08-22T20:27:42.0565294Z remote: Counting objects: 77% (1270/1649) 2024-08-22T20:27:42.0565800Z remote: Counting objects: 78% (1287/1649) 2024-08-22T20:27:42.0566342Z remote: Counting objects: 79% (1303/1649) 2024-08-22T20:27:42.0566886Z remote: Counting objects: 80% (1320/1649) 2024-08-22T20:27:42.0567420Z remote: Counting objects: 81% (1336/1649) 2024-08-22T20:27:42.0567916Z remote: Counting objects: 82% (1353/1649) 2024-08-22T20:27:42.0568533Z remote: Counting objects: 83% (1369/1649) 2024-08-22T20:27:42.0569085Z remote: Counting objects: 84% (1386/1649) 2024-08-22T20:27:42.0569584Z remote: Counting objects: 85% (1402/1649) 2024-08-22T20:27:42.0570079Z remote: Counting objects: 86% (1419/1649) 2024-08-22T20:27:42.0570584Z remote: Counting objects: 87% (1435/1649) 2024-08-22T20:27:42.0571083Z remote: Counting objects: 88% (1452/1649) 2024-08-22T20:27:42.0571619Z remote: Counting objects: 89% (1468/1649) 2024-08-22T20:27:42.0572131Z remote: Counting objects: 90% (1485/1649) 2024-08-22T20:27:42.0572983Z remote: Counting objects: 91% (1501/1649) 2024-08-22T20:27:42.0573489Z remote: Counting objects: 92% (1518/1649) 2024-08-22T20:27:42.0573991Z remote: Counting objects: 93% (1534/1649) 2024-08-22T20:27:42.0574495Z remote: Counting objects: 94% (1551/1649) 2024-08-22T20:27:42.0574982Z remote: Counting objects: 95% (1567/1649) 2024-08-22T20:27:42.0575473Z remote: Counting objects: 96% (1584/1649) 2024-08-22T20:27:42.0575977Z remote: Counting objects: 97% (1600/1649) 2024-08-22T20:27:42.0576472Z remote: Counting objects: 98% (1617/1649) 2024-08-22T20:27:42.0576970Z remote: Counting objects: 99% (1633/1649) 2024-08-22T20:27:42.0577467Z remote: Counting objects: 100% (1649/1649) 2024-08-22T20:27:42.0578277Z remote: Counting objects: 100% (1649/1649), done. 2024-08-22T20:27:42.0578833Z remote: Compressing objects: 0% (1/1259) 2024-08-22T20:27:42.0579365Z remote: Compressing objects: 1% (13/1259) 2024-08-22T20:27:42.0579896Z remote: Compressing objects: 2% (26/1259) 2024-08-22T20:27:42.0580419Z remote: Compressing objects: 3% (38/1259) 2024-08-22T20:27:42.0580946Z remote: Compressing objects: 4% (51/1259) 2024-08-22T20:27:42.0581466Z remote: Compressing objects: 5% (63/1259) 2024-08-22T20:27:42.0582088Z remote: Compressing objects: 6% (76/1259) 2024-08-22T20:27:42.0582620Z remote: Compressing objects: 7% (89/1259) 2024-08-22T20:27:42.0583197Z remote: Compressing objects: 8% (101/1259) 2024-08-22T20:27:42.0583773Z remote: Compressing objects: 9% (114/1259) 2024-08-22T20:27:42.0584306Z remote: Compressing objects: 10% (126/1259) 2024-08-22T20:27:42.0584845Z remote: Compressing objects: 11% (139/1259) 2024-08-22T20:27:42.0585371Z remote: Compressing objects: 12% (152/1259) 2024-08-22T20:27:42.0585905Z remote: Compressing objects: 13% (164/1259) 2024-08-22T20:27:42.0586459Z remote: Compressing objects: 14% (177/1259) 2024-08-22T20:27:42.0587025Z remote: Compressing objects: 15% (189/1259) 2024-08-22T20:27:42.0587553Z remote: Compressing objects: 16% (202/1259) 2024-08-22T20:27:42.0588081Z remote: Compressing objects: 17% (215/1259) 2024-08-22T20:27:42.0588589Z remote: Compressing objects: 18% (227/1259) 2024-08-22T20:27:42.0589109Z remote: Compressing objects: 19% (240/1259) 2024-08-22T20:27:42.0589796Z remote: Compressing objects: 20% (252/1259) 2024-08-22T20:27:42.0590316Z remote: Compressing objects: 21% (265/1259) 2024-08-22T20:27:42.0590836Z remote: Compressing objects: 22% (277/1259) 2024-08-22T20:27:42.0591357Z remote: Compressing objects: 23% (290/1259) 2024-08-22T20:27:42.0591878Z remote: Compressing objects: 24% (303/1259) 2024-08-22T20:27:42.0592397Z remote: Compressing objects: 25% (315/1259) 2024-08-22T20:27:42.0592974Z remote: Compressing objects: 26% (328/1259) 2024-08-22T20:27:42.0593516Z remote: Compressing objects: 27% (340/1259) 2024-08-22T20:27:42.0594033Z remote: Compressing objects: 28% (353/1259) 2024-08-22T20:27:42.0594550Z remote: Compressing objects: 29% (366/1259) 2024-08-22T20:27:42.0595071Z remote: Compressing objects: 30% (378/1259) 2024-08-22T20:27:42.0595582Z remote: Compressing objects: 31% (391/1259) 2024-08-22T20:27:42.0596112Z remote: Compressing objects: 32% (403/1259) 2024-08-22T20:27:42.0596633Z remote: Compressing objects: 33% (416/1259) 2024-08-22T20:27:42.0597200Z remote: Compressing objects: 34% (429/1259) 2024-08-22T20:27:42.0597723Z remote: Compressing objects: 35% (441/1259) 2024-08-22T20:27:42.0598244Z remote: Compressing objects: 36% (454/1259) 2024-08-22T20:27:42.0598757Z remote: Compressing objects: 37% (466/1259) 2024-08-22T20:27:42.0599277Z remote: Compressing objects: 38% (479/1259) 2024-08-22T20:27:42.0599925Z remote: Compressing objects: 39% (492/1259) 2024-08-22T20:27:42.0600453Z remote: Compressing objects: 40% (504/1259) 2024-08-22T20:27:42.0600968Z remote: Compressing objects: 41% (517/1259) 2024-08-22T20:27:42.0601538Z remote: Compressing objects: 42% (529/1259) 2024-08-22T20:27:42.0602069Z remote: Compressing objects: 43% (542/1259) 2024-08-22T20:27:42.0602596Z remote: Compressing objects: 44% (554/1259) 2024-08-22T20:27:42.0603133Z remote: Compressing objects: 45% (567/1259) 2024-08-22T20:27:42.0603661Z remote: Compressing objects: 46% (580/1259) 2024-08-22T20:27:42.0604182Z remote: Compressing objects: 47% (592/1259) 2024-08-22T20:27:42.0604709Z remote: Compressing objects: 48% (605/1259) 2024-08-22T20:27:42.0605268Z remote: Compressing objects: 49% (617/1259) 2024-08-22T20:27:42.0605819Z remote: Compressing objects: 50% (630/1259) 2024-08-22T20:27:42.0606355Z remote: Compressing objects: 51% (643/1259) 2024-08-22T20:27:42.0606905Z remote: Compressing objects: 52% (655/1259) 2024-08-22T20:27:42.0607425Z remote: Compressing objects: 53% (668/1259) 2024-08-22T20:27:42.0607960Z remote: Compressing objects: 54% (680/1259) 2024-08-22T20:27:42.0608616Z remote: Compressing objects: 55% (693/1259) 2024-08-22T20:27:42.0609164Z remote: Compressing objects: 56% (706/1259) 2024-08-22T20:27:42.0609701Z remote: Compressing objects: 57% (718/1259) 2024-08-22T20:27:42.0610224Z remote: Compressing objects: 58% (731/1259) 2024-08-22T20:27:42.0610774Z remote: Compressing objects: 59% (743/1259) 2024-08-22T20:27:42.0611294Z remote: Compressing objects: 60% (756/1259) 2024-08-22T20:27:42.0611822Z remote: Compressing objects: 61% (768/1259) 2024-08-22T20:27:42.0612407Z remote: Compressing objects: 62% (781/1259) 2024-08-22T20:27:42.0612930Z remote: Compressing objects: 63% (794/1259) 2024-08-22T20:27:42.0613465Z remote: Compressing objects: 64% (806/1259) 2024-08-22T20:27:42.0613996Z remote: Compressing objects: 65% (819/1259) 2024-08-22T20:27:42.0614520Z remote: Compressing objects: 66% (831/1259) 2024-08-22T20:27:42.0615055Z remote: Compressing objects: 67% (844/1259) 2024-08-22T20:27:42.0615583Z remote: Compressing objects: 68% (857/1259) 2024-08-22T20:27:42.0616103Z remote: Compressing objects: 69% (869/1259) 2024-08-22T20:27:42.0616766Z remote: Compressing objects: 70% (882/1259) 2024-08-22T20:27:42.0617317Z remote: Compressing objects: 71% (894/1259) 2024-08-22T20:27:42.0617836Z remote: Compressing objects: 72% (907/1259) 2024-08-22T20:27:42.0618365Z remote: Compressing objects: 73% (920/1259) 2024-08-22T20:27:42.0618883Z remote: Compressing objects: 74% (932/1259) 2024-08-22T20:27:42.0619397Z remote: Compressing objects: 75% (945/1259) 2024-08-22T20:27:42.0619937Z remote: Compressing objects: 76% (957/1259) 2024-08-22T20:27:42.0620464Z remote: Compressing objects: 77% (970/1259) 2024-08-22T20:27:42.0620987Z remote: Compressing objects: 78% (983/1259) 2024-08-22T20:27:42.0621502Z remote: Compressing objects: 79% (995/1259) 2024-08-22T20:27:42.0622030Z remote: Compressing objects: 80% (1008/1259) 2024-08-22T20:27:42.0622571Z remote: Compressing objects: 81% (1020/1259) 2024-08-22T20:27:42.0623109Z remote: Compressing objects: 82% (1033/1259) 2024-08-22T20:27:42.0623651Z remote: Compressing objects: 83% (1045/1259) 2024-08-22T20:27:42.0624191Z remote: Compressing objects: 84% (1058/1259) 2024-08-22T20:27:42.0624718Z remote: Compressing objects: 85% (1071/1259) 2024-08-22T20:27:42.0625248Z remote: Compressing objects: 86% (1083/1259) 2024-08-22T20:27:42.0625783Z remote: Compressing objects: 87% (1096/1259) 2024-08-22T20:27:42.0626448Z remote: Compressing objects: 88% (1108/1259) 2024-08-22T20:27:42.0627156Z remote: Compressing objects: 89% (1121/1259) 2024-08-22T20:27:42.0627709Z remote: Compressing objects: 90% (1134/1259) 2024-08-22T20:27:42.0628241Z remote: Compressing objects: 91% (1146/1259) 2024-08-22T20:27:42.0628769Z remote: Compressing objects: 92% (1159/1259) 2024-08-22T20:27:42.0629285Z remote: Compressing objects: 93% (1171/1259) 2024-08-22T20:27:42.0629818Z remote: Compressing objects: 94% (1184/1259) 2024-08-22T20:27:42.0630355Z remote: Compressing objects: 95% (1197/1259) 2024-08-22T20:27:42.0630887Z remote: Compressing objects: 96% (1209/1259) 2024-08-22T20:27:42.0631511Z remote: Compressing objects: 97% (1222/1259) 2024-08-22T20:27:42.0632044Z remote: Compressing objects: 98% (1234/1259) 2024-08-22T20:27:42.0632567Z remote: Compressing objects: 99% (1247/1259) 2024-08-22T20:27:42.0633097Z remote: Compressing objects: 100% (1259/1259) 2024-08-22T20:27:42.0633672Z remote: Compressing objects: 100% (1259/1259), done. 2024-08-22T20:27:42.0634198Z Receiving objects: 0% (1/1649) 2024-08-22T20:27:42.0634579Z Receiving objects: 1% (17/1649) 2024-08-22T20:27:42.0634974Z Receiving objects: 2% (33/1649) 2024-08-22T20:27:42.0635365Z Receiving objects: 3% (50/1649) 2024-08-22T20:27:42.0642054Z Receiving objects: 4% (66/1649) 2024-08-22T20:27:42.0647794Z Receiving objects: 5% (83/1649) 2024-08-22T20:27:42.0653483Z Receiving objects: 6% (99/1649) 2024-08-22T20:27:42.0656276Z Receiving objects: 7% (116/1649) 2024-08-22T20:27:42.0658022Z Receiving objects: 8% (132/1649) 2024-08-22T20:27:42.0662384Z Receiving objects: 9% (149/1649) 2024-08-22T20:27:42.0665563Z Receiving objects: 10% (165/1649) 2024-08-22T20:27:42.0668659Z Receiving objects: 11% (182/1649) 2024-08-22T20:27:42.0671519Z Receiving objects: 12% (198/1649) 2024-08-22T20:27:42.0890836Z Receiving objects: 13% (215/1649) 2024-08-22T20:27:42.0967966Z Receiving objects: 14% (231/1649) 2024-08-22T20:27:42.0971429Z Receiving objects: 15% (248/1649) 2024-08-22T20:27:42.0974903Z Receiving objects: 16% (264/1649) 2024-08-22T20:27:42.0978890Z Receiving objects: 17% (281/1649) 2024-08-22T20:27:42.1015156Z Receiving objects: 18% (297/1649) 2024-08-22T20:27:42.1027344Z Receiving objects: 19% (314/1649) 2024-08-22T20:27:42.1028086Z Receiving objects: 20% (330/1649) 2024-08-22T20:27:42.1032781Z Receiving objects: 21% (347/1649) 2024-08-22T20:27:42.1036150Z Receiving objects: 22% (363/1649) 2024-08-22T20:27:42.1039637Z Receiving objects: 23% (380/1649) 2024-08-22T20:27:42.1049610Z Receiving objects: 24% (396/1649) 2024-08-22T20:27:42.1065929Z Receiving objects: 25% (413/1649) 2024-08-22T20:27:42.1068941Z Receiving objects: 26% (429/1649) 2024-08-22T20:27:42.1069972Z Receiving objects: 27% (446/1649) 2024-08-22T20:27:42.1076646Z Receiving objects: 28% (462/1649) 2024-08-22T20:27:42.1079692Z Receiving objects: 29% (479/1649) 2024-08-22T20:27:42.1089123Z Receiving objects: 30% (495/1649) 2024-08-22T20:27:42.1095843Z Receiving objects: 31% (512/1649) 2024-08-22T20:27:42.1101665Z Receiving objects: 32% (528/1649) 2024-08-22T20:27:42.1109808Z Receiving objects: 33% (545/1649) 2024-08-22T20:27:42.1110516Z Receiving objects: 34% (561/1649) 2024-08-22T20:27:42.1112868Z Receiving objects: 35% (578/1649) 2024-08-22T20:27:42.1118464Z Receiving objects: 36% (594/1649) 2024-08-22T20:27:42.1124882Z Receiving objects: 37% (611/1649) 2024-08-22T20:27:42.1127448Z Receiving objects: 38% (627/1649) 2024-08-22T20:27:42.1131780Z Receiving objects: 39% (644/1649) 2024-08-22T20:27:42.1136708Z Receiving objects: 40% (660/1649) 2024-08-22T20:27:42.1140995Z Receiving objects: 41% (677/1649) 2024-08-22T20:27:42.1145346Z Receiving objects: 42% (693/1649) 2024-08-22T20:27:42.1148573Z Receiving objects: 43% (710/1649) 2024-08-22T20:27:42.1151124Z Receiving objects: 44% (726/1649) 2024-08-22T20:27:42.1154766Z Receiving objects: 45% (743/1649) 2024-08-22T20:27:42.1159031Z Receiving objects: 46% (759/1649) 2024-08-22T20:27:42.1161719Z Receiving objects: 47% (776/1649) 2024-08-22T20:27:42.1164607Z Receiving objects: 48% (792/1649) 2024-08-22T20:27:42.1167902Z Receiving objects: 49% (809/1649) 2024-08-22T20:27:42.1172247Z Receiving objects: 50% (825/1649) 2024-08-22T20:27:42.1175041Z Receiving objects: 51% (841/1649) 2024-08-22T20:27:42.1177531Z Receiving objects: 52% (858/1649) 2024-08-22T20:27:42.1183054Z Receiving objects: 53% (874/1649) 2024-08-22T20:27:42.1186453Z Receiving objects: 54% (891/1649) 2024-08-22T20:27:42.1188141Z Receiving objects: 55% (907/1649) 2024-08-22T20:27:42.1190641Z Receiving objects: 56% (924/1649) 2024-08-22T20:27:42.1194006Z Receiving objects: 57% (940/1649) 2024-08-22T20:27:42.1199586Z Receiving objects: 58% (957/1649) 2024-08-22T20:27:42.1207266Z Receiving objects: 59% (973/1649) 2024-08-22T20:27:42.1210798Z Receiving objects: 60% (990/1649) 2024-08-22T20:27:42.1214272Z Receiving objects: 61% (1006/1649) 2024-08-22T20:27:42.1217607Z Receiving objects: 62% (1023/1649) 2024-08-22T20:27:42.1222858Z Receiving objects: 63% (1039/1649) 2024-08-22T20:27:42.1228218Z Receiving objects: 64% (1056/1649) 2024-08-22T20:27:42.1232454Z Receiving objects: 65% (1072/1649) 2024-08-22T20:27:42.1234399Z Receiving objects: 66% (1089/1649) 2024-08-22T20:27:42.1238407Z Receiving objects: 67% (1105/1649) 2024-08-22T20:27:42.1242555Z Receiving objects: 68% (1122/1649) 2024-08-22T20:27:42.1248339Z Receiving objects: 69% (1138/1649) 2024-08-22T20:27:42.1253822Z Receiving objects: 70% (1155/1649) 2024-08-22T20:27:42.1261449Z Receiving objects: 71% (1171/1649) 2024-08-22T20:27:42.1268721Z Receiving objects: 72% (1188/1649) 2024-08-22T20:27:42.1306885Z Receiving objects: 73% (1204/1649) 2024-08-22T20:27:42.1312587Z Receiving objects: 74% (1221/1649) 2024-08-22T20:27:42.1393333Z Receiving objects: 75% (1237/1649) 2024-08-22T20:27:42.1394881Z Receiving objects: 76% (1254/1649) 2024-08-22T20:27:42.1400493Z Receiving objects: 77% (1270/1649) 2024-08-22T20:27:42.1401577Z Receiving objects: 78% (1287/1649) 2024-08-22T20:27:42.1404029Z Receiving objects: 79% (1303/1649) 2024-08-22T20:27:42.1409717Z Receiving objects: 80% (1320/1649) 2024-08-22T20:27:42.1418283Z Receiving objects: 81% (1336/1649) 2024-08-22T20:27:42.1459550Z Receiving objects: 82% (1353/1649) 2024-08-22T20:27:42.1461413Z Receiving objects: 83% (1369/1649) 2024-08-22T20:27:42.1464299Z Receiving objects: 84% (1386/1649) 2024-08-22T20:27:42.1466774Z Receiving objects: 85% (1402/1649) 2024-08-22T20:27:42.1467371Z Receiving objects: 86% (1419/1649) 2024-08-22T20:27:42.1467758Z Receiving objects: 87% (1435/1649) 2024-08-22T20:27:42.1469001Z Receiving objects: 88% (1452/1649) 2024-08-22T20:27:42.1471732Z Receiving objects: 89% (1468/1649) 2024-08-22T20:27:42.1474049Z Receiving objects: 90% (1485/1649) 2024-08-22T20:27:42.1475073Z Receiving objects: 91% (1501/1649) 2024-08-22T20:27:42.1475639Z Receiving objects: 92% (1518/1649) 2024-08-22T20:27:42.1476729Z Receiving objects: 93% (1534/1649) 2024-08-22T20:27:42.1480372Z Receiving objects: 94% (1551/1649) 2024-08-22T20:27:42.1480916Z Receiving objects: 95% (1567/1649) 2024-08-22T20:27:42.1487335Z Receiving objects: 96% (1584/1649) 2024-08-22T20:27:42.1499244Z Receiving objects: 97% (1600/1649) 2024-08-22T20:27:42.1509637Z Receiving objects: 98% (1617/1649) 2024-08-22T20:27:42.1526588Z Receiving objects: 99% (1633/1649) 2024-08-22T20:27:42.1527497Z remote: Total 1649 (delta 372), reused 1071 (delta 268), pack-reused 0 (from 0) 2024-08-22T20:27:42.1544893Z Receiving objects: 100% (1649/1649) 2024-08-22T20:27:42.1545436Z Receiving objects: 100% (1649/1649), 2.83 MiB | 28.43 MiB/s, done. 2024-08-22T20:27:42.1551897Z Resolving deltas: 0% (0/372) 2024-08-22T20:27:42.1553841Z Resolving deltas: 1% (4/372) 2024-08-22T20:27:42.1555928Z Resolving deltas: 2% (8/372) 2024-08-22T20:27:42.1556442Z Resolving deltas: 3% (12/372) 2024-08-22T20:27:42.1557317Z Resolving deltas: 4% (15/372) 2024-08-22T20:27:42.1558393Z Resolving deltas: 5% (20/372) 2024-08-22T20:27:42.1558852Z Resolving deltas: 6% (23/372) 2024-08-22T20:27:42.1560076Z Resolving deltas: 7% (27/372) 2024-08-22T20:27:42.1560925Z Resolving deltas: 8% (30/372) 2024-08-22T20:27:42.1562995Z Resolving deltas: 9% (34/372) 2024-08-22T20:27:42.1563384Z Resolving deltas: 10% (38/372) 2024-08-22T20:27:42.1564762Z Resolving deltas: 11% (41/372) 2024-08-22T20:27:42.1566619Z Resolving deltas: 12% (46/372) 2024-08-22T20:27:42.1568475Z Resolving deltas: 13% (50/372) 2024-08-22T20:27:42.1568880Z Resolving deltas: 14% (53/372) 2024-08-22T20:27:42.1571949Z Resolving deltas: 15% (56/372) 2024-08-22T20:27:42.1576451Z Resolving deltas: 16% (61/372) 2024-08-22T20:27:42.1587159Z Resolving deltas: 17% (65/372) 2024-08-22T20:27:42.1589173Z Resolving deltas: 18% (67/372) 2024-08-22T20:27:42.1590134Z Resolving deltas: 19% (71/372) 2024-08-22T20:27:42.1590785Z Resolving deltas: 20% (75/372) 2024-08-22T20:27:42.1591194Z Resolving deltas: 21% (79/372) 2024-08-22T20:27:42.1592201Z Resolving deltas: 22% (82/372) 2024-08-22T20:27:42.1593119Z Resolving deltas: 23% (86/372) 2024-08-22T20:27:42.1593654Z Resolving deltas: 24% (90/372) 2024-08-22T20:27:42.1594440Z Resolving deltas: 25% (93/372) 2024-08-22T20:27:42.1596918Z Resolving deltas: 26% (97/372) 2024-08-22T20:27:42.1597489Z Resolving deltas: 27% (101/372) 2024-08-22T20:27:42.1598050Z Resolving deltas: 28% (106/372) 2024-08-22T20:27:42.1598612Z Resolving deltas: 29% (109/372) 2024-08-22T20:27:42.1599881Z Resolving deltas: 30% (112/372) 2024-08-22T20:27:42.1607543Z Resolving deltas: 31% (116/372) 2024-08-22T20:27:42.1608046Z Resolving deltas: 32% (120/372) 2024-08-22T20:27:42.1609762Z Resolving deltas: 33% (123/372) 2024-08-22T20:27:42.1610881Z Resolving deltas: 34% (127/372) 2024-08-22T20:27:42.1612057Z Resolving deltas: 35% (131/372) 2024-08-22T20:27:42.1613332Z Resolving deltas: 36% (134/372) 2024-08-22T20:27:42.1615047Z Resolving deltas: 37% (139/372) 2024-08-22T20:27:42.1616763Z Resolving deltas: 38% (142/372) 2024-08-22T20:27:42.1617160Z Resolving deltas: 39% (148/372) 2024-08-22T20:27:42.1618133Z Resolving deltas: 40% (149/372) 2024-08-22T20:27:42.1619843Z Resolving deltas: 41% (153/372) 2024-08-22T20:27:42.1620381Z Resolving deltas: 42% (157/372) 2024-08-22T20:27:42.1620996Z Resolving deltas: 43% (160/372) 2024-08-22T20:27:42.1622757Z Resolving deltas: 44% (164/372) 2024-08-22T20:27:42.1623435Z Resolving deltas: 45% (168/372) 2024-08-22T20:27:42.1624100Z Resolving deltas: 46% (172/372) 2024-08-22T20:27:42.1624923Z Resolving deltas: 47% (175/372) 2024-08-22T20:27:42.1625436Z Resolving deltas: 48% (179/372) 2024-08-22T20:27:42.1626328Z Resolving deltas: 49% (183/372) 2024-08-22T20:27:42.1626846Z Resolving deltas: 50% (187/372) 2024-08-22T20:27:42.1628310Z Resolving deltas: 51% (190/372) 2024-08-22T20:27:42.1628897Z Resolving deltas: 52% (195/372) 2024-08-22T20:27:42.1630248Z Resolving deltas: 53% (199/372) 2024-08-22T20:27:42.1632208Z Resolving deltas: 54% (201/372) 2024-08-22T20:27:42.1632766Z Resolving deltas: 55% (206/372) 2024-08-22T20:27:42.1634120Z Resolving deltas: 56% (209/372) 2024-08-22T20:27:42.1635449Z Resolving deltas: 57% (213/372) 2024-08-22T20:27:42.1636435Z Resolving deltas: 58% (216/372) 2024-08-22T20:27:42.1637175Z Resolving deltas: 59% (221/372) 2024-08-22T20:27:42.1638818Z Resolving deltas: 60% (224/372) 2024-08-22T20:27:42.1639711Z Resolving deltas: 61% (227/372) 2024-08-22T20:27:42.1641515Z Resolving deltas: 62% (231/372) 2024-08-22T20:27:42.1643710Z Resolving deltas: 63% (235/372) 2024-08-22T20:27:42.1645210Z Resolving deltas: 64% (239/372) 2024-08-22T20:27:42.1647105Z Resolving deltas: 65% (243/372) 2024-08-22T20:27:42.1648596Z Resolving deltas: 66% (246/372) 2024-08-22T20:27:42.1649128Z Resolving deltas: 67% (250/372) 2024-08-22T20:27:42.1649519Z Resolving deltas: 68% (253/372) 2024-08-22T20:27:42.1649899Z Resolving deltas: 69% (258/372) 2024-08-22T20:27:42.1650377Z Resolving deltas: 70% (261/372) 2024-08-22T20:27:42.1650766Z Resolving deltas: 71% (267/372) 2024-08-22T20:27:42.1651145Z Resolving deltas: 72% (268/372) 2024-08-22T20:27:42.1651727Z Resolving deltas: 73% (272/372) 2024-08-22T20:27:42.1652117Z Resolving deltas: 74% (277/372) 2024-08-22T20:27:42.1652495Z Resolving deltas: 75% (280/372) 2024-08-22T20:27:42.1652886Z Resolving deltas: 76% (283/372) 2024-08-22T20:27:42.1653273Z Resolving deltas: 77% (287/372) 2024-08-22T20:27:42.1653648Z Resolving deltas: 78% (291/372) 2024-08-22T20:27:42.1654030Z Resolving deltas: 79% (295/372) 2024-08-22T20:27:42.1654436Z Resolving deltas: 80% (298/372) 2024-08-22T20:27:42.1654813Z Resolving deltas: 81% (302/372) 2024-08-22T20:27:42.1655302Z Resolving deltas: 82% (306/372) 2024-08-22T20:27:42.1655692Z Resolving deltas: 83% (312/372) 2024-08-22T20:27:42.1656070Z Resolving deltas: 84% (313/372) 2024-08-22T20:27:42.1656506Z Resolving deltas: 85% (317/372) 2024-08-22T20:27:42.1656889Z Resolving deltas: 86% (320/372) 2024-08-22T20:27:42.1657256Z Resolving deltas: 87% (324/372) 2024-08-22T20:27:42.1657633Z Resolving deltas: 88% (328/372) 2024-08-22T20:27:42.1658027Z Resolving deltas: 89% (333/372) 2024-08-22T20:27:42.1658404Z Resolving deltas: 90% (335/372) 2024-08-22T20:27:42.1658780Z Resolving deltas: 91% (339/372) 2024-08-22T20:27:42.1659158Z Resolving deltas: 92% (343/372) 2024-08-22T20:27:42.1659732Z Resolving deltas: 93% (346/372) 2024-08-22T20:27:42.1663189Z Resolving deltas: 94% (350/372) 2024-08-22T20:27:42.1665244Z Resolving deltas: 95% (355/372) 2024-08-22T20:27:42.1666231Z Resolving deltas: 96% (358/372) 2024-08-22T20:27:42.1667683Z Resolving deltas: 97% (362/372) 2024-08-22T20:27:42.1669734Z Resolving deltas: 98% (366/372) 2024-08-22T20:27:42.1671294Z Resolving deltas: 99% (370/372) 2024-08-22T20:27:42.1672974Z Resolving deltas: 100% (372/372) 2024-08-22T20:27:42.1673506Z Resolving deltas: 100% (372/372), done. 2024-08-22T20:27:42.1830530Z From https://github.com/pytorch/test-infra 2024-08-22T20:27:42.1831109Z * [new branch] main -> origin/main 2024-08-22T20:27:42.1856583Z ##[endgroup] 2024-08-22T20:27:42.1857118Z ##[group]Determining the checkout info 2024-08-22T20:27:42.1859035Z ##[endgroup] 2024-08-22T20:27:42.1859556Z ##[group]Checking out the ref 2024-08-22T20:27:42.1862886Z [command]/usr/bin/git checkout --progress --force -B main refs/remotes/origin/main 2024-08-22T20:27:42.3177067Z Switched to a new branch 'main' 2024-08-22T20:27:42.3178028Z branch 'main' set up to track 'origin/main'. 2024-08-22T20:27:42.3188704Z ##[endgroup] 2024-08-22T20:27:42.3189307Z ##[group]Setting up auth for fetching submodules 2024-08-22T20:27:42.3194374Z [command]/usr/bin/git config --global http.https://github.com/.extraheader AUTHORIZATION: basic *** 2024-08-22T20:27:42.3256956Z [command]/usr/bin/git config --global --unset-all url.https://github.com/.insteadOf 2024-08-22T20:27:42.3302850Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf git@github.com: 2024-08-22T20:27:42.3348108Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf org-21003710@github.com: 2024-08-22T20:27:42.3390520Z ##[endgroup] 2024-08-22T20:27:42.3391142Z ##[group]Fetching submodules 2024-08-22T20:27:42.3394018Z [command]/usr/bin/git submodule sync --recursive 2024-08-22T20:27:42.3758798Z [command]/usr/bin/git -c protocol.version=2 submodule update --init --force --depth=1 --recursive 2024-08-22T20:27:42.4122321Z [command]/usr/bin/git submodule foreach --recursive git config --local gc.auto 0 2024-08-22T20:27:42.4475544Z ##[endgroup] 2024-08-22T20:27:42.4476586Z ##[group]Persisting credentials for submodules 2024-08-22T20:27:42.4481494Z [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' || :" 2024-08-22T20:27:42.4830663Z [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" 2024-08-22T20:27:42.5187880Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'git@github.com:' 2024-08-22T20:27:42.5546130Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'org-21003710@github.com:' 2024-08-22T20:27:42.5908043Z ##[endgroup] 2024-08-22T20:27:42.5961920Z [command]/usr/bin/git log -1 --format='%H' 2024-08-22T20:27:42.6003915Z '6dab351bed7d1c647665a8b8e883ec5b1c973feb' 2024-08-22T20:27:42.6312577Z Prepare all required actions 2024-08-22T20:27:42.6313074Z Getting action download info 2024-08-22T20:27:42.7303605Z Download action repository 'pytorch/test-infra@main' (SHA:6dab351bed7d1c647665a8b8e883ec5b1c973feb) 2024-08-22T20:27:43.1702273Z Getting action download info 2024-08-22T20:27:43.2683792Z Download action repository 'nick-fields/retry@3e91a01664abd3c5cd539100d10d33b9c5b68482' (SHA:3e91a01664abd3c5cd539100d10d33b9c5b68482) 2024-08-22T20:27:43.4084653Z ##[group]Run ./test-infra/.github/actions/setup-linux 2024-08-22T20:27:43.4085126Z env: 2024-08-22T20:27:43.4085456Z DOCKER_IMAGE: pytorch/conda-builder:cuda12.1 2024-08-22T20:27:43.4085920Z REPOSITORY: pytorch/torchchat 2024-08-22T20:27:43.4086285Z PR_NUMBER: 1044 2024-08-22T20:27:43.4105309Z SCRIPT: echo "::group::Print machine info" uname -a echo "::endgroup::" echo "::group::Install newer objcopy that supports --set-section-alignment" yum install -y devtoolset-10-binutils export PATH=/opt/rh/devtoolset-10/root/usr/bin/:$PATH echo "::endgroup::" echo "::group::Download checkpoints" # Install requirements ./install_requirements.sh cuda pip3 list python3 -c 'import torch;print(f"torch: {torch.__version__, torch.version.git_version}")' echo "::endgroup::" echo "::group::Download checkpoints" mkdir -p checkpoints/stories15M pushd checkpoints/stories15M wget https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.pt wget https://github.com/karpathy/llama2.c/raw/master/tokenizer.model popd echo "::endgroup::" echo "::group::Run inference" export MODEL_PATH=checkpoints/stories15M/stories15M.pt export MODEL_NAME=stories15M export MODEL_DIR=/tmp for DTYPE in bfloat16 float16 float32; do ################################################################### # group with different temperatures python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 ################################################################### # group with different temperatures and prefill, and compile # and prefill compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --compile --compile-prefill ################################################################### # group with different temperatures and sequential prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill ################################################################### # group with different temperatures and prefill, and compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill --compile done echo "tests complete" echo "******************************************" echo "::endgroup::" 2024-08-22T20:27:43.4124687Z ##[endgroup] 2024-08-22T20:27:43.4319686Z ##[group]Run set -euo pipefail 2024-08-22T20:27:43.4320111Z set -euo pipefail 2024-08-22T20:27:43.4320516Z function get_ec2_metadata() { 2024-08-22T20:27:43.4321077Z  # Pulled from instance metadata endpoint for EC2 2024-08-22T20:27:43.4322049Z  # see https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-data-retrieval.html 2024-08-22T20:27:43.4322892Z  category=$1 2024-08-22T20:27:43.4323441Z  curl -fsSL "http://169.254.169.254/latest/meta-data/${category}" 2024-08-22T20:27:43.4324039Z } 2024-08-22T20:27:43.4324420Z echo "ami-id: $(get_ec2_metadata ami-id)" 2024-08-22T20:27:43.4325037Z echo "instance-id: $(get_ec2_metadata instance-id)" 2024-08-22T20:27:43.4325743Z echo "instance-type: $(get_ec2_metadata instance-type)" 2024-08-22T20:27:43.4326475Z echo "system info $(uname -a)" 2024-08-22T20:27:43.4335716Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2024-08-22T20:27:43.4336215Z env: 2024-08-22T20:27:43.4336558Z DOCKER_IMAGE: pytorch/conda-builder:cuda12.1 2024-08-22T20:27:43.4337046Z REPOSITORY: pytorch/torchchat 2024-08-22T20:27:43.4337417Z PR_NUMBER: 1044 2024-08-22T20:27:43.4356375Z SCRIPT: echo "::group::Print machine info" uname -a echo "::endgroup::" echo "::group::Install newer objcopy that supports --set-section-alignment" yum install -y devtoolset-10-binutils export PATH=/opt/rh/devtoolset-10/root/usr/bin/:$PATH echo "::endgroup::" echo "::group::Download checkpoints" # Install requirements ./install_requirements.sh cuda pip3 list python3 -c 'import torch;print(f"torch: {torch.__version__, torch.version.git_version}")' echo "::endgroup::" echo "::group::Download checkpoints" mkdir -p checkpoints/stories15M pushd checkpoints/stories15M wget https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.pt wget https://github.com/karpathy/llama2.c/raw/master/tokenizer.model popd echo "::endgroup::" echo "::group::Run inference" export MODEL_PATH=checkpoints/stories15M/stories15M.pt export MODEL_NAME=stories15M export MODEL_DIR=/tmp for DTYPE in bfloat16 float16 float32; do ################################################################### # group with different temperatures python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 ################################################################### # group with different temperatures and prefill, and compile # and prefill compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --compile --compile-prefill ################################################################### # group with different temperatures and sequential prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill ################################################################### # group with different temperatures and prefill, and compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill --compile done echo "tests complete" echo "******************************************" echo "::endgroup::" 2024-08-22T20:27:43.4375736Z ##[endgroup] 2024-08-22T20:27:43.4471319Z ami-id: ami-06c68f701d8090592 2024-08-22T20:27:43.4527447Z instance-id: i-0eff7f5d1c54b6a46 2024-08-22T20:27:43.4581635Z instance-type: g5.4xlarge 2024-08-22T20:27:43.4596001Z system info Linux ip-10-0-38-42.ec2.internal 6.1.94-99.176.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Jun 18 14:57:56 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux 2024-08-22T20:27:43.4627738Z ##[group]Run if systemctl is-active --quiet docker; then 2024-08-22T20:27:43.4628333Z if systemctl is-active --quiet docker; then 2024-08-22T20:27:43.4628866Z  echo "Docker daemon is running..."; 2024-08-22T20:27:43.4629310Z else 2024-08-22T20:27:43.4629791Z  echo "Starting docker deamon..." && sudo systemctl start docker; 2024-08-22T20:27:43.4630371Z fi 2024-08-22T20:27:43.4639260Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2024-08-22T20:27:43.4639746Z env: 2024-08-22T20:27:43.4640075Z DOCKER_IMAGE: pytorch/conda-builder:cuda12.1 2024-08-22T20:27:43.4640539Z REPOSITORY: pytorch/torchchat 2024-08-22T20:27:43.4640917Z PR_NUMBER: 1044 2024-08-22T20:27:43.4660001Z SCRIPT: echo "::group::Print machine info" uname -a echo "::endgroup::" echo "::group::Install newer objcopy that supports --set-section-alignment" yum install -y devtoolset-10-binutils export PATH=/opt/rh/devtoolset-10/root/usr/bin/:$PATH echo "::endgroup::" echo "::group::Download checkpoints" # Install requirements ./install_requirements.sh cuda pip3 list python3 -c 'import torch;print(f"torch: {torch.__version__, torch.version.git_version}")' echo "::endgroup::" echo "::group::Download checkpoints" mkdir -p checkpoints/stories15M pushd checkpoints/stories15M wget https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.pt wget https://github.com/karpathy/llama2.c/raw/master/tokenizer.model popd echo "::endgroup::" echo "::group::Run inference" export MODEL_PATH=checkpoints/stories15M/stories15M.pt export MODEL_NAME=stories15M export MODEL_DIR=/tmp for DTYPE in bfloat16 float16 float32; do ################################################################### # group with different temperatures python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 ################################################################### # group with different temperatures and prefill, and compile # and prefill compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --compile --compile-prefill ################################################################### # group with different temperatures and sequential prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill ################################################################### # group with different temperatures and prefill, and compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill --compile done echo "tests complete" echo "******************************************" echo "::endgroup::" 2024-08-22T20:27:43.4679774Z ##[endgroup] 2024-08-22T20:27:43.4767265Z Docker daemon is running... 2024-08-22T20:27:43.4795349Z ##[group]Run AWS_ACCOUNT_ID=$(aws sts get-caller-identity|grep Account|cut -f4 -d\") 2024-08-22T20:27:43.4796292Z AWS_ACCOUNT_ID=$(aws sts get-caller-identity|grep Account|cut -f4 -d\") 2024-08-22T20:27:43.4797078Z retry () { "$@" || (sleep 1 && "$@") || (sleep 2 && "$@") } 2024-08-22T20:27:43.4798014Z retry aws ecr get-login-password --region "$AWS_DEFAULT_REGION" | docker login --username AWS \ 2024-08-22T20:27:43.4799095Z  --password-stdin "$AWS_ACCOUNT_ID.dkr.ecr.$AWS_DEFAULT_REGION.amazonaws.com" 2024-08-22T20:27:43.4808323Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2024-08-22T20:27:43.4808816Z env: 2024-08-22T20:27:43.4809138Z DOCKER_IMAGE: pytorch/conda-builder:cuda12.1 2024-08-22T20:27:43.4809589Z REPOSITORY: pytorch/torchchat 2024-08-22T20:27:43.4809986Z PR_NUMBER: 1044 2024-08-22T20:27:43.4828908Z SCRIPT: echo "::group::Print machine info" uname -a echo "::endgroup::" echo "::group::Install newer objcopy that supports --set-section-alignment" yum install -y devtoolset-10-binutils export PATH=/opt/rh/devtoolset-10/root/usr/bin/:$PATH echo "::endgroup::" echo "::group::Download checkpoints" # Install requirements ./install_requirements.sh cuda pip3 list python3 -c 'import torch;print(f"torch: {torch.__version__, torch.version.git_version}")' echo "::endgroup::" echo "::group::Download checkpoints" mkdir -p checkpoints/stories15M pushd checkpoints/stories15M wget https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.pt wget https://github.com/karpathy/llama2.c/raw/master/tokenizer.model popd echo "::endgroup::" echo "::group::Run inference" export MODEL_PATH=checkpoints/stories15M/stories15M.pt export MODEL_NAME=stories15M export MODEL_DIR=/tmp for DTYPE in bfloat16 float16 float32; do ################################################################### # group with different temperatures python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 ################################################################### # group with different temperatures and prefill, and compile # and prefill compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --compile --compile-prefill ################################################################### # group with different temperatures and sequential prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill ################################################################### # group with different temperatures and prefill, and compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill --compile done echo "tests complete" echo "******************************************" echo "::endgroup::" 2024-08-22T20:27:43.4848355Z AWS_RETRY_MODE: standard 2024-08-22T20:27:43.4848707Z AWS_MAX_ATTEMPTS: 5 2024-08-22T20:27:43.4849045Z AWS_DEFAULT_REGION: us-east-1 2024-08-22T20:27:43.4849403Z ##[endgroup] 2024-08-22T20:27:44.5851967Z WARNING! Your password will be stored unencrypted in /home/ec2-user/.docker/config.json. 2024-08-22T20:27:44.5852778Z Configure a credential helper to remove this warning. See 2024-08-22T20:27:44.5853610Z https://docs.docker.com/engine/reference/commandline/login/#credentials-store 2024-08-22T20:27:44.5854123Z 2024-08-22T20:27:44.5854255Z Login Succeeded 2024-08-22T20:27:44.5905474Z ##[group]Run env | grep '^GITHUB' >> "${RUNNER_TEMP}/github_env_${GITHUB_RUN_ID}" 2024-08-22T20:27:44.5906409Z env | grep '^GITHUB' >> "${RUNNER_TEMP}/github_env_${GITHUB_RUN_ID}" 2024-08-22T20:27:44.5907131Z env | grep '^CI' >> "${RUNNER_TEMP}/github_env_${GITHUB_RUN_ID}" 2024-08-22T20:27:44.5916340Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2024-08-22T20:27:44.5916837Z env: 2024-08-22T20:27:44.5917154Z DOCKER_IMAGE: pytorch/conda-builder:cuda12.1 2024-08-22T20:27:44.5917615Z REPOSITORY: pytorch/torchchat 2024-08-22T20:27:44.5917999Z PR_NUMBER: 1044 2024-08-22T20:27:44.5937087Z SCRIPT: echo "::group::Print machine info" uname -a echo "::endgroup::" echo "::group::Install newer objcopy that supports --set-section-alignment" yum install -y devtoolset-10-binutils export PATH=/opt/rh/devtoolset-10/root/usr/bin/:$PATH echo "::endgroup::" echo "::group::Download checkpoints" # Install requirements ./install_requirements.sh cuda pip3 list python3 -c 'import torch;print(f"torch: {torch.__version__, torch.version.git_version}")' echo "::endgroup::" echo "::group::Download checkpoints" mkdir -p checkpoints/stories15M pushd checkpoints/stories15M wget https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.pt wget https://github.com/karpathy/llama2.c/raw/master/tokenizer.model popd echo "::endgroup::" echo "::group::Run inference" export MODEL_PATH=checkpoints/stories15M/stories15M.pt export MODEL_NAME=stories15M export MODEL_DIR=/tmp for DTYPE in bfloat16 float16 float32; do ################################################################### # group with different temperatures python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 ################################################################### # group with different temperatures and prefill, and compile # and prefill compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --compile --compile-prefill ################################################################### # group with different temperatures and sequential prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill ################################################################### # group with different temperatures and prefill, and compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill --compile done echo "tests complete" echo "******************************************" echo "::endgroup::" 2024-08-22T20:27:44.5956301Z ##[endgroup] 2024-08-22T20:27:44.6052330Z ##[group]Run RUNNER_ARTIFACT_DIR="${RUNNER_TEMP}/artifacts" 2024-08-22T20:27:44.6052977Z RUNNER_ARTIFACT_DIR="${RUNNER_TEMP}/artifacts" 2024-08-22T20:27:44.6053506Z sudo rm -rf "${RUNNER_ARTIFACT_DIR}" 2024-08-22T20:27:44.6053977Z mkdir -p "${RUNNER_ARTIFACT_DIR}" 2024-08-22T20:27:44.6054584Z echo "RUNNER_ARTIFACT_DIR=${RUNNER_ARTIFACT_DIR}" >> "${GITHUB_ENV}" 2024-08-22T20:27:44.6055146Z  2024-08-22T20:27:44.6055536Z RUNNER_TEST_RESULTS_DIR="${RUNNER_TEMP}/test-results" 2024-08-22T20:27:44.6056110Z sudo rm -rf "${RUNNER_TEST_RESULTS_DIR}" 2024-08-22T20:27:44.6056619Z mkdir -p "${RUNNER_TEST_RESULTS_DIR}" 2024-08-22T20:27:44.6057265Z echo "RUNNER_TEST_RESULTS_DIR=${RUNNER_TEST_RESULTS_DIR}" >> "${GITHUB_ENV}" 2024-08-22T20:27:44.6057853Z  2024-08-22T20:27:44.6058184Z RUNNER_DOCS_DIR="${RUNNER_TEMP}/docs" 2024-08-22T20:27:44.6058658Z sudo rm -rf "${RUNNER_DOCS_DIR}" 2024-08-22T20:27:44.6059096Z mkdir -p "${RUNNER_DOCS_DIR}" 2024-08-22T20:27:44.6059831Z echo "RUNNER_DOCS_DIR=${RUNNER_DOCS_DIR}" >> "${GITHUB_ENV}" 2024-08-22T20:27:44.6068894Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2024-08-22T20:27:44.6069380Z env: 2024-08-22T20:27:44.6069703Z DOCKER_IMAGE: pytorch/conda-builder:cuda12.1 2024-08-22T20:27:44.6070166Z REPOSITORY: pytorch/torchchat 2024-08-22T20:27:44.6070537Z PR_NUMBER: 1044 2024-08-22T20:27:44.6089712Z SCRIPT: echo "::group::Print machine info" uname -a echo "::endgroup::" echo "::group::Install newer objcopy that supports --set-section-alignment" yum install -y devtoolset-10-binutils export PATH=/opt/rh/devtoolset-10/root/usr/bin/:$PATH echo "::endgroup::" echo "::group::Download checkpoints" # Install requirements ./install_requirements.sh cuda pip3 list python3 -c 'import torch;print(f"torch: {torch.__version__, torch.version.git_version}")' echo "::endgroup::" echo "::group::Download checkpoints" mkdir -p checkpoints/stories15M pushd checkpoints/stories15M wget https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.pt wget https://github.com/karpathy/llama2.c/raw/master/tokenizer.model popd echo "::endgroup::" echo "::group::Run inference" export MODEL_PATH=checkpoints/stories15M/stories15M.pt export MODEL_NAME=stories15M export MODEL_DIR=/tmp for DTYPE in bfloat16 float16 float32; do ################################################################### # group with different temperatures python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 ################################################################### # group with different temperatures and prefill, and compile # and prefill compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --compile --compile-prefill ################################################################### # group with different temperatures and sequential prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill ################################################################### # group with different temperatures and prefill, and compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill --compile done echo "tests complete" echo "******************************************" echo "::endgroup::" 2024-08-22T20:27:44.6108961Z ##[endgroup] 2024-08-22T20:27:44.8494769Z ##[group]Run needs=0 2024-08-22T20:27:44.8495101Z needs=0 2024-08-22T20:27:44.8495621Z if lspci -v | grep -e 'controller.*NVIDIA' >/dev/null 2>/dev/null; then 2024-08-22T20:27:44.8496217Z  needs=1 2024-08-22T20:27:44.8496529Z fi 2024-08-22T20:27:44.8496894Z echo "does=${needs}" >> $GITHUB_OUTPUT 2024-08-22T20:27:44.8505902Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2024-08-22T20:27:44.8506386Z env: 2024-08-22T20:27:44.8506712Z DOCKER_IMAGE: pytorch/conda-builder:cuda12.1 2024-08-22T20:27:44.8507173Z REPOSITORY: pytorch/torchchat 2024-08-22T20:27:44.8507545Z PR_NUMBER: 1044 2024-08-22T20:27:44.8526487Z SCRIPT: echo "::group::Print machine info" uname -a echo "::endgroup::" echo "::group::Install newer objcopy that supports --set-section-alignment" yum install -y devtoolset-10-binutils export PATH=/opt/rh/devtoolset-10/root/usr/bin/:$PATH echo "::endgroup::" echo "::group::Download checkpoints" # Install requirements ./install_requirements.sh cuda pip3 list python3 -c 'import torch;print(f"torch: {torch.__version__, torch.version.git_version}")' echo "::endgroup::" echo "::group::Download checkpoints" mkdir -p checkpoints/stories15M pushd checkpoints/stories15M wget https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.pt wget https://github.com/karpathy/llama2.c/raw/master/tokenizer.model popd echo "::endgroup::" echo "::group::Run inference" export MODEL_PATH=checkpoints/stories15M/stories15M.pt export MODEL_NAME=stories15M export MODEL_DIR=/tmp for DTYPE in bfloat16 float16 float32; do ################################################################### # group with different temperatures python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 ################################################################### # group with different temperatures and prefill, and compile # and prefill compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --compile --compile-prefill ################################################################### # group with different temperatures and sequential prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill ################################################################### # group with different temperatures and prefill, and compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill --compile done echo "tests complete" echo "******************************************" echo "::endgroup::" 2024-08-22T20:27:44.8546159Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2024-08-22T20:27:44.8546922Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2024-08-22T20:27:44.8547636Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2024-08-22T20:27:44.8548240Z ##[endgroup] 2024-08-22T20:27:44.8849356Z ##[group]Run pytorch/test-infra/.github/actions/setup-nvidia@main 2024-08-22T20:27:44.8849875Z with: 2024-08-22T20:27:44.8850140Z driver-version: 550.54.15 2024-08-22T20:27:44.8850467Z env: 2024-08-22T20:27:44.8850779Z DOCKER_IMAGE: pytorch/conda-builder:cuda12.1 2024-08-22T20:27:44.8851222Z REPOSITORY: pytorch/torchchat 2024-08-22T20:27:44.8851593Z PR_NUMBER: 1044 2024-08-22T20:27:44.8870608Z SCRIPT: echo "::group::Print machine info" uname -a echo "::endgroup::" echo "::group::Install newer objcopy that supports --set-section-alignment" yum install -y devtoolset-10-binutils export PATH=/opt/rh/devtoolset-10/root/usr/bin/:$PATH echo "::endgroup::" echo "::group::Download checkpoints" # Install requirements ./install_requirements.sh cuda pip3 list python3 -c 'import torch;print(f"torch: {torch.__version__, torch.version.git_version}")' echo "::endgroup::" echo "::group::Download checkpoints" mkdir -p checkpoints/stories15M pushd checkpoints/stories15M wget https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.pt wget https://github.com/karpathy/llama2.c/raw/master/tokenizer.model popd echo "::endgroup::" echo "::group::Run inference" export MODEL_PATH=checkpoints/stories15M/stories15M.pt export MODEL_NAME=stories15M export MODEL_DIR=/tmp for DTYPE in bfloat16 float16 float32; do ################################################################### # group with different temperatures python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 ################################################################### # group with different temperatures and prefill, and compile # and prefill compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --compile --compile-prefill ################################################################### # group with different temperatures and sequential prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill ################################################################### # group with different temperatures and prefill, and compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill --compile done echo "tests complete" echo "******************************************" echo "::endgroup::" 2024-08-22T20:27:44.8890477Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2024-08-22T20:27:44.8891322Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2024-08-22T20:27:44.8892118Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2024-08-22T20:27:44.8892664Z ##[endgroup] 2024-08-22T20:27:44.8937944Z ##[group]Run nick-fields/retry@3e91a01664abd3c5cd539100d10d33b9c5b68482 2024-08-22T20:27:44.8938483Z with: 2024-08-22T20:27:44.8938751Z timeout_minutes: 10 2024-08-22T20:27:44.8939067Z max_attempts: 3 2024-08-22T20:27:44.8971708Z 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" install_nvidia_docker2_amzn2() { ( set -x # Needed for yum-config-manager sudo yum install -y yum-utils if [[ "${DISTRIBUTION}" == "amzn2023" ]] ; then YUM_REPO_URL="https://nvidia.github.io/libnvidia-container/stable/rpm/nvidia-container-toolkit.repo" else # Amazon Linux 2 YUM_REPO_URL="https://nvidia.github.io/nvidia-docker/${DISTRIBUTION}/nvidia-docker.repo" fi 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 # Install nvidia-driver package if not installed status="$(dpkg-query -W --showformat='${db:Status-Status}' nvidia-docker2 2>&1)" if [ ! $? = 0 ] || [ ! "$status" = installed ]; then sudo apt-get install -y nvidia-docker2 sudo systemctl restart docker fi ) } 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}" # Fix https://github.com/NVIDIA/nvidia-docker/issues/1648 on runners with # more than one GPUs. This just needs to be run once. The command fails # on subsequent runs and complains that the mode is already on, but that's # ok sudo nvidia-persistenced || true # This should show persistence mode ON nvidia-smi 2024-08-22T20:27:44.9006040Z retry_wait_seconds: 10 2024-08-22T20:27:44.9006454Z polling_interval_seconds: 1 2024-08-22T20:27:44.9006832Z warning_on_retry: true 2024-08-22T20:27:44.9007188Z continue_on_error: false 2024-08-22T20:27:44.9007529Z env: 2024-08-22T20:27:44.9007864Z DOCKER_IMAGE: pytorch/conda-builder:cuda12.1 2024-08-22T20:27:44.9008420Z REPOSITORY: pytorch/torchchat 2024-08-22T20:27:44.9008783Z PR_NUMBER: 1044 2024-08-22T20:27:44.9027712Z SCRIPT: echo "::group::Print machine info" uname -a echo "::endgroup::" echo "::group::Install newer objcopy that supports --set-section-alignment" yum install -y devtoolset-10-binutils export PATH=/opt/rh/devtoolset-10/root/usr/bin/:$PATH echo "::endgroup::" echo "::group::Download checkpoints" # Install requirements ./install_requirements.sh cuda pip3 list python3 -c 'import torch;print(f"torch: {torch.__version__, torch.version.git_version}")' echo "::endgroup::" echo "::group::Download checkpoints" mkdir -p checkpoints/stories15M pushd checkpoints/stories15M wget https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.pt wget https://github.com/karpathy/llama2.c/raw/master/tokenizer.model popd echo "::endgroup::" echo "::group::Run inference" export MODEL_PATH=checkpoints/stories15M/stories15M.pt export MODEL_NAME=stories15M export MODEL_DIR=/tmp for DTYPE in bfloat16 float16 float32; do ################################################################### # group with different temperatures python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 ################################################################### # group with different temperatures and prefill, and compile # and prefill compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --compile --compile-prefill ################################################################### # group with different temperatures and sequential prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill ################################################################### # group with different temperatures and prefill, and compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill --compile done echo "tests complete" echo "******************************************" echo "::endgroup::" 2024-08-22T20:27:44.9047130Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2024-08-22T20:27:44.9047893Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2024-08-22T20:27:44.9048690Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2024-08-22T20:27:44.9049208Z DRIVER_VERSION: 550.54.15 2024-08-22T20:27:44.9049550Z ##[endgroup] 2024-08-22T20:27:44.9865534Z == Installing nvidia driver NVIDIA-Linux-x86_64-550.54.15.run == 2024-08-22T20:27:44.9866959Z + pre_install_nvidia_driver_amzn2 2024-08-22T20:27:44.9868436Z + sudo yum remove -y nvidia-driver-latest-dkms 2024-08-22T20:27:45.3447820Z No match for argument: nvidia-driver-latest-dkms 2024-08-22T20:27:45.3448440Z No packages marked for removal. 2024-08-22T20:27:45.3510858Z Dependencies resolved. 2024-08-22T20:27:45.3520805Z Nothing to do. 2024-08-22T20:27:45.3521745Z Complete! 2024-08-22T20:27:45.4000257Z + install_nvidia_driver_common 2024-08-22T20:27:45.4003394Z + echo 'Before installing NVIDIA driver' 2024-08-22T20:27:45.4003834Z Before installing NVIDIA driver 2024-08-22T20:27:45.4005573Z + lspci 2024-08-22T20:27:45.4112316Z 00:00.0 Host bridge: Intel Corporation 440FX - 82441FX PMC [Natoma] 2024-08-22T20:27:45.4113237Z 00:01.0 ISA bridge: Intel Corporation 82371SB PIIX3 ISA [Natoma/Triton II] 2024-08-22T20:27:45.4114182Z 00:01.3 Non-VGA unclassified device: Intel Corporation 82371AB/EB/MB PIIX4 ACPI (rev 08) 2024-08-22T20:27:45.4114983Z 00:03.0 VGA compatible controller: Amazon.com, Inc. Device 1111 2024-08-22T20:27:45.4115822Z 00:04.0 Non-Volatile memory controller: Amazon.com, Inc. NVMe EBS Controller 2024-08-22T20:27:45.4116608Z 00:05.0 Ethernet controller: Amazon.com, Inc. Elastic Network Adapter (ENA) 2024-08-22T20:27:45.4117367Z 00:1e.0 3D controller: NVIDIA Corporation GA102GL [A10G] (rev a1) 2024-08-22T20:27:45.4118194Z 00:1f.0 Non-Volatile memory controller: Amazon.com, Inc. NVMe SSD Controller 2024-08-22T20:27:45.4118782Z + lsmod 2024-08-22T20:27:45.4162771Z Module Size Used by 2024-08-22T20:27:45.4163168Z veth 36864 0 2024-08-22T20:27:45.4163635Z nvidia_modeset 1351680 0 2024-08-22T20:27:45.4164181Z video 65536 1 nvidia_modeset 2024-08-22T20:27:45.4164741Z wmi 36864 1 video 2024-08-22T20:27:45.4165230Z nvidia_uvm 4706304 0 2024-08-22T20:27:45.4165738Z nvidia 54071296 7 nvidia_uvm,nvidia_modeset 2024-08-22T20:27:45.4166219Z drm 602112 1 nvidia 2024-08-22T20:27:45.4166940Z drm_panel_orientation_quirks 28672 1 drm 2024-08-22T20:27:45.4167475Z backlight 24576 3 video,drm,nvidia_modeset 2024-08-22T20:27:45.4168014Z i2c_core 106496 2 nvidia,drm 2024-08-22T20:27:45.4168523Z xt_conntrack 16384 1 2024-08-22T20:27:45.4168895Z nft_chain_nat 16384 3 2024-08-22T20:27:45.4169261Z xt_MASQUERADE 20480 1 2024-08-22T20:27:45.4169706Z nf_nat 57344 2 nft_chain_nat,xt_MASQUERADE 2024-08-22T20:27:45.4170185Z nf_conntrack_netlink 57344 0 2024-08-22T20:27:45.4170743Z nf_conntrack 184320 4 xt_conntrack,nf_nat,nf_conntrack_netlink,xt_MASQUERADE 2024-08-22T20:27:45.4171379Z nf_defrag_ipv6 24576 1 nf_conntrack 2024-08-22T20:27:45.4171832Z nf_defrag_ipv4 16384 1 nf_conntrack 2024-08-22T20:27:45.4172247Z xfrm_user 57344 1 2024-08-22T20:27:45.4172633Z xfrm_algo 16384 1 xfrm_user 2024-08-22T20:27:45.4173043Z xt_addrtype 16384 2 2024-08-22T20:27:45.4173414Z nft_compat 20480 4 2024-08-22T20:27:45.4173859Z nf_tables 307200 57 nft_compat,nft_chain_nat 2024-08-22T20:27:45.4174454Z nfnetlink 20480 4 nft_compat,nf_conntrack_netlink,nf_tables 2024-08-22T20:27:45.4174983Z br_netfilter 36864 0 2024-08-22T20:27:45.4175377Z bridge 307200 1 br_netfilter 2024-08-22T20:27:45.4175807Z stp 16384 1 bridge 2024-08-22T20:27:45.4176217Z llc 16384 2 bridge,stp 2024-08-22T20:27:45.4176622Z overlay 167936 0 2024-08-22T20:27:45.4177008Z tls 114688 0 2024-08-22T20:27:45.4177387Z nls_ascii 16384 1 2024-08-22T20:27:45.4178002Z nls_cp437 20480 1 2024-08-22T20:27:45.4178362Z vfat 24576 1 2024-08-22T20:27:45.4178722Z fat 86016 1 vfat 2024-08-22T20:27:45.4179094Z ena 167936 0 2024-08-22T20:27:45.4179455Z ptp 36864 1 ena 2024-08-22T20:27:45.4180001Z pps_core 24576 1 ptp 2024-08-22T20:27:45.4180377Z sunrpc 692224 1 2024-08-22T20:27:45.4180743Z ghash_clmulni_intel 16384 0 2024-08-22T20:27:45.4181106Z i8042 45056 0 2024-08-22T20:27:45.4181461Z serio 28672 3 i8042 2024-08-22T20:27:45.4181851Z aesni_intel 393216 0 2024-08-22T20:27:45.4182211Z button 24576 0 2024-08-22T20:27:45.4182590Z crypto_simd 16384 1 aesni_intel 2024-08-22T20:27:45.4183099Z cryptd 28672 2 crypto_simd,ghash_clmulni_intel 2024-08-22T20:27:45.4183590Z sch_fq_codel 20480 17 2024-08-22T20:27:45.4183949Z dm_mod 188416 0 2024-08-22T20:27:45.4184309Z fuse 163840 1 2024-08-22T20:27:45.4184759Z configfs 57344 1 2024-08-22T20:27:45.4185244Z dax 45056 1 dm_mod 2024-08-22T20:27:45.4185932Z loop 36864 0 2024-08-22T20:27:45.4186297Z dmi_sysfs 20480 0 2024-08-22T20:27:45.4186668Z crc32_pclmul 16384 0 2024-08-22T20:27:45.4187038Z crc32c_intel 24576 0 2024-08-22T20:27:45.4187420Z efivarfs 24576 1 2024-08-22T20:27:45.4187873Z + modinfo nvidia 2024-08-22T20:27:45.4188585Z filename: /lib/modules/6.1.94-99.176.amzn2023.x86_64/kernel/drivers/video/nvidia.ko 2024-08-22T20:27:45.4189279Z alias: char-major-195-* 2024-08-22T20:27:45.4189646Z version: 550.54.15 2024-08-22T20:27:45.4189983Z supported: external 2024-08-22T20:27:45.4190317Z license: NVIDIA 2024-08-22T20:27:45.4190679Z firmware: nvidia/550.54.15/gsp_tu10x.bin 2024-08-22T20:27:45.4191154Z firmware: nvidia/550.54.15/gsp_ga10x.bin 2024-08-22T20:27:45.4191604Z srcversion: 833721318DA517F0C2FEC97 2024-08-22T20:27:45.4192056Z alias: pci:v000010DEd*sv*sd*bc06sc80i00* 2024-08-22T20:27:45.4192544Z alias: pci:v000010DEd*sv*sd*bc03sc02i00* 2024-08-22T20:27:45.4193021Z alias: pci:v000010DEd*sv*sd*bc03sc00i00* 2024-08-22T20:27:45.4193686Z depends: i2c-core,drm 2024-08-22T20:27:45.4194047Z retpoline: Y 2024-08-22T20:27:45.4194344Z name: nvidia 2024-08-22T20:27:45.4194949Z vermagic: 6.1.94-99.176.amzn2023.x86_64 SMP preempt mod_unload modversions 2024-08-22T20:27:45.4195641Z parm: NvSwitchRegDwords:NvSwitch regkey (charp) 2024-08-22T20:27:45.4196275Z parm: NvSwitchBlacklist:NvSwitchBlacklist=uuid[,uuid...] (charp) 2024-08-22T20:27:45.4197038Z parm: NVreg_ResmanDebugLevel:int 2024-08-22T20:27:45.4197539Z parm: NVreg_RmLogonRC:int 2024-08-22T20:27:45.4197971Z parm: NVreg_ModifyDeviceFiles:int 2024-08-22T20:27:45.4198414Z parm: NVreg_DeviceFileUID:int 2024-08-22T20:27:45.4198841Z parm: NVreg_DeviceFileGID:int 2024-08-22T20:27:45.4199267Z parm: NVreg_DeviceFileMode:int 2024-08-22T20:27:45.4199771Z parm: NVreg_InitializeSystemMemoryAllocations:int 2024-08-22T20:27:45.4200327Z parm: NVreg_UsePageAttributeTable:int 2024-08-22T20:27:45.4200803Z parm: NVreg_EnablePCIeGen3:int 2024-08-22T20:27:45.4201221Z parm: NVreg_EnableMSI:int 2024-08-22T20:27:45.4201618Z parm: NVreg_TCEBypassMode:int 2024-08-22T20:27:45.4202067Z parm: NVreg_EnableStreamMemOPs:int 2024-08-22T20:27:45.4202582Z parm: NVreg_RestrictProfilingToAdminUsers:int 2024-08-22T20:27:45.4203138Z parm: NVreg_PreserveVideoMemoryAllocations:int 2024-08-22T20:27:45.4203685Z parm: NVreg_EnableS0ixPowerManagement:int 2024-08-22T20:27:45.4204275Z parm: NVreg_S0ixPowerManagementVideoMemoryThreshold:int 2024-08-22T20:27:45.4204847Z parm: NVreg_DynamicPowerManagement:int 2024-08-22T20:27:45.4205436Z parm: NVreg_DynamicPowerManagementVideoMemoryThreshold:int 2024-08-22T20:27:45.4206011Z parm: NVreg_EnableGpuFirmware:int 2024-08-22T20:27:45.4206479Z parm: NVreg_EnableGpuFirmwareLogs:int 2024-08-22T20:27:45.4207004Z parm: NVreg_OpenRmEnableUnsupportedGpus:int 2024-08-22T20:27:45.4207686Z parm: NVreg_EnableUserNUMAManagement:int 2024-08-22T20:27:45.4208258Z parm: NVreg_MemoryPoolSize:int 2024-08-22T20:27:45.4208710Z parm: NVreg_KMallocHeapMaxSize:int 2024-08-22T20:27:45.4209180Z parm: NVreg_VMallocHeapMaxSize:int 2024-08-22T20:27:45.4209630Z parm: NVreg_IgnoreMMIOCheck:int 2024-08-22T20:27:45.4210066Z parm: NVreg_NvLinkDisable:int 2024-08-22T20:27:45.4210556Z parm: NVreg_EnablePCIERelaxedOrderingMode:int 2024-08-22T20:27:45.4211059Z parm: NVreg_RegisterPCIDriver:int 2024-08-22T20:27:45.4211524Z parm: NVreg_EnableResizableBar:int 2024-08-22T20:27:45.4212007Z parm: NVreg_EnableDbgBreakpoint:int 2024-08-22T20:27:45.4212483Z parm: NVreg_EnableNonblockingOpen:int 2024-08-22T20:27:45.4212956Z parm: NVreg_RegistryDwords:charp 2024-08-22T20:27:45.4213438Z parm: NVreg_RegistryDwordsPerDevice:charp 2024-08-22T20:27:45.4213908Z parm: NVreg_RmMsg:charp 2024-08-22T20:27:45.4214314Z parm: NVreg_GpuBlacklist:charp 2024-08-22T20:27:45.4214765Z parm: NVreg_TemporaryFilePath:charp 2024-08-22T20:27:45.4215212Z parm: NVreg_ExcludedGpus:charp 2024-08-22T20:27:45.4215654Z parm: NVreg_DmaRemapPeerMmio:int 2024-08-22T20:27:45.4216120Z parm: NVreg_RmNvlinkBandwidth:charp 2024-08-22T20:27:45.4216575Z parm: NVreg_ImexChannelCount:int 2024-08-22T20:27:45.4217017Z parm: rm_firmware_active:charp 2024-08-22T20:27:45.4217422Z + HAS_NVIDIA_DRIVER=0 2024-08-22T20:27:45.4217868Z ++ command -v nvidia-smi 2024-08-22T20:27:45.4218251Z + '[' -x /usr/bin/nvidia-smi ']' 2024-08-22T20:27:45.4218605Z + set +e 2024-08-22T20:27:45.4219104Z ++ nvidia-smi --query-gpu=driver_version --format=csv,noheader --id=0 2024-08-22T20:27:45.4494030Z + INSTALLED_DRIVER_VERSION=550.54.15 2024-08-22T20:27:45.4494441Z + NVIDIA_SMI_STATUS=0 2024-08-22T20:27:45.4494832Z + '[' 0 -ne 0 ']' 2024-08-22T20:27:45.4495401Z + '[' 550.54.15 '!=' 550.54.15 ']' 2024-08-22T20:27:45.4495778Z + HAS_NVIDIA_DRIVER=1 2024-08-22T20:27:45.4496490Z + echo 'NVIDIA driver (550.54.15) has already been installed. Skipping NVIDIA driver installation' 2024-08-22T20:27:45.4497183Z + set -e 2024-08-22T20:27:45.4497482Z + '[' 1 -eq 0 ']' 2024-08-22T20:27:45.4498038Z NVIDIA driver (550.54.15) has already been installed. Skipping NVIDIA driver installation 2024-08-22T20:27:45.4498707Z + post_install_nvidia_driver_common 2024-08-22T20:27:45.4499685Z + sudo modprobe nvidia 2024-08-22T20:27:45.5582856Z + echo 'After installing NVIDIA driver' 2024-08-22T20:27:45.5583282Z + lspci 2024-08-22T20:27:45.5583567Z After installing NVIDIA driver 2024-08-22T20:27:45.5687831Z 00:00.0 Host bridge: Intel Corporation 440FX - 82441FX PMC [Natoma] 2024-08-22T20:27:45.5688638Z 00:01.0 ISA bridge: Intel Corporation 82371SB PIIX3 ISA [Natoma/Triton II] 2024-08-22T20:27:45.5689559Z 00:01.3 Non-VGA unclassified device: Intel Corporation 82371AB/EB/MB PIIX4 ACPI (rev 08) 2024-08-22T20:27:45.5690340Z 00:03.0 VGA compatible controller: Amazon.com, Inc. Device 1111 2024-08-22T20:27:45.5691133Z 00:04.0 Non-Volatile memory controller: Amazon.com, Inc. NVMe EBS Controller 2024-08-22T20:27:45.5691912Z 00:05.0 Ethernet controller: Amazon.com, Inc. Elastic Network Adapter (ENA) 2024-08-22T20:27:45.5692623Z 00:1e.0 3D controller: NVIDIA Corporation GA102GL [A10G] (rev a1) 2024-08-22T20:27:45.5693418Z 00:1f.0 Non-Volatile memory controller: Amazon.com, Inc. NVMe SSD Controller 2024-08-22T20:27:45.5693996Z + lsmod 2024-08-22T20:27:45.5721583Z Module Size Used by 2024-08-22T20:27:45.5721985Z veth 36864 0 2024-08-22T20:27:45.5722392Z nvidia_modeset 1351680 0 2024-08-22T20:27:45.5722944Z video 65536 1 nvidia_modeset 2024-08-22T20:27:45.5723474Z wmi 36864 1 video 2024-08-22T20:27:45.5723946Z nvidia_uvm 4706304 0 2024-08-22T20:27:45.5724540Z nvidia 54071296 7 nvidia_uvm,nvidia_modeset 2024-08-22T20:27:45.5725370Z drm 602112 1 nvidia 2024-08-22T20:27:45.5725842Z drm_panel_orientation_quirks 28672 1 drm 2024-08-22T20:27:45.5726358Z backlight 24576 3 video,drm,nvidia_modeset 2024-08-22T20:27:45.5726857Z i2c_core 106496 2 nvidia,drm 2024-08-22T20:27:45.5727269Z xt_conntrack 16384 1 2024-08-22T20:27:45.5727668Z nft_chain_nat 16384 3 2024-08-22T20:27:45.5728065Z xt_MASQUERADE 20480 1 2024-08-22T20:27:45.5728596Z nf_nat 57344 2 nft_chain_nat,xt_MASQUERADE 2024-08-22T20:27:45.5729080Z nf_conntrack_netlink 57344 0 2024-08-22T20:27:45.5729650Z nf_conntrack 184320 4 xt_conntrack,nf_nat,nf_conntrack_netlink,xt_MASQUERADE 2024-08-22T20:27:45.5730277Z nf_defrag_ipv6 24576 1 nf_conntrack 2024-08-22T20:27:45.5730733Z nf_defrag_ipv4 16384 1 nf_conntrack 2024-08-22T20:27:45.5731163Z xfrm_user 57344 1 2024-08-22T20:27:45.5731552Z xfrm_algo 16384 1 xfrm_user 2024-08-22T20:27:45.5731972Z xt_addrtype 16384 2 2024-08-22T20:27:45.5732337Z nft_compat 20480 4 2024-08-22T20:27:45.5732771Z nf_tables 307200 57 nft_compat,nft_chain_nat 2024-08-22T20:27:45.5733370Z nfnetlink 20480 4 nft_compat,nf_conntrack_netlink,nf_tables 2024-08-22T20:27:45.5733902Z br_netfilter 36864 0 2024-08-22T20:27:45.5734293Z bridge 307200 1 br_netfilter 2024-08-22T20:27:45.5734722Z stp 16384 1 bridge 2024-08-22T20:27:45.5735130Z llc 16384 2 bridge,stp 2024-08-22T20:27:45.5735536Z overlay 167936 0 2024-08-22T20:27:45.5735894Z tls 114688 0 2024-08-22T20:27:45.5736251Z nls_ascii 16384 1 2024-08-22T20:27:45.5736603Z nls_cp437 20480 1 2024-08-22T20:27:45.5736968Z vfat 24576 1 2024-08-22T20:27:45.5737330Z fat 86016 1 vfat 2024-08-22T20:27:45.5737849Z ena 167936 0 2024-08-22T20:27:45.5738223Z ptp 36864 1 ena 2024-08-22T20:27:45.5738612Z pps_core 24576 1 ptp 2024-08-22T20:27:45.5738988Z sunrpc 692224 1 2024-08-22T20:27:45.5739353Z ghash_clmulni_intel 16384 0 2024-08-22T20:27:45.5739716Z i8042 45056 0 2024-08-22T20:27:45.5740067Z serio 28672 3 i8042 2024-08-22T20:27:45.5740453Z aesni_intel 393216 0 2024-08-22T20:27:45.5740814Z button 24576 0 2024-08-22T20:27:45.5741192Z crypto_simd 16384 1 aesni_intel 2024-08-22T20:27:45.5741701Z cryptd 28672 2 crypto_simd,ghash_clmulni_intel 2024-08-22T20:27:45.5742192Z sch_fq_codel 20480 17 2024-08-22T20:27:45.5742555Z dm_mod 188416 0 2024-08-22T20:27:45.5742912Z fuse 163840 1 2024-08-22T20:27:45.5743262Z configfs 57344 1 2024-08-22T20:27:45.5743633Z dax 45056 1 dm_mod 2024-08-22T20:27:45.5744035Z loop 36864 0 2024-08-22T20:27:45.5744387Z dmi_sysfs 20480 0 2024-08-22T20:27:45.5744750Z crc32_pclmul 16384 0 2024-08-22T20:27:45.5745114Z crc32c_intel 24576 0 2024-08-22T20:27:45.5745471Z efivarfs 24576 1 2024-08-22T20:27:45.5745841Z + modinfo nvidia 2024-08-22T20:27:45.5746719Z filename: /lib/modules/6.1.94-99.176.amzn2023.x86_64/kernel/drivers/video/nvidia.ko 2024-08-22T20:27:45.5747463Z alias: char-major-195-* 2024-08-22T20:27:45.5747841Z version: 550.54.15 2024-08-22T20:27:45.5748180Z supported: external 2024-08-22T20:27:45.5748515Z license: NVIDIA 2024-08-22T20:27:45.5748876Z firmware: nvidia/550.54.15/gsp_tu10x.bin 2024-08-22T20:27:45.5749352Z firmware: nvidia/550.54.15/gsp_ga10x.bin 2024-08-22T20:27:45.5749809Z srcversion: 833721318DA517F0C2FEC97 2024-08-22T20:27:45.5750258Z alias: pci:v000010DEd*sv*sd*bc06sc80i00* 2024-08-22T20:27:45.5750757Z alias: pci:v000010DEd*sv*sd*bc03sc02i00* 2024-08-22T20:27:45.5751347Z alias: pci:v000010DEd*sv*sd*bc03sc00i00* 2024-08-22T20:27:45.5751826Z depends: i2c-core,drm 2024-08-22T20:27:45.5752179Z retpoline: Y 2024-08-22T20:27:45.5752483Z name: nvidia 2024-08-22T20:27:45.5753077Z vermagic: 6.1.94-99.176.amzn2023.x86_64 SMP preempt mod_unload modversions 2024-08-22T20:27:45.5753767Z parm: NvSwitchRegDwords:NvSwitch regkey (charp) 2024-08-22T20:27:45.5754397Z parm: NvSwitchBlacklist:NvSwitchBlacklist=uuid[,uuid...] (charp) 2024-08-22T20:27:45.5754985Z parm: NVreg_ResmanDebugLevel:int 2024-08-22T20:27:45.5755410Z parm: NVreg_RmLogonRC:int 2024-08-22T20:27:45.5755832Z parm: NVreg_ModifyDeviceFiles:int 2024-08-22T20:27:45.5756282Z parm: NVreg_DeviceFileUID:int 2024-08-22T20:27:45.5756703Z parm: NVreg_DeviceFileGID:int 2024-08-22T20:27:45.5757138Z parm: NVreg_DeviceFileMode:int 2024-08-22T20:27:45.5757697Z parm: NVreg_InitializeSystemMemoryAllocations:int 2024-08-22T20:27:45.5758263Z parm: NVreg_UsePageAttributeTable:int 2024-08-22T20:27:45.5758735Z parm: NVreg_EnablePCIeGen3:int 2024-08-22T20:27:45.5759158Z parm: NVreg_EnableMSI:int 2024-08-22T20:27:45.5759559Z parm: NVreg_TCEBypassMode:int 2024-08-22T20:27:45.5760014Z parm: NVreg_EnableStreamMemOPs:int 2024-08-22T20:27:45.5760534Z parm: NVreg_RestrictProfilingToAdminUsers:int 2024-08-22T20:27:45.5761096Z parm: NVreg_PreserveVideoMemoryAllocations:int 2024-08-22T20:27:45.5761646Z parm: NVreg_EnableS0ixPowerManagement:int 2024-08-22T20:27:45.5762244Z parm: NVreg_S0ixPowerManagementVideoMemoryThreshold:int 2024-08-22T20:27:45.5762828Z parm: NVreg_DynamicPowerManagement:int 2024-08-22T20:27:45.5763422Z parm: NVreg_DynamicPowerManagementVideoMemoryThreshold:int 2024-08-22T20:27:45.5764008Z parm: NVreg_EnableGpuFirmware:int 2024-08-22T20:27:45.5764584Z parm: NVreg_EnableGpuFirmwareLogs:int 2024-08-22T20:27:45.5765102Z parm: NVreg_OpenRmEnableUnsupportedGpus:int 2024-08-22T20:27:45.5765640Z parm: NVreg_EnableUserNUMAManagement:int 2024-08-22T20:27:45.5766130Z parm: NVreg_MemoryPoolSize:int 2024-08-22T20:27:45.5766576Z parm: NVreg_KMallocHeapMaxSize:int 2024-08-22T20:27:45.5767053Z parm: NVreg_VMallocHeapMaxSize:int 2024-08-22T20:27:45.5767517Z parm: NVreg_IgnoreMMIOCheck:int 2024-08-22T20:27:45.5767948Z parm: NVreg_NvLinkDisable:int 2024-08-22T20:27:45.5768548Z parm: NVreg_EnablePCIERelaxedOrderingMode:int 2024-08-22T20:27:45.5769062Z parm: NVreg_RegisterPCIDriver:int 2024-08-22T20:27:45.5769526Z parm: NVreg_EnableResizableBar:int 2024-08-22T20:27:45.5770004Z parm: NVreg_EnableDbgBreakpoint:int 2024-08-22T20:27:45.5770494Z parm: NVreg_EnableNonblockingOpen:int 2024-08-22T20:27:45.5770965Z parm: NVreg_RegistryDwords:charp 2024-08-22T20:27:45.5771468Z parm: NVreg_RegistryDwordsPerDevice:charp 2024-08-22T20:27:45.5771950Z parm: NVreg_RmMsg:charp 2024-08-22T20:27:45.5772349Z parm: NVreg_GpuBlacklist:charp 2024-08-22T20:27:45.5772811Z parm: NVreg_TemporaryFilePath:charp 2024-08-22T20:27:45.5773269Z parm: NVreg_ExcludedGpus:charp 2024-08-22T20:27:45.5773715Z parm: NVreg_DmaRemapPeerMmio:int 2024-08-22T20:27:45.5774178Z parm: NVreg_RmNvlinkBandwidth:charp 2024-08-22T20:27:45.5774648Z parm: NVreg_ImexChannelCount:int 2024-08-22T20:27:45.5775093Z parm: rm_firmware_active:charp 2024-08-22T20:27:45.5775477Z + set +e 2024-08-22T20:27:45.5775778Z + nvidia-smi 2024-08-22T20:27:45.5954930Z Thu Aug 22 20:27:45 2024 2024-08-22T20:27:45.5955562Z +-----------------------------------------------------------------------------------------+ 2024-08-22T20:27:45.5956373Z | NVIDIA-SMI 550.54.15 Driver Version: 550.54.15 CUDA Version: 12.4 | 2024-08-22T20:27:45.5957378Z |-----------------------------------------+------------------------+----------------------+ 2024-08-22T20:27:45.5958156Z | GPU Name Persistence-M | Bus-Id Disp.A | Volatile Uncorr. ECC | 2024-08-22T20:27:45.5959031Z | Fan Temp Perf Pwr:Usage/Cap | Memory-Usage | GPU-Util Compute M. | 2024-08-22T20:27:45.5959707Z | | | MIG M. | 2024-08-22T20:27:45.5960242Z |=========================================+========================+======================| 2024-08-22T20:27:45.6197028Z | 0 NVIDIA A10G On | 00000000:00:1E.0 Off | 0 | 2024-08-22T20:27:45.6197740Z | 0% 25C P8 16W / 300W | 0MiB / 23028MiB | 0% Default | 2024-08-22T20:27:45.6198362Z | | | N/A | 2024-08-22T20:27:45.6199046Z +-----------------------------------------+------------------------+----------------------+ 2024-08-22T20:27:45.6202268Z 2024-08-22T20:27:45.6202942Z +-----------------------------------------------------------------------------------------+ 2024-08-22T20:27:45.6203559Z | Processes: | 2024-08-22T20:27:45.6204244Z | GPU GI CI PID Type Process name GPU Memory | 2024-08-22T20:27:45.6204928Z | ID ID Usage | 2024-08-22T20:27:45.6205485Z |=========================================================================================| 2024-08-22T20:27:45.6209210Z | No running processes found | 2024-08-22T20:27:45.6209967Z +-----------------------------------------------------------------------------------------+ 2024-08-22T20:27:45.9072587Z + nvidia-smi --query-gpu=gpu_name --format=csv,noheader --id=0 2024-08-22T20:27:45.9262222Z NVIDIA A10G 2024-08-22T20:27:45.9325594Z + NVIDIA_SMI_STATUS=0 2024-08-22T20:27:45.9326150Z + '[' 0 -eq 0 ']' 2024-08-22T20:27:45.9326654Z + echo 'INFO: Ignoring allowed status 0' 2024-08-22T20:27:45.9327201Z + set -e 2024-08-22T20:27:45.9327501Z INFO: Ignoring allowed status 0 2024-08-22T20:27:45.9335052Z == Installing nvidia container toolkit for amzn2023 == 2024-08-22T20:27:45.9339581Z + sudo yum install -y yum-utils 2024-08-22T20:27:46.3517480Z Last metadata expiration check: 0:33:42 ago on Thu Aug 22 19:54:04 2024. 2024-08-22T20:27:46.3739738Z Package dnf-utils-4.3.0-13.amzn2023.0.4.noarch is already installed. 2024-08-22T20:27:46.4041098Z Dependencies resolved. 2024-08-22T20:27:46.4164766Z Nothing to do. 2024-08-22T20:27:46.4165100Z Complete! 2024-08-22T20:27:46.4541912Z + [[ amzn2023 == \a\m\z\n\2\0\2\3 ]] 2024-08-22T20:27:46.4543033Z + YUM_REPO_URL=https://nvidia.github.io/libnvidia-container/stable/rpm/nvidia-container-toolkit.repo 2024-08-22T20:27:46.4544343Z + sudo yum-config-manager --add-repo https://nvidia.github.io/libnvidia-container/stable/rpm/nvidia-container-toolkit.repo 2024-08-22T20:27:46.7016785Z Adding repo from: https://nvidia.github.io/libnvidia-container/stable/rpm/nvidia-container-toolkit.repo 2024-08-22T20:27:46.7660551Z + sudo yum install -y nvidia-docker2 2024-08-22T20:27:47.2100919Z nvidia-container-toolkit 10 kB/s | 833 B 00:00 2024-08-22T20:27:47.2318399Z Package nvidia-docker2-2.14.0-1.noarch is already installed. 2024-08-22T20:27:47.2614056Z Dependencies resolved. 2024-08-22T20:27:47.2738107Z Nothing to do. 2024-08-22T20:27:47.2738680Z Complete! 2024-08-22T20:27:47.3118191Z + sudo systemctl restart docker 2024-08-22T20:27:49.8754147Z nvidia-persistenced failed to initialize. Check syslog for more details. 2024-08-22T20:27:49.8991252Z Thu Aug 22 20:27:49 2024 2024-08-22T20:27:49.8992193Z +-----------------------------------------------------------------------------------------+ 2024-08-22T20:27:49.8993277Z | NVIDIA-SMI 550.54.15 Driver Version: 550.54.15 CUDA Version: 12.4 | 2024-08-22T20:27:49.8994062Z |-----------------------------------------+------------------------+----------------------+ 2024-08-22T20:27:49.8994849Z | GPU Name Persistence-M | Bus-Id Disp.A | Volatile Uncorr. ECC | 2024-08-22T20:27:49.8995753Z | Fan Temp Perf Pwr:Usage/Cap | Memory-Usage | GPU-Util Compute M. | 2024-08-22T20:27:49.8996433Z | | | MIG M. | 2024-08-22T20:27:49.8996966Z |=========================================+========================+======================| 2024-08-22T20:27:49.9214838Z | 0 NVIDIA A10G On | 00000000:00:1E.0 Off | 0 | 2024-08-22T20:27:49.9215589Z | 0% 25C P8 16W / 300W | 0MiB / 23028MiB | 0% Default | 2024-08-22T20:27:49.9216220Z | | | N/A | 2024-08-22T20:27:49.9216896Z +-----------------------------------------+------------------------+----------------------+ 2024-08-22T20:27:49.9219911Z 2024-08-22T20:27:49.9220607Z +-----------------------------------------------------------------------------------------+ 2024-08-22T20:27:49.9221230Z | Processes: | 2024-08-22T20:27:49.9221919Z | GPU GI CI PID Type Process name GPU Memory | 2024-08-22T20:27:49.9222600Z | ID ID Usage | 2024-08-22T20:27:49.9223156Z |=========================================================================================| 2024-08-22T20:27:49.9225394Z | No running processes found | 2024-08-22T20:27:49.9226194Z +-----------------------------------------------------------------------------------------+ 2024-08-22T20:27:50.9663491Z Command completed after 1 attempt(s). 2024-08-22T20:27:50.9755676Z ##[group]Run # ignore expansion of "docker ps -q" since it could be empty 2024-08-22T20:27:50.9756431Z # ignore expansion of "docker ps -q" since it could be empty 2024-08-22T20:27:50.9757008Z # shellcheck disable=SC2046 2024-08-22T20:27:50.9757456Z docker stop $(docker ps -q) || true 2024-08-22T20:27:50.9757916Z # Prune all of the docker images 2024-08-22T20:27:50.9758385Z docker system prune -af 2024-08-22T20:27:50.9771751Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2024-08-22T20:27:50.9772239Z env: 2024-08-22T20:27:50.9772558Z DOCKER_IMAGE: pytorch/conda-builder:cuda12.1 2024-08-22T20:27:50.9773016Z REPOSITORY: pytorch/torchchat 2024-08-22T20:27:50.9773402Z PR_NUMBER: 1044 2024-08-22T20:27:50.9792681Z SCRIPT: echo "::group::Print machine info" uname -a echo "::endgroup::" echo "::group::Install newer objcopy that supports --set-section-alignment" yum install -y devtoolset-10-binutils export PATH=/opt/rh/devtoolset-10/root/usr/bin/:$PATH echo "::endgroup::" echo "::group::Download checkpoints" # Install requirements ./install_requirements.sh cuda pip3 list python3 -c 'import torch;print(f"torch: {torch.__version__, torch.version.git_version}")' echo "::endgroup::" echo "::group::Download checkpoints" mkdir -p checkpoints/stories15M pushd checkpoints/stories15M wget https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.pt wget https://github.com/karpathy/llama2.c/raw/master/tokenizer.model popd echo "::endgroup::" echo "::group::Run inference" export MODEL_PATH=checkpoints/stories15M/stories15M.pt export MODEL_NAME=stories15M export MODEL_DIR=/tmp for DTYPE in bfloat16 float16 float32; do ################################################################### # group with different temperatures python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 ################################################################### # group with different temperatures and prefill, and compile # and prefill compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --compile --compile-prefill ################################################################### # group with different temperatures and sequential prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill ################################################################### # group with different temperatures and prefill, and compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill --compile done echo "tests complete" echo "******************************************" echo "::endgroup::" 2024-08-22T20:27:50.9812223Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2024-08-22T20:27:50.9813112Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2024-08-22T20:27:50.9814043Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2024-08-22T20:27:50.9814751Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2024-08-22T20:27:50.9815308Z ##[endgroup] 2024-08-22T20:27:51.0137648Z "docker stop" requires at least 1 argument. 2024-08-22T20:27:51.0138679Z See 'docker stop --help'. 2024-08-22T20:27:51.0139022Z 2024-08-22T20:27:51.0139392Z Usage: docker stop [OPTIONS] CONTAINER [CONTAINER...] 2024-08-22T20:27:51.0140132Z 2024-08-22T20:27:51.0140315Z Stop one or more running containers 2024-08-22T20:27:51.0314848Z Total reclaimed space: 0B 2024-08-22T20:27:51.0394776Z ##[group]Run ./test-infra/.github/actions/setup-ssh 2024-08-22T20:27:51.0395332Z with: 2024-08-22T20:27:51.0395960Z github-secret: *** 2024-08-22T20:27:51.0396964Z instructions: All testing is done inside the container, to start an interactive session run: docker exec -it $(docker container ps --format '{{.ID}}') bash 2024-08-22T20:27:51.0398060Z activate-with-label: false 2024-08-22T20:27:51.0398523Z label: with-ssh 2024-08-22T20:27:51.0398932Z remove-existing-keys: true 2024-08-22T20:27:51.0399436Z fail-silently: true 2024-08-22T20:27:51.0399849Z env: 2024-08-22T20:27:51.0400280Z DOCKER_IMAGE: pytorch/conda-builder:cuda12.1 2024-08-22T20:27:51.0400825Z REPOSITORY: pytorch/torchchat 2024-08-22T20:27:51.0401305Z PR_NUMBER: 1044 2024-08-22T20:27:51.0420666Z SCRIPT: echo "::group::Print machine info" uname -a echo "::endgroup::" echo "::group::Install newer objcopy that supports --set-section-alignment" yum install -y devtoolset-10-binutils export PATH=/opt/rh/devtoolset-10/root/usr/bin/:$PATH echo "::endgroup::" echo "::group::Download checkpoints" # Install requirements ./install_requirements.sh cuda pip3 list python3 -c 'import torch;print(f"torch: {torch.__version__, torch.version.git_version}")' echo "::endgroup::" echo "::group::Download checkpoints" mkdir -p checkpoints/stories15M pushd checkpoints/stories15M wget https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.pt wget https://github.com/karpathy/llama2.c/raw/master/tokenizer.model popd echo "::endgroup::" echo "::group::Run inference" export MODEL_PATH=checkpoints/stories15M/stories15M.pt export MODEL_NAME=stories15M export MODEL_DIR=/tmp for DTYPE in bfloat16 float16 float32; do ################################################################### # group with different temperatures python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 ################################################################### # group with different temperatures and prefill, and compile # and prefill compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --compile --compile-prefill ################################################################### # group with different temperatures and sequential prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill ################################################################### # group with different temperatures and prefill, and compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill --compile done echo "tests complete" echo "******************************************" echo "::endgroup::" 2024-08-22T20:27:51.0440339Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2024-08-22T20:27:51.0441269Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2024-08-22T20:27:51.0442103Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2024-08-22T20:27:51.0442792Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2024-08-22T20:27:51.0443392Z ##[endgroup] 2024-08-22T20:27:51.1270460Z Please see https://github.com/pytorch/pytorch/wiki/Debugging-using-with-ssh-for-Github-Actions for more info. 2024-08-22T20:27:51.4853399Z Grabbing public ssh keys from https://github.com/kwen2501.keys 2024-08-22T20:27:51.5569253Z ~/.ssh/authorized_keys file found on node, removing ~/.ssh and starting fresh 2024-08-22T20:27:51.5584149Z Public keys pulled and installed to /home/ec2-user/.ssh/authorized_keys 2024-08-22T20:27:51.5609724Z Login using: ssh ec2-user@ec2-3-87-228-147.compute-1.amazonaws.com 2024-08-22T20:27:51.5610730Z All testing is done inside the container, to start an interactive session run: 2024-08-22T20:27:51.5611629Z docker exec -it $(docker container ps --format '{{.ID}}') bash 2024-08-22T20:27:51.5750305Z ##[group]Run actions/checkout@v3 2024-08-22T20:27:51.5750755Z with: 2024-08-22T20:27:51.5751154Z repository: pytorch/torchchat 2024-08-22T20:27:51.5751726Z ref: refs/pull/1044/merge 2024-08-22T20:27:51.5752138Z path: pytorch/torchchat 2024-08-22T20:27:51.5752594Z fetch-depth: 1 2024-08-22T20:27:51.5753159Z token: *** 2024-08-22T20:27:51.5753505Z ssh-strict: true 2024-08-22T20:27:51.5753941Z persist-credentials: true 2024-08-22T20:27:51.5754437Z clean: true 2024-08-22T20:27:51.5754806Z sparse-checkout-cone-mode: true 2024-08-22T20:27:51.5755305Z fetch-tags: false 2024-08-22T20:27:51.5755786Z lfs: false 2024-08-22T20:27:51.5756141Z set-safe-directory: true 2024-08-22T20:27:51.5756585Z env: 2024-08-22T20:27:51.5757062Z DOCKER_IMAGE: pytorch/conda-builder:cuda12.1 2024-08-22T20:27:51.5757575Z REPOSITORY: pytorch/torchchat 2024-08-22T20:27:51.5758068Z PR_NUMBER: 1044 2024-08-22T20:27:51.5777354Z SCRIPT: echo "::group::Print machine info" uname -a echo "::endgroup::" echo "::group::Install newer objcopy that supports --set-section-alignment" yum install -y devtoolset-10-binutils export PATH=/opt/rh/devtoolset-10/root/usr/bin/:$PATH echo "::endgroup::" echo "::group::Download checkpoints" # Install requirements ./install_requirements.sh cuda pip3 list python3 -c 'import torch;print(f"torch: {torch.__version__, torch.version.git_version}")' echo "::endgroup::" echo "::group::Download checkpoints" mkdir -p checkpoints/stories15M pushd checkpoints/stories15M wget https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.pt wget https://github.com/karpathy/llama2.c/raw/master/tokenizer.model popd echo "::endgroup::" echo "::group::Run inference" export MODEL_PATH=checkpoints/stories15M/stories15M.pt export MODEL_NAME=stories15M export MODEL_DIR=/tmp for DTYPE in bfloat16 float16 float32; do ################################################################### # group with different temperatures python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 ################################################################### # group with different temperatures and prefill, and compile # and prefill compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --compile --compile-prefill ################################################################### # group with different temperatures and sequential prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill ################################################################### # group with different temperatures and prefill, and compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill --compile done echo "tests complete" echo "******************************************" echo "::endgroup::" 2024-08-22T20:27:51.5797229Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2024-08-22T20:27:51.5798133Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2024-08-22T20:27:51.5798975Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2024-08-22T20:27:51.5799692Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2024-08-22T20:27:51.5800471Z ##[endgroup] 2024-08-22T20:27:51.6687348Z Syncing repository: pytorch/torchchat 2024-08-22T20:27:51.6697741Z ##[group]Getting Git version info 2024-08-22T20:27:51.6698723Z Working directory is '/home/ec2-user/actions-runner/_work/torchchat/torchchat/pytorch/torchchat' 2024-08-22T20:27:51.6719596Z [command]/usr/bin/git version 2024-08-22T20:27:51.6769281Z git version 2.40.1 2024-08-22T20:27:51.6792109Z ##[endgroup] 2024-08-22T20:27:51.6805635Z Temporarily overriding HOME='/home/ec2-user/actions-runner/_work/_temp/e517cca4-ce03-4813-9e97-65b26d249820' before making global git config changes 2024-08-22T20:27:51.6806968Z Adding repository directory to the temporary git global config as a safe directory 2024-08-22T20:27:51.6810192Z [command]/usr/bin/git config --global --add safe.directory /home/ec2-user/actions-runner/_work/torchchat/torchchat/pytorch/torchchat 2024-08-22T20:27:51.6861582Z ##[group]Initializing the repository 2024-08-22T20:27:51.6864841Z [command]/usr/bin/git init /home/ec2-user/actions-runner/_work/torchchat/torchchat/pytorch/torchchat 2024-08-22T20:27:51.6909353Z hint: Using 'master' as the name for the initial branch. This default branch name 2024-08-22T20:27:51.6910354Z hint: is subject to change. To configure the initial branch name to use in all 2024-08-22T20:27:51.6911293Z hint: of your new repositories, which will suppress this warning, call: 2024-08-22T20:27:51.6912037Z hint: 2024-08-22T20:27:51.6912575Z hint: git config --global init.defaultBranch 2024-08-22T20:27:51.6913157Z hint: 2024-08-22T20:27:51.6913793Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and 2024-08-22T20:27:51.6914959Z hint: 'development'. The just-created branch can be renamed via this command: 2024-08-22T20:27:51.6915900Z hint: 2024-08-22T20:27:51.6916365Z hint: git branch -m 2024-08-22T20:27:51.6917329Z Initialized empty Git repository in /home/ec2-user/actions-runner/_work/torchchat/torchchat/pytorch/torchchat/.git/ 2024-08-22T20:27:51.6923234Z [command]/usr/bin/git remote add origin https://github.com/pytorch/torchchat 2024-08-22T20:27:51.6983526Z ##[endgroup] 2024-08-22T20:27:51.6984441Z ##[group]Disabling automatic garbage collection 2024-08-22T20:27:51.6985566Z [command]/usr/bin/git config --local gc.auto 0 2024-08-22T20:27:51.7003234Z ##[endgroup] 2024-08-22T20:27:51.7003875Z ##[group]Setting up auth 2024-08-22T20:27:51.7009195Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2024-08-22T20:27:51.7052819Z [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' || :" 2024-08-22T20:27:51.7412104Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2024-08-22T20:27:51.7455570Z [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' || :" 2024-08-22T20:27:51.7813641Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** 2024-08-22T20:27:51.7868266Z ##[endgroup] 2024-08-22T20:27:51.7869079Z ##[group]Fetching the repository 2024-08-22T20:27:51.7875612Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --progress --no-recurse-submodules --depth=1 origin +refs/pull/1044/merge:refs/remotes/pull/1044/merge 2024-08-22T20:27:51.9770702Z remote: Enumerating objects: 237, done. 2024-08-22T20:27:51.9771673Z remote: Counting objects: 0% (1/237) 2024-08-22T20:27:51.9772428Z remote: Counting objects: 1% (3/237) 2024-08-22T20:27:51.9773167Z remote: Counting objects: 2% (5/237) 2024-08-22T20:27:51.9773989Z remote: Counting objects: 3% (8/237) 2024-08-22T20:27:51.9774791Z remote: Counting objects: 4% (10/237) 2024-08-22T20:27:51.9775639Z remote: Counting objects: 5% (12/237) 2024-08-22T20:27:51.9776635Z remote: Counting objects: 6% (15/237) 2024-08-22T20:27:51.9777560Z remote: Counting objects: 7% (17/237) 2024-08-22T20:27:51.9778649Z remote: Counting objects: 8% (19/237) 2024-08-22T20:27:51.9779442Z remote: Counting objects: 9% (22/237) 2024-08-22T20:27:51.9780116Z remote: Counting objects: 10% (24/237) 2024-08-22T20:27:51.9780769Z remote: Counting objects: 11% (27/237) 2024-08-22T20:27:51.9781361Z remote: Counting objects: 12% (29/237) 2024-08-22T20:27:51.9781978Z remote: Counting objects: 13% (31/237) 2024-08-22T20:27:51.9782822Z remote: Counting objects: 14% (34/237) 2024-08-22T20:27:51.9783563Z remote: Counting objects: 15% (36/237) 2024-08-22T20:27:51.9784098Z remote: Counting objects: 16% (38/237) 2024-08-22T20:27:51.9784728Z remote: Counting objects: 17% (41/237) 2024-08-22T20:27:51.9785314Z remote: Counting objects: 18% (43/237) 2024-08-22T20:27:51.9785849Z remote: Counting objects: 19% (46/237) 2024-08-22T20:27:51.9786475Z remote: Counting objects: 20% (48/237) 2024-08-22T20:27:51.9787061Z remote: Counting objects: 21% (50/237) 2024-08-22T20:27:51.9787645Z remote: Counting objects: 22% (53/237) 2024-08-22T20:27:51.9788281Z remote: Counting objects: 23% (55/237) 2024-08-22T20:27:51.9788870Z remote: Counting objects: 24% (57/237) 2024-08-22T20:27:51.9789441Z remote: Counting objects: 25% (60/237) 2024-08-22T20:27:51.9790078Z remote: Counting objects: 26% (62/237) 2024-08-22T20:27:51.9790645Z remote: Counting objects: 27% (64/237) 2024-08-22T20:27:51.9791174Z remote: Counting objects: 28% (67/237) 2024-08-22T20:27:51.9791822Z remote: Counting objects: 29% (69/237) 2024-08-22T20:27:51.9792390Z remote: Counting objects: 30% (72/237) 2024-08-22T20:27:51.9792956Z remote: Counting objects: 31% (74/237) 2024-08-22T20:27:51.9793558Z remote: Counting objects: 32% (76/237) 2024-08-22T20:27:51.9794125Z remote: Counting objects: 33% (79/237) 2024-08-22T20:27:51.9794762Z remote: Counting objects: 34% (81/237) 2024-08-22T20:27:51.9795340Z remote: Counting objects: 35% (83/237) 2024-08-22T20:27:51.9795906Z remote: Counting objects: 36% (86/237) 2024-08-22T20:27:51.9796672Z remote: Counting objects: 37% (88/237) 2024-08-22T20:27:51.9797266Z remote: Counting objects: 38% (91/237) 2024-08-22T20:27:51.9797829Z remote: Counting objects: 39% (93/237) 2024-08-22T20:27:51.9798415Z remote: Counting objects: 40% (95/237) 2024-08-22T20:27:51.9798997Z remote: Counting objects: 41% (98/237) 2024-08-22T20:27:51.9799623Z remote: Counting objects: 42% (100/237) 2024-08-22T20:27:51.9800232Z remote: Counting objects: 43% (102/237) 2024-08-22T20:27:51.9800827Z remote: Counting objects: 44% (105/237) 2024-08-22T20:27:51.9801482Z remote: Counting objects: 45% (107/237) 2024-08-22T20:27:51.9802065Z remote: Counting objects: 46% (110/237) 2024-08-22T20:27:51.9802656Z remote: Counting objects: 47% (112/237) 2024-08-22T20:27:51.9803252Z remote: Counting objects: 48% (114/237) 2024-08-22T20:27:51.9803823Z remote: Counting objects: 49% (117/237) 2024-08-22T20:27:51.9804413Z remote: Counting objects: 50% (119/237) 2024-08-22T20:27:51.9805015Z remote: Counting objects: 51% (121/237) 2024-08-22T20:27:51.9805587Z remote: Counting objects: 52% (124/237) 2024-08-22T20:27:51.9806215Z remote: Counting objects: 53% (126/237) 2024-08-22T20:27:51.9806776Z remote: Counting objects: 54% (128/237) 2024-08-22T20:27:51.9807348Z remote: Counting objects: 55% (131/237) 2024-08-22T20:27:51.9807997Z remote: Counting objects: 56% (133/237) 2024-08-22T20:27:51.9808708Z remote: Counting objects: 57% (136/237) 2024-08-22T20:27:51.9809281Z remote: Counting objects: 58% (138/237) 2024-08-22T20:27:51.9810069Z remote: Counting objects: 59% (140/237) 2024-08-22T20:27:51.9810606Z remote: Counting objects: 60% (143/237) 2024-08-22T20:27:51.9811178Z remote: Counting objects: 61% (145/237) 2024-08-22T20:27:51.9811836Z remote: Counting objects: 62% (147/237) 2024-08-22T20:27:51.9812373Z remote: Counting objects: 63% (150/237) 2024-08-22T20:27:51.9812947Z remote: Counting objects: 64% (152/237) 2024-08-22T20:27:51.9813594Z remote: Counting objects: 65% (155/237) 2024-08-22T20:27:51.9814126Z remote: Counting objects: 66% (157/237) 2024-08-22T20:27:51.9814713Z remote: Counting objects: 67% (159/237) 2024-08-22T20:27:51.9815377Z remote: Counting objects: 68% (162/237) 2024-08-22T20:27:51.9815906Z remote: Counting objects: 69% (164/237) 2024-08-22T20:27:51.9816489Z remote: Counting objects: 70% (166/237) 2024-08-22T20:27:51.9817103Z remote: Counting objects: 71% (169/237) 2024-08-22T20:27:51.9817638Z remote: Counting objects: 72% (171/237) 2024-08-22T20:27:51.9818241Z remote: Counting objects: 73% (174/237) 2024-08-22T20:27:51.9818861Z remote: Counting objects: 74% (176/237) 2024-08-22T20:27:51.9819395Z remote: Counting objects: 75% (178/237) 2024-08-22T20:27:51.9819989Z remote: Counting objects: 76% (181/237) 2024-08-22T20:27:51.9820612Z remote: Counting objects: 77% (183/237) 2024-08-22T20:27:51.9821205Z remote: Counting objects: 78% (185/237) 2024-08-22T20:27:51.9821742Z remote: Counting objects: 79% (188/237) 2024-08-22T20:27:51.9822416Z remote: Counting objects: 80% (190/237) 2024-08-22T20:27:51.9823009Z remote: Counting objects: 81% (192/237) 2024-08-22T20:27:51.9823543Z remote: Counting objects: 82% (195/237) 2024-08-22T20:27:51.9824163Z remote: Counting objects: 83% (197/237) 2024-08-22T20:27:51.9824755Z remote: Counting objects: 84% (200/237) 2024-08-22T20:27:51.9825291Z remote: Counting objects: 85% (202/237) 2024-08-22T20:27:51.9825917Z remote: Counting objects: 86% (204/237) 2024-08-22T20:27:51.9826509Z remote: Counting objects: 87% (207/237) 2024-08-22T20:27:51.9827045Z remote: Counting objects: 88% (209/237) 2024-08-22T20:27:51.9827664Z remote: Counting objects: 89% (211/237) 2024-08-22T20:27:51.9828362Z remote: Counting objects: 90% (214/237) 2024-08-22T20:27:51.9828949Z remote: Counting objects: 91% (216/237) 2024-08-22T20:27:51.9829651Z remote: Counting objects: 92% (219/237) 2024-08-22T20:27:51.9830221Z remote: Counting objects: 93% (221/237) 2024-08-22T20:27:51.9830753Z remote: Counting objects: 94% (223/237) 2024-08-22T20:27:51.9831397Z remote: Counting objects: 95% (226/237) 2024-08-22T20:27:51.9831967Z remote: Counting objects: 96% (228/237) 2024-08-22T20:27:51.9832499Z remote: Counting objects: 97% (230/237) 2024-08-22T20:27:51.9833145Z remote: Counting objects: 98% (233/237) 2024-08-22T20:27:51.9833719Z remote: Counting objects: 99% (235/237) 2024-08-22T20:27:51.9834382Z remote: Counting objects: 100% (237/237) 2024-08-22T20:27:51.9834952Z remote: Counting objects: 100% (237/237), done. 2024-08-22T20:27:51.9835576Z remote: Compressing objects: 0% (1/193) 2024-08-22T20:27:51.9836318Z remote: Compressing objects: 1% (2/193) 2024-08-22T20:27:51.9836879Z remote: Compressing objects: 2% (4/193) 2024-08-22T20:27:51.9837473Z remote: Compressing objects: 3% (6/193) 2024-08-22T20:27:51.9838133Z remote: Compressing objects: 4% (8/193) 2024-08-22T20:27:51.9838710Z remote: Compressing objects: 5% (10/193) 2024-08-22T20:27:51.9839357Z remote: Compressing objects: 6% (12/193) 2024-08-22T20:27:51.9840037Z remote: Compressing objects: 7% (14/193) 2024-08-22T20:27:51.9840609Z remote: Compressing objects: 8% (16/193) 2024-08-22T20:27:51.9841214Z remote: Compressing objects: 9% (18/193) 2024-08-22T20:27:51.9841984Z remote: Compressing objects: 10% (20/193) 2024-08-22T20:27:51.9842552Z remote: Compressing objects: 11% (22/193) 2024-08-22T20:27:51.9843183Z remote: Compressing objects: 12% (24/193) 2024-08-22T20:27:51.9843884Z remote: Compressing objects: 13% (26/193) 2024-08-22T20:27:51.9844496Z remote: Compressing objects: 14% (28/193) 2024-08-22T20:27:51.9845084Z remote: Compressing objects: 15% (29/193) 2024-08-22T20:27:51.9845734Z remote: Compressing objects: 16% (31/193) 2024-08-22T20:27:51.9852795Z remote: Compressing objects: 17% (33/193) 2024-08-22T20:27:51.9867712Z remote: Compressing objects: 18% (35/193) 2024-08-22T20:27:51.9872197Z remote: Compressing objects: 19% (37/193) 2024-08-22T20:27:51.9873045Z remote: Compressing objects: 20% (39/193) 2024-08-22T20:27:51.9879217Z remote: Compressing objects: 21% (41/193) 2024-08-22T20:27:51.9882212Z remote: Compressing objects: 22% (43/193) 2024-08-22T20:27:51.9883576Z remote: Compressing objects: 23% (45/193) 2024-08-22T20:27:51.9884578Z remote: Compressing objects: 24% (47/193) 2024-08-22T20:27:51.9886607Z remote: Compressing objects: 25% (49/193) 2024-08-22T20:27:51.9887445Z remote: Compressing objects: 26% (51/193) 2024-08-22T20:27:51.9888432Z remote: Compressing objects: 27% (53/193) 2024-08-22T20:27:51.9889172Z remote: Compressing objects: 28% (55/193) 2024-08-22T20:27:51.9893578Z remote: Compressing objects: 29% (56/193) 2024-08-22T20:27:51.9896665Z remote: Compressing objects: 30% (58/193) 2024-08-22T20:27:51.9897555Z remote: Compressing objects: 31% (60/193) 2024-08-22T20:27:51.9898272Z remote: Compressing objects: 32% (62/193) 2024-08-22T20:27:51.9899215Z remote: Compressing objects: 33% (64/193) 2024-08-22T20:27:51.9899903Z remote: Compressing objects: 34% (66/193) 2024-08-22T20:27:51.9900588Z remote: Compressing objects: 35% (68/193) 2024-08-22T20:27:51.9901388Z remote: Compressing objects: 36% (70/193) 2024-08-22T20:27:51.9902161Z remote: Compressing objects: 37% (72/193) 2024-08-22T20:27:51.9902729Z remote: Compressing objects: 38% (74/193) 2024-08-22T20:27:51.9903702Z remote: Compressing objects: 39% (76/193) 2024-08-22T20:27:51.9904878Z remote: Compressing objects: 40% (78/193) 2024-08-22T20:27:51.9905644Z remote: Compressing objects: 41% (80/193) 2024-08-22T20:27:51.9906318Z remote: Compressing objects: 42% (82/193) 2024-08-22T20:27:51.9907202Z remote: Compressing objects: 43% (83/193) 2024-08-22T20:27:51.9907839Z remote: Compressing objects: 44% (85/193) 2024-08-22T20:27:51.9908411Z remote: Compressing objects: 45% (87/193) 2024-08-22T20:27:51.9911722Z remote: Compressing objects: 46% (89/193) 2024-08-22T20:27:51.9912532Z remote: Compressing objects: 47% (91/193) 2024-08-22T20:27:51.9913252Z remote: Compressing objects: 48% (93/193) 2024-08-22T20:27:51.9914292Z remote: Compressing objects: 49% (95/193) 2024-08-22T20:27:51.9914903Z remote: Compressing objects: 50% (97/193) 2024-08-22T20:27:51.9915518Z remote: Compressing objects: 51% (99/193) 2024-08-22T20:27:51.9916715Z remote: Compressing objects: 52% (101/193) 2024-08-22T20:27:51.9917800Z remote: Compressing objects: 53% (103/193) 2024-08-22T20:27:51.9918774Z remote: Compressing objects: 54% (105/193) 2024-08-22T20:27:51.9919744Z remote: Compressing objects: 55% (107/193) 2024-08-22T20:27:51.9920538Z remote: Compressing objects: 56% (109/193) 2024-08-22T20:27:51.9921519Z remote: Compressing objects: 57% (111/193) 2024-08-22T20:27:51.9922102Z remote: Compressing objects: 58% (112/193) 2024-08-22T20:27:51.9922881Z remote: Compressing objects: 59% (114/193) 2024-08-22T20:27:51.9923967Z remote: Compressing objects: 60% (116/193) 2024-08-22T20:27:51.9925020Z remote: Compressing objects: 61% (118/193) 2024-08-22T20:27:51.9925800Z remote: Compressing objects: 62% (120/193) 2024-08-22T20:27:51.9926678Z remote: Compressing objects: 63% (122/193) 2024-08-22T20:27:51.9927482Z remote: Compressing objects: 64% (124/193) 2024-08-22T20:27:51.9928502Z remote: Compressing objects: 65% (126/193) 2024-08-22T20:27:51.9929448Z remote: Compressing objects: 66% (128/193) 2024-08-22T20:27:51.9930393Z remote: Compressing objects: 67% (130/193) 2024-08-22T20:27:51.9931434Z remote: Compressing objects: 68% (132/193) 2024-08-22T20:27:51.9933660Z remote: Compressing objects: 69% (134/193) 2024-08-22T20:27:51.9937623Z remote: Compressing objects: 70% (136/193) 2024-08-22T20:27:51.9947736Z remote: Compressing objects: 71% (138/193) 2024-08-22T20:27:51.9948919Z remote: Compressing objects: 72% (139/193) 2024-08-22T20:27:51.9949678Z remote: Compressing objects: 73% (141/193) 2024-08-22T20:27:51.9950468Z remote: Compressing objects: 74% (143/193) 2024-08-22T20:27:51.9951282Z remote: Compressing objects: 75% (145/193) 2024-08-22T20:27:51.9951901Z remote: Compressing objects: 76% (147/193) 2024-08-22T20:27:51.9952929Z remote: Compressing objects: 77% (149/193) 2024-08-22T20:27:51.9953884Z remote: Compressing objects: 78% (151/193) 2024-08-22T20:27:51.9956567Z remote: Compressing objects: 79% (153/193) 2024-08-22T20:27:51.9957361Z remote: Compressing objects: 80% (155/193) 2024-08-22T20:27:51.9958047Z remote: Compressing objects: 81% (157/193) 2024-08-22T20:27:51.9958668Z remote: Compressing objects: 82% (159/193) 2024-08-22T20:27:51.9961338Z remote: Compressing objects: 83% (161/193) 2024-08-22T20:27:51.9962199Z remote: Compressing objects: 84% (163/193) 2024-08-22T20:27:51.9963008Z remote: Compressing objects: 85% (165/193) 2024-08-22T20:27:51.9963630Z remote: Compressing objects: 86% (166/193) 2024-08-22T20:27:51.9964314Z remote: Compressing objects: 87% (168/193) 2024-08-22T20:27:51.9964901Z remote: Compressing objects: 88% (170/193) 2024-08-22T20:27:51.9965505Z remote: Compressing objects: 89% (172/193) 2024-08-22T20:27:51.9966323Z remote: Compressing objects: 90% (174/193) 2024-08-22T20:27:51.9966894Z remote: Compressing objects: 91% (176/193) 2024-08-22T20:27:51.9967944Z remote: Compressing objects: 92% (178/193) 2024-08-22T20:27:51.9968913Z remote: Compressing objects: 93% (180/193) 2024-08-22T20:27:51.9969784Z remote: Compressing objects: 94% (182/193) 2024-08-22T20:27:51.9970547Z remote: Compressing objects: 95% (184/193) 2024-08-22T20:27:51.9971463Z remote: Compressing objects: 96% (186/193) 2024-08-22T20:27:51.9972033Z remote: Compressing objects: 97% (188/193) 2024-08-22T20:27:51.9972643Z remote: Compressing objects: 98% (190/193) 2024-08-22T20:27:51.9973355Z remote: Compressing objects: 99% (192/193) 2024-08-22T20:27:51.9973954Z remote: Compressing objects: 100% (193/193) 2024-08-22T20:27:51.9974582Z remote: Compressing objects: 100% (193/193), done. 2024-08-22T20:27:51.9988938Z Receiving objects: 0% (1/237) 2024-08-22T20:27:51.9989623Z Receiving objects: 1% (3/237) 2024-08-22T20:27:51.9990220Z Receiving objects: 2% (5/237) 2024-08-22T20:27:51.9990936Z Receiving objects: 3% (8/237) 2024-08-22T20:27:51.9992532Z Receiving objects: 4% (10/237) 2024-08-22T20:27:51.9994223Z Receiving objects: 5% (12/237) 2024-08-22T20:27:51.9994977Z Receiving objects: 6% (15/237) 2024-08-22T20:27:51.9995882Z Receiving objects: 7% (17/237) 2024-08-22T20:27:51.9996354Z Receiving objects: 8% (19/237) 2024-08-22T20:27:51.9998192Z Receiving objects: 9% (22/237) 2024-08-22T20:27:51.9998898Z Receiving objects: 10% (24/237) 2024-08-22T20:27:51.9999588Z Receiving objects: 11% (27/237) 2024-08-22T20:27:52.0000346Z Receiving objects: 12% (29/237) 2024-08-22T20:27:52.0001003Z Receiving objects: 13% (31/237) 2024-08-22T20:27:52.0001690Z Receiving objects: 14% (34/237) 2024-08-22T20:27:52.0002257Z Receiving objects: 15% (36/237) 2024-08-22T20:27:52.0004508Z Receiving objects: 16% (38/237) 2024-08-22T20:27:52.0005222Z Receiving objects: 17% (41/237) 2024-08-22T20:27:52.0005792Z Receiving objects: 18% (43/237) 2024-08-22T20:27:52.0006417Z Receiving objects: 19% (46/237) 2024-08-22T20:27:52.0007038Z Receiving objects: 20% (48/237) 2024-08-22T20:27:52.0008152Z Receiving objects: 21% (50/237) 2024-08-22T20:27:52.0008899Z Receiving objects: 22% (53/237) 2024-08-22T20:27:52.0009500Z Receiving objects: 23% (55/237) 2024-08-22T20:27:52.0009961Z Receiving objects: 24% (57/237) 2024-08-22T20:27:52.0010430Z Receiving objects: 25% (60/237) 2024-08-22T20:27:52.0011518Z Receiving objects: 26% (62/237) 2024-08-22T20:27:52.0012168Z Receiving objects: 27% (64/237) 2024-08-22T20:27:52.0012813Z Receiving objects: 28% (67/237) 2024-08-22T20:27:52.0013518Z Receiving objects: 29% (69/237) 2024-08-22T20:27:52.0014139Z Receiving objects: 30% (72/237) 2024-08-22T20:27:52.0014707Z Receiving objects: 31% (74/237) 2024-08-22T20:27:52.0015421Z Receiving objects: 32% (76/237) 2024-08-22T20:27:52.0016024Z Receiving objects: 33% (79/237) 2024-08-22T20:27:52.0016551Z Receiving objects: 34% (81/237) 2024-08-22T20:27:52.0017118Z Receiving objects: 35% (83/237) 2024-08-22T20:27:52.0017591Z Receiving objects: 36% (86/237) 2024-08-22T20:27:52.0024215Z Receiving objects: 37% (88/237) 2024-08-22T20:27:52.0025720Z Receiving objects: 38% (91/237) 2024-08-22T20:27:52.0027010Z Receiving objects: 39% (93/237) 2024-08-22T20:27:52.0027599Z Receiving objects: 40% (95/237) 2024-08-22T20:27:52.0028329Z Receiving objects: 41% (98/237) 2024-08-22T20:27:52.0028946Z Receiving objects: 42% (100/237) 2024-08-22T20:27:52.0029511Z Receiving objects: 43% (102/237) 2024-08-22T20:27:52.0030098Z Receiving objects: 44% (105/237) 2024-08-22T20:27:52.0030580Z Receiving objects: 45% (107/237) 2024-08-22T20:27:52.0031018Z Receiving objects: 46% (110/237) 2024-08-22T20:27:52.0031588Z Receiving objects: 47% (112/237) 2024-08-22T20:27:52.0032135Z Receiving objects: 48% (114/237) 2024-08-22T20:27:52.0032661Z Receiving objects: 49% (117/237) 2024-08-22T20:27:52.0056115Z Receiving objects: 50% (119/237) 2024-08-22T20:27:52.0057204Z Receiving objects: 51% (121/237) 2024-08-22T20:27:52.0058653Z Receiving objects: 52% (124/237) 2024-08-22T20:27:52.0140080Z Receiving objects: 53% (126/237) 2024-08-22T20:27:52.0140752Z Receiving objects: 54% (128/237) 2024-08-22T20:27:52.0142762Z Receiving objects: 55% (131/237) 2024-08-22T20:27:52.0144445Z Receiving objects: 56% (133/237) 2024-08-22T20:27:52.0145139Z Receiving objects: 57% (136/237) 2024-08-22T20:27:52.0145899Z Receiving objects: 58% (138/237) 2024-08-22T20:27:52.0146366Z Receiving objects: 59% (140/237) 2024-08-22T20:27:52.0146870Z Receiving objects: 60% (143/237) 2024-08-22T20:27:52.0147434Z Receiving objects: 61% (145/237) 2024-08-22T20:27:52.0147882Z Receiving objects: 62% (147/237) 2024-08-22T20:27:52.0148394Z Receiving objects: 63% (150/237) 2024-08-22T20:27:52.0149164Z Receiving objects: 64% (152/237) 2024-08-22T20:27:52.0150284Z Receiving objects: 65% (155/237) 2024-08-22T20:27:52.0151053Z Receiving objects: 66% (157/237) 2024-08-22T20:27:52.0151654Z Receiving objects: 67% (159/237) 2024-08-22T20:27:52.0153627Z Receiving objects: 68% (162/237) 2024-08-22T20:27:52.0154136Z Receiving objects: 69% (164/237) 2024-08-22T20:27:52.0154697Z Receiving objects: 70% (166/237) 2024-08-22T20:27:52.0155603Z Receiving objects: 71% (169/237) 2024-08-22T20:27:52.0156414Z Receiving objects: 72% (171/237) 2024-08-22T20:27:52.0156988Z Receiving objects: 73% (174/237) 2024-08-22T20:27:52.0157520Z Receiving objects: 74% (176/237) 2024-08-22T20:27:52.0159899Z Receiving objects: 75% (178/237) 2024-08-22T20:27:52.0160483Z Receiving objects: 76% (181/237) 2024-08-22T20:27:52.0161063Z Receiving objects: 77% (183/237) 2024-08-22T20:27:52.0161807Z Receiving objects: 78% (185/237) 2024-08-22T20:27:52.0162717Z Receiving objects: 79% (188/237) 2024-08-22T20:27:52.0164869Z Receiving objects: 80% (190/237) 2024-08-22T20:27:52.0167008Z Receiving objects: 81% (192/237) 2024-08-22T20:27:52.0167777Z Receiving objects: 82% (195/237) 2024-08-22T20:27:52.0172029Z Receiving objects: 83% (197/237) 2024-08-22T20:27:52.0173054Z Receiving objects: 84% (200/237) 2024-08-22T20:27:52.0174801Z Receiving objects: 85% (202/237) 2024-08-22T20:27:52.0175595Z Receiving objects: 86% (204/237) 2024-08-22T20:27:52.0176386Z Receiving objects: 87% (207/237) 2024-08-22T20:27:52.0177011Z Receiving objects: 88% (209/237) 2024-08-22T20:27:52.0180627Z Receiving objects: 89% (211/237) 2024-08-22T20:27:52.0181822Z remote: Total 237 (delta 16), reused 151 (delta 7), pack-reused 0 (from 0) 2024-08-22T20:27:52.0182619Z Receiving objects: 90% (214/237) 2024-08-22T20:27:52.0183379Z Receiving objects: 91% (216/237) 2024-08-22T20:27:52.0183935Z Receiving objects: 92% (219/237) 2024-08-22T20:27:52.0184893Z Receiving objects: 93% (221/237) 2024-08-22T20:27:52.0186076Z Receiving objects: 94% (223/237) 2024-08-22T20:27:52.0186679Z Receiving objects: 95% (226/237) 2024-08-22T20:27:52.0189539Z Receiving objects: 96% (228/237) 2024-08-22T20:27:52.0190320Z Receiving objects: 97% (230/237) 2024-08-22T20:27:52.0190955Z Receiving objects: 98% (233/237) 2024-08-22T20:27:52.0191542Z Receiving objects: 99% (235/237) 2024-08-22T20:27:52.0192243Z Receiving objects: 100% (237/237) 2024-08-22T20:27:52.0192857Z Receiving objects: 100% (237/237), 488.09 KiB | 24.40 MiB/s, done. 2024-08-22T20:27:52.0196571Z Resolving deltas: 0% (0/16) 2024-08-22T20:27:52.0197652Z Resolving deltas: 6% (1/16) 2024-08-22T20:27:52.0198760Z Resolving deltas: 12% (2/16) 2024-08-22T20:27:52.0200409Z Resolving deltas: 31% (5/16) 2024-08-22T20:27:52.0202301Z Resolving deltas: 37% (6/16) 2024-08-22T20:27:52.0202899Z Resolving deltas: 56% (9/16) 2024-08-22T20:27:52.0203536Z Resolving deltas: 62% (10/16) 2024-08-22T20:27:52.0204157Z Resolving deltas: 68% (11/16) 2024-08-22T20:27:52.0204772Z Resolving deltas: 75% (12/16) 2024-08-22T20:27:52.0205383Z Resolving deltas: 81% (13/16) 2024-08-22T20:27:52.0205870Z Resolving deltas: 87% (14/16) 2024-08-22T20:27:52.0206332Z Resolving deltas: 93% (15/16) 2024-08-22T20:27:52.0208467Z Resolving deltas: 100% (16/16) 2024-08-22T20:27:52.0209053Z Resolving deltas: 100% (16/16), done. 2024-08-22T20:27:52.0289461Z From https://github.com/pytorch/torchchat 2024-08-22T20:27:52.0290467Z * [new ref] refs/pull/1044/merge -> pull/1044/merge 2024-08-22T20:27:52.0317855Z ##[endgroup] 2024-08-22T20:27:52.0318774Z ##[group]Determining the checkout info 2024-08-22T20:27:52.0321290Z ##[endgroup] 2024-08-22T20:27:52.0322178Z ##[group]Checking out the ref 2024-08-22T20:27:52.0325098Z [command]/usr/bin/git checkout --progress --force refs/remotes/pull/1044/merge 2024-08-22T20:27:52.0501099Z Note: switching to 'refs/remotes/pull/1044/merge'. 2024-08-22T20:27:52.0501907Z 2024-08-22T20:27:52.0502467Z You are in 'detached HEAD' state. You can look around, make experimental 2024-08-22T20:27:52.0503569Z changes and commit them, and you can discard any commits you make in this 2024-08-22T20:27:52.0504372Z state without impacting any branches by switching back to a branch. 2024-08-22T20:27:52.0504965Z 2024-08-22T20:27:52.0505310Z If you want to create a new branch to retain commits you create, you may 2024-08-22T20:27:52.0506200Z do so (now or later) by using -c with the switch command. Example: 2024-08-22T20:27:52.0506654Z 2024-08-22T20:27:52.0507066Z git switch -c 2024-08-22T20:27:52.0507474Z 2024-08-22T20:27:52.0507692Z Or undo this operation with: 2024-08-22T20:27:52.0508081Z 2024-08-22T20:27:52.0508273Z git switch - 2024-08-22T20:27:52.0508517Z 2024-08-22T20:27:52.0509047Z Turn off this advice by setting config variable advice.detachedHead to false 2024-08-22T20:27:52.0509562Z 2024-08-22T20:27:52.0510307Z HEAD is now at 0e4d4b1 Merge c8dc18a48d66f51855d89294f3ca800692cd5dad into d5bb3c6659c8978a95c5141eb31e6e58f94af20a 2024-08-22T20:27:52.0512078Z ##[endgroup] 2024-08-22T20:27:52.0557559Z [command]/usr/bin/git log -1 --format='%H' 2024-08-22T20:27:52.0595352Z '0e4d4b184770ee5c0943c8ad43f2a1be7a2dd2c9' 2024-08-22T20:27:52.0816198Z Prepare all required actions 2024-08-22T20:27:52.0949380Z ##[group]Run ./test-infra/.github/actions/calculate-docker-image 2024-08-22T20:27:52.0950096Z with: 2024-08-22T20:27:52.0950542Z docker-image-name: pytorch/conda-builder:cuda12.1 2024-08-22T20:27:52.0951139Z docker-build-dir: .ci/docker 2024-08-22T20:27:52.0951645Z working-directory: pytorch/torchchat 2024-08-22T20:27:52.0952284Z docker-registry: 308535385114.dkr.ecr.us-east-1.amazonaws.com 2024-08-22T20:27:52.0952915Z force-push: false 2024-08-22T20:27:52.0953321Z env: 2024-08-22T20:27:52.0953729Z DOCKER_IMAGE: pytorch/conda-builder:cuda12.1 2024-08-22T20:27:52.0954298Z REPOSITORY: pytorch/torchchat 2024-08-22T20:27:52.0954794Z PR_NUMBER: 1044 2024-08-22T20:27:52.0974121Z SCRIPT: echo "::group::Print machine info" uname -a echo "::endgroup::" echo "::group::Install newer objcopy that supports --set-section-alignment" yum install -y devtoolset-10-binutils export PATH=/opt/rh/devtoolset-10/root/usr/bin/:$PATH echo "::endgroup::" echo "::group::Download checkpoints" # Install requirements ./install_requirements.sh cuda pip3 list python3 -c 'import torch;print(f"torch: {torch.__version__, torch.version.git_version}")' echo "::endgroup::" echo "::group::Download checkpoints" mkdir -p checkpoints/stories15M pushd checkpoints/stories15M wget https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.pt wget https://github.com/karpathy/llama2.c/raw/master/tokenizer.model popd echo "::endgroup::" echo "::group::Run inference" export MODEL_PATH=checkpoints/stories15M/stories15M.pt export MODEL_NAME=stories15M export MODEL_DIR=/tmp for DTYPE in bfloat16 float16 float32; do ################################################################### # group with different temperatures python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 ################################################################### # group with different temperatures and prefill, and compile # and prefill compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --compile --compile-prefill ################################################################### # group with different temperatures and sequential prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill ################################################################### # group with different temperatures and prefill, and compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill --compile done echo "tests complete" echo "******************************************" echo "::endgroup::" 2024-08-22T20:27:52.0993934Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2024-08-22T20:27:52.0994854Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2024-08-22T20:27:52.0995685Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2024-08-22T20:27:52.0996388Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2024-08-22T20:27:52.0996970Z ##[endgroup] 2024-08-22T20:27:52.1023782Z ##[group]Run set -ex 2024-08-22T20:27:52.1024388Z set -ex 2024-08-22T20:27:52.1024755Z  2024-08-22T20:27:52.1025398Z # If the docker build directory or the build script doesn't exist, the action will 2024-08-22T20:27:52.1026479Z # gracefully return the docker image name as it is. Pulling docker image in Linux 2024-08-22T20:27:52.1027386Z # job could then download the pre-built image as usual 2024-08-22T20:27:52.1028176Z if [[ ! -d "${DOCKER_BUILD_DIR}" ]] || [[ ! -f "${DOCKER_BUILD_DIR}/build.sh" ]]; then 2024-08-22T20:27:52.1029013Z  echo "skip=true" >> "${GITHUB_OUTPUT}" 2024-08-22T20:27:52.1029778Z  echo "docker-image=${DOCKER_IMAGE_NAME}" >> "${GITHUB_OUTPUT}" 2024-08-22T20:27:52.1030388Z  2024-08-22T20:27:52.1031035Z  echo "There is no Docker build script in ${REPO_NAME} repo, skipping..." 2024-08-22T20:27:52.1031763Z  exit 0 2024-08-22T20:27:52.1032114Z else 2024-08-22T20:27:52.1032715Z  echo "skip=false" >> "${GITHUB_OUTPUT}" 2024-08-22T20:27:52.1033253Z fi 2024-08-22T20:27:52.1033581Z  2024-08-22T20:27:52.1034200Z if [[ "${DOCKER_IMAGE_NAME}" == *"${DOCKER_REGISTRY}/${REPO_NAME}"* ]]; then 2024-08-22T20:27:52.1035133Z  # The docker image name already includes the ECR prefix and tag, so we can just 2024-08-22T20:27:52.1035992Z  # use it as it is, but first let's extract the tag 2024-08-22T20:27:52.1036825Z  DOCKER_TAG=$(echo "${DOCKER_IMAGE_NAME}" | awk -F '[:,]' '{print $2}') 2024-08-22T20:27:52.1037638Z  echo "docker-tag=${DOCKER_TAG}" >> "${GITHUB_OUTPUT}" 2024-08-22T20:27:52.1038423Z  echo "docker-image=${DOCKER_IMAGE_NAME}" >> "${GITHUB_OUTPUT}" 2024-08-22T20:27:52.1039106Z else 2024-08-22T20:27:52.1039631Z  DOCKER_TAG=$(git rev-parse HEAD:"${DOCKER_BUILD_DIR}") 2024-08-22T20:27:52.1040395Z  echo "docker-tag=${DOCKER_TAG}" >> "${GITHUB_OUTPUT}" 2024-08-22T20:27:52.1041491Z  echo "docker-image=${DOCKER_REGISTRY}/${REPO_NAME}/${DOCKER_IMAGE_NAME}:${DOCKER_TAG}" >> "${GITHUB_OUTPUT}" 2024-08-22T20:27:52.1042289Z fi 2024-08-22T20:27:52.1052334Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2024-08-22T20:27:52.1052937Z env: 2024-08-22T20:27:52.1053310Z DOCKER_IMAGE: pytorch/conda-builder:cuda12.1 2024-08-22T20:27:52.1053930Z REPOSITORY: pytorch/torchchat 2024-08-22T20:27:52.1054571Z PR_NUMBER: 1044 2024-08-22T20:27:52.1073713Z SCRIPT: echo "::group::Print machine info" uname -a echo "::endgroup::" echo "::group::Install newer objcopy that supports --set-section-alignment" yum install -y devtoolset-10-binutils export PATH=/opt/rh/devtoolset-10/root/usr/bin/:$PATH echo "::endgroup::" echo "::group::Download checkpoints" # Install requirements ./install_requirements.sh cuda pip3 list python3 -c 'import torch;print(f"torch: {torch.__version__, torch.version.git_version}")' echo "::endgroup::" echo "::group::Download checkpoints" mkdir -p checkpoints/stories15M pushd checkpoints/stories15M wget https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.pt wget https://github.com/karpathy/llama2.c/raw/master/tokenizer.model popd echo "::endgroup::" echo "::group::Run inference" export MODEL_PATH=checkpoints/stories15M/stories15M.pt export MODEL_NAME=stories15M export MODEL_DIR=/tmp for DTYPE in bfloat16 float16 float32; do ################################################################### # group with different temperatures python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 ################################################################### # group with different temperatures and prefill, and compile # and prefill compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --compile --compile-prefill ################################################################### # group with different temperatures and sequential prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill ################################################################### # group with different temperatures and prefill, and compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill --compile done echo "tests complete" echo "******************************************" echo "::endgroup::" 2024-08-22T20:27:52.1094701Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2024-08-22T20:27:52.1095584Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2024-08-22T20:27:52.1096362Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2024-08-22T20:27:52.1097142Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2024-08-22T20:27:52.1097729Z REPO_NAME: torchchat 2024-08-22T20:27:52.1098219Z DOCKER_IMAGE_NAME: pytorch/conda-builder:cuda12.1 2024-08-22T20:27:52.1098824Z DOCKER_BUILD_DIR: .ci/docker 2024-08-22T20:27:52.1099405Z DOCKER_REGISTRY: 308535385114.dkr.ecr.us-east-1.amazonaws.com 2024-08-22T20:27:52.1100012Z ##[endgroup] 2024-08-22T20:27:52.1131968Z + [[ ! -d .ci/docker ]] 2024-08-22T20:27:52.1132487Z + echo skip=true 2024-08-22T20:27:52.1133055Z + echo docker-image=pytorch/conda-builder:cuda12.1 2024-08-22T20:27:52.1133831Z + echo 'There is no Docker build script in torchchat repo, skipping...' 2024-08-22T20:27:52.1134783Z + exit 0 2024-08-22T20:27:52.1135346Z There is no Docker build script in torchchat repo, skipping... 2024-08-22T20:27:52.1258040Z Prepare all required actions 2024-08-22T20:27:52.1346925Z ##[group]Run ./test-infra/.github/actions/pull-docker-image 2024-08-22T20:27:52.1347409Z with: 2024-08-22T20:27:52.1347737Z docker-image: pytorch/conda-builder:cuda12.1 2024-08-22T20:27:52.1348304Z docker-registry: 308535385114.dkr.ecr.us-east-1.amazonaws.com 2024-08-22T20:27:52.1348807Z env: 2024-08-22T20:27:52.1349119Z DOCKER_IMAGE: pytorch/conda-builder:cuda12.1 2024-08-22T20:27:52.1349566Z REPOSITORY: pytorch/torchchat 2024-08-22T20:27:52.1349927Z PR_NUMBER: 1044 2024-08-22T20:27:52.1368939Z SCRIPT: echo "::group::Print machine info" uname -a echo "::endgroup::" echo "::group::Install newer objcopy that supports --set-section-alignment" yum install -y devtoolset-10-binutils export PATH=/opt/rh/devtoolset-10/root/usr/bin/:$PATH echo "::endgroup::" echo "::group::Download checkpoints" # Install requirements ./install_requirements.sh cuda pip3 list python3 -c 'import torch;print(f"torch: {torch.__version__, torch.version.git_version}")' echo "::endgroup::" echo "::group::Download checkpoints" mkdir -p checkpoints/stories15M pushd checkpoints/stories15M wget https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.pt wget https://github.com/karpathy/llama2.c/raw/master/tokenizer.model popd echo "::endgroup::" echo "::group::Run inference" export MODEL_PATH=checkpoints/stories15M/stories15M.pt export MODEL_NAME=stories15M export MODEL_DIR=/tmp for DTYPE in bfloat16 float16 float32; do ################################################################### # group with different temperatures python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 ################################################################### # group with different temperatures and prefill, and compile # and prefill compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --compile --compile-prefill ################################################################### # group with different temperatures and sequential prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill ################################################################### # group with different temperatures and prefill, and compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill --compile done echo "tests complete" echo "******************************************" echo "::endgroup::" 2024-08-22T20:27:52.1388754Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2024-08-22T20:27:52.1389527Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2024-08-22T20:27:52.1390248Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2024-08-22T20:27:52.1390846Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2024-08-22T20:27:52.1391318Z ##[endgroup] 2024-08-22T20:27:52.1410293Z ##[group]Run set -x 2024-08-22T20:27:52.1410637Z set -x 2024-08-22T20:27:52.1410929Z set +e 2024-08-22T20:27:52.1411208Z  2024-08-22T20:27:52.1411471Z login() { 2024-08-22T20:27:52.1412113Z  aws ecr get-login-password --region us-east-1 | docker login -u AWS --password-stdin "$1" 2024-08-22T20:27:52.1412810Z } 2024-08-22T20:27:52.1413070Z  2024-08-22T20:27:52.1413336Z retry () { 2024-08-22T20:27:52.1413712Z  $* || (sleep 1 && $*) || (sleep 2 && $*) 2024-08-22T20:27:52.1414145Z } 2024-08-22T20:27:52.1414407Z  2024-08-22T20:27:52.1414718Z retry login "${DOCKER_REGISTRY}" 2024-08-22T20:27:52.1415115Z  2024-08-22T20:27:52.1415375Z set -e 2024-08-22T20:27:52.1415828Z # ignore output since only exit code is used for conditional 2024-08-22T20:27:52.1416507Z # only pull docker image if it's not available locally 2024-08-22T20:27:52.1417391Z if ! docker inspect --type=image "${DOCKER_IMAGE}" >/dev/null 2>/dev/null; then 2024-08-22T20:27:52.1418067Z  retry docker pull "${DOCKER_IMAGE}" 2024-08-22T20:27:52.1418485Z fi 2024-08-22T20:27:52.1427098Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2024-08-22T20:27:52.1427579Z env: 2024-08-22T20:27:52.1427888Z DOCKER_IMAGE: pytorch/conda-builder:cuda12.1 2024-08-22T20:27:52.1428337Z REPOSITORY: pytorch/torchchat 2024-08-22T20:27:52.1428705Z PR_NUMBER: 1044 2024-08-22T20:27:52.1447774Z SCRIPT: echo "::group::Print machine info" uname -a echo "::endgroup::" echo "::group::Install newer objcopy that supports --set-section-alignment" yum install -y devtoolset-10-binutils export PATH=/opt/rh/devtoolset-10/root/usr/bin/:$PATH echo "::endgroup::" echo "::group::Download checkpoints" # Install requirements ./install_requirements.sh cuda pip3 list python3 -c 'import torch;print(f"torch: {torch.__version__, torch.version.git_version}")' echo "::endgroup::" echo "::group::Download checkpoints" mkdir -p checkpoints/stories15M pushd checkpoints/stories15M wget https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.pt wget https://github.com/karpathy/llama2.c/raw/master/tokenizer.model popd echo "::endgroup::" echo "::group::Run inference" export MODEL_PATH=checkpoints/stories15M/stories15M.pt export MODEL_NAME=stories15M export MODEL_DIR=/tmp for DTYPE in bfloat16 float16 float32; do ################################################################### # group with different temperatures python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 ################################################################### # group with different temperatures and prefill, and compile # and prefill compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --compile --compile-prefill ################################################################### # group with different temperatures and sequential prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill ################################################################### # group with different temperatures and prefill, and compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill --compile done echo "tests complete" echo "******************************************" echo "::endgroup::" 2024-08-22T20:27:52.1467314Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2024-08-22T20:27:52.1468075Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2024-08-22T20:27:52.1468784Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2024-08-22T20:27:52.1469417Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2024-08-22T20:27:52.1470041Z DOCKER_REGISTRY: 308535385114.dkr.ecr.us-east-1.amazonaws.com 2024-08-22T20:27:52.1470536Z ##[endgroup] 2024-08-22T20:27:52.1498640Z + set +e 2024-08-22T20:27:52.1499293Z + retry login 308535385114.dkr.ecr.us-east-1.amazonaws.com 2024-08-22T20:27:52.1499923Z + login 308535385114.dkr.ecr.us-east-1.amazonaws.com 2024-08-22T20:27:52.1502419Z + aws ecr get-login-password --region us-east-1 2024-08-22T20:27:52.1504660Z + docker login -u AWS --password-stdin 308535385114.dkr.ecr.us-east-1.amazonaws.com 2024-08-22T20:27:52.7110681Z WARNING! Your password will be stored unencrypted in /home/ec2-user/.docker/config.json. 2024-08-22T20:27:52.7111936Z Configure a credential helper to remove this warning. See 2024-08-22T20:27:52.7113238Z https://docs.docker.com/engine/reference/commandline/login/#credentials-store 2024-08-22T20:27:52.7114076Z 2024-08-22T20:27:52.7114263Z Login Succeeded 2024-08-22T20:27:52.7135763Z + set -e 2024-08-22T20:27:52.7136424Z + docker inspect --type=image pytorch/conda-builder:cuda12.1 2024-08-22T20:27:52.7297860Z + retry docker pull pytorch/conda-builder:cuda12.1 2024-08-22T20:27:52.7298653Z + docker pull pytorch/conda-builder:cuda12.1 2024-08-22T20:27:52.8979848Z cuda12.1: Pulling from pytorch/conda-builder 2024-08-22T20:27:52.8980523Z 2d473b07cdd5: Pulling fs layer 2024-08-22T20:27:52.8981009Z 1feefa38b24d: Pulling fs layer 2024-08-22T20:27:52.8981479Z f3b743645691: Pulling fs layer 2024-08-22T20:27:52.8981941Z 09ec69653086: Pulling fs layer 2024-08-22T20:27:52.8982420Z 07dcdf002e0e: Pulling fs layer 2024-08-22T20:27:52.8982885Z 6d463d3f66d5: Pulling fs layer 2024-08-22T20:27:52.8983351Z af5c0f3f240b: Pulling fs layer 2024-08-22T20:27:52.8983868Z 1c60ace79a8a: Pulling fs layer 2024-08-22T20:27:52.8984323Z 0cb4bb0dd002: Pulling fs layer 2024-08-22T20:27:52.8984806Z 6a40c884dc1c: Pulling fs layer 2024-08-22T20:27:52.8985276Z 21c4fd2610fc: Pulling fs layer 2024-08-22T20:27:52.8985696Z 90d96273fa23: Pulling fs layer 2024-08-22T20:27:52.8986138Z 625bfd303d2d: Pulling fs layer 2024-08-22T20:27:52.8986496Z e8f5e731f8e4: Pulling fs layer 2024-08-22T20:27:52.8986847Z 43ef26b4d3a4: Pulling fs layer 2024-08-22T20:27:52.8987204Z 7027d2bdfdb1: Pulling fs layer 2024-08-22T20:27:52.8987563Z db6f5f4c0334: Pulling fs layer 2024-08-22T20:27:52.8987910Z 784019980816: Pulling fs layer 2024-08-22T20:27:52.8988262Z a7beba6b9d19: Pulling fs layer 2024-08-22T20:27:52.8988624Z 417dce1e59af: Pulling fs layer 2024-08-22T20:27:52.8988973Z 2b99a72dd557: Pulling fs layer 2024-08-22T20:27:52.8989323Z 6a40c884dc1c: Waiting 2024-08-22T20:27:52.8989646Z f49fb64d359c: Pulling fs layer 2024-08-22T20:27:52.8989983Z 07dcdf002e0e: Waiting 2024-08-22T20:27:52.8990306Z bfb071e5ae48: Pulling fs layer 2024-08-22T20:27:52.8990653Z af5c0f3f240b: Waiting 2024-08-22T20:27:52.8990956Z e8f5e731f8e4: Waiting 2024-08-22T20:27:52.8991523Z 625bfd303d2d: Waiting 2024-08-22T20:27:52.8991843Z b2ba091c4c7d: Pulling fs layer 2024-08-22T20:27:52.8992184Z 43ef26b4d3a4: Waiting 2024-08-22T20:27:52.8992487Z 6d463d3f66d5: Waiting 2024-08-22T20:27:52.8992803Z 8cfb81a5220c: Pulling fs layer 2024-08-22T20:27:52.8993144Z 0cb4bb0dd002: Waiting 2024-08-22T20:27:52.8993450Z 417dce1e59af: Waiting 2024-08-22T20:27:52.8993767Z c5058f81a371: Pulling fs layer 2024-08-22T20:27:52.8994108Z 1c60ace79a8a: Waiting 2024-08-22T20:27:52.8994414Z 2b99a72dd557: Waiting 2024-08-22T20:27:52.8994718Z 7027d2bdfdb1: Waiting 2024-08-22T20:27:52.8995014Z bfb071e5ae48: Waiting 2024-08-22T20:27:52.8995313Z 90d96273fa23: Waiting 2024-08-22T20:27:52.8995637Z ca3686f68fee: Pulling fs layer 2024-08-22T20:27:52.8995982Z 21c4fd2610fc: Waiting 2024-08-22T20:27:52.8996534Z 8cfb81a5220c: Waiting 2024-08-22T20:27:52.8996854Z fdb9230cd483: Pulling fs layer 2024-08-22T20:27:52.8997210Z dc18f68db4d4: Pulling fs layer 2024-08-22T20:27:52.8997555Z c5058f81a371: Waiting 2024-08-22T20:27:52.8997878Z e7fc196062f1: Pulling fs layer 2024-08-22T20:27:52.8998277Z b2ba091c4c7d: Waiting 2024-08-22T20:27:52.8998633Z ca3686f68fee: Waiting 2024-08-22T20:27:52.8999002Z dc18f68db4d4: Waiting 2024-08-22T20:27:52.8999297Z e7fc196062f1: Waiting 2024-08-22T20:27:52.8999596Z fdb9230cd483: Waiting 2024-08-22T20:27:52.8999895Z db6f5f4c0334: Waiting 2024-08-22T20:27:52.9000184Z 784019980816: Waiting 2024-08-22T20:27:52.9404068Z f3b743645691: Verifying Checksum 2024-08-22T20:27:52.9404563Z f3b743645691: Download complete 2024-08-22T20:27:52.9427832Z 1feefa38b24d: Verifying Checksum 2024-08-22T20:27:52.9428395Z 1feefa38b24d: Download complete 2024-08-22T20:27:52.9773495Z 09ec69653086: Download complete 2024-08-22T20:27:53.6829848Z 2d473b07cdd5: Verifying Checksum 2024-08-22T20:27:53.6830300Z 2d473b07cdd5: Download complete 2024-08-22T20:27:53.7215623Z af5c0f3f240b: Download complete 2024-08-22T20:27:53.7571157Z 6d463d3f66d5: Verifying Checksum 2024-08-22T20:27:53.8461815Z 0cb4bb0dd002: Verifying Checksum 2024-08-22T20:27:53.8462315Z 0cb4bb0dd002: Download complete 2024-08-22T20:27:53.8821758Z 6a40c884dc1c: Download complete 2024-08-22T20:27:53.9262176Z 21c4fd2610fc: Download complete 2024-08-22T20:27:53.9689388Z 90d96273fa23: Download complete 2024-08-22T20:27:54.3145793Z 1c60ace79a8a: Verifying Checksum 2024-08-22T20:27:54.3146355Z 1c60ace79a8a: Download complete 2024-08-22T20:27:54.3948975Z 07dcdf002e0e: Verifying Checksum 2024-08-22T20:27:54.3949643Z 07dcdf002e0e: Download complete 2024-08-22T20:27:54.9635523Z e8f5e731f8e4: Verifying Checksum 2024-08-22T20:27:54.9635979Z e8f5e731f8e4: Download complete 2024-08-22T20:27:55.3991317Z 625bfd303d2d: Verifying Checksum 2024-08-22T20:27:55.3992672Z 625bfd303d2d: Download complete 2024-08-22T20:27:55.4375983Z db6f5f4c0334: Verifying Checksum 2024-08-22T20:27:55.4377978Z db6f5f4c0334: Download complete 2024-08-22T20:27:55.4797965Z 784019980816: Download complete 2024-08-22T20:27:55.5216270Z a7beba6b9d19: Download complete 2024-08-22T20:27:55.5860762Z 43ef26b4d3a4: Verifying Checksum 2024-08-22T20:27:55.5861807Z 43ef26b4d3a4: Download complete 2024-08-22T20:27:55.7303935Z 7027d2bdfdb1: Verifying Checksum 2024-08-22T20:27:55.7304572Z 7027d2bdfdb1: Download complete 2024-08-22T20:27:55.7339908Z 2b99a72dd557: Verifying Checksum 2024-08-22T20:27:55.7340487Z 2b99a72dd557: Download complete 2024-08-22T20:27:55.7794129Z f49fb64d359c: Verifying Checksum 2024-08-22T20:27:55.7794624Z f49fb64d359c: Download complete 2024-08-22T20:27:55.8271439Z b2ba091c4c7d: Verifying Checksum 2024-08-22T20:27:55.8271898Z b2ba091c4c7d: Download complete 2024-08-22T20:27:55.8689952Z 8cfb81a5220c: Verifying Checksum 2024-08-22T20:27:55.8690577Z 8cfb81a5220c: Download complete 2024-08-22T20:27:55.9365049Z c5058f81a371: Verifying Checksum 2024-08-22T20:27:55.9365739Z c5058f81a371: Download complete 2024-08-22T20:27:56.0685042Z ca3686f68fee: Verifying Checksum 2024-08-22T20:27:56.0685567Z ca3686f68fee: Download complete 2024-08-22T20:27:56.1064008Z fdb9230cd483: Verifying Checksum 2024-08-22T20:27:56.1064791Z fdb9230cd483: Download complete 2024-08-22T20:27:56.1459723Z dc18f68db4d4: Verifying Checksum 2024-08-22T20:27:56.1460234Z dc18f68db4d4: Download complete 2024-08-22T20:27:57.2248049Z 2d473b07cdd5: Pull complete 2024-08-22T20:27:57.2407823Z 1feefa38b24d: Pull complete 2024-08-22T20:27:57.2631208Z f3b743645691: Pull complete 2024-08-22T20:27:57.2787167Z 09ec69653086: Pull complete 2024-08-22T20:27:59.8736120Z bfb071e5ae48: Verifying Checksum 2024-08-22T20:27:59.8736731Z bfb071e5ae48: Download complete 2024-08-22T20:28:01.4905731Z 07dcdf002e0e: Pull complete 2024-08-22T20:28:01.6840619Z e7fc196062f1: Verifying Checksum 2024-08-22T20:28:01.6841093Z e7fc196062f1: Download complete 2024-08-22T20:28:03.8527220Z 6d463d3f66d5: Pull complete 2024-08-22T20:28:03.8703626Z af5c0f3f240b: Pull complete 2024-08-22T20:28:05.1689528Z 1c60ace79a8a: Pull complete 2024-08-22T20:28:05.3290960Z 0cb4bb0dd002: Pull complete 2024-08-22T20:28:05.3436216Z 6a40c884dc1c: Pull complete 2024-08-22T20:28:05.3604996Z 21c4fd2610fc: Pull complete 2024-08-22T20:28:05.3783664Z 90d96273fa23: Pull complete 2024-08-22T20:28:08.7553978Z 625bfd303d2d: Pull complete 2024-08-22T20:28:10.2247410Z e8f5e731f8e4: Pull complete 2024-08-22T20:28:14.1254939Z 43ef26b4d3a4: Pull complete 2024-08-22T20:28:15.9066447Z 7027d2bdfdb1: Pull complete 2024-08-22T20:28:15.9177531Z db6f5f4c0334: Pull complete 2024-08-22T20:28:15.9311162Z 784019980816: Pull complete 2024-08-22T20:28:15.9425767Z a7beba6b9d19: Pull complete 2024-08-22T20:28:45.3563298Z 417dce1e59af: Verifying Checksum 2024-08-22T20:28:45.3563865Z 417dce1e59af: Download complete 2024-08-22T20:29:37.2920605Z 417dce1e59af: Pull complete 2024-08-22T20:29:37.7605851Z 2b99a72dd557: Pull complete 2024-08-22T20:29:38.0119016Z f49fb64d359c: Pull complete 2024-08-22T20:29:53.3567550Z bfb071e5ae48: Pull complete 2024-08-22T20:29:53.5774630Z b2ba091c4c7d: Pull complete 2024-08-22T20:29:53.8149045Z 8cfb81a5220c: Pull complete 2024-08-22T20:29:54.0510714Z c5058f81a371: Pull complete 2024-08-22T20:29:54.5937043Z ca3686f68fee: Pull complete 2024-08-22T20:29:54.8246772Z fdb9230cd483: Pull complete 2024-08-22T20:29:55.0560354Z dc18f68db4d4: Pull complete 2024-08-22T20:30:14.0496026Z e7fc196062f1: Pull complete 2024-08-22T20:30:14.1724977Z Digest: sha256:9f128b503c8de2d2267228e5a5ddfd791872f8fe7e4630afeec3efb07d810e8b 2024-08-22T20:30:14.2246592Z Status: Downloaded newer image for pytorch/conda-builder:cuda12.1 2024-08-22T20:30:14.2486913Z docker.io/pytorch/conda-builder:cuda12.1 2024-08-22T20:30:14.2668894Z ##[group]Run set -ex 2024-08-22T20:30:14.2669244Z set -ex 2024-08-22T20:30:14.2669544Z { 2024-08-22T20:30:14.2669856Z  echo "#!/usr/bin/env bash"; 2024-08-22T20:30:14.2670280Z  echo "set -eou pipefail"; 2024-08-22T20:30:14.2670706Z  # shellcheck disable=SC2016 2024-08-22T20:30:14.2671182Z  echo 'eval "$(conda shell.bash hook)"'; 2024-08-22T20:30:14.2671641Z  echo "set -x"; 2024-08-22T20:30:14.2671996Z  echo "${SCRIPT}"; 2024-08-22T20:30:14.2672401Z } > "${RUNNER_TEMP}/exec_script" 2024-08-22T20:30:14.2672866Z chmod +x "${RUNNER_TEMP}/exec_script" 2024-08-22T20:30:14.2673782Z python3 "/home/ec2-user/actions-runner/_work/torchchat/torchchat/test-infra/.github/scripts/run_with_env_secrets.py" "" 2024-08-22T20:30:14.2684282Z shell: /usr/bin/bash -e {0} 2024-08-22T20:30:14.2684625Z env: 2024-08-22T20:30:14.2684966Z DOCKER_IMAGE: pytorch/conda-builder:cuda12.1 2024-08-22T20:30:14.2685412Z REPOSITORY: pytorch/torchchat 2024-08-22T20:30:14.2685780Z PR_NUMBER: 1044 2024-08-22T20:30:14.2704788Z SCRIPT: echo "::group::Print machine info" uname -a echo "::endgroup::" echo "::group::Install newer objcopy that supports --set-section-alignment" yum install -y devtoolset-10-binutils export PATH=/opt/rh/devtoolset-10/root/usr/bin/:$PATH echo "::endgroup::" echo "::group::Download checkpoints" # Install requirements ./install_requirements.sh cuda pip3 list python3 -c 'import torch;print(f"torch: {torch.__version__, torch.version.git_version}")' echo "::endgroup::" echo "::group::Download checkpoints" mkdir -p checkpoints/stories15M pushd checkpoints/stories15M wget https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.pt wget https://github.com/karpathy/llama2.c/raw/master/tokenizer.model popd echo "::endgroup::" echo "::group::Run inference" export MODEL_PATH=checkpoints/stories15M/stories15M.pt export MODEL_NAME=stories15M export MODEL_DIR=/tmp for DTYPE in bfloat16 float16 float32; do ################################################################### # group with different temperatures python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 ################################################################### # group with different temperatures and prefill, and compile # and prefill compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --compile --compile-prefill ################################################################### # group with different temperatures and sequential prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill ################################################################### # group with different temperatures and prefill, and compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill --compile done echo "tests complete" echo "******************************************" echo "::endgroup::" 2024-08-22T20:30:14.2724232Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2024-08-22T20:30:14.2725078Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2024-08-22T20:30:14.2725786Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2024-08-22T20:30:14.2726394Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2024-08-22T20:30:14.2727256Z ALL_SECRETS: { "github_token": "***" } 2024-08-22T20:30:14.2727669Z ##[endgroup] 2024-08-22T20:30:14.2761411Z + echo '#!/usr/bin/env bash' 2024-08-22T20:30:14.2761846Z + echo 'set -eou pipefail' 2024-08-22T20:30:14.2762280Z + echo 'eval "$(conda shell.bash hook)"' 2024-08-22T20:30:14.2764093Z + echo 'set -x' 2024-08-22T20:30:14.2764752Z + echo 'echo "::group::Print machine info" 2024-08-22T20:30:14.2765270Z uname -a 2024-08-22T20:30:14.2765545Z echo "::endgroup::" 2024-08-22T20:30:14.2765789Z 2024-08-22T20:30:14.2766280Z echo "::group::Install newer objcopy that supports --set-section-alignment" 2024-08-22T20:30:14.2768891Z yum install -y devtoolset-10-binutils 2024-08-22T20:30:14.2769644Z export PATH=/opt/rh/devtoolset-10/root/usr/bin/:$PATH 2024-08-22T20:30:14.2770273Z echo "::endgroup::" 2024-08-22T20:30:14.2770475Z 2024-08-22T20:30:14.2770482Z 2024-08-22T20:30:14.2770629Z echo "::group::Download checkpoints" 2024-08-22T20:30:14.2771066Z # Install requirements 2024-08-22T20:30:14.2771414Z ./install_requirements.sh cuda 2024-08-22T20:30:14.2771767Z pip3 list 2024-08-22T20:30:14.2772741Z python3 -c '\''import torch;print(f"torch: {torch.__version__, torch.version.git_version}")'\'' 2024-08-22T20:30:14.2773463Z echo "::endgroup::" 2024-08-22T20:30:14.2773657Z 2024-08-22T20:30:14.2773852Z echo "::group::Download checkpoints" 2024-08-22T20:30:14.2774445Z mkdir -p checkpoints/stories15M 2024-08-22T20:30:14.2774935Z pushd checkpoints/stories15M 2024-08-22T20:30:14.2775623Z wget https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.pt 2024-08-22T20:30:14.2776397Z wget https://github.com/karpathy/llama2.c/raw/master/tokenizer.model 2024-08-22T20:30:14.2776981Z popd 2024-08-22T20:30:14.2777261Z echo "::endgroup::" 2024-08-22T20:30:14.2777453Z 2024-08-22T20:30:14.2777586Z echo "::group::Run inference" 2024-08-22T20:30:14.2778360Z export MODEL_PATH=checkpoints/stories15M/stories15M.pt 2024-08-22T20:30:14.2778856Z export MODEL_NAME=stories15M 2024-08-22T20:30:14.2779202Z export MODEL_DIR=/tmp 2024-08-22T20:30:14.2779413Z 2024-08-22T20:30:14.2779571Z for DTYPE in bfloat16 float16 float32; do 2024-08-22T20:30:14.2780259Z ################################################################### 2024-08-22T20:30:14.2780727Z # group with different temperatures 2024-08-22T20:30:14.2781541Z python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 2024-08-22T20:30:14.2782623Z python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 2024-08-22T20:30:14.2783703Z python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 2024-08-22T20:30:14.2784732Z python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 2024-08-22T20:30:14.2785815Z python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 2024-08-22T20:30:14.2786820Z python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 2024-08-22T20:30:14.2787513Z ################################################################### 2024-08-22T20:30:14.2788083Z # group with different temperatures and prefill, and compile 2024-08-22T20:30:14.2788588Z # and prefill compile 2024-08-22T20:30:14.2789432Z python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --compile --compile-prefill 2024-08-22T20:30:14.2790757Z python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --compile --compile-prefill 2024-08-22T20:30:14.2792132Z python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --compile --compile-prefill 2024-08-22T20:30:14.2793589Z python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --compile --compile-prefill 2024-08-22T20:30:14.2794843Z python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --compile --compile-prefill 2024-08-22T20:30:14.2796096Z python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --compile --compile-prefill 2024-08-22T20:30:14.2796914Z ################################################################### 2024-08-22T20:30:14.2797468Z # group with different temperatures and sequential prefill 2024-08-22T20:30:14.2798439Z python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill 2024-08-22T20:30:14.2799687Z python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill 2024-08-22T20:30:14.2800941Z python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill 2024-08-22T20:30:14.2802163Z python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill 2024-08-22T20:30:14.2803357Z python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill 2024-08-22T20:30:14.2804550Z python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill 2024-08-22T20:30:14.2805346Z ################################################################### 2024-08-22T20:30:14.2805895Z # group with different temperatures and prefill, and compile 2024-08-22T20:30:14.2806928Z python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill --compile 2024-08-22T20:30:14.2808378Z python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill --compile 2024-08-22T20:30:14.2809743Z python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill --compile 2024-08-22T20:30:14.2811096Z python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill --compile 2024-08-22T20:30:14.2812500Z python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill --compile 2024-08-22T20:30:14.2813972Z python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill --compile 2024-08-22T20:30:14.2814680Z 2024-08-22T20:30:14.2814804Z done 2024-08-22T20:30:14.2814947Z 2024-08-22T20:30:14.2815075Z echo "tests complete" 2024-08-22T20:30:14.2815465Z echo "******************************************" 2024-08-22T20:30:14.2815927Z echo "::endgroup::" 2024-08-22T20:30:14.2816267Z ' 2024-08-22T20:30:14.2816739Z + chmod +x /home/ec2-user/actions-runner/_work/_temp/exec_script 2024-08-22T20:30:14.2817799Z + python3 /home/ec2-user/actions-runner/_work/torchchat/torchchat/test-infra/.github/scripts/run_with_env_secrets.py '' 2024-08-22T20:30:52.7433017Z Running command: 2024-08-22T20:30:52.7443311Z 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_10515112123" `# 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 --ulimit core=0 --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all -v "/home/ec2-user/actions-runner/_work/torchchat/torchchat/pytorch/torchchat:/pytorch/torchchat" -v "/home/ec2-user/actions-runner/_work/torchchat/torchchat/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_4363d743-01bc-404e-b31a-0596253d0d79":"/home/ec2-user/actions-runner/_work/_temp/_runner_file_commands/step_summary_4363d743-01bc-404e-b31a-0596253d0d79" -w /pytorch/torchchat "pytorch/conda-builder:cuda12.1" 2024-08-22T20:30:52.7451584Z 2024-08-22T20:30:52.7452036Z 638b8463543e1793a9bf9b9c5317033fb1f5078871a798e3dab1e776fe9db640 2024-08-22T20:30:52.7453358Z Running command: docker exec -t 638b8463543e1793a9bf9b9c5317033fb1f5078871a798e3dab1e776fe9db640 /exec 2024-08-22T20:30:52.7454454Z + echo '::group::Print machine info' 2024-08-22T20:30:52.7455355Z ##[group]Print machine info 2024-08-22T20:30:52.7455817Z + uname -a 2024-08-22T20:30:52.7456664Z Linux 638b8463543e 6.1.94-99.176.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Jun 18 14:57:56 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux 2024-08-22T20:30:52.7457481Z + echo ::endgroup:: 2024-08-22T20:30:52.7458182Z ##[endgroup] 2024-08-22T20:30:52.7458790Z + echo '::group::Install newer objcopy that supports --set-section-alignment' 2024-08-22T20:30:52.7459784Z ##[group]Install newer objcopy that supports --set-section-alignment 2024-08-22T20:30:52.7460420Z + yum install -y devtoolset-10-binutils 2024-08-22T20:30:52.7460856Z Loaded plugins: fastestmirror, ovl 2024-08-22T20:30:52.7461278Z Loading mirror speeds from cached hostfile 2024-08-22T20:30:52.7461589Z 2024-08-22T20:30:52.7461858Z epel/x86_64/metalink | 5.1 kB 00:00 2024-08-22T20:30:52.7462466Z * epel: d2lzkl7pfhq30w.cloudfront.net 2024-08-22T20:30:52.7462761Z 2024-08-22T20:30:52.7462973Z base | 3.6 kB 00:00 2024-08-22T20:30:52.7463328Z 2024-08-22T20:30:52.7463651Z centos-sclo-rh | 3.0 kB 00:00 2024-08-22T20:30:52.7464062Z 2024-08-22T20:30:52.7464390Z centos-sclo-sclo | 3.0 kB 00:00 2024-08-22T20:30:52.7464805Z 2024-08-22T20:30:52.7465251Z extras | 2.9 kB 00:00 2024-08-22T20:30:52.7465621Z 2024-08-22T20:30:52.7465840Z updates | 2.9 kB 00:00 2024-08-22T20:30:52.7466324Z Resolving Dependencies 2024-08-22T20:30:52.7466717Z --> Running transaction check 2024-08-22T20:30:52.7467330Z ---> Package devtoolset-10-binutils.x86_64 0:2.35-5.el7.4 will be installed 2024-08-22T20:30:52.7468328Z --> Processing Dependency: devtoolset-10-runtime for package: devtoolset-10-binutils-2.35-5.el7.4.x86_64 2024-08-22T20:30:52.7469110Z --> Running transaction check 2024-08-22T20:30:52.7469729Z ---> Package devtoolset-10-runtime.x86_64 0:10.1-0.el7 will be installed 2024-08-22T20:30:52.7470362Z --> Finished Dependency Resolution 2024-08-22T20:30:52.7470632Z 2024-08-22T20:30:52.7470752Z Dependencies Resolved 2024-08-22T20:30:52.7470954Z 2024-08-22T20:30:52.7471130Z ================================================================================ 2024-08-22T20:30:52.7471705Z Package Arch Version Repository Size 2024-08-22T20:30:52.7472266Z ================================================================================ 2024-08-22T20:30:52.7472703Z Installing: 2024-08-22T20:30:52.7473257Z devtoolset-10-binutils x86_64 2.35-5.el7.4 centos-sclo-rh 6.3 M 2024-08-22T20:30:52.7473842Z Installing for dependencies: 2024-08-22T20:30:52.7474468Z devtoolset-10-runtime x86_64 10.1-0.el7 centos-sclo-rh 19 k 2024-08-22T20:30:52.7475079Z 2024-08-22T20:30:52.7475201Z Transaction Summary 2024-08-22T20:30:52.7475559Z ================================================================================ 2024-08-22T20:30:52.7476048Z Install 1 Package (+1 Dependent package) 2024-08-22T20:30:52.7476346Z 2024-08-22T20:30:52.7476476Z Total download size: 6.3 M 2024-08-22T20:30:52.7476815Z Installed size: 25 M 2024-08-22T20:30:52.7477132Z Downloading packages: 2024-08-22T20:30:52.7477334Z 2024-08-22T20:30:52.7478167Z (1/2): devtoolset-10-binutils-2.35-5.el7.4.x86_64.rpm | 6.3 MB 00:00 2024-08-22T20:30:52.7478669Z 2024-08-22T20:30:52.7479100Z (2/2): devtoolset-10-runtime-10.1-0.el7.x86_64.rpm | 19 kB 00:00 2024-08-22T20:30:52.7479846Z -------------------------------------------------------------------------------- 2024-08-22T20:30:52.7480450Z Total 26 MB/s | 6.3 MB 00:00 2024-08-22T20:30:52.7480951Z Running transaction check 2024-08-22T20:30:52.7481285Z Running transaction test 2024-08-22T20:30:52.7481633Z Transaction test succeeded 2024-08-22T20:30:52.7481973Z Running transaction 2024-08-22T20:30:52.7482163Z 2024-08-22T20:30:52.7482544Z Installing : devtoolset-10-runtime-10.1-0 [ ] 1/2 2024-08-22T20:30:52.7483381Z Installing : devtoolset-10-runtime-10.1-0 [# ] 1/2 2024-08-22T20:30:52.7484205Z Installing : devtoolset-10-runtime-10.1-0 [## ] 1/2 2024-08-22T20:30:52.7485021Z Installing : devtoolset-10-runtime-10.1-0 [### ] 1/2 2024-08-22T20:30:52.7485849Z Installing : devtoolset-10-runtime-10.1-0 [#### ] 1/2 2024-08-22T20:30:52.7486672Z Installing : devtoolset-10-runtime-10.1-0 [##### ] 1/2 2024-08-22T20:30:52.7487489Z Installing : devtoolset-10-runtime-10.1-0 [###### ] 1/2 2024-08-22T20:30:52.7488426Z Installing : devtoolset-10-runtime-10.1-0 [####### ] 1/2 2024-08-22T20:30:52.7489253Z Installing : devtoolset-10-runtime-10.1-0 [######## ] 1/2 2024-08-22T20:30:52.7490070Z Installing : devtoolset-10-runtime-10.1-0 [######### ] 1/2 2024-08-22T20:30:52.7490876Z Installing : devtoolset-10-runtime-10.1-0 [########## ] 1/2 2024-08-22T20:30:52.7491692Z Installing : devtoolset-10-runtime-10.1-0 [########### ] 1/2 2024-08-22T20:30:52.7492662Z Installing : devtoolset-10-runtime-10.1-0 [############ ] 1/2 2024-08-22T20:30:52.7493486Z Installing : devtoolset-10-runtime-10.1-0 [############# ] 1/2 2024-08-22T20:30:52.7494303Z Installing : devtoolset-10-runtime-10.1-0 [############## ] 1/2 2024-08-22T20:30:52.7495116Z Installing : devtoolset-10-runtime-10.1-0 [############### ] 1/2 2024-08-22T20:30:52.7495928Z Installing : devtoolset-10-runtime-10.1-0 [################ ] 1/2 2024-08-22T20:30:52.7496732Z Installing : devtoolset-10-runtime-10.1-0 [################# ] 1/2 2024-08-22T20:30:52.7497549Z Installing : devtoolset-10-runtime-10.1-0 [################## ] 1/2 2024-08-22T20:30:52.7498366Z Installing : devtoolset-10-runtime-10.1-0 [################### ] 1/2 2024-08-22T20:30:52.7499171Z Installing : devtoolset-10-runtime-10.1-0 [##################### ] 1/2 2024-08-22T20:30:52.7499990Z Installing : devtoolset-10-runtime-10.1-0 [###################### ] 1/2 2024-08-22T20:30:52.7500799Z Installing : devtoolset-10-runtime-10.1-0 [####################### ] 1/2 2024-08-22T20:30:52.7501605Z Installing : devtoolset-10-runtime-10.1-0 [######################## ] 1/2 2024-08-22T20:30:52.7502422Z Installing : devtoolset-10-runtime-10.1-0 [######################### ] 1/2 2024-08-22T20:30:52.7503234Z Installing : devtoolset-10-runtime-10.1-0 [########################## ] 1/2 2024-08-22T20:30:52.7504046Z Installing : devtoolset-10-runtime-10.1-0 [########################### ] 1/2 2024-08-22T20:30:52.7504985Z Installing : devtoolset-10-runtime-10.1-0 [############################ ] 1/2 2024-08-22T20:30:52.7505826Z Installing : devtoolset-10-runtime-10.1-0.el7.x86_64 1/2 2024-08-22T20:30:52.7506589Z ValueError: SELinux policy is not managed or store cannot be accessed. 2024-08-22T20:30:52.7507023Z 2024-08-22T20:30:52.7507403Z Installing : devtoolset-10-binutils-2.35- [ ] 2/2 2024-08-22T20:30:52.7508226Z Installing : devtoolset-10-binutils-2.35- [# ] 2/2 2024-08-22T20:30:52.7509041Z Installing : devtoolset-10-binutils-2.35- [## ] 2/2 2024-08-22T20:30:52.7509845Z Installing : devtoolset-10-binutils-2.35- [### ] 2/2 2024-08-22T20:30:52.7510708Z Installing : devtoolset-10-binutils-2.35- [#### ] 2/2 2024-08-22T20:30:52.7511522Z Installing : devtoolset-10-binutils-2.35- [##### ] 2/2 2024-08-22T20:30:52.7512342Z Installing : devtoolset-10-binutils-2.35- [###### ] 2/2 2024-08-22T20:30:52.7513147Z Installing : devtoolset-10-binutils-2.35- [####### ] 2/2 2024-08-22T20:30:52.7513957Z Installing : devtoolset-10-binutils-2.35- [######## ] 2/2 2024-08-22T20:30:52.7514766Z Installing : devtoolset-10-binutils-2.35- [######### ] 2/2 2024-08-22T20:30:52.7515574Z Installing : devtoolset-10-binutils-2.35- [########## ] 2/2 2024-08-22T20:30:52.7516388Z Installing : devtoolset-10-binutils-2.35- [########### ] 2/2 2024-08-22T20:30:52.7517200Z Installing : devtoolset-10-binutils-2.35- [############ ] 2/2 2024-08-22T20:30:52.7518004Z Installing : devtoolset-10-binutils-2.35- [############# ] 2/2 2024-08-22T20:30:52.7518816Z Installing : devtoolset-10-binutils-2.35- [############## ] 2/2 2024-08-22T20:30:52.7519628Z Installing : devtoolset-10-binutils-2.35- [############### ] 2/2 2024-08-22T20:30:52.7520441Z Installing : devtoolset-10-binutils-2.35- [################ ] 2/2 2024-08-22T20:30:52.7521244Z Installing : devtoolset-10-binutils-2.35- [################# ] 2/2 2024-08-22T20:30:52.7522057Z Installing : devtoolset-10-binutils-2.35- [################## ] 2/2 2024-08-22T20:30:54.7290991Z Installing : devtoolset-10-binutils-2.35- [################### ] 2/2 2024-08-22T20:30:54.7292155Z Installing : devtoolset-10-binutils-2.35- [#################### ] 2/2 2024-08-22T20:30:54.7293062Z Installing : devtoolset-10-binutils-2.35- [##################### ] 2/2 2024-08-22T20:30:54.7294245Z Installing : devtoolset-10-binutils-2.35- [###################### ] 2/2 2024-08-22T20:30:54.7295295Z Installing : devtoolset-10-binutils-2.35- [####################### ] 2/2 2024-08-22T20:30:54.7296372Z Installing : devtoolset-10-binutils-2.35- [######################## ] 2/2 2024-08-22T20:30:54.7297218Z Installing : devtoolset-10-binutils-2.35- [######################### ] 2/2 2024-08-22T20:30:54.7298534Z Installing : devtoolset-10-binutils-2.35- [########################## ] 2/2 2024-08-22T20:30:54.7301500Z Installing : devtoolset-10-binutils-2.35- [########################### ] 2/2 2024-08-22T20:30:54.7302596Z Installing : devtoolset-10-binutils-2.35- [############################ ] 2/2 2024-08-22T20:30:54.7303496Z Installing : devtoolset-10-binutils-2.35-5.el7.4.x86_64 2/2 2024-08-22T20:30:54.7304473Z install-info: No such file or directory for /opt/rh/devtoolset-10/root/usr/share/info/as.info.gz 2024-08-22T20:30:54.7305953Z install-info: No such file or directory for /opt/rh/devtoolset-10/root/usr/share/info/binutils.info.gz 2024-08-22T20:30:54.7307864Z install-info: No such file or directory for /opt/rh/devtoolset-10/root/usr/share/info/gprof.info.gz 2024-08-22T20:30:54.7309039Z install-info: No such file or directory for /opt/rh/devtoolset-10/root/usr/share/info/ld.info.gz 2024-08-22T20:30:54.7310390Z install-info: No such file or directory for /opt/rh/devtoolset-10/root/usr/share/info/standards.info.gz 2024-08-22T20:30:54.7310993Z 2024-08-22T20:30:54.7311706Z Verifying : devtoolset-10-runtime-10.1-0.el7.x86_64 1/2 2024-08-22T20:30:54.7312614Z 2024-08-22T20:30:54.7313080Z Verifying : devtoolset-10-binutils-2.35-5.el7.4.x86_64 2/2 2024-08-22T20:30:54.7313992Z 2024-08-22T20:30:54.7314105Z Installed: 2024-08-22T20:30:54.7314955Z devtoolset-10-binutils.x86_64 0:2.35-5.el7.4 2024-08-22T20:30:54.7315472Z 2024-08-22T20:30:54.7315595Z Dependency Installed: 2024-08-22T20:30:54.7316755Z devtoolset-10-runtime.x86_64 0:10.1-0.el7 2024-08-22T20:30:54.7317264Z 2024-08-22T20:30:54.7317538Z Complete! 2024-08-22T20:30:54.7319421Z + export PATH=/opt/rh/devtoolset-10/root/usr/bin/:/opt/conda/bin:/opt/conda/condabin:/opt/conda/bin:/usr/local/cuda-12.1/bin:/opt/rh/devtoolset-9/root/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin 2024-08-22T20:30:54.7322923Z + PATH=/opt/rh/devtoolset-10/root/usr/bin/:/opt/conda/bin:/opt/conda/condabin:/opt/conda/bin:/usr/local/cuda-12.1/bin:/opt/rh/devtoolset-9/root/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin 2024-08-22T20:30:54.7324593Z + echo ::endgroup:: 2024-08-22T20:30:54.7325238Z ##[endgroup] 2024-08-22T20:30:54.7325952Z + echo '::group::Download checkpoints' 2024-08-22T20:30:54.7327047Z ##[group]Download checkpoints 2024-08-22T20:30:54.7327472Z + ./install_requirements.sh cuda 2024-08-22T20:30:54.7328754Z + pip3 install -r requirements.txt --extra-index-url https://download.pytorch.org/whl/nightly/cu121 2024-08-22T20:30:54.7330135Z Looking in indexes: https://pypi.org/simple, https://download.pytorch.org/whl/nightly/cu121 2024-08-22T20:30:54.7331146Z Ignoring tomli: markers 'python_version < "3.11"' don't match your environment 2024-08-22T20:30:54.7332225Z Collecting huggingface_hub (from -r requirements.txt (line 4)) 2024-08-22T20:30:54.7333436Z Downloading huggingface_hub-0.24.6-py3-none-any.whl (417 kB) 2024-08-22T20:30:54.7335123Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/417.5 kB ? eta -:--:-- 2024-08-22T20:30:54.7336439Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 417.5/417.5 kB 15.5 MB/s eta 0:00:00 2024-08-22T20:30:54.7337796Z [?25hCollecting gguf (from -r requirements.txt (line 7)) 2024-08-22T20:30:54.7338424Z Downloading gguf-0.9.1-py3-none-any.whl (49 kB) 2024-08-22T20:30:54.7339186Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/49.1 kB ? eta -:--:-- 2024-08-22T20:30:54.7341336Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 49.1/49.1 kB 17.8 MB/s eta 0:00:00 2024-08-22T20:30:54.7342269Z [?25hCollecting tiktoken (from -r requirements.txt (line 10)) 2024-08-22T20:30:54.7343200Z Downloading tiktoken-0.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB) 2024-08-22T20:30:54.7344192Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/1.1 MB ? eta -:--:-- 2024-08-22T20:30:54.7345436Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.1/1.1 MB 100.3 MB/s eta 0:00:00 2024-08-22T20:30:54.7346619Z [?25hCollecting snakeviz (from -r requirements.txt (line 13)) 2024-08-22T20:30:54.7347513Z Downloading snakeviz-2.2.0-py2.py3-none-any.whl (283 kB) 2024-08-22T20:30:54.7348839Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/283.7 kB ? eta -:--:-- 2024-08-22T20:30:54.7350297Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 283.7/283.7 kB 57.6 MB/s eta 0:00:00 2024-08-22T20:30:54.7351188Z [?25hCollecting sentencepiece (from -r requirements.txt (line 14)) 2024-08-22T20:30:54.7352714Z Downloading https://download.pytorch.org/whl/nightly/sentencepiece-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB) 2024-08-22T20:30:54.7354573Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/1.3 MB ? eta -:--:-- 2024-08-22T20:30:54.7355497Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 103.7 MB/s eta 0:00:00 2024-08-22T20:30:54.7356631Z [?25hCollecting numpy<2.0 (from -r requirements.txt (line 15)) 2024-08-22T20:30:54.7359257Z Downloading https://download.pytorch.org/whl/nightly/numpy-1.26.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.3 MB) 2024-08-22T20:30:54.7360548Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/18.3 MB ? eta -:--:-- 2024-08-22T20:30:54.7361570Z  ━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━ 7.8/18.3 MB 233.1 MB/s eta 0:00:01 2024-08-22T20:30:54.7362939Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━ 16.0/18.3 MB 236.5 MB/s eta 0:00:01 2024-08-22T20:30:54.7364455Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 18.2/18.3 MB 241.2 MB/s eta 0:00:01 2024-08-22T20:30:54.7366600Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 18.2/18.3 MB 241.2 MB/s eta 0:00:01 2024-08-22T20:30:54.7367990Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 18.3/18.3 MB 83.7 MB/s eta 0:00:00 2024-08-22T20:30:54.7369203Z [?25hCollecting lm-eval==0.4.2 (from -r requirements.txt (line 17)) 2024-08-22T20:30:54.7370329Z Downloading lm_eval-0.4.2-py3-none-any.whl (1.4 MB) 2024-08-22T20:30:54.7371164Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/1.4 MB ? eta -:--:-- 2024-08-22T20:30:54.7372094Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.4/1.4 MB 108.5 MB/s eta 0:00:00 2024-08-22T20:30:54.7372904Z [?25hCollecting blobfile (from -r requirements.txt (line 18)) 2024-08-22T20:30:54.7373800Z Downloading https://download.pytorch.org/whl/nightly/blobfile-2.1.1-py3-none-any.whl (73 kB) 2024-08-22T20:30:54.7375962Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/73.7 kB ? eta -:--:-- 2024-08-22T20:30:54.7377251Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 73.7/73.7 kB 28.8 MB/s eta 0:00:00 2024-08-22T20:30:54.7379432Z [?25hRequirement already satisfied: wheel in /opt/conda/lib/python3.11/site-packages (from -r requirements.txt (line 22)) (0.38.4) 2024-08-22T20:30:54.7381084Z Collecting cmake>=3.24 (from -r requirements.txt (line 23)) 2024-08-22T20:30:54.7382037Z Downloading cmake-3.30.2-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.9 MB) 2024-08-22T20:31:00.6510566Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/26.9 MB ? eta -:--:-- 2024-08-22T20:31:00.6512364Z  ━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━ 8.2/26.9 MB 245.4 MB/s eta 0:00:01 2024-08-22T20:31:00.6513498Z  ━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━ 16.6/26.9 MB 244.6 MB/s eta 0:00:01 2024-08-22T20:31:00.6514610Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━ 25.3/26.9 MB 250.1 MB/s eta 0:00:01 2024-08-22T20:31:00.6515665Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 26.9/26.9 MB 251.4 MB/s eta 0:00:01 2024-08-22T20:31:00.6516677Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 26.9/26.9 MB 251.4 MB/s eta 0:00:01 2024-08-22T20:31:00.6517667Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 26.9/26.9 MB 251.4 MB/s eta 0:00:01 2024-08-22T20:31:00.6518660Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 26.9/26.9 MB 64.9 MB/s eta 0:00:00 2024-08-22T20:31:00.6519445Z [?25hCollecting ninja (from -r requirements.txt (line 24)) 2024-08-22T20:31:00.6520328Z Downloading ninja-1.11.1.1-py2.py3-none-manylinux1_x86_64.manylinux_2_5_x86_64.whl (307 kB) 2024-08-22T20:31:00.6521518Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/307.2 kB ? eta -:--:-- 2024-08-22T20:31:00.6522580Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 307.2/307.2 kB 72.7 MB/s eta 0:00:00 2024-08-22T20:31:00.6523378Z [?25hCollecting zstd (from -r requirements.txt (line 25)) 2024-08-22T20:31:00.6524238Z Downloading zstd-1.5.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB) 2024-08-22T20:31:00.6525222Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/1.8 MB ? eta -:--:-- 2024-08-22T20:31:00.6526166Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 119.0 MB/s eta 0:00:00 2024-08-22T20:31:00.6526956Z [?25hCollecting streamlit (from -r requirements.txt (line 28)) 2024-08-22T20:31:00.6527648Z Downloading streamlit-1.37.1-py2.py3-none-any.whl (8.7 MB) 2024-08-22T20:31:00.6528580Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/8.7 MB ? eta -:--:-- 2024-08-22T20:31:00.6529591Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━ 7.6/8.7 MB 229.4 MB/s eta 0:00:01 2024-08-22T20:31:00.6530633Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 8.6/8.7 MB 224.8 MB/s eta 0:00:01 2024-08-22T20:31:00.6531595Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 8.7/8.7 MB 124.6 MB/s eta 0:00:00 2024-08-22T20:31:00.6532418Z [?25hCollecting flask (from -r requirements.txt (line 31)) 2024-08-22T20:31:00.6533161Z Downloading flask-3.0.3-py3-none-any.whl (101 kB) 2024-08-22T20:31:00.6533932Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/101.7 kB ? eta -:--:-- 2024-08-22T20:31:00.6534873Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 101.7/101.7 kB 32.9 MB/s eta 0:00:00 2024-08-22T20:31:00.6535819Z [?25hCollecting accelerate>=0.21.0 (from lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:31:00.6536605Z Downloading accelerate-0.33.0-py3-none-any.whl (315 kB) 2024-08-22T20:31:00.6537411Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/315.1 kB ? eta -:--:-- 2024-08-22T20:31:00.6538343Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 315.1/315.1 kB 68.2 MB/s eta 0:00:00 2024-08-22T20:31:00.6539216Z [?25hCollecting evaluate (from lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:31:00.6539961Z Downloading evaluate-0.4.2-py3-none-any.whl (84 kB) 2024-08-22T20:31:00.6540740Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/84.1 kB ? eta -:--:-- 2024-08-22T20:31:00.6541666Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 84.1/84.1 kB 31.9 MB/s eta 0:00:00 2024-08-22T20:31:00.6542618Z [?25hCollecting datasets>=2.16.0 (from lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:31:00.6543960Z Downloading datasets-2.21.0-py3-none-any.whl (527 kB) 2024-08-22T20:31:00.6544764Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/527.3 kB ? eta -:--:-- 2024-08-22T20:31:00.6545691Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 527.3/527.3 kB 91.3 MB/s eta 0:00:00 2024-08-22T20:31:00.6546561Z [?25hCollecting jsonlines (from lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:31:00.6547305Z Downloading jsonlines-4.0.0-py3-none-any.whl (8.7 kB) 2024-08-22T20:31:00.6548033Z Collecting numexpr (from lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:31:00.6548784Z Downloading numexpr-2.10.1.tar.gz (101 kB) 2024-08-22T20:31:00.6549545Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/101.6 kB ? eta -:--:-- 2024-08-22T20:31:00.6550467Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 101.6/101.6 kB 38.9 MB/s eta 0:00:00 2024-08-22T20:31:00.6551376Z [?25h Installing build dependencies ... [?25l- \ | / - \ | done 2024-08-22T20:31:00.6552132Z [?25h Getting requirements to build wheel ... [?25l- done 2024-08-22T20:31:00.6552802Z [?25h Preparing metadata (pyproject.toml) ... [?25l- done 2024-08-22T20:31:00.6553580Z [?25hCollecting peft>=0.2.0 (from lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:31:00.6554294Z Downloading peft-0.12.0-py3-none-any.whl (296 kB) 2024-08-22T20:31:00.6555077Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/296.4 kB ? eta -:--:-- 2024-08-22T20:31:00.6556182Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 296.4/296.4 kB 65.9 MB/s eta 0:00:00 2024-08-22T20:31:00.6557094Z [?25hCollecting pybind11>=2.6.2 (from lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:31:00.6557862Z Downloading pybind11-2.13.5-py3-none-any.whl (240 kB) 2024-08-22T20:31:00.6558662Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/241.0 kB ? eta -:--:-- 2024-08-22T20:31:00.6559605Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 241.0/241.0 kB 61.8 MB/s eta 0:00:00 2024-08-22T20:31:00.6560504Z [?25hCollecting pytablewriter (from lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:31:00.6561296Z Downloading pytablewriter-1.2.0-py3-none-any.whl (111 kB) 2024-08-22T20:31:00.6562165Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/111.1 kB ? eta -:--:-- 2024-08-22T20:31:02.4519065Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 111.1/111.1 kB 36.3 MB/s eta 0:00:00 2024-08-22T20:31:02.4520827Z [?25hCollecting rouge-score>=0.0.4 (from lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:31:02.4521747Z Downloading rouge_score-0.1.2.tar.gz (17 kB) 2024-08-22T20:31:02.4522323Z Preparing metadata (setup.py) ... [?25l- done 2024-08-22T20:31:02.4523411Z [?25hCollecting sacrebleu>=1.5.0 (from lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:31:02.4524256Z Downloading sacrebleu-2.4.3-py3-none-any.whl (103 kB) 2024-08-22T20:31:02.4525065Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/104.0 kB ? eta -:--:-- 2024-08-22T20:31:02.4526011Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 104.0/104.0 kB 31.8 MB/s eta 0:00:00 2024-08-22T20:31:02.4526952Z [?25hCollecting scikit-learn>=0.24.1 (from lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:31:02.4528034Z Downloading scikit_learn-1.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.3 MB) 2024-08-22T20:31:02.4529172Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/13.3 MB ? eta -:--:-- 2024-08-22T20:31:02.4532005Z  ━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━ 5.9/13.3 MB 176.9 MB/s eta 0:00:01 2024-08-22T20:31:02.4533542Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 13.3/13.3 MB 240.2 MB/s eta 0:00:01 2024-08-22T20:31:02.4534561Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 13.3/13.3 MB 240.2 MB/s eta 0:00:01 2024-08-22T20:31:02.4535531Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.3/13.3 MB 108.5 MB/s eta 0:00:00 2024-08-22T20:31:02.4536727Z [?25hCollecting sqlitedict (from lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:31:02.4538450Z Downloading sqlitedict-2.1.0.tar.gz (21 kB) 2024-08-22T20:31:02.4539006Z Preparing metadata (setup.py) ... [?25l- done 2024-08-22T20:31:02.4540397Z [?25hCollecting torch>=1.8 (from lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:31:02.4541758Z Downloading torch-2.4.0-cp311-cp311-manylinux1_x86_64.whl (797.3 MB) 2024-08-22T20:31:02.4543462Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/797.3 MB ? eta -:--:-- 2024-08-22T20:31:02.4544509Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 7.2/797.3 MB 215.7 MB/s eta 0:00:04 2024-08-22T20:31:02.4545525Z  ╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 15.2/797.3 MB 232.5 MB/s eta 0:00:04 2024-08-22T20:31:02.4547404Z  ━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 23.8/797.3 MB 233.8 MB/s eta 0:00:04 2024-08-22T20:31:02.4549361Z  ━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 31.5/797.3 MB 240.2 MB/s eta 0:00:04 2024-08-22T20:31:02.4551248Z  ━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 39.7/797.3 MB 230.5 MB/s eta 0:00:04 2024-08-22T20:31:02.4553212Z  ━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 48.3/797.3 MB 248.1 MB/s eta 0:00:04 2024-08-22T20:31:02.4554402Z  ━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 56.8/797.3 MB 246.9 MB/s eta 0:00:03 2024-08-22T20:31:02.4555495Z  ━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 65.4/797.3 MB 248.2 MB/s eta 0:00:03 2024-08-22T20:31:02.4558046Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 74.0/797.3 MB 249.1 MB/s eta 0:00:03 2024-08-22T20:31:02.4559230Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 82.5/797.3 MB 247.8 MB/s eta 0:00:03 2024-08-22T20:31:02.4561282Z  ━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 91.2/797.3 MB 248.6 MB/s eta 0:00:03 2024-08-22T20:31:02.4562453Z  ━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 99.8/797.3 MB 249.3 MB/s eta 0:00:03 2024-08-22T20:31:02.4563592Z  ━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 108.3/797.3 MB 245.1 MB/s eta 0:00:03 2024-08-22T20:31:02.4564674Z  ━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 116.9/797.3 MB 248.8 MB/s eta 0:00:03 2024-08-22T20:31:02.4565759Z  ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 125.4/797.3 MB 246.6 MB/s eta 0:00:03 2024-08-22T20:31:02.4568418Z  ━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 133.9/797.3 MB 246.7 MB/s eta 0:00:03 2024-08-22T20:31:02.4569554Z  ━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 142.4/797.3 MB 245.9 MB/s eta 0:00:03 2024-08-22T20:31:02.4570661Z  ━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 150.7/797.3 MB 242.2 MB/s eta 0:00:03 2024-08-22T20:31:02.4571750Z  ━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 159.3/797.3 MB 245.6 MB/s eta 0:00:03 2024-08-22T20:31:02.4574086Z  ━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 167.9/797.3 MB 249.3 MB/s eta 0:00:03 2024-08-22T20:31:02.4576121Z  ━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 176.4/797.3 MB 246.7 MB/s eta 0:00:03 2024-08-22T20:31:02.4577241Z  ━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 184.9/797.3 MB 245.3 MB/s eta 0:00:03 2024-08-22T20:31:02.4579329Z  ━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 193.4/797.3 MB 245.4 MB/s eta 0:00:03 2024-08-22T20:31:02.4581129Z  ━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━ 201.9/797.3 MB 246.7 MB/s eta 0:00:03 2024-08-22T20:31:02.4583068Z  ━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━ 210.2/797.3 MB 241.8 MB/s eta 0:00:03 2024-08-22T20:31:03.7744322Z  ━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━ 218.6/797.3 MB 243.5 MB/s eta 0:00:03 2024-08-22T20:31:03.7745518Z  ━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━ 226.9/797.3 MB 240.9 MB/s eta 0:00:03 2024-08-22T20:31:03.7746637Z  ━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━ 235.2/797.3 MB 240.0 MB/s eta 0:00:03 2024-08-22T20:31:03.7747782Z  ━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━ 243.3/797.3 MB 235.6 MB/s eta 0:00:03 2024-08-22T20:31:03.7748887Z  ━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━ 251.6/797.3 MB 239.9 MB/s eta 0:00:03 2024-08-22T20:31:03.7750002Z  ━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━ 260.1/797.3 MB 245.6 MB/s eta 0:00:03 2024-08-22T20:31:03.7751097Z  ━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━ 268.6/797.3 MB 245.3 MB/s eta 0:00:03 2024-08-22T20:31:03.7752188Z  ━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━ 277.2/797.3 MB 247.0 MB/s eta 0:00:03 2024-08-22T20:31:03.7753332Z  ━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━ 285.7/797.3 MB 248.4 MB/s eta 0:00:03 2024-08-22T20:31:03.7755248Z  ━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━ 294.3/797.3 MB 249.0 MB/s eta 0:00:03 2024-08-22T20:31:03.7758382Z  ━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━ 303.0/797.3 MB 250.1 MB/s eta 0:00:02 2024-08-22T20:31:03.7760435Z  ━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━ 310.6/797.3 MB 229.1 MB/s eta 0:00:03 2024-08-22T20:31:03.7762842Z  ━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━ 313.5/797.3 MB 228.3 MB/s eta 0:00:03 2024-08-22T20:31:03.7764208Z  ━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━ 313.5/797.3 MB 228.3 MB/s eta 0:00:03 2024-08-22T20:31:03.7765365Z  ━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━ 319.6/797.3 MB 93.2 MB/s eta 0:00:06 2024-08-22T20:31:03.7768790Z  ━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━ 326.1/797.3 MB 207.8 MB/s eta 0:00:03 2024-08-22T20:31:03.7770096Z  ━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━ 334.4/797.3 MB 236.3 MB/s eta 0:00:02 2024-08-22T20:31:03.7771416Z  ━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━ 342.6/797.3 MB 237.6 MB/s eta 0:00:02 2024-08-22T20:31:03.7772529Z  ━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 350.9/797.3 MB 239.1 MB/s eta 0:00:02 2024-08-22T20:31:03.7773620Z  ━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━ 358.8/797.3 MB 231.9 MB/s eta 0:00:02 2024-08-22T20:31:03.7774715Z  ━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━ 367.3/797.3 MB 245.5 MB/s eta 0:00:02 2024-08-22T20:31:03.7775817Z  ━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━ 375.8/797.3 MB 246.2 MB/s eta 0:00:02 2024-08-22T20:31:03.7776901Z  ━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 384.1/797.3 MB 239.6 MB/s eta 0:00:02 2024-08-22T20:31:03.7778263Z  ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 391.6/797.3 MB 220.8 MB/s eta 0:00:02 2024-08-22T20:31:03.7779369Z  ━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━ 399.5/797.3 MB 230.4 MB/s eta 0:00:02 2024-08-22T20:31:03.7780454Z  ━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━ 406.6/797.3 MB 206.1 MB/s eta 0:00:02 2024-08-22T20:31:03.7781550Z  ━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━ 415.3/797.3 MB 242.9 MB/s eta 0:00:02 2024-08-22T20:31:03.7782799Z  ━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━ 421.9/797.3 MB 209.9 MB/s eta 0:00:02 2024-08-22T20:31:03.7783876Z  ━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━ 429.4/797.3 MB 193.3 MB/s eta 0:00:02 2024-08-22T20:31:03.7784960Z  ━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━ 438.1/797.3 MB 249.9 MB/s eta 0:00:02 2024-08-22T20:31:03.7786038Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━ 443.9/797.3 MB 197.3 MB/s eta 0:00:02 2024-08-22T20:31:03.7787120Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━ 452.2/797.3 MB 236.4 MB/s eta 0:00:02 2024-08-22T20:31:03.7788202Z  ━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━ 460.3/797.3 MB 238.7 MB/s eta 0:00:02 2024-08-22T20:31:03.7789289Z  ━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 467.9/797.3 MB 218.1 MB/s eta 0:00:02 2024-08-22T20:31:03.7790366Z  ━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━ 476.5/797.3 MB 246.2 MB/s eta 0:00:02 2024-08-22T20:31:03.7791591Z  ━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━ 485.1/797.3 MB 250.9 MB/s eta 0:00:02 2024-08-22T20:31:03.7792675Z  ━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━ 493.1/797.3 MB 234.2 MB/s eta 0:00:02 2024-08-22T20:31:03.7793750Z  ━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━ 500.4/797.3 MB 216.2 MB/s eta 0:00:02 2024-08-22T20:31:05.0997930Z  ━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━ 509.0/797.3 MB 242.9 MB/s eta 0:00:02 2024-08-22T20:31:05.0999802Z  ━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━ 516.2/797.3 MB 219.1 MB/s eta 0:00:02 2024-08-22T20:31:05.1000922Z  ━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━ 524.3/797.3 MB 229.4 MB/s eta 0:00:02 2024-08-22T20:31:05.1002050Z  ━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━ 532.4/797.3 MB 230.3 MB/s eta 0:00:02 2024-08-22T20:31:05.1003189Z  ━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━ 539.6/797.3 MB 209.6 MB/s eta 0:00:02 2024-08-22T20:31:05.1004272Z  ━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━ 544.7/797.3 MB 170.4 MB/s eta 0:00:02 2024-08-22T20:31:05.1005356Z  ━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━ 550.5/797.3 MB 158.5 MB/s eta 0:00:02 2024-08-22T20:31:05.1006463Z  ━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━ 557.0/797.3 MB 185.7 MB/s eta 0:00:02 2024-08-22T20:31:05.1007542Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━ 563.1/797.3 MB 183.9 MB/s eta 0:00:02 2024-08-22T20:31:05.1009199Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━ 569.4/797.3 MB 170.6 MB/s eta 0:00:02 2024-08-22T20:31:05.1011565Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━ 576.7/797.3 MB 196.9 MB/s eta 0:00:02 2024-08-22T20:31:05.1013198Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━ 583.0/797.3 MB 200.4 MB/s eta 0:00:02 2024-08-22T20:31:05.1014693Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━ 589.0/797.3 MB 170.7 MB/s eta 0:00:02 2024-08-22T20:31:05.1016772Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━ 595.0/797.3 MB 168.5 MB/s eta 0:00:02 2024-08-22T20:31:05.1018416Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━ 603.5/797.3 MB 201.5 MB/s eta 0:00:01 2024-08-22T20:31:05.1020811Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━ 612.1/797.3 MB 247.2 MB/s eta 0:00:01 2024-08-22T20:31:05.1022938Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━ 620.2/797.3 MB 235.8 MB/s eta 0:00:01 2024-08-22T20:31:05.1024603Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 628.4/797.3 MB 238.3 MB/s eta 0:00:01 2024-08-22T20:31:05.1027061Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━ 636.2/797.3 MB 226.5 MB/s eta 0:00:01 2024-08-22T20:31:05.1028643Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━ 643.2/797.3 MB 202.7 MB/s eta 0:00:01 2024-08-22T20:31:05.1029728Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━ 649.9/797.3 MB 204.6 MB/s eta 0:00:01 2024-08-22T20:31:05.1030824Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━ 657.9/797.3 MB 214.3 MB/s eta 0:00:01 2024-08-22T20:31:05.1031908Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━ 666.2/797.3 MB 240.4 MB/s eta 0:00:01 2024-08-22T20:31:05.1033010Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━ 674.7/797.3 MB 245.3 MB/s eta 0:00:01 2024-08-22T20:31:05.1034111Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━ 683.2/797.3 MB 245.6 MB/s eta 0:00:01 2024-08-22T20:31:05.1035195Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━ 691.7/797.3 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:05.1036264Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━ 700.2/797.3 MB 245.0 MB/s eta 0:00:01 2024-08-22T20:31:05.1037330Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 706.8/797.3 MB 208.0 MB/s eta 0:00:01 2024-08-22T20:31:05.1038573Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 714.8/797.3 MB 228.8 MB/s eta 0:00:01 2024-08-22T20:31:05.1039650Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━ 722.2/797.3 MB 217.2 MB/s eta 0:00:01 2024-08-22T20:31:05.1040716Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━ 729.1/797.3 MB 212.8 MB/s eta 0:00:01 2024-08-22T20:31:05.1041782Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━ 735.9/797.3 MB 202.5 MB/s eta 0:00:01 2024-08-22T20:31:05.1042867Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━ 743.1/797.3 MB 204.9 MB/s eta 0:00:01 2024-08-22T20:31:05.1043925Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━ 751.6/797.3 MB 243.3 MB/s eta 0:00:01 2024-08-22T20:31:05.1045009Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 759.2/797.3 MB 248.9 MB/s eta 0:00:01 2024-08-22T20:31:05.1046066Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 759.2/797.3 MB 248.9 MB/s eta 0:00:01 2024-08-22T20:31:05.1047125Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 759.2/797.3 MB 248.9 MB/s eta 0:00:01 2024-08-22T20:31:05.1048277Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 763.9/797.3 MB 79.5 MB/s eta 0:00:01 2024-08-22T20:31:06.9886614Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━ 771.1/797.3 MB 216.6 MB/s eta 0:00:01 2024-08-22T20:31:06.9888270Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺ 777.2/797.3 MB 181.8 MB/s eta 0:00:01 2024-08-22T20:31:06.9889438Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺ 784.6/797.3 MB 201.7 MB/s eta 0:00:01 2024-08-22T20:31:06.9890444Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 790.9/797.3 MB 195.1 MB/s eta 0:00:01 2024-08-22T20:31:06.9891436Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:06.9892445Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:06.9893519Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:06.9894512Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:06.9895728Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:06.9896747Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:06.9897752Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:06.9898746Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:06.9899750Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:06.9900768Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:06.9901768Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:06.9902794Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:06.9903783Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:06.9904781Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:06.9905775Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:06.9906912Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:06.9907903Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:06.9908920Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:06.9909914Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:06.9910896Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:06.9911882Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:06.9912935Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:06.9913919Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:06.9914898Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:06.9915979Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:06.9916971Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:06.9917957Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:06.9918933Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:06.9920022Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:06.9921009Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:06.9922012Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:06.9922990Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:06.9923984Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:06.9924981Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:06.9926001Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:06.9926982Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:08.3718692Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:08.3720136Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:08.3721245Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:08.3722247Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:08.3723265Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:08.3724352Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:08.3725347Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:08.3726657Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:08.3727680Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:08.3728790Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:08.3729779Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:08.3730966Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:08.3731983Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:08.3733001Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:08.3733989Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:08.3734992Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:08.3735992Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:08.3736991Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:08.3737998Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:08.3739012Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:08.3740110Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:08.3741113Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:08.3742097Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:08.3743095Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:08.3744156Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:08.3745136Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:08.3746147Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:08.3747143Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:08.3748148Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:08.3749137Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:08.3750256Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:08.3751347Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:08.3752336Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:08.3753332Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:08.3754388Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:08.3755374Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:08.3756359Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:08.3757354Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:08.3758342Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:08.3759433Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:09.7553176Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:09.7554634Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:09.7556005Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:09.7557115Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:09.7558111Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:09.7559093Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:09.7560115Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:09.7561111Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:09.7562092Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:09.7563082Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:09.7564358Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:09.7565348Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:09.7566347Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:09.7567336Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:09.7568438Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:09.7569431Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:09.7570432Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:09.7571420Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:09.7572550Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:09.7573548Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:09.7574609Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:09.7575611Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:09.7576613Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:09.7577970Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:09.7578970Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:09.7579985Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:09.7580976Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:09.7581963Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:09.7582946Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:09.7584012Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:09.7585002Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:09.7586121Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:09.7587115Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:09.7588117Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:09.7589111Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:09.7590113Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:09.7591102Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:09.7592098Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:09.7593109Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:09.7594138Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:11.1391737Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:11.1393189Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:11.1394651Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:11.1395658Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:11.1396681Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:11.1397664Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:11.1398669Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:11.1399666Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:11.1400674Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:11.1401660Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:11.1402662Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:11.1403802Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:11.1404795Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:11.1405784Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:11.1406777Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:11.1407782Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:11.1408856Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:11.1409856Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:11.1410842Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:11.1411827Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:11.1412826Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:11.1413928Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:11.1414920Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:11.1415906Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:11.1416901Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:11.1417885Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:11.1418874Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:11.1419858Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:11.1420851Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:11.1421838Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:11.1422939Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:11.1423979Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:11.1424956Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:11.1425944Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:11.1427044Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:11.1428027Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:11.1429023Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:11.1430006Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:11.1430990Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:11.1431962Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:13.3104949Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:13.3106359Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:13.3107477Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:13.3108512Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:13.3109516Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:13.3110500Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:13.3111510Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:13.3112527Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:13.3113521Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:13.3114751Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:13.3115817Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:13.3116815Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:13.3117800Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:13.3118950Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:13.3119953Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:13.3120956Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:13.3121965Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:13.3122963Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:13.3123961Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:13.3124956Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:13.3125972Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:13.3126981Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:13.3128184Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 797.3/797.3 MB 189.6 MB/s eta 0:00:01 2024-08-22T20:31:13.3129186Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 797.3/797.3 MB 1.5 MB/s eta 0:00:00 2024-08-22T20:31:13.3130126Z [?25hCollecting tqdm-multiprocess (from lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:31:13.3130981Z Downloading tqdm_multiprocess-0.0.11-py3-none-any.whl (9.8 kB) 2024-08-22T20:31:13.3131809Z Collecting transformers>=4.1 (from lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:31:13.3132606Z Downloading transformers-4.44.2-py3-none-any.whl (9.5 MB) 2024-08-22T20:31:13.3133437Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/9.5 MB ? eta -:--:-- 2024-08-22T20:31:13.3134460Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 8.5/9.5 MB 255.7 MB/s eta 0:00:01 2024-08-22T20:31:13.3135559Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 9.5/9.5 MB 246.9 MB/s eta 0:00:01 2024-08-22T20:31:13.3136525Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 9.5/9.5 MB 131.8 MB/s eta 0:00:00 2024-08-22T20:31:13.3137831Z [?25hRequirement already satisfied: zstandard in /opt/conda/lib/python3.11/site-packages (from lm-eval==0.4.2->-r requirements.txt (line 17)) (0.19.0) 2024-08-22T20:31:13.3139024Z Collecting dill (from lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:31:13.3139952Z Downloading https://download.pytorch.org/whl/nightly/dill-0.3.8-py3-none-any.whl (116 kB) 2024-08-22T20:31:13.3141059Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/116.3 kB ? eta -:--:-- 2024-08-22T20:31:13.3142007Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 116.3/116.3 kB 38.6 MB/s eta 0:00:00 2024-08-22T20:31:13.3142913Z [?25hCollecting word2number (from lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:31:13.3143622Z Downloading word2number-1.1.zip (9.7 kB) 2024-08-22T20:31:13.3144180Z Preparing metadata (setup.py) ... [?25l- done 2024-08-22T20:31:13.3145419Z [?25hRequirement already satisfied: more-itertools in /opt/conda/lib/python3.11/site-packages (from lm-eval==0.4.2->-r requirements.txt (line 17)) (10.1.0) 2024-08-22T20:31:13.3147073Z Requirement already satisfied: filelock in /opt/conda/lib/python3.11/site-packages (from huggingface_hub->-r requirements.txt (line 4)) (3.13.1) 2024-08-22T20:31:13.3148301Z Collecting fsspec>=2023.5.0 (from huggingface_hub->-r requirements.txt (line 4)) 2024-08-22T20:31:13.3149318Z Downloading https://download.pytorch.org/whl/nightly/fsspec-2024.6.1-py3-none-any.whl (177 kB) 2024-08-22T20:31:13.3150346Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/177.6 kB ? eta -:--:-- 2024-08-22T20:31:13.3151285Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 177.6/177.6 kB 44.4 MB/s eta 0:00:00 2024-08-22T20:31:13.3152613Z [?25hRequirement already satisfied: packaging>=20.9 in /opt/conda/lib/python3.11/site-packages (from huggingface_hub->-r requirements.txt (line 4)) (23.0) 2024-08-22T20:31:13.3154259Z Requirement already satisfied: pyyaml>=5.1 in /opt/conda/lib/python3.11/site-packages (from huggingface_hub->-r requirements.txt (line 4)) (6.0.1) 2024-08-22T20:31:16.0756532Z Requirement already satisfied: requests in /opt/conda/lib/python3.11/site-packages (from huggingface_hub->-r requirements.txt (line 4)) (2.29.0) 2024-08-22T20:31:16.0758764Z Requirement already satisfied: tqdm>=4.42.1 in /opt/conda/lib/python3.11/site-packages (from huggingface_hub->-r requirements.txt (line 4)) (4.65.0) 2024-08-22T20:31:16.0760450Z Collecting typing-extensions>=3.7.4.3 (from huggingface_hub->-r requirements.txt (line 4)) 2024-08-22T20:31:16.0761693Z Downloading https://download.pytorch.org/whl/nightly/typing_extensions-4.12.2-py3-none-any.whl (37 kB) 2024-08-22T20:31:16.0763003Z Collecting regex>=2022.1.18 (from tiktoken->-r requirements.txt (line 10)) 2024-08-22T20:31:16.0763975Z Downloading regex-2024.7.24-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (786 kB) 2024-08-22T20:31:16.0765028Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/786.6 kB ? eta -:--:-- 2024-08-22T20:31:16.0765970Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 786.6/786.6 kB 88.4 MB/s eta 0:00:00 2024-08-22T20:31:16.0766837Z [?25hCollecting tornado>=2.0 (from snakeviz->-r requirements.txt (line 13)) 2024-08-22T20:31:16.0768242Z Downloading tornado-6.4.1-cp38-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (436 kB) 2024-08-22T20:31:16.0769392Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/436.8 kB ? eta -:--:-- 2024-08-22T20:31:16.0770342Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 436.8/436.8 kB 73.8 MB/s eta 0:00:00 2024-08-22T20:31:16.0771242Z [?25hCollecting pycryptodomex~=3.8 (from blobfile->-r requirements.txt (line 18)) 2024-08-22T20:31:16.0772540Z Downloading https://download.pytorch.org/whl/nightly/pycryptodomex-3.20.0-cp35-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB) 2024-08-22T20:31:16.0773783Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/2.1 MB ? eta -:--:-- 2024-08-22T20:31:16.0774722Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.1/2.1 MB 118.8 MB/s eta 0:00:00 2024-08-22T20:31:16.0776070Z [?25hRequirement already satisfied: urllib3<3,>=1.25.3 in /opt/conda/lib/python3.11/site-packages (from blobfile->-r requirements.txt (line 18)) (1.26.16) 2024-08-22T20:31:16.0777233Z Collecting lxml~=4.9 (from blobfile->-r requirements.txt (line 18)) 2024-08-22T20:31:16.0778547Z Downloading lxml-4.9.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (7.1 MB) 2024-08-22T20:31:16.0779622Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/7.1 MB ? eta -:--:-- 2024-08-22T20:31:16.0780608Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 7.1/7.1 MB 257.5 MB/s eta 0:00:01 2024-08-22T20:31:16.0781577Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 7.1/7.1 MB 144.6 MB/s eta 0:00:00 2024-08-22T20:31:16.0782433Z [?25hCollecting altair<6,>=4.0 (from streamlit->-r requirements.txt (line 28)) 2024-08-22T20:31:16.0783171Z Downloading altair-5.4.0-py3-none-any.whl (671 kB) 2024-08-22T20:31:16.0783947Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/671.7 kB ? eta -:--:-- 2024-08-22T20:31:16.0784876Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 671.7/671.7 kB 106.4 MB/s eta 0:00:00 2024-08-22T20:31:16.0785920Z [?25hCollecting blinker<2,>=1.0.0 (from streamlit->-r requirements.txt (line 28)) 2024-08-22T20:31:16.0786664Z Downloading blinker-1.8.2-py3-none-any.whl (9.5 kB) 2024-08-22T20:31:16.0787386Z Collecting cachetools<6,>=4.0 (from streamlit->-r requirements.txt (line 28)) 2024-08-22T20:31:16.0788124Z Downloading cachetools-5.5.0-py3-none-any.whl (9.5 kB) 2024-08-22T20:31:16.0789251Z Requirement already satisfied: click<9,>=7.0 in /opt/conda/lib/python3.11/site-packages (from streamlit->-r requirements.txt (line 28)) (8.1.7) 2024-08-22T20:31:16.0790414Z Collecting pandas<3,>=1.3.0 (from streamlit->-r requirements.txt (line 28)) 2024-08-22T20:31:16.0791636Z Downloading https://download.pytorch.org/whl/nightly/pandas-2.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.0 MB) 2024-08-22T20:31:16.0792857Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/13.0 MB ? eta -:--:-- 2024-08-22T20:31:16.0793877Z  ━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━ 4.6/13.0 MB 139.6 MB/s eta 0:00:01 2024-08-22T20:31:16.0794966Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 11.6/13.0 MB 181.6 MB/s eta 0:00:01 2024-08-22T20:31:16.0796007Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 13.0/13.0 MB 199.0 MB/s eta 0:00:01 2024-08-22T20:31:16.0796981Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.0/13.0 MB 112.4 MB/s eta 0:00:00 2024-08-22T20:31:16.0797870Z [?25hCollecting pillow<11,>=7.1.0 (from streamlit->-r requirements.txt (line 28)) 2024-08-22T20:31:16.0798998Z Downloading pillow-10.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.5 MB) 2024-08-22T20:31:16.0799996Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/4.5 MB ? eta -:--:-- 2024-08-22T20:31:16.0800919Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.5/4.5 MB 137.9 MB/s eta 0:00:00 2024-08-22T20:31:16.0801820Z [?25hCollecting protobuf<6,>=3.20 (from streamlit->-r requirements.txt (line 28)) 2024-08-22T20:31:16.0802671Z Downloading protobuf-5.27.3-cp38-abi3-manylinux2014_x86_64.whl (309 kB) 2024-08-22T20:31:16.0803568Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/309.3 kB ? eta -:--:-- 2024-08-22T20:31:16.0804506Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 309.3/309.3 kB 67.2 MB/s eta 0:00:00 2024-08-22T20:31:16.0805441Z [?25hCollecting pyarrow>=7.0 (from streamlit->-r requirements.txt (line 28)) 2024-08-22T20:31:16.0806421Z Downloading pyarrow-17.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (39.9 MB) 2024-08-22T20:31:16.0807420Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/39.9 MB ? eta -:--:-- 2024-08-22T20:31:16.0808579Z  ━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 8.3/39.9 MB 249.0 MB/s eta 0:00:01 2024-08-22T20:31:16.0809680Z  ━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━ 16.8/39.9 MB 246.9 MB/s eta 0:00:01 2024-08-22T20:31:16.0810772Z  ━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━ 25.0/39.9 MB 239.3 MB/s eta 0:00:01 2024-08-22T20:31:16.0811857Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━ 33.4/39.9 MB 244.6 MB/s eta 0:00:01 2024-08-22T20:31:16.0812929Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 39.9/39.9 MB 248.6 MB/s eta 0:00:01 2024-08-22T20:31:16.0813931Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 39.9/39.9 MB 248.6 MB/s eta 0:00:01 2024-08-22T20:31:18.0550848Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 39.9/39.9 MB 248.6 MB/s eta 0:00:01 2024-08-22T20:31:18.0552302Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 39.9/39.9 MB 248.6 MB/s eta 0:00:01 2024-08-22T20:31:18.0553574Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 39.9/39.9 MB 50.1 MB/s eta 0:00:00 2024-08-22T20:31:18.0554473Z [?25hCollecting rich<14,>=10.14.0 (from streamlit->-r requirements.txt (line 28)) 2024-08-22T20:31:18.0555209Z Downloading rich-13.7.1-py3-none-any.whl (240 kB) 2024-08-22T20:31:18.0555984Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/240.7 kB ? eta -:--:-- 2024-08-22T20:31:18.0557174Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 240.7/240.7 kB 60.3 MB/s eta 0:00:00 2024-08-22T20:31:18.0558072Z [?25hCollecting tenacity<9,>=8.1.0 (from streamlit->-r requirements.txt (line 28)) 2024-08-22T20:31:18.0558823Z Downloading tenacity-8.5.0-py3-none-any.whl (28 kB) 2024-08-22T20:31:18.0559562Z Collecting toml<2,>=0.10.1 (from streamlit->-r requirements.txt (line 28)) 2024-08-22T20:31:18.0560274Z Downloading toml-0.10.2-py2.py3-none-any.whl (16 kB) 2024-08-22T20:31:18.0561065Z Collecting gitpython!=3.1.19,<4,>=3.0.7 (from streamlit->-r requirements.txt (line 28)) 2024-08-22T20:31:18.0561855Z Downloading GitPython-3.1.43-py3-none-any.whl (207 kB) 2024-08-22T20:31:18.0562649Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/207.3 kB ? eta -:--:-- 2024-08-22T20:31:18.0563588Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 207.3/207.3 kB 59.0 MB/s eta 0:00:00 2024-08-22T20:31:18.0564502Z [?25hCollecting pydeck<1,>=0.8.0b4 (from streamlit->-r requirements.txt (line 28)) 2024-08-22T20:31:18.0565267Z Downloading pydeck-0.9.1-py2.py3-none-any.whl (6.9 MB) 2024-08-22T20:31:18.0566098Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/6.9 MB ? eta -:--:-- 2024-08-22T20:31:18.0567197Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 6.9/6.9 MB 254.9 MB/s eta 0:00:01 2024-08-22T20:31:18.0568334Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 6.9/6.9 MB 254.9 MB/s eta 0:00:01 2024-08-22T20:31:18.0569326Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 6.9/6.9 MB 254.9 MB/s eta 0:00:01 2024-08-22T20:31:18.0570279Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.9/6.9 MB 63.7 MB/s eta 0:00:00 2024-08-22T20:31:18.0571184Z [?25hCollecting watchdog<5,>=2.1.5 (from streamlit->-r requirements.txt (line 28)) 2024-08-22T20:31:18.0572037Z Downloading watchdog-4.0.2-py3-none-manylinux2014_x86_64.whl (82 kB) 2024-08-22T20:31:18.0572903Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/82.9 kB ? eta -:--:-- 2024-08-22T20:31:18.0573845Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 82.9/82.9 kB 29.7 MB/s eta 0:00:00 2024-08-22T20:31:18.0574799Z [?25hCollecting Werkzeug>=3.0.0 (from flask->-r requirements.txt (line 31)) 2024-08-22T20:31:18.0575589Z Downloading werkzeug-3.0.4-py3-none-any.whl (227 kB) 2024-08-22T20:31:18.0576515Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/227.6 kB ? eta -:--:-- 2024-08-22T20:31:18.0577446Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 227.6/227.6 kB 59.5 MB/s eta 0:00:00 2024-08-22T20:31:18.0579108Z [?25hRequirement already satisfied: Jinja2>=3.1.2 in /opt/conda/lib/python3.11/site-packages (from flask->-r requirements.txt (line 31)) (3.1.4) 2024-08-22T20:31:18.0580274Z Collecting itsdangerous>=2.1.2 (from flask->-r requirements.txt (line 31)) 2024-08-22T20:31:18.0581019Z Downloading itsdangerous-2.2.0-py3-none-any.whl (16 kB) 2024-08-22T20:31:18.0582505Z Requirement already satisfied: psutil in /opt/conda/lib/python3.11/site-packages (from accelerate>=0.21.0->lm-eval==0.4.2->-r requirements.txt (line 17)) (5.9.0) 2024-08-22T20:31:18.0583935Z Collecting safetensors>=0.3.1 (from accelerate>=0.21.0->lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:31:18.0585041Z Downloading safetensors-0.4.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (435 kB) 2024-08-22T20:31:18.0586147Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/435.4 kB ? eta -:--:-- 2024-08-22T20:31:18.0587196Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 435.4/435.4 kB 80.3 MB/s eta 0:00:00 2024-08-22T20:31:18.0588589Z [?25hRequirement already satisfied: jsonschema>=3.0 in /opt/conda/lib/python3.11/site-packages (from altair<6,>=4.0->streamlit->-r requirements.txt (line 28)) (4.19.2) 2024-08-22T20:31:18.0589937Z Collecting narwhals>=1.1.0 (from altair<6,>=4.0->streamlit->-r requirements.txt (line 28)) 2024-08-22T20:31:18.0590909Z Downloading narwhals-1.5.2-py3-none-any.whl (145 kB) 2024-08-22T20:31:18.0591708Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/145.6 kB ? eta -:--:-- 2024-08-22T20:31:18.0592634Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 145.6/145.6 kB 42.1 MB/s eta 0:00:00 2024-08-22T20:31:18.0593508Z [?25hCollecting requests (from huggingface_hub->-r requirements.txt (line 4)) 2024-08-22T20:31:18.0594236Z Downloading requests-2.32.3-py3-none-any.whl (64 kB) 2024-08-22T20:31:18.0595005Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/64.9 kB ? eta -:--:-- 2024-08-22T20:31:18.0595945Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 64.9/64.9 kB 24.7 MB/s eta 0:00:00 2024-08-22T20:31:18.0596838Z [?25hCollecting tqdm>=4.42.1 (from huggingface_hub->-r requirements.txt (line 4)) 2024-08-22T20:31:18.0597558Z Downloading tqdm-4.66.5-py3-none-any.whl (78 kB) 2024-08-22T20:31:18.0598326Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/78.4 kB ? eta -:--:-- 2024-08-22T20:31:18.0599243Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 78.4/78.4 kB 26.2 MB/s eta 0:00:00 2024-08-22T20:31:18.0600190Z [?25hCollecting xxhash (from datasets>=2.16.0->lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:31:18.0601203Z Downloading xxhash-3.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (194 kB) 2024-08-22T20:31:18.0602189Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/194.8 kB ? eta -:--:-- 2024-08-22T20:31:18.0603265Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 194.8/194.8 kB 53.8 MB/s eta 0:00:00 2024-08-22T20:31:18.0604256Z [?25hCollecting multiprocess (from datasets>=2.16.0->lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:31:18.0605462Z Downloading https://download.pytorch.org/whl/nightly/multiprocess-0.70.16-py311-none-any.whl (143 kB) 2024-08-22T20:31:18.0606527Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/143.5 kB ? eta -:--:-- 2024-08-22T20:31:18.0607457Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 143.5/143.5 kB 46.4 MB/s eta 0:00:00 2024-08-22T20:31:19.7719354Z [?25hCollecting aiohttp (from datasets>=2.16.0->lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:31:19.7720856Z Downloading aiohttp-3.10.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB) 2024-08-22T20:31:19.7722010Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/1.3 MB ? eta -:--:-- 2024-08-22T20:31:19.7722938Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 99.3 MB/s eta 0:00:00 2024-08-22T20:31:19.7723970Z [?25hCollecting gitdb<5,>=4.0.1 (from gitpython!=3.1.19,<4,>=3.0.7->streamlit->-r requirements.txt (line 28)) 2024-08-22T20:31:19.7725088Z Downloading gitdb-4.0.11-py3-none-any.whl (62 kB) 2024-08-22T20:31:19.7725994Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/62.7 kB ? eta -:--:-- 2024-08-22T20:31:19.7727006Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 62.7/62.7 kB 25.3 MB/s eta 0:00:00 2024-08-22T20:31:19.7728633Z [?25hRequirement already satisfied: MarkupSafe>=2.0 in /opt/conda/lib/python3.11/site-packages (from Jinja2>=3.1.2->flask->-r requirements.txt (line 31)) (2.1.3) 2024-08-22T20:31:19.7730501Z Requirement already satisfied: python-dateutil>=2.8.2 in /opt/conda/lib/python3.11/site-packages (from pandas<3,>=1.3.0->streamlit->-r requirements.txt (line 28)) (2.9.0.post0) 2024-08-22T20:31:19.7732323Z Requirement already satisfied: pytz>=2020.1 in /opt/conda/lib/python3.11/site-packages (from pandas<3,>=1.3.0->streamlit->-r requirements.txt (line 28)) (2024.1) 2024-08-22T20:31:19.7733673Z Collecting tzdata>=2022.7 (from pandas<3,>=1.3.0->streamlit->-r requirements.txt (line 28)) 2024-08-22T20:31:19.7734736Z Downloading https://download.pytorch.org/whl/nightly/tzdata-2024.1-py2.py3-none-any.whl (345 kB) 2024-08-22T20:31:19.7735809Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/345.4 kB ? eta -:--:-- 2024-08-22T20:31:19.7736827Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 345.4/345.4 kB 74.3 MB/s eta 0:00:00 2024-08-22T20:31:19.7738261Z [?25hRequirement already satisfied: charset-normalizer<4,>=2 in /opt/conda/lib/python3.11/site-packages (from requests->huggingface_hub->-r requirements.txt (line 4)) (2.0.4) 2024-08-22T20:31:19.7740239Z Requirement already satisfied: idna<4,>=2.5 in /opt/conda/lib/python3.11/site-packages (from requests->huggingface_hub->-r requirements.txt (line 4)) (3.4) 2024-08-22T20:31:19.7741992Z Requirement already satisfied: certifi>=2017.4.17 in /opt/conda/lib/python3.11/site-packages (from requests->huggingface_hub->-r requirements.txt (line 4)) (2024.7.4) 2024-08-22T20:31:19.7743410Z Collecting markdown-it-py>=2.2.0 (from rich<14,>=10.14.0->streamlit->-r requirements.txt (line 28)) 2024-08-22T20:31:19.7744272Z Downloading markdown_it_py-3.0.0-py3-none-any.whl (87 kB) 2024-08-22T20:31:19.7745069Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/87.5 kB ? eta -:--:-- 2024-08-22T20:31:19.7746055Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 87.5/87.5 kB 29.9 MB/s eta 0:00:00 2024-08-22T20:31:19.7747230Z [?25hCollecting pygments<3.0.0,>=2.13.0 (from rich<14,>=10.14.0->streamlit->-r requirements.txt (line 28)) 2024-08-22T20:31:19.7748103Z Downloading pygments-2.18.0-py3-none-any.whl (1.2 MB) 2024-08-22T20:31:19.7748888Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/1.2 MB ? eta -:--:-- 2024-08-22T20:31:19.7749819Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 106.3 MB/s eta 0:00:00 2024-08-22T20:31:19.7750791Z [?25hCollecting absl-py (from rouge-score>=0.0.4->lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:31:19.7751709Z Downloading absl_py-2.1.0-py3-none-any.whl (133 kB) 2024-08-22T20:31:19.7752492Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/133.7 kB ? eta -:--:-- 2024-08-22T20:31:19.7753436Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 133.7/133.7 kB 42.4 MB/s eta 0:00:00 2024-08-22T20:31:19.7754422Z [?25hCollecting nltk (from rouge-score>=0.0.4->lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:31:19.7755206Z Downloading nltk-3.9.1-py3-none-any.whl (1.5 MB) 2024-08-22T20:31:19.7756025Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/1.5 MB ? eta -:--:-- 2024-08-22T20:31:19.7756942Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.5/1.5 MB 105.1 MB/s eta 0:00:00 2024-08-22T20:31:19.7758457Z [?25hRequirement already satisfied: six>=1.14.0 in /opt/conda/lib/python3.11/site-packages (from rouge-score>=0.0.4->lm-eval==0.4.2->-r requirements.txt (line 17)) (1.16.0) 2024-08-22T20:31:19.7759877Z Collecting portalocker (from sacrebleu>=1.5.0->lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:31:19.7760709Z Downloading portalocker-2.10.1-py3-none-any.whl (18 kB) 2024-08-22T20:31:19.7761575Z Collecting tabulate>=0.8.9 (from sacrebleu>=1.5.0->lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:31:19.7762479Z Downloading tabulate-0.9.0-py3-none-any.whl (35 kB) 2024-08-22T20:31:19.7763288Z Collecting colorama (from sacrebleu>=1.5.0->lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:31:19.7764354Z Downloading https://download.pytorch.org/whl/nightly/colorama-0.4.6-py2.py3-none-any.whl (25 kB) 2024-08-22T20:31:19.7765472Z Collecting scipy>=1.6.0 (from scikit-learn>=0.24.1->lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:31:19.7766552Z Downloading scipy-1.14.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (41.2 MB) 2024-08-22T20:31:19.7767558Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/41.2 MB ? eta -:--:-- 2024-08-22T20:31:19.7768674Z  ━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 8.4/41.2 MB 251.4 MB/s eta 0:00:01 2024-08-22T20:31:19.7769769Z  ━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━ 16.7/41.2 MB 242.7 MB/s eta 0:00:01 2024-08-22T20:31:19.7770879Z  ━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 24.9/41.2 MB 237.1 MB/s eta 0:00:01 2024-08-22T20:31:19.7771972Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 33.1/41.2 MB 237.4 MB/s eta 0:00:01 2024-08-22T20:31:19.7773041Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 41.2/41.2 MB 242.5 MB/s eta 0:00:01 2024-08-22T20:31:19.7774045Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 41.2/41.2 MB 242.5 MB/s eta 0:00:01 2024-08-22T20:31:19.7775053Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 41.2/41.2 MB 242.5 MB/s eta 0:00:01 2024-08-22T20:31:19.7776049Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 41.2/41.2 MB 242.5 MB/s eta 0:00:01 2024-08-22T20:31:19.7777058Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 41.2/41.2 MB 242.5 MB/s eta 0:00:01 2024-08-22T20:31:19.7778286Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 41.2/41.2 MB 242.5 MB/s eta 0:00:01 2024-08-22T20:31:21.0412109Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 41.2/41.2 MB 40.2 MB/s eta 0:00:00 2024-08-22T20:31:21.0413801Z [?25hCollecting joblib>=1.2.0 (from scikit-learn>=0.24.1->lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:31:21.0414854Z Downloading joblib-1.4.2-py3-none-any.whl (301 kB) 2024-08-22T20:31:21.0415974Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/301.8 kB ? eta -:--:-- 2024-08-22T20:31:21.0416930Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 301.8/301.8 kB 56.5 MB/s eta 0:00:00 2024-08-22T20:31:21.0417998Z [?25hCollecting threadpoolctl>=3.1.0 (from scikit-learn>=0.24.1->lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:31:21.0419103Z Downloading threadpoolctl-3.5.0-py3-none-any.whl (18 kB) 2024-08-22T20:31:21.0419896Z Collecting sympy (from torch>=1.8->lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:31:21.0420632Z Downloading sympy-1.13.2-py3-none-any.whl (6.2 MB) 2024-08-22T20:31:21.0421416Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/6.2 MB ? eta -:--:-- 2024-08-22T20:31:21.0422379Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 6.2/6.2 MB 249.2 MB/s eta 0:00:01 2024-08-22T20:31:21.0423347Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.2/6.2 MB 129.1 MB/s eta 0:00:00 2024-08-22T20:31:21.0424274Z [?25hCollecting networkx (from torch>=1.8->lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:31:21.0425295Z Downloading https://download.pytorch.org/whl/nightly/networkx-3.3-py3-none-any.whl (1.7 MB) 2024-08-22T20:31:21.0426298Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/1.7 MB ? eta -:--:-- 2024-08-22T20:31:21.0427219Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.7/1.7 MB 99.1 MB/s eta 0:00:00 2024-08-22T20:31:21.0428293Z [?25hCollecting nvidia-cuda-nvrtc-cu12==12.1.105 (from torch>=1.8->lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:31:21.0429676Z Downloading https://download.pytorch.org/whl/nightly/cu121/nvidia_cuda_nvrtc_cu12-12.1.105-py3-none-manylinux1_x86_64.whl (23.7 MB) 2024-08-22T20:31:21.0430869Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/23.7 MB ? eta -:--:-- 2024-08-22T20:31:21.0431879Z  ━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━ 8.2/23.7 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:21.0432979Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━ 16.4/23.7 MB 238.7 MB/s eta 0:00:01 2024-08-22T20:31:21.0434037Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 23.7/23.7 MB 244.9 MB/s eta 0:00:01 2024-08-22T20:31:21.0435045Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 23.7/23.7 MB 244.9 MB/s eta 0:00:01 2024-08-22T20:31:21.0436148Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 23.7/23.7 MB 244.9 MB/s eta 0:00:01 2024-08-22T20:31:21.0437182Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 23.7/23.7 MB 244.9 MB/s eta 0:00:01 2024-08-22T20:31:21.0438167Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 23.7/23.7 MB 58.0 MB/s eta 0:00:00 2024-08-22T20:31:21.0439270Z [?25hCollecting nvidia-cuda-runtime-cu12==12.1.105 (from torch>=1.8->lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:31:21.0440760Z Downloading https://download.pytorch.org/whl/nightly/cu121/nvidia_cuda_runtime_cu12-12.1.105-py3-none-manylinux1_x86_64.whl (823 kB) 2024-08-22T20:31:21.0441960Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/823.6 kB ? eta -:--:-- 2024-08-22T20:31:21.0442895Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 823.6/823.6 kB 90.3 MB/s eta 0:00:00 2024-08-22T20:31:21.0443992Z [?25hCollecting nvidia-cuda-cupti-cu12==12.1.105 (from torch>=1.8->lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:31:21.0445367Z Downloading https://download.pytorch.org/whl/nightly/cu121/nvidia_cuda_cupti_cu12-12.1.105-py3-none-manylinux1_x86_64.whl (14.1 MB) 2024-08-22T20:31:21.0446572Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/14.1 MB ? eta -:--:-- 2024-08-22T20:31:21.0447600Z  ━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━ 8.1/14.1 MB 242.7 MB/s eta 0:00:01 2024-08-22T20:31:21.0448841Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 14.1/14.1 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:21.0449853Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 14.1/14.1 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:21.0450834Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 14.1/14.1 MB 104.7 MB/s eta 0:00:00 2024-08-22T20:31:21.0451881Z [?25hCollecting nvidia-cudnn-cu12==9.1.0.70 (from torch>=1.8->lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:31:21.0453223Z Downloading https://download.pytorch.org/whl/nightly/cu121/nvidia_cudnn_cu12-9.1.0.70-py3-none-manylinux2014_x86_64.whl (664.8 MB) 2024-08-22T20:31:21.0454421Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/664.8 MB ? eta -:--:-- 2024-08-22T20:31:21.0455350Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 8.1/664.8 MB 242.6 MB/s eta 0:00:03 2024-08-22T20:31:21.0456368Z  ╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 16.4/664.8 MB 240.6 MB/s eta 0:00:03 2024-08-22T20:31:21.0457438Z  ━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 24.6/664.8 MB 238.4 MB/s eta 0:00:03 2024-08-22T20:31:21.0458636Z  ━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 32.8/664.8 MB 237.0 MB/s eta 0:00:03 2024-08-22T20:31:21.0459739Z  ━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 40.9/664.8 MB 235.4 MB/s eta 0:00:03 2024-08-22T20:31:21.0460833Z  ━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 49.0/664.8 MB 233.9 MB/s eta 0:00:03 2024-08-22T20:31:21.0461936Z  ━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 57.1/664.8 MB 234.2 MB/s eta 0:00:03 2024-08-22T20:31:22.3628155Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 65.3/664.8 MB 238.5 MB/s eta 0:00:03 2024-08-22T20:31:22.3629829Z  ━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 73.5/664.8 MB 238.9 MB/s eta 0:00:03 2024-08-22T20:31:22.3631373Z  ━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 81.7/664.8 MB 237.3 MB/s eta 0:00:03 2024-08-22T20:31:22.3632540Z  ━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 90.0/664.8 MB 238.6 MB/s eta 0:00:03 2024-08-22T20:31:22.3633789Z  ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 98.2/664.8 MB 238.6 MB/s eta 0:00:03 2024-08-22T20:31:22.3635155Z  ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 106.5/664.8 MB 238.6 MB/s eta 0:00:03 2024-08-22T20:31:22.3636313Z  ━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 114.6/664.8 MB 237.5 MB/s eta 0:00:03 2024-08-22T20:31:22.3637463Z  ━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 122.8/664.8 MB 237.9 MB/s eta 0:00:03 2024-08-22T20:31:22.3638819Z  ━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 131.1/664.8 MB 237.8 MB/s eta 0:00:03 2024-08-22T20:31:22.3639990Z  ━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 139.3/664.8 MB 237.8 MB/s eta 0:00:03 2024-08-22T20:31:22.3641092Z  ━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 147.5/664.8 MB 237.3 MB/s eta 0:00:03 2024-08-22T20:31:22.3642180Z  ━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 155.7/664.8 MB 237.2 MB/s eta 0:00:03 2024-08-22T20:31:22.3643512Z  ━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━ 163.8/664.8 MB 236.0 MB/s eta 0:00:03 2024-08-22T20:31:22.3645041Z  ━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━ 172.0/664.8 MB 236.4 MB/s eta 0:00:03 2024-08-22T20:31:22.3646385Z  ━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━ 180.2/664.8 MB 239.7 MB/s eta 0:00:03 2024-08-22T20:31:22.3647587Z  ━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━ 188.5/664.8 MB 239.7 MB/s eta 0:00:02 2024-08-22T20:31:22.3649043Z  ━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━ 196.6/664.8 MB 237.2 MB/s eta 0:00:02 2024-08-22T20:31:22.3650334Z  ━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━ 204.9/664.8 MB 238.8 MB/s eta 0:00:02 2024-08-22T20:31:22.3651733Z  ━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━ 213.1/664.8 MB 239.0 MB/s eta 0:00:02 2024-08-22T20:31:22.3652819Z  ━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━ 221.3/664.8 MB 238.7 MB/s eta 0:00:02 2024-08-22T20:31:22.3653971Z  ━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━ 229.6/664.8 MB 238.0 MB/s eta 0:00:02 2024-08-22T20:31:22.3655065Z  ━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━ 237.8/664.8 MB 237.3 MB/s eta 0:00:02 2024-08-22T20:31:22.3656170Z  ━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━ 245.9/664.8 MB 236.2 MB/s eta 0:00:02 2024-08-22T20:31:22.3657586Z  ━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━ 254.2/664.8 MB 239.5 MB/s eta 0:00:02 2024-08-22T20:31:22.3659029Z  ━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━ 262.4/664.8 MB 238.7 MB/s eta 0:00:02 2024-08-22T20:31:22.3660299Z  ━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━ 270.6/664.8 MB 237.1 MB/s eta 0:00:02 2024-08-22T20:31:22.3661619Z  ━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━ 278.8/664.8 MB 237.8 MB/s eta 0:00:02 2024-08-22T20:31:22.3662910Z  ━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━ 287.0/664.8 MB 238.7 MB/s eta 0:00:02 2024-08-22T20:31:22.3664007Z  ━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 295.3/664.8 MB 239.3 MB/s eta 0:00:02 2024-08-22T20:31:22.3665221Z  ━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━ 303.5/664.8 MB 238.8 MB/s eta 0:00:02 2024-08-22T20:31:22.3666612Z  ━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━ 311.7/664.8 MB 237.9 MB/s eta 0:00:02 2024-08-22T20:31:22.3667891Z  ━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 319.9/664.8 MB 237.6 MB/s eta 0:00:02 2024-08-22T20:31:22.3669024Z  ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 328.1/664.8 MB 239.4 MB/s eta 0:00:02 2024-08-22T20:31:22.3670136Z  ━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━ 336.4/664.8 MB 239.0 MB/s eta 0:00:02 2024-08-22T20:31:22.3671243Z  ━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━ 344.6/664.8 MB 238.9 MB/s eta 0:00:02 2024-08-22T20:31:22.3672358Z  ━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━ 352.8/664.8 MB 237.7 MB/s eta 0:00:02 2024-08-22T20:31:22.3673437Z  ━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━ 361.1/664.8 MB 240.0 MB/s eta 0:00:02 2024-08-22T20:31:22.3674784Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━ 369.3/664.8 MB 239.8 MB/s eta 0:00:02 2024-08-22T20:31:24.0548634Z  ━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━ 377.5/664.8 MB 238.0 MB/s eta 0:00:02 2024-08-22T20:31:24.0550162Z  ━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━ 385.7/664.8 MB 237.5 MB/s eta 0:00:02 2024-08-22T20:31:24.0551467Z  ━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 393.9/664.8 MB 237.2 MB/s eta 0:00:02 2024-08-22T20:31:24.0552598Z  ━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━ 402.1/664.8 MB 236.8 MB/s eta 0:00:02 2024-08-22T20:31:24.0553733Z  ━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━ 410.3/664.8 MB 238.7 MB/s eta 0:00:02 2024-08-22T20:31:24.0554853Z  ━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━ 418.6/664.8 MB 240.5 MB/s eta 0:00:02 2024-08-22T20:31:24.0555941Z  ━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━ 426.9/664.8 MB 241.1 MB/s eta 0:00:01 2024-08-22T20:31:24.0557226Z  ━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━ 435.1/664.8 MB 238.3 MB/s eta 0:00:01 2024-08-22T20:31:24.0558329Z  ━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━ 443.4/664.8 MB 239.9 MB/s eta 0:00:01 2024-08-22T20:31:24.0559411Z  ━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━ 451.6/664.8 MB 239.2 MB/s eta 0:00:01 2024-08-22T20:31:24.0560486Z  ━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━ 459.9/664.8 MB 238.5 MB/s eta 0:00:01 2024-08-22T20:31:24.0561621Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━ 468.1/664.8 MB 237.6 MB/s eta 0:00:01 2024-08-22T20:31:24.0562743Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━ 476.3/664.8 MB 238.4 MB/s eta 0:00:01 2024-08-22T20:31:24.0563895Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━ 484.5/664.8 MB 238.6 MB/s eta 0:00:01 2024-08-22T20:31:24.0564971Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━ 492.7/664.8 MB 238.1 MB/s eta 0:00:01 2024-08-22T20:31:24.0566052Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━ 501.0/664.8 MB 238.5 MB/s eta 0:00:01 2024-08-22T20:31:24.0567165Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━ 509.2/664.8 MB 238.9 MB/s eta 0:00:01 2024-08-22T20:31:24.0568620Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━ 517.5/664.8 MB 238.9 MB/s eta 0:00:01 2024-08-22T20:31:24.0569692Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 525.7/664.8 MB 239.3 MB/s eta 0:00:01 2024-08-22T20:31:24.0570804Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━ 533.9/664.8 MB 238.5 MB/s eta 0:00:01 2024-08-22T20:31:24.0571873Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━ 542.2/664.8 MB 238.6 MB/s eta 0:00:01 2024-08-22T20:31:24.0572950Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━ 550.5/664.8 MB 239.7 MB/s eta 0:00:01 2024-08-22T20:31:24.0574088Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━ 558.8/664.8 MB 241.0 MB/s eta 0:00:01 2024-08-22T20:31:24.0575242Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━ 567.0/664.8 MB 238.5 MB/s eta 0:00:01 2024-08-22T20:31:24.0576314Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━ 575.1/664.8 MB 235.8 MB/s eta 0:00:01 2024-08-22T20:31:24.0577560Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━ 583.2/664.8 MB 235.6 MB/s eta 0:00:01 2024-08-22T20:31:24.0579037Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 591.5/664.8 MB 237.7 MB/s eta 0:00:01 2024-08-22T20:31:24.0580119Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 599.7/664.8 MB 238.7 MB/s eta 0:00:01 2024-08-22T20:31:24.0581194Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━ 607.9/664.8 MB 238.7 MB/s eta 0:00:01 2024-08-22T20:31:24.0582463Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━ 616.2/664.8 MB 239.8 MB/s eta 0:00:01 2024-08-22T20:31:24.0583527Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━ 624.4/664.8 MB 239.0 MB/s eta 0:00:01 2024-08-22T20:31:24.0584614Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 632.5/664.8 MB 236.1 MB/s eta 0:00:01 2024-08-22T20:31:24.0585680Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━ 640.6/664.8 MB 233.8 MB/s eta 0:00:01 2024-08-22T20:31:24.0586729Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺ 648.6/664.8 MB 233.3 MB/s eta 0:00:01 2024-08-22T20:31:24.0587743Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 656.8/664.8 MB 236.4 MB/s eta 0:00:01 2024-08-22T20:31:24.0588770Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:24.0589774Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:24.0590784Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:25.4859915Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:25.4861178Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:25.4862318Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:25.4863331Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:25.4864359Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:25.4865354Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:25.4866543Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:25.4867546Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:25.4868552Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:25.4869547Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:25.4870661Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:25.4871681Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:25.4872693Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:25.4873684Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:25.4874665Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:25.4875652Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:25.4876664Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:25.4877978Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:25.4879124Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:25.4880286Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:25.4881297Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:25.4882296Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:25.4883281Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:25.4884302Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:25.4885296Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:25.4886306Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:25.4887292Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:25.4888422Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:25.4889410Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:25.4890533Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:25.4891519Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:25.4892514Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:25.4893523Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:25.4894511Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:25.4895498Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:25.4896489Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:25.4897498Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:25.4898480Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:25.4899573Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:25.4900565Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:26.8699419Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:26.8700482Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:26.8701572Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:26.8702671Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:26.8703673Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:26.8704682Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:26.8705673Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:26.8706676Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:26.8707688Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:26.8708975Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:26.8709967Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:26.8710990Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:26.8711982Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:26.8712966Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:26.8713957Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:26.8714966Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:26.8715948Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:26.8717081Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:26.8718129Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:26.8719116Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:26.8720118Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:26.8721112Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:26.8722212Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:26.8723209Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:26.8724217Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:26.8725199Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:26.8726192Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:26.8727181Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:26.8728341Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:26.8729326Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:26.8730424Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:26.8731427Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:26.8732419Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:26.8733402Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:26.8734412Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:26.8735403Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:26.8736386Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:26.8737390Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:26.8738384Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:26.8739376Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:28.2523910Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:28.2525311Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:28.2526329Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:28.2527357Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:28.2528465Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:28.2529453Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:28.2530449Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:28.2531454Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:28.2532441Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:28.2533416Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:28.2534551Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:28.2535549Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:28.2536525Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:28.2537507Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:28.2538561Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:28.2539547Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:28.2540544Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:28.2541524Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:28.2542508Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:28.2543547Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:28.2545042Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:28.2546034Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:28.2547036Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:28.2548047Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:28.2549051Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:28.2550043Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:28.2551027Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:28.2552025Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:28.2553000Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:28.2554098Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:28.2555089Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:28.2556062Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:28.2557044Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:28.2558133Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:28.2559166Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:28.2560159Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:28.2561142Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:28.2562130Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:28.2563114Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:28.2564092Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:30.0944999Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:30.0946262Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:30.0947328Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:30.0948383Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:30.0949386Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:30.0950397Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:30.0951433Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:30.0952437Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:30.0953709Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:30.0954720Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:30.0955718Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:30.0956700Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:30.0957875Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:30.0958923Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:30.0959912Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:30.0960910Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:30.0961906Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:30.0962895Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:30.0963882Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:30.0964879Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:30.0965879Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:30.0966973Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 664.8/664.8 MB 245.5 MB/s eta 0:00:01 2024-08-22T20:31:30.0967980Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 664.8/664.8 MB 1.9 MB/s eta 0:00:00 2024-08-22T20:31:30.0969171Z [?25hCollecting nvidia-cublas-cu12==12.1.3.1 (from torch>=1.8->lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:31:30.0970540Z Downloading https://download.pytorch.org/whl/nightly/cu121/nvidia_cublas_cu12-12.1.3.1-py3-none-manylinux1_x86_64.whl (410.6 MB) 2024-08-22T20:31:30.0971748Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/410.6 MB ? eta -:--:-- 2024-08-22T20:31:30.0972711Z  ╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 8.0/410.6 MB 240.6 MB/s eta 0:00:02 2024-08-22T20:31:30.0973777Z  ━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 16.3/410.6 MB 238.5 MB/s eta 0:00:02 2024-08-22T20:31:30.0974895Z  ━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 24.5/410.6 MB 239.1 MB/s eta 0:00:02 2024-08-22T20:31:30.0975996Z  ━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 32.7/410.6 MB 237.1 MB/s eta 0:00:02 2024-08-22T20:31:30.0977081Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 40.9/410.6 MB 238.5 MB/s eta 0:00:02 2024-08-22T20:31:30.0978569Z  ━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 49.1/410.6 MB 238.4 MB/s eta 0:00:02 2024-08-22T20:31:30.0979843Z  ━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 57.2/410.6 MB 237.7 MB/s eta 0:00:02 2024-08-22T20:31:30.0980941Z  ━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 65.4/410.6 MB 237.5 MB/s eta 0:00:02 2024-08-22T20:31:30.0982050Z  ━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 73.6/410.6 MB 236.2 MB/s eta 0:00:02 2024-08-22T20:31:30.0983135Z  ━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 81.5/410.6 MB 232.0 MB/s eta 0:00:02 2024-08-22T20:31:30.0984220Z  ━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 89.2/410.6 MB 224.6 MB/s eta 0:00:02 2024-08-22T20:31:30.0985311Z  ━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 96.7/410.6 MB 218.6 MB/s eta 0:00:02 2024-08-22T20:31:30.0986418Z  ━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━ 104.1/410.6 MB 214.4 MB/s eta 0:00:02 2024-08-22T20:31:30.0987510Z  ━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━ 111.8/410.6 MB 222.8 MB/s eta 0:00:02 2024-08-22T20:31:31.6391175Z  ━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━ 119.6/410.6 MB 225.9 MB/s eta 0:00:02 2024-08-22T20:31:31.6392782Z  ━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━ 127.5/410.6 MB 228.7 MB/s eta 0:00:02 2024-08-22T20:31:31.6394263Z  ━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━ 135.7/410.6 MB 237.0 MB/s eta 0:00:02 2024-08-22T20:31:31.6395747Z  ━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━ 143.8/410.6 MB 236.4 MB/s eta 0:00:02 2024-08-22T20:31:31.6397266Z  ━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━ 152.0/410.6 MB 237.3 MB/s eta 0:00:02 2024-08-22T20:31:31.6398793Z  ━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━ 160.2/410.6 MB 236.3 MB/s eta 0:00:02 2024-08-22T20:31:31.6400300Z  ━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━ 168.3/410.6 MB 235.0 MB/s eta 0:00:02 2024-08-22T20:31:31.6401769Z  ━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━ 176.5/410.6 MB 235.9 MB/s eta 0:00:01 2024-08-22T20:31:31.6403236Z  ━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━ 184.7/410.6 MB 240.2 MB/s eta 0:00:01 2024-08-22T20:31:31.6404708Z  ━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━ 193.0/410.6 MB 239.1 MB/s eta 0:00:01 2024-08-22T20:31:31.6406432Z  ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 201.3/410.6 MB 241.0 MB/s eta 0:00:01 2024-08-22T20:31:31.6407897Z  ━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━ 209.6/410.6 MB 239.9 MB/s eta 0:00:01 2024-08-22T20:31:31.6409543Z  ━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━ 217.8/410.6 MB 238.8 MB/s eta 0:00:01 2024-08-22T20:31:31.6411006Z  ━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━ 226.0/410.6 MB 237.9 MB/s eta 0:00:01 2024-08-22T20:31:31.6412469Z  ━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━ 234.3/410.6 MB 239.4 MB/s eta 0:00:01 2024-08-22T20:31:31.6413915Z  ━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 242.6/410.6 MB 240.1 MB/s eta 0:00:01 2024-08-22T20:31:31.6415404Z  ━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━ 250.8/410.6 MB 239.1 MB/s eta 0:00:01 2024-08-22T20:31:31.6416863Z  ━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━ 258.9/410.6 MB 234.6 MB/s eta 0:00:01 2024-08-22T20:31:31.6418447Z  ━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━ 266.9/410.6 MB 232.7 MB/s eta 0:00:01 2024-08-22T20:31:31.6419908Z  ━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━ 275.0/410.6 MB 235.1 MB/s eta 0:00:01 2024-08-22T20:31:31.6421355Z  ━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━ 283.1/410.6 MB 235.9 MB/s eta 0:00:01 2024-08-22T20:31:31.6422802Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━ 291.3/410.6 MB 237.7 MB/s eta 0:00:01 2024-08-22T20:31:31.6424278Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━ 299.5/410.6 MB 237.7 MB/s eta 0:00:01 2024-08-22T20:31:31.6425722Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━ 307.7/410.6 MB 236.5 MB/s eta 0:00:01 2024-08-22T20:31:31.6427203Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━ 315.9/410.6 MB 237.2 MB/s eta 0:00:01 2024-08-22T20:31:31.6428654Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 323.9/410.6 MB 235.1 MB/s eta 0:00:01 2024-08-22T20:31:31.6430090Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━ 332.1/410.6 MB 234.8 MB/s eta 0:00:01 2024-08-22T20:31:31.6431533Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━ 340.2/410.6 MB 235.4 MB/s eta 0:00:01 2024-08-22T20:31:31.6433129Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━ 348.2/410.6 MB 233.5 MB/s eta 0:00:01 2024-08-22T20:31:31.6434583Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━ 356.1/410.6 MB 228.9 MB/s eta 0:00:01 2024-08-22T20:31:31.6436060Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 364.1/410.6 MB 231.7 MB/s eta 0:00:01 2024-08-22T20:31:31.6437495Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━ 372.1/410.6 MB 230.8 MB/s eta 0:00:01 2024-08-22T20:31:31.6438950Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━ 380.1/410.6 MB 232.3 MB/s eta 0:00:01 2024-08-22T20:31:31.6440400Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━ 388.3/410.6 MB 236.5 MB/s eta 0:00:01 2024-08-22T20:31:31.6441876Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━ 396.6/410.6 MB 240.0 MB/s eta 0:00:01 2024-08-22T20:31:31.6443279Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺ 404.8/410.6 MB 239.4 MB/s eta 0:00:01 2024-08-22T20:31:31.6444637Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:31.6446130Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:33.0587671Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:33.0589029Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:33.0590349Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:33.0591908Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:33.0592909Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:33.0593939Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:33.0594933Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:33.0595917Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:33.0596905Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:33.0597923Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:33.0598916Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:33.0599898Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:33.0600920Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:33.0601919Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:33.0602913Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:33.0603901Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:33.0604912Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:33.0605907Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:33.0607056Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:33.0608129Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:33.0609191Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:33.0610193Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:33.0611285Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:33.0612274Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:33.0613287Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:33.0614275Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:33.0615258Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:33.0616246Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:33.0617239Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:33.0618260Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:33.0619243Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:33.0620323Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:33.0621318Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:33.0622308Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:33.0623292Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:33.0624306Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:33.0625303Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:33.0626311Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:33.0627295Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:33.0628289Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:34.7218846Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:34.7220982Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:34.7222611Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:34.7224216Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:34.7225849Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:34.7227480Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:34.7229128Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:34.7230721Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:34.7232291Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:34.7233852Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:34.7235653Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:34.7237222Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:34.7238772Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:34.7240365Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:34.7242092Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:34.7243633Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:34.7245159Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:34.7246696Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:34.7248379Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:34.7249943Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:34.7251490Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:34.7253048Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:34.7254590Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:34.7256130Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:34.7257670Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:34.7259211Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:34.7260707Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:34.7262261Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:34.7263798Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:34.7265581Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:34.7267128Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:34.7268653Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:34.7270262Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:34.7271806Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:34.7273517Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:34.7275061Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 410.6/410.6 MB 246.0 MB/s eta 0:00:01 2024-08-22T20:31:34.7276590Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 410.6/410.6 MB 3.4 MB/s eta 0:00:00 2024-08-22T20:31:34.7278466Z [?25hCollecting nvidia-cufft-cu12==11.0.2.54 (from torch>=1.8->lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:31:34.7280561Z Downloading https://download.pytorch.org/whl/nightly/cu121/nvidia_cufft_cu12-11.0.2.54-py3-none-manylinux1_x86_64.whl (121.6 MB) 2024-08-22T20:31:34.7282348Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/121.6 MB ? eta -:--:-- 2024-08-22T20:31:36.1493787Z  ━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 8.2/121.6 MB 246.1 MB/s eta 0:00:01 2024-08-22T20:31:36.1495353Z  ━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 16.5/121.6 MB 240.8 MB/s eta 0:00:01 2024-08-22T20:31:36.1496622Z  ━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 24.2/121.6 MB 227.1 MB/s eta 0:00:01 2024-08-22T20:31:36.1497843Z  ━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━ 32.2/121.6 MB 232.3 MB/s eta 0:00:01 2024-08-22T20:31:36.1499059Z  ━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━ 40.3/121.6 MB 235.1 MB/s eta 0:00:01 2024-08-22T20:31:36.1500505Z  ━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━ 48.5/121.6 MB 236.5 MB/s eta 0:00:01 2024-08-22T20:31:36.1501623Z  ━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━ 56.7/121.6 MB 235.9 MB/s eta 0:00:01 2024-08-22T20:31:36.1502711Z  ━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━ 64.8/121.6 MB 235.9 MB/s eta 0:00:01 2024-08-22T20:31:36.1503812Z  ━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 73.1/121.6 MB 238.4 MB/s eta 0:00:01 2024-08-22T20:31:36.1505178Z  ━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━ 81.2/121.6 MB 237.7 MB/s eta 0:00:01 2024-08-22T20:31:36.1506273Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━ 89.4/121.6 MB 236.8 MB/s eta 0:00:01 2024-08-22T20:31:36.1507353Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 97.5/121.6 MB 236.4 MB/s eta 0:00:01 2024-08-22T20:31:36.1508434Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━ 105.7/121.6 MB 236.9 MB/s eta 0:00:01 2024-08-22T20:31:36.1509736Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━ 113.9/121.6 MB 236.5 MB/s eta 0:00:01 2024-08-22T20:31:36.1510785Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 121.6/121.6 MB 243.9 MB/s eta 0:00:01 2024-08-22T20:31:36.1511818Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 121.6/121.6 MB 243.9 MB/s eta 0:00:01 2024-08-22T20:31:36.1512822Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 121.6/121.6 MB 243.9 MB/s eta 0:00:01 2024-08-22T20:31:36.1513812Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 121.6/121.6 MB 243.9 MB/s eta 0:00:01 2024-08-22T20:31:36.1514811Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 121.6/121.6 MB 243.9 MB/s eta 0:00:01 2024-08-22T20:31:36.1515843Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 121.6/121.6 MB 243.9 MB/s eta 0:00:01 2024-08-22T20:31:36.1516850Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 121.6/121.6 MB 243.9 MB/s eta 0:00:01 2024-08-22T20:31:36.1517942Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 121.6/121.6 MB 243.9 MB/s eta 0:00:01 2024-08-22T20:31:36.1518964Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 121.6/121.6 MB 243.9 MB/s eta 0:00:01 2024-08-22T20:31:36.1519968Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 121.6/121.6 MB 243.9 MB/s eta 0:00:01 2024-08-22T20:31:36.1520964Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 121.6/121.6 MB 243.9 MB/s eta 0:00:01 2024-08-22T20:31:36.1521969Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 121.6/121.6 MB 243.9 MB/s eta 0:00:01 2024-08-22T20:31:36.1522978Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 121.6/121.6 MB 243.9 MB/s eta 0:00:01 2024-08-22T20:31:36.1523979Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 121.6/121.6 MB 243.9 MB/s eta 0:00:01 2024-08-22T20:31:36.1525004Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 121.6/121.6 MB 243.9 MB/s eta 0:00:01 2024-08-22T20:31:36.1525994Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 121.6/121.6 MB 243.9 MB/s eta 0:00:01 2024-08-22T20:31:36.1526998Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 121.6/121.6 MB 243.9 MB/s eta 0:00:01 2024-08-22T20:31:36.1527999Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 121.6/121.6 MB 243.9 MB/s eta 0:00:01 2024-08-22T20:31:36.1529203Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 121.6/121.6 MB 243.9 MB/s eta 0:00:01 2024-08-22T20:31:36.1530195Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 121.6/121.6 MB 243.9 MB/s eta 0:00:01 2024-08-22T20:31:36.1531220Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 121.6/121.6 MB 243.9 MB/s eta 0:00:01 2024-08-22T20:31:36.1532221Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 121.6/121.6 MB 243.9 MB/s eta 0:00:01 2024-08-22T20:31:36.1533210Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 121.6/121.6 MB 243.9 MB/s eta 0:00:01 2024-08-22T20:31:36.1534456Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 121.6/121.6 MB 243.9 MB/s eta 0:00:01 2024-08-22T20:31:36.1535479Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 121.6/121.6 MB 243.9 MB/s eta 0:00:01 2024-08-22T20:31:37.5926525Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 121.6/121.6 MB 243.9 MB/s eta 0:00:01 2024-08-22T20:31:37.5928459Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 121.6/121.6 MB 243.9 MB/s eta 0:00:01 2024-08-22T20:31:37.5929520Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 121.6/121.6 MB 243.9 MB/s eta 0:00:01 2024-08-22T20:31:37.5930606Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 121.6/121.6 MB 243.9 MB/s eta 0:00:01 2024-08-22T20:31:37.5931756Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 121.6/121.6 MB 9.1 MB/s eta 0:00:00 2024-08-22T20:31:37.5932840Z [?25hCollecting nvidia-curand-cu12==10.3.2.106 (from torch>=1.8->lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:31:37.5934232Z Downloading https://download.pytorch.org/whl/nightly/cu121/nvidia_curand_cu12-10.3.2.106-py3-none-manylinux1_x86_64.whl (56.5 MB) 2024-08-22T20:31:37.5935638Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/56.5 MB ? eta -:--:-- 2024-08-22T20:31:37.5936906Z  ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 8.0/56.5 MB 240.2 MB/s eta 0:00:01 2024-08-22T20:31:37.5938250Z  ━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━ 16.2/56.5 MB 236.7 MB/s eta 0:00:01 2024-08-22T20:31:37.5939609Z  ━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━ 24.4/56.5 MB 236.7 MB/s eta 0:00:01 2024-08-22T20:31:37.5940969Z  ━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━ 32.5/56.5 MB 235.4 MB/s eta 0:00:01 2024-08-22T20:31:37.5942617Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━ 40.5/56.5 MB 234.9 MB/s eta 0:00:01 2024-08-22T20:31:37.5943976Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━ 48.6/56.5 MB 234.3 MB/s eta 0:00:01 2024-08-22T20:31:37.5945295Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 56.5/56.5 MB 242.3 MB/s eta 0:00:01 2024-08-22T20:31:37.5946532Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 56.5/56.5 MB 242.3 MB/s eta 0:00:01 2024-08-22T20:31:37.5947787Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 56.5/56.5 MB 242.3 MB/s eta 0:00:01 2024-08-22T20:31:37.5948969Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 56.5/56.5 MB 242.3 MB/s eta 0:00:01 2024-08-22T20:31:37.5950217Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 56.5/56.5 MB 242.3 MB/s eta 0:00:01 2024-08-22T20:31:37.5951428Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 56.5/56.5 MB 242.3 MB/s eta 0:00:01 2024-08-22T20:31:37.5952651Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 56.5/56.5 MB 242.3 MB/s eta 0:00:01 2024-08-22T20:31:37.5954020Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 56.5/56.5 MB 242.3 MB/s eta 0:00:01 2024-08-22T20:31:37.5955233Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 56.5/56.5 MB 242.3 MB/s eta 0:00:01 2024-08-22T20:31:37.5956441Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 56.5/56.5 MB 242.3 MB/s eta 0:00:01 2024-08-22T20:31:37.5957724Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 56.5/56.5 MB 242.3 MB/s eta 0:00:01 2024-08-22T20:31:37.5959052Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 56.5/56.5 MB 242.3 MB/s eta 0:00:01 2024-08-22T20:31:37.5960298Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 56.5/56.5 MB 242.3 MB/s eta 0:00:01 2024-08-22T20:31:37.5961544Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 56.5/56.5 MB 242.3 MB/s eta 0:00:01 2024-08-22T20:31:37.5962815Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 56.5/56.5 MB 242.3 MB/s eta 0:00:01 2024-08-22T20:31:37.5963952Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 56.5/56.5 MB 242.3 MB/s eta 0:00:01 2024-08-22T20:31:37.5965148Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 56.5/56.5 MB 242.3 MB/s eta 0:00:01 2024-08-22T20:31:37.5966472Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 56.5/56.5 MB 242.3 MB/s eta 0:00:01 2024-08-22T20:31:37.5967674Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 56.5/56.5 MB 242.3 MB/s eta 0:00:01 2024-08-22T20:31:37.5968841Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 56.5/56.5 MB 242.3 MB/s eta 0:00:01 2024-08-22T20:31:37.5970006Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 56.5/56.5 MB 242.3 MB/s eta 0:00:01 2024-08-22T20:31:37.5971001Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 56.5/56.5 MB 242.3 MB/s eta 0:00:01 2024-08-22T20:31:37.5972193Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 56.5/56.5 MB 12.6 MB/s eta 0:00:00 2024-08-22T20:31:37.5973556Z [?25hCollecting nvidia-cusolver-cu12==11.4.5.107 (from torch>=1.8->lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:31:37.5975235Z Downloading https://download.pytorch.org/whl/nightly/cu121/nvidia_cusolver_cu12-11.4.5.107-py3-none-manylinux1_x86_64.whl (124.2 MB) 2024-08-22T20:31:37.5976690Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/124.2 MB ? eta -:--:-- 2024-08-22T20:31:38.9890408Z  ━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.2/124.2 MB 156.4 MB/s eta 0:00:01 2024-08-22T20:31:38.9891907Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 12.0/124.2 MB 171.4 MB/s eta 0:00:01 2024-08-22T20:31:38.9893028Z  ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 19.1/124.2 MB 206.9 MB/s eta 0:00:01 2024-08-22T20:31:38.9894129Z  ━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 26.0/124.2 MB 203.2 MB/s eta 0:00:01 2024-08-22T20:31:38.9895526Z  ━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━ 33.4/124.2 MB 214.2 MB/s eta 0:00:01 2024-08-22T20:31:38.9896624Z  ━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━ 41.2/124.2 MB 222.9 MB/s eta 0:00:01 2024-08-22T20:31:38.9897744Z  ━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━ 49.3/124.2 MB 233.0 MB/s eta 0:00:01 2024-08-22T20:31:38.9898937Z  ━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━ 57.5/124.2 MB 237.8 MB/s eta 0:00:01 2024-08-22T20:31:38.9900020Z  ━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━ 65.8/124.2 MB 239.8 MB/s eta 0:00:01 2024-08-22T20:31:38.9901101Z  ━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 74.1/124.2 MB 240.6 MB/s eta 0:00:01 2024-08-22T20:31:38.9902270Z  ━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━ 82.5/124.2 MB 242.3 MB/s eta 0:00:01 2024-08-22T20:31:38.9903347Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━ 90.8/124.2 MB 240.4 MB/s eta 0:00:01 2024-08-22T20:31:38.9904857Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 99.1/124.2 MB 240.3 MB/s eta 0:00:01 2024-08-22T20:31:38.9905956Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━ 107.3/124.2 MB 238.3 MB/s eta 0:00:01 2024-08-22T20:31:38.9907045Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━ 115.5/124.2 MB 237.5 MB/s eta 0:00:01 2024-08-22T20:31:38.9908101Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 123.9/124.2 MB 242.8 MB/s eta 0:00:01 2024-08-22T20:31:38.9909134Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 124.2/124.2 MB 235.4 MB/s eta 0:00:01 2024-08-22T20:31:38.9910134Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 124.2/124.2 MB 235.4 MB/s eta 0:00:01 2024-08-22T20:31:38.9911126Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 124.2/124.2 MB 235.4 MB/s eta 0:00:01 2024-08-22T20:31:38.9912133Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 124.2/124.2 MB 235.4 MB/s eta 0:00:01 2024-08-22T20:31:38.9913135Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 124.2/124.2 MB 235.4 MB/s eta 0:00:01 2024-08-22T20:31:38.9914129Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 124.2/124.2 MB 235.4 MB/s eta 0:00:01 2024-08-22T20:31:38.9915112Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 124.2/124.2 MB 235.4 MB/s eta 0:00:01 2024-08-22T20:31:38.9916199Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 124.2/124.2 MB 235.4 MB/s eta 0:00:01 2024-08-22T20:31:38.9917204Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 124.2/124.2 MB 235.4 MB/s eta 0:00:01 2024-08-22T20:31:38.9918226Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 124.2/124.2 MB 235.4 MB/s eta 0:00:01 2024-08-22T20:31:38.9919215Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 124.2/124.2 MB 235.4 MB/s eta 0:00:01 2024-08-22T20:31:38.9920227Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 124.2/124.2 MB 235.4 MB/s eta 0:00:01 2024-08-22T20:31:38.9921232Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 124.2/124.2 MB 235.4 MB/s eta 0:00:01 2024-08-22T20:31:38.9922244Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 124.2/124.2 MB 235.4 MB/s eta 0:00:01 2024-08-22T20:31:38.9923225Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 124.2/124.2 MB 235.4 MB/s eta 0:00:01 2024-08-22T20:31:38.9924222Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 124.2/124.2 MB 235.4 MB/s eta 0:00:01 2024-08-22T20:31:38.9925354Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 124.2/124.2 MB 235.4 MB/s eta 0:00:01 2024-08-22T20:31:38.9926352Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 124.2/124.2 MB 235.4 MB/s eta 0:00:01 2024-08-22T20:31:38.9927333Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 124.2/124.2 MB 235.4 MB/s eta 0:00:01 2024-08-22T20:31:38.9928493Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 124.2/124.2 MB 235.4 MB/s eta 0:00:01 2024-08-22T20:31:38.9929511Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 124.2/124.2 MB 235.4 MB/s eta 0:00:01 2024-08-22T20:31:38.9930501Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 124.2/124.2 MB 235.4 MB/s eta 0:00:01 2024-08-22T20:31:38.9931504Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 124.2/124.2 MB 235.4 MB/s eta 0:00:01 2024-08-22T20:31:40.4271719Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 124.2/124.2 MB 235.4 MB/s eta 0:00:01 2024-08-22T20:31:40.4273193Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 124.2/124.2 MB 235.4 MB/s eta 0:00:01 2024-08-22T20:31:40.4274561Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 124.2/124.2 MB 235.4 MB/s eta 0:00:01 2024-08-22T20:31:40.4276285Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 124.2/124.2 MB 235.4 MB/s eta 0:00:01 2024-08-22T20:31:40.4277306Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 124.2/124.2 MB 235.4 MB/s eta 0:00:01 2024-08-22T20:31:40.4278700Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 124.2/124.2 MB 235.4 MB/s eta 0:00:01 2024-08-22T20:31:40.4280945Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 124.2/124.2 MB 235.4 MB/s eta 0:00:01 2024-08-22T20:31:40.4282296Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 124.2/124.2 MB 235.4 MB/s eta 0:00:01 2024-08-22T20:31:40.4283502Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 124.2/124.2 MB 235.4 MB/s eta 0:00:01 2024-08-22T20:31:40.4284493Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 124.2/124.2 MB 235.4 MB/s eta 0:00:01 2024-08-22T20:31:40.4285511Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 124.2/124.2 MB 235.4 MB/s eta 0:00:01 2024-08-22T20:31:40.4286815Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 124.2/124.2 MB 235.4 MB/s eta 0:00:01 2024-08-22T20:31:40.4288066Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 124.2/124.2 MB 235.4 MB/s eta 0:00:01 2024-08-22T20:31:40.4289144Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 124.2/124.2 MB 235.4 MB/s eta 0:00:01 2024-08-22T20:31:40.4290142Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 124.2/124.2 MB 235.4 MB/s eta 0:00:01 2024-08-22T20:31:40.4291444Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 124.2/124.2 MB 235.4 MB/s eta 0:00:01 2024-08-22T20:31:40.4293943Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 124.2/124.2 MB 235.4 MB/s eta 0:00:01 2024-08-22T20:31:40.4295008Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 124.2/124.2 MB 235.4 MB/s eta 0:00:01 2024-08-22T20:31:40.4296016Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 124.2/124.2 MB 235.4 MB/s eta 0:00:01 2024-08-22T20:31:40.4297425Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 124.2/124.2 MB 235.4 MB/s eta 0:00:01 2024-08-22T20:31:40.4298453Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 124.2/124.2 MB 6.4 MB/s eta 0:00:00 2024-08-22T20:31:40.4299543Z [?25hCollecting nvidia-cusparse-cu12==12.1.0.106 (from torch>=1.8->lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:31:40.4301634Z Downloading https://download.pytorch.org/whl/nightly/cu121/nvidia_cusparse_cu12-12.1.0.106-py3-none-manylinux1_x86_64.whl (196.0 MB) 2024-08-22T20:31:40.4303264Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/196.0 MB ? eta -:--:-- 2024-08-22T20:31:40.4304228Z  ╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.8/196.0 MB 113.2 MB/s eta 0:00:02 2024-08-22T20:31:40.4305369Z  ━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 8.1/196.0 MB 119.7 MB/s eta 0:00:02 2024-08-22T20:31:40.4306471Z  ━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 11.9/196.0 MB 114.8 MB/s eta 0:00:02 2024-08-22T20:31:40.4307566Z  ━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 17.2/196.0 MB 128.4 MB/s eta 0:00:02 2024-08-22T20:31:40.4308929Z  ━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 23.4/196.0 MB 174.2 MB/s eta 0:00:01 2024-08-22T20:31:40.4311538Z  ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 30.4/196.0 MB 198.3 MB/s eta 0:00:01 2024-08-22T20:31:40.4312692Z  ━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 38.4/196.0 MB 229.4 MB/s eta 0:00:01 2024-08-22T20:31:40.4313909Z  ━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 46.6/196.0 MB 237.4 MB/s eta 0:00:01 2024-08-22T20:31:40.4315211Z  ━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━ 55.0/196.0 MB 241.9 MB/s eta 0:00:01 2024-08-22T20:31:40.4317097Z  ━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━ 62.8/196.0 MB 230.3 MB/s eta 0:00:01 2024-08-22T20:31:40.4318251Z  ━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━ 71.1/196.0 MB 238.0 MB/s eta 0:00:01 2024-08-22T20:31:40.4319454Z  ━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━ 79.5/196.0 MB 240.9 MB/s eta 0:00:01 2024-08-22T20:31:40.4320588Z  ━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 87.8/196.0 MB 239.5 MB/s eta 0:00:01 2024-08-22T20:31:40.4321757Z  ━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 96.0/196.0 MB 239.2 MB/s eta 0:00:01 2024-08-22T20:31:40.4322848Z  ━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━ 104.2/196.0 MB 238.1 MB/s eta 0:00:01 2024-08-22T20:31:40.4324166Z  ━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━ 112.4/196.0 MB 238.3 MB/s eta 0:00:01 2024-08-22T20:31:41.8892365Z  ━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━ 120.7/196.0 MB 238.9 MB/s eta 0:00:01 2024-08-22T20:31:41.8893955Z  ━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━ 128.9/196.0 MB 238.2 MB/s eta 0:00:01 2024-08-22T20:31:41.8895321Z  ━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━ 136.7/196.0 MB 230.0 MB/s eta 0:00:01 2024-08-22T20:31:41.8896681Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━ 144.7/196.0 MB 230.7 MB/s eta 0:00:01 2024-08-22T20:31:41.8897791Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━ 152.5/196.0 MB 227.0 MB/s eta 0:00:01 2024-08-22T20:31:41.8898867Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━ 160.4/196.0 MB 226.9 MB/s eta 0:00:01 2024-08-22T20:31:41.8899944Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━ 168.3/196.0 MB 228.4 MB/s eta 0:00:01 2024-08-22T20:31:41.8901047Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 176.0/196.0 MB 225.4 MB/s eta 0:00:01 2024-08-22T20:31:41.8902129Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━ 183.9/196.0 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:31:41.8903188Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺ 191.8/196.0 MB 229.2 MB/s eta 0:00:01 2024-08-22T20:31:41.8904197Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:41.8905206Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:41.8906207Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:41.8907196Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:41.8908374Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:41.8909380Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:41.8910393Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:41.8911505Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:41.8912522Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:41.8913534Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:41.8914553Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:41.8915557Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:41.8916694Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:41.8917702Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:41.8918695Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:41.8919695Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:41.8920708Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:41.8921707Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:41.8922695Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:41.8923714Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:41.8924713Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:41.8925711Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:41.8926700Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:41.8927802Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:41.8928911Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:41.8929927Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:41.8931232Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:41.8932237Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:41.8933237Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:43.3682135Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:43.3683601Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:43.3684656Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:43.3685958Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:43.3686981Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:43.3688080Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:43.3689169Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:43.3690355Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:43.3691355Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:43.3692369Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:43.3693361Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:43.3694366Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:43.3695362Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:43.3696367Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:43.3697369Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:43.3698772Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:43.3699787Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:43.3700786Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:43.3701791Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:43.3702792Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:43.3704016Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:43.3705339Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:43.3707698Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:43.3709379Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:43.3711543Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:43.3713116Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:43.3716300Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:43.3717641Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:43.3719032Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:43.3720497Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:43.3721689Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:43.3722788Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:43.3723873Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:43.3725049Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:43.3726048Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:43.3727155Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:43.3728218Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:43.3729984Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:43.3731346Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 196.0/196.0 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:31:43.3733243Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 196.0/196.0 MB 4.1 MB/s eta 0:00:00 2024-08-22T20:31:44.7926153Z [?25hCollecting nvidia-nccl-cu12==2.20.5 (from torch>=1.8->lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:31:44.7928825Z Downloading https://download.pytorch.org/whl/nightly/cu121/nvidia_nccl_cu12-2.20.5-py3-none-manylinux2014_x86_64.whl (176.2 MB) 2024-08-22T20:31:44.7930269Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/176.2 MB ? eta -:--:-- 2024-08-22T20:31:44.7931493Z  ━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 7.8/176.2 MB 235.0 MB/s eta 0:00:01 2024-08-22T20:31:44.7932612Z  ━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 15.8/176.2 MB 231.7 MB/s eta 0:00:01 2024-08-22T20:31:44.7933725Z  ━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 23.9/176.2 MB 233.4 MB/s eta 0:00:01 2024-08-22T20:31:44.7935175Z  ━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 31.8/176.2 MB 228.9 MB/s eta 0:00:01 2024-08-22T20:31:44.7936283Z  ━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 39.8/176.2 MB 231.0 MB/s eta 0:00:01 2024-08-22T20:31:44.7937402Z  ━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━ 47.9/176.2 MB 235.7 MB/s eta 0:00:01 2024-08-22T20:31:44.7938511Z  ━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━ 56.1/176.2 MB 237.1 MB/s eta 0:00:01 2024-08-22T20:31:44.7939605Z  ━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━ 64.2/176.2 MB 235.3 MB/s eta 0:00:01 2024-08-22T20:31:44.7940698Z  ━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━ 72.4/176.2 MB 237.1 MB/s eta 0:00:01 2024-08-22T20:31:44.7941799Z  ━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 80.3/176.2 MB 232.3 MB/s eta 0:00:01 2024-08-22T20:31:44.7942887Z  ━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 88.5/176.2 MB 235.0 MB/s eta 0:00:01 2024-08-22T20:31:44.7944138Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━ 96.7/176.2 MB 236.9 MB/s eta 0:00:01 2024-08-22T20:31:44.7945232Z  ━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━ 104.9/176.2 MB 237.8 MB/s eta 0:00:01 2024-08-22T20:31:44.7946310Z  ━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━ 112.8/176.2 MB 230.7 MB/s eta 0:00:01 2024-08-22T20:31:44.7947396Z  ━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━ 120.9/176.2 MB 234.5 MB/s eta 0:00:01 2024-08-22T20:31:44.7948500Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━ 128.8/176.2 MB 230.5 MB/s eta 0:00:01 2024-08-22T20:31:44.7949576Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━ 136.8/176.2 MB 229.9 MB/s eta 0:00:01 2024-08-22T20:31:44.7950674Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━ 144.5/176.2 MB 225.3 MB/s eta 0:00:01 2024-08-22T20:31:44.7951784Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━ 152.4/176.2 MB 227.4 MB/s eta 0:00:01 2024-08-22T20:31:44.7952924Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━ 160.6/176.2 MB 235.0 MB/s eta 0:00:01 2024-08-22T20:31:44.7954006Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 168.8/176.2 MB 238.1 MB/s eta 0:00:01 2024-08-22T20:31:44.7955161Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 176.2/176.2 MB 240.5 MB/s eta 0:00:01 2024-08-22T20:31:44.7956178Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 176.2/176.2 MB 240.5 MB/s eta 0:00:01 2024-08-22T20:31:44.7957196Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 176.2/176.2 MB 240.5 MB/s eta 0:00:01 2024-08-22T20:31:44.7958198Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 176.2/176.2 MB 240.5 MB/s eta 0:00:01 2024-08-22T20:31:44.7959209Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 176.2/176.2 MB 240.5 MB/s eta 0:00:01 2024-08-22T20:31:44.7960212Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 176.2/176.2 MB 240.5 MB/s eta 0:00:01 2024-08-22T20:31:44.7961223Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 176.2/176.2 MB 240.5 MB/s eta 0:00:01 2024-08-22T20:31:44.7962267Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 176.2/176.2 MB 240.5 MB/s eta 0:00:01 2024-08-22T20:31:44.7963270Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 176.2/176.2 MB 240.5 MB/s eta 0:00:01 2024-08-22T20:31:44.7964368Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 176.2/176.2 MB 240.5 MB/s eta 0:00:01 2024-08-22T20:31:44.7965360Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 176.2/176.2 MB 240.5 MB/s eta 0:00:01 2024-08-22T20:31:44.7966371Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 176.2/176.2 MB 240.5 MB/s eta 0:00:01 2024-08-22T20:31:44.7967373Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 176.2/176.2 MB 240.5 MB/s eta 0:00:01 2024-08-22T20:31:44.7968654Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 176.2/176.2 MB 240.5 MB/s eta 0:00:01 2024-08-22T20:31:44.7969645Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 176.2/176.2 MB 240.5 MB/s eta 0:00:01 2024-08-22T20:31:46.1722150Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 176.2/176.2 MB 240.5 MB/s eta 0:00:01 2024-08-22T20:31:46.1723441Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 176.2/176.2 MB 240.5 MB/s eta 0:00:01 2024-08-22T20:31:46.1724620Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 176.2/176.2 MB 240.5 MB/s eta 0:00:01 2024-08-22T20:31:46.1726077Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 176.2/176.2 MB 240.5 MB/s eta 0:00:01 2024-08-22T20:31:46.1727282Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 176.2/176.2 MB 240.5 MB/s eta 0:00:01 2024-08-22T20:31:46.1728597Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 176.2/176.2 MB 240.5 MB/s eta 0:00:01 2024-08-22T20:31:46.1729805Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 176.2/176.2 MB 240.5 MB/s eta 0:00:01 2024-08-22T20:31:46.1732531Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 176.2/176.2 MB 240.5 MB/s eta 0:00:01 2024-08-22T20:31:46.1734080Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 176.2/176.2 MB 240.5 MB/s eta 0:00:01 2024-08-22T20:31:46.1735180Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 176.2/176.2 MB 240.5 MB/s eta 0:00:01 2024-08-22T20:31:46.1736267Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 176.2/176.2 MB 240.5 MB/s eta 0:00:01 2024-08-22T20:31:46.1737414Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 176.2/176.2 MB 240.5 MB/s eta 0:00:01 2024-08-22T20:31:46.1738784Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 176.2/176.2 MB 240.5 MB/s eta 0:00:01 2024-08-22T20:31:46.1740243Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 176.2/176.2 MB 240.5 MB/s eta 0:00:01 2024-08-22T20:31:46.1743020Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 176.2/176.2 MB 240.5 MB/s eta 0:00:01 2024-08-22T20:31:46.1744249Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 176.2/176.2 MB 240.5 MB/s eta 0:00:01 2024-08-22T20:31:46.1745368Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 176.2/176.2 MB 240.5 MB/s eta 0:00:01 2024-08-22T20:31:46.1747180Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 176.2/176.2 MB 240.5 MB/s eta 0:00:01 2024-08-22T20:31:46.1748894Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 176.2/176.2 MB 240.5 MB/s eta 0:00:01 2024-08-22T20:31:46.1750030Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 176.2/176.2 MB 240.5 MB/s eta 0:00:01 2024-08-22T20:31:46.1751909Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 176.2/176.2 MB 240.5 MB/s eta 0:00:01 2024-08-22T20:31:46.1753134Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 176.2/176.2 MB 240.5 MB/s eta 0:00:01 2024-08-22T20:31:46.1754766Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 176.2/176.2 MB 240.5 MB/s eta 0:00:01 2024-08-22T20:31:46.1756372Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 176.2/176.2 MB 240.5 MB/s eta 0:00:01 2024-08-22T20:31:46.1757569Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 176.2/176.2 MB 240.5 MB/s eta 0:00:01 2024-08-22T20:31:46.1759335Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 176.2/176.2 MB 240.5 MB/s eta 0:00:01 2024-08-22T20:31:46.1760552Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 176.2/176.2 MB 6.6 MB/s eta 0:00:00 2024-08-22T20:31:46.1762253Z [?25hCollecting nvidia-nvtx-cu12==12.1.105 (from torch>=1.8->lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:31:46.1764359Z Downloading https://download.pytorch.org/whl/nightly/cu121/nvidia_nvtx_cu12-12.1.105-py3-none-manylinux1_x86_64.whl (99 kB) 2024-08-22T20:31:46.1765628Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/99.1 kB ? eta -:--:-- 2024-08-22T20:31:46.1767269Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 99.1/99.1 kB 33.0 MB/s eta 0:00:00 2024-08-22T20:31:46.1768422Z [?25hCollecting triton==3.0.0 (from torch>=1.8->lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:31:46.1769986Z Downloading triton-3.0.0-1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (209.4 MB) 2024-08-22T20:31:46.1771026Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/209.4 MB ? eta -:--:-- 2024-08-22T20:31:46.1772695Z  ━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 8.3/209.4 MB 247.7 MB/s eta 0:00:01 2024-08-22T20:31:46.1773805Z  ━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 16.7/209.4 MB 242.3 MB/s eta 0:00:01 2024-08-22T20:31:46.1775924Z  ━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 25.0/209.4 MB 241.4 MB/s eta 0:00:01 2024-08-22T20:31:46.1777184Z  ━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 33.4/209.4 MB 242.2 MB/s eta 0:00:01 2024-08-22T20:31:46.1778955Z  ━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 41.9/209.4 MB 243.8 MB/s eta 0:00:01 2024-08-22T20:31:46.1780083Z  ━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 50.2/209.4 MB 242.3 MB/s eta 0:00:01 2024-08-22T20:31:46.1781647Z  ━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━ 58.7/209.4 MB 243.7 MB/s eta 0:00:01 2024-08-22T20:31:47.6645112Z  ━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━ 67.1/209.4 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:31:47.6647481Z  ━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━ 75.6/209.4 MB 244.6 MB/s eta 0:00:01 2024-08-22T20:31:47.6649885Z  ━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━ 83.9/209.4 MB 240.7 MB/s eta 0:00:01 2024-08-22T20:31:47.6651972Z  ━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━ 92.4/209.4 MB 237.8 MB/s eta 0:00:01 2024-08-22T20:31:47.6653435Z  ━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 100.9/209.4 MB 246.1 MB/s eta 0:00:01 2024-08-22T20:31:47.6654555Z  ━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━ 109.4/209.4 MB 247.3 MB/s eta 0:00:01 2024-08-22T20:31:47.6655667Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━ 118.0/209.4 MB 248.5 MB/s eta 0:00:01 2024-08-22T20:31:47.6656771Z  ━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━ 126.6/209.4 MB 246.7 MB/s eta 0:00:01 2024-08-22T20:31:47.6657895Z  ━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━ 135.0/209.4 MB 244.6 MB/s eta 0:00:01 2024-08-22T20:31:47.6658990Z  ━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━ 141.8/209.4 MB 211.6 MB/s eta 0:00:01 2024-08-22T20:31:47.6660100Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━ 147.9/209.4 MB 188.8 MB/s eta 0:00:01 2024-08-22T20:31:47.6661201Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━ 156.0/209.4 MB 194.7 MB/s eta 0:00:01 2024-08-22T20:31:47.6662292Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━ 164.0/209.4 MB 233.6 MB/s eta 0:00:01 2024-08-22T20:31:47.6663385Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━ 172.2/209.4 MB 233.9 MB/s eta 0:00:01 2024-08-22T20:31:47.6664650Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━ 180.3/209.4 MB 234.9 MB/s eta 0:00:01 2024-08-22T20:31:47.6665741Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 188.5/209.4 MB 235.3 MB/s eta 0:00:01 2024-08-22T20:31:47.6666842Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━ 195.8/209.4 MB 219.8 MB/s eta 0:00:01 2024-08-22T20:31:47.6667930Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━ 202.4/209.4 MB 198.4 MB/s eta 0:00:01 2024-08-22T20:31:47.6668991Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:47.6670015Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:47.6671017Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:47.6672046Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:47.6673050Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:47.6674142Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:47.6675145Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:47.6676160Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:47.6677167Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:47.6678636Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:47.6679643Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:47.6680679Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:47.6681691Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:47.6682740Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:47.6683751Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:47.6684768Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:47.6685769Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:47.6686757Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:47.6687771Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:47.6688831Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:47.6689828Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:50.0357495Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:50.0358716Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:50.0360030Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:50.0361355Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:50.0362372Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:50.0363437Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:50.0364437Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:50.0365597Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:50.0366582Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:50.0367700Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:50.0368837Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:50.0369836Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:50.0370828Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:50.0371832Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:50.0372845Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:50.0373833Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:50.0374927Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:50.0375927Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:50.0376916Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:50.0378077Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:50.0379110Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:50.0380108Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:50.0381098Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:50.0382100Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:50.0383100Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:50.0384099Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:50.0385092Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 209.4/209.4 MB 205.4 MB/s eta 0:00:01 2024-08-22T20:31:50.0386433Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 209.4/209.4 MB 5.5 MB/s eta 0:00:00 2024-08-22T20:31:50.0387662Z [?25hCollecting nvidia-nvjitlink-cu12 (from nvidia-cusolver-cu12==11.4.5.107->torch>=1.8->lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:31:50.0389000Z Downloading nvidia_nvjitlink_cu12-12.6.20-py3-none-manylinux2014_x86_64.whl (19.7 MB) 2024-08-22T20:31:50.0389946Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/19.7 MB ? eta -:--:-- 2024-08-22T20:31:50.0391011Z  ━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━ 8.4/19.7 MB 251.4 MB/s eta 0:00:01 2024-08-22T20:31:50.0392104Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━ 15.3/19.7 MB 214.5 MB/s eta 0:00:01 2024-08-22T20:31:50.0393171Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 19.7/19.7 MB 215.3 MB/s eta 0:00:01 2024-08-22T20:31:50.0394168Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 19.7/19.7 MB 215.3 MB/s eta 0:00:01 2024-08-22T20:31:50.0395161Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 19.7/19.7 MB 215.3 MB/s eta 0:00:01 2024-08-22T20:31:50.0396282Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 19.7/19.7 MB 66.2 MB/s eta 0:00:00 2024-08-22T20:31:50.0397336Z [?25hCollecting tokenizers<0.20,>=0.19 (from transformers>=4.1->lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:31:50.0398467Z Downloading tokenizers-0.19.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.6 MB) 2024-08-22T20:31:50.0399484Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/3.6 MB ? eta -:--:-- 2024-08-22T20:31:50.0400422Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.6/3.6 MB 109.8 MB/s eta 0:00:00 2024-08-22T20:31:50.0401785Z [?25hRequirement already satisfied: attrs>=19.2.0 in /opt/conda/lib/python3.11/site-packages (from jsonlines->lm-eval==0.4.2->-r requirements.txt (line 17)) (23.1.0) 2024-08-22T20:32:20.9407530Z Requirement already satisfied: setuptools>=38.3.0 in /opt/conda/lib/python3.11/site-packages (from pytablewriter->lm-eval==0.4.2->-r requirements.txt (line 17)) (67.8.0) 2024-08-22T20:32:20.9409131Z Collecting DataProperty<2,>=1.0.1 (from pytablewriter->lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:32:20.9410000Z Downloading DataProperty-1.0.1-py3-none-any.whl (27 kB) 2024-08-22T20:32:20.9410895Z Collecting mbstrdecoder<2,>=1.0.0 (from pytablewriter->lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:32:20.9412725Z Downloading mbstrdecoder-1.1.3-py3-none-any.whl (7.8 kB) 2024-08-22T20:32:20.9413695Z Collecting pathvalidate<4,>=2.3.0 (from pytablewriter->lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:32:20.9414882Z Downloading pathvalidate-3.2.0-py3-none-any.whl (23 kB) 2024-08-22T20:32:20.9415777Z Collecting tabledata<2,>=1.3.1 (from pytablewriter->lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:32:20.9416611Z Downloading tabledata-1.3.3-py3-none-any.whl (11 kB) 2024-08-22T20:32:20.9417478Z Collecting tcolorpy<1,>=0.0.5 (from pytablewriter->lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:32:20.9418301Z Downloading tcolorpy-0.1.6-py3-none-any.whl (8.1 kB) 2024-08-22T20:32:20.9419258Z Collecting typepy[datetime]<2,>=1.3.2 (from pytablewriter->lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:32:20.9420392Z Downloading typepy-1.3.2-py3-none-any.whl (31 kB) 2024-08-22T20:32:20.9421412Z Collecting aiohappyeyeballs>=2.3.0 (from aiohttp->datasets>=2.16.0->lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:32:20.9422377Z Downloading aiohappyeyeballs-2.4.0-py3-none-any.whl (12 kB) 2024-08-22T20:32:20.9423320Z Collecting aiosignal>=1.1.2 (from aiohttp->datasets>=2.16.0->lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:32:20.9424461Z Downloading https://download.pytorch.org/whl/nightly/aiosignal-1.3.1-py3-none-any.whl (7.6 kB) 2024-08-22T20:32:20.9425614Z Collecting frozenlist>=1.1.1 (from aiohttp->datasets>=2.16.0->lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:32:20.9427194Z Downloading https://download.pytorch.org/whl/nightly/frozenlist-1.4.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (272 kB) 2024-08-22T20:32:20.9428658Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/272.3 kB ? eta -:--:-- 2024-08-22T20:32:20.9429609Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 272.3/272.3 kB 62.7 MB/s eta 0:00:00 2024-08-22T20:32:20.9430736Z [?25hCollecting multidict<7.0,>=4.5 (from aiohttp->datasets>=2.16.0->lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:32:20.9432157Z Downloading https://download.pytorch.org/whl/nightly/multidict-6.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (128 kB) 2024-08-22T20:32:20.9433394Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/128.7 kB ? eta -:--:-- 2024-08-22T20:32:20.9434551Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 128.7/128.7 kB 37.5 MB/s eta 0:00:00 2024-08-22T20:32:20.9435610Z [?25hCollecting yarl<2.0,>=1.0 (from aiohttp->datasets>=2.16.0->lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:32:20.9436955Z Downloading https://download.pytorch.org/whl/nightly/yarl-1.9.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (328 kB) 2024-08-22T20:32:20.9438158Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/328.1 kB ? eta -:--:-- 2024-08-22T20:32:20.9439096Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 328.1/328.1 kB 68.8 MB/s eta 0:00:00 2024-08-22T20:32:20.9440364Z [?25hCollecting smmap<6,>=3.0.1 (from gitdb<5,>=4.0.1->gitpython!=3.1.19,<4,>=3.0.7->streamlit->-r requirements.txt (line 28)) 2024-08-22T20:32:20.9441268Z Downloading smmap-5.0.1-py3-none-any.whl (24 kB) 2024-08-22T20:32:20.9442708Z Requirement already satisfied: jsonschema-specifications>=2023.03.6 in /opt/conda/lib/python3.11/site-packages (from jsonschema>=3.0->altair<6,>=4.0->streamlit->-r requirements.txt (line 28)) (2023.7.1) 2024-08-22T20:32:20.9444752Z Requirement already satisfied: referencing>=0.28.4 in /opt/conda/lib/python3.11/site-packages (from jsonschema>=3.0->altair<6,>=4.0->streamlit->-r requirements.txt (line 28)) (0.30.2) 2024-08-22T20:32:20.9446688Z Requirement already satisfied: rpds-py>=0.7.1 in /opt/conda/lib/python3.11/site-packages (from jsonschema>=3.0->altair<6,>=4.0->streamlit->-r requirements.txt (line 28)) (0.10.6) 2024-08-22T20:32:20.9448359Z Collecting mdurl~=0.1 (from markdown-it-py>=2.2.0->rich<14,>=10.14.0->streamlit->-r requirements.txt (line 28)) 2024-08-22T20:32:20.9449259Z Downloading mdurl-0.1.2-py3-none-any.whl (10.0 kB) 2024-08-22T20:32:20.9450619Z Requirement already satisfied: chardet<6,>=3.0.4 in /opt/conda/lib/python3.11/site-packages (from mbstrdecoder<2,>=1.0.0->pytablewriter->lm-eval==0.4.2->-r requirements.txt (line 17)) (4.0.0) 2024-08-22T20:32:20.9452152Z Collecting mpmath<1.4,>=1.1.0 (from sympy->torch>=1.8->lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:32:20.9453219Z Downloading https://download.pytorch.org/whl/nightly/mpmath-1.3.0-py3-none-any.whl (536 kB) 2024-08-22T20:32:20.9454220Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/536.2 kB ? eta -:--:-- 2024-08-22T20:32:20.9455152Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 536.2/536.2 kB 88.7 MB/s eta 0:00:00 2024-08-22T20:32:20.9456106Z [?25hBuilding wheels for collected packages: rouge-score, numexpr, sqlitedict, word2number 2024-08-22T20:32:20.9456954Z Building wheel for rouge-score (setup.py) ... [?25l- done 2024-08-22T20:32:20.9458231Z [?25h Created wheel for rouge-score: filename=rouge_score-0.1.2-py3-none-any.whl size=24935 sha256=a316f757a20d4a94cf2b9b5b5733463bda879a3c5e1b7543020f68656cc50413 2024-08-22T20:32:20.9459634Z Stored in directory: /root/.cache/pip/wheels/1e/19/43/8a442dc83660ca25e163e1bd1f89919284ab0d0c1475475148 2024-08-22T20:32:20.9460750Z Building wheel for numexpr (pyproject.toml) ... [?25l- \ | / done 2024-08-22T20:32:20.9462120Z [?25h Created wheel for numexpr: filename=numexpr-2.10.1-cp311-cp311-linux_x86_64.whl size=144661 sha256=1d5ddf30233f023979e25c61109157a3c4ad0924e162d43305d4fb18d2fd5fbe 2024-08-22T20:32:20.9463541Z Stored in directory: /root/.cache/pip/wheels/95/8f/06/86d86d1afaa270e49bedb56c85c6ffd48d8eccdb9f678e55e4 2024-08-22T20:32:20.9464501Z Building wheel for sqlitedict (setup.py) ... [?25l- done 2024-08-22T20:32:20.9465789Z [?25h Created wheel for sqlitedict: filename=sqlitedict-2.1.0-py3-none-any.whl size=16864 sha256=fefcb39f689b0f847f1ac690d9dba42a19c3df119d143f78bde6574db198c5e4 2024-08-22T20:32:20.9467189Z Stored in directory: /root/.cache/pip/wheels/73/63/89/7210274f9b7fb033b8f22671f64c0e0b55083d30c3c046a3ff 2024-08-22T20:32:20.9468136Z Building wheel for word2number (setup.py) ... [?25l- done 2024-08-22T20:32:20.9469410Z [?25h Created wheel for word2number: filename=word2number-1.1-py3-none-any.whl size=5566 sha256=4bbce053b7c82308872528add59568e51f9edc5b286304737a71fa9f5f3da9ac 2024-08-22T20:32:20.9470860Z Stored in directory: /root/.cache/pip/wheels/cd/ef/ae/073b491b14d25e2efafcffca9e16b2ee6d114ec5c643ba4f06 2024-08-22T20:32:20.9471830Z Successfully built rouge-score numexpr sqlitedict word2number 2024-08-22T20:32:20.9478762Z Installing collected packages: zstd, word2number, sqlitedict, sentencepiece, ninja, mpmath, xxhash, Werkzeug, watchdog, tzdata, typing-extensions, triton, tqdm, tornado, toml, threadpoolctl, tenacity, tcolorpy, tabulate, sympy, smmap, safetensors, requests, regex, pygments, pycryptodomex, pybind11, protobuf, portalocker, pillow, pathvalidate, nvidia-nvtx-cu12, nvidia-nvjitlink-cu12, nvidia-nccl-cu12, nvidia-curand-cu12, nvidia-cufft-cu12, nvidia-cuda-runtime-cu12, nvidia-cuda-nvrtc-cu12, nvidia-cuda-cupti-cu12, nvidia-cublas-cu12, numpy, networkx, narwhals, multidict, mdurl, mbstrdecoder, lxml, jsonlines, joblib, itsdangerous, fsspec, frozenlist, dill, colorama, cmake, cachetools, blinker, aiohappyeyeballs, absl-py, yarl, typepy, tqdm-multiprocess, tiktoken, snakeviz, scipy, sacrebleu, pydeck, pyarrow, pandas, nvidia-cusparse-cu12, nvidia-cudnn-cu12, numexpr, nltk, multiprocess, markdown-it-py, huggingface_hub, gitdb, gguf, flask, blobfile, aiosignal, tokenizers, scikit-learn, rouge-score, rich, nvidia-cusolver-cu12, gitpython, aiohttp, transformers, torch, DataProperty, altair, tabledata, streamlit, datasets, accelerate, pytablewriter, peft, evaluate, lm-eval 2024-08-22T20:32:20.9485004Z Attempting uninstall: tqdm 2024-08-22T20:32:20.9485409Z Found existing installation: tqdm 4.65.0 2024-08-22T20:32:20.9485908Z Uninstalling tqdm-4.65.0: 2024-08-22T20:32:20.9486353Z Successfully uninstalled tqdm-4.65.0 2024-08-22T20:32:20.9486785Z Attempting uninstall: requests 2024-08-22T20:32:20.9487206Z Found existing installation: requests 2.29.0 2024-08-22T20:32:20.9487708Z Uninstalling requests-2.29.0: 2024-08-22T20:32:20.9488295Z Successfully uninstalled requests-2.29.0 2024-08-22T20:32:20.9488733Z Attempting uninstall: cmake 2024-08-22T20:33:11.6210209Z Found existing installation: cmake 3.18.2 2024-08-22T20:33:11.6210990Z Uninstalling cmake-3.18.2: 2024-08-22T20:33:11.6211444Z Successfully uninstalled cmake-3.18.2 2024-08-22T20:33:11.6222458Z Successfully installed DataProperty-1.0.1 Werkzeug-3.0.4 absl-py-2.1.0 accelerate-0.33.0 aiohappyeyeballs-2.4.0 aiohttp-3.10.5 aiosignal-1.3.1 altair-5.4.0 blinker-1.8.2 blobfile-2.1.1 cachetools-5.5.0 cmake-3.30.2 colorama-0.4.6 datasets-2.21.0 dill-0.3.8 evaluate-0.4.2 flask-3.0.3 frozenlist-1.4.1 fsspec-2024.6.1 gguf-0.9.1 gitdb-4.0.11 gitpython-3.1.43 huggingface_hub-0.24.6 itsdangerous-2.2.0 joblib-1.4.2 jsonlines-4.0.0 lm-eval-0.4.2 lxml-4.9.4 markdown-it-py-3.0.0 mbstrdecoder-1.1.3 mdurl-0.1.2 mpmath-1.3.0 multidict-6.0.5 multiprocess-0.70.16 narwhals-1.5.2 networkx-3.3 ninja-1.11.1.1 nltk-3.9.1 numexpr-2.10.1 numpy-1.26.4 nvidia-cublas-cu12-12.1.3.1 nvidia-cuda-cupti-cu12-12.1.105 nvidia-cuda-nvrtc-cu12-12.1.105 nvidia-cuda-runtime-cu12-12.1.105 nvidia-cudnn-cu12-9.1.0.70 nvidia-cufft-cu12-11.0.2.54 nvidia-curand-cu12-10.3.2.106 nvidia-cusolver-cu12-11.4.5.107 nvidia-cusparse-cu12-12.1.0.106 nvidia-nccl-cu12-2.20.5 nvidia-nvjitlink-cu12-12.6.20 nvidia-nvtx-cu12-12.1.105 pandas-2.2.2 pathvalidate-3.2.0 peft-0.12.0 pillow-10.4.0 portalocker-2.10.1 protobuf-5.27.3 pyarrow-17.0.0 pybind11-2.13.5 pycryptodomex-3.20.0 pydeck-0.9.1 pygments-2.18.0 pytablewriter-1.2.0 regex-2024.7.24 requests-2.32.3 rich-13.7.1 rouge-score-0.1.2 sacrebleu-2.4.3 safetensors-0.4.4 scikit-learn-1.5.1 scipy-1.14.1 sentencepiece-0.2.0 smmap-5.0.1 snakeviz-2.2.0 sqlitedict-2.1.0 streamlit-1.37.1 sympy-1.13.2 tabledata-1.3.3 tabulate-0.9.0 tcolorpy-0.1.6 tenacity-8.5.0 threadpoolctl-3.5.0 tiktoken-0.7.0 tokenizers-0.19.1 toml-0.10.2 torch-2.4.0 tornado-6.4.1 tqdm-4.66.5 tqdm-multiprocess-0.0.11 transformers-4.44.2 triton-3.0.0 typepy-1.3.2 typing-extensions-4.12.2 tzdata-2024.1 watchdog-4.0.2 word2number-1.1 xxhash-3.5.0 yarl-1.9.4 zstd-1.5.5.1 2024-08-22T20:33:11.6234448Z 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 2024-08-22T20:33:11.6235866Z + pip3 uninstall -y triton 2024-08-22T20:33:11.6236292Z Found existing installation: triton 3.0.0 2024-08-22T20:33:11.6236758Z Uninstalling triton-3.0.0: 2024-08-22T20:33:11.6237317Z Successfully uninstalled triton-3.0.0 2024-08-22T20:33:11.6239065Z 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 2024-08-22T20:33:11.6240854Z + pip3 install --extra-index-url https://download.pytorch.org/whl/nightly/cu121 torch==2.5.0.dev20240814 2024-08-22T20:33:11.6241946Z Looking in indexes: https://pypi.org/simple, https://download.pytorch.org/whl/nightly/cu121 2024-08-22T20:33:11.6242636Z Collecting torch==2.5.0.dev20240814 2024-08-22T20:33:11.6243636Z Downloading https://download.pytorch.org/whl/nightly/cu121/torch-2.5.0.dev20240814%2Bcu121-cp311-cp311-linux_x86_64.whl (778.6 MB) 2024-08-22T20:33:11.6244873Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/778.6 MB ? eta -:--:-- 2024-08-22T20:33:11.6245821Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 8.3/778.6 MB 250.2 MB/s eta 0:00:04 2024-08-22T20:33:11.6246846Z  ╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 16.8/778.6 MB 243.0 MB/s eta 0:00:04 2024-08-22T20:33:11.6247921Z  ━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 25.1/778.6 MB 241.5 MB/s eta 0:00:04 2024-08-22T20:33:11.6249147Z  ━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 33.5/778.6 MB 240.3 MB/s eta 0:00:04 2024-08-22T20:33:11.6250242Z  ━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 41.8/778.6 MB 240.6 MB/s eta 0:00:04 2024-08-22T20:33:11.6251342Z  ━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 50.1/778.6 MB 239.4 MB/s eta 0:00:04 2024-08-22T20:33:11.6252429Z  ━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 58.4/778.6 MB 240.6 MB/s eta 0:00:03 2024-08-22T20:33:11.6253556Z  ━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 66.7/778.6 MB 241.1 MB/s eta 0:00:03 2024-08-22T20:33:11.6254650Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 75.0/778.6 MB 238.3 MB/s eta 0:00:03 2024-08-22T20:33:11.6255858Z  ━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 83.2/778.6 MB 239.3 MB/s eta 0:00:03 2024-08-22T20:33:11.6256966Z  ━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 91.5/778.6 MB 238.8 MB/s eta 0:00:03 2024-08-22T20:33:11.6258075Z  ━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 99.7/778.6 MB 240.3 MB/s eta 0:00:03 2024-08-22T20:33:11.6259170Z  ━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 108.1/778.6 MB 241.3 MB/s eta 0:00:03 2024-08-22T20:33:11.6260398Z  ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 116.4/778.6 MB 240.2 MB/s eta 0:00:03 2024-08-22T20:33:11.6261543Z  ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 124.7/778.6 MB 241.0 MB/s eta 0:00:03 2024-08-22T20:33:11.6262663Z  ━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 133.0/778.6 MB 240.8 MB/s eta 0:00:03 2024-08-22T20:33:11.6263768Z  ━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 141.4/778.6 MB 241.6 MB/s eta 0:00:03 2024-08-22T20:33:11.6264869Z  ━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 149.7/778.6 MB 241.6 MB/s eta 0:00:03 2024-08-22T20:33:11.6265964Z  ━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 158.0/778.6 MB 240.6 MB/s eta 0:00:03 2024-08-22T20:33:11.6267357Z  ━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 166.0/778.6 MB 234.0 MB/s eta 0:00:03 2024-08-22T20:33:11.6268874Z  ━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 173.9/778.6 MB 229.0 MB/s eta 0:00:03 2024-08-22T20:33:11.6270214Z  ━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 179.6/778.6 MB 189.2 MB/s eta 0:00:04 2024-08-22T20:33:11.6271357Z  ━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 185.8/778.6 MB 179.9 MB/s eta 0:00:04 2024-08-22T20:33:11.6272480Z  ━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━ 192.2/778.6 MB 181.9 MB/s eta 0:00:04 2024-08-22T20:33:12.9443891Z  ━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━ 199.7/778.6 MB 194.4 MB/s eta 0:00:03 2024-08-22T20:33:12.9445081Z  ━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━ 207.9/778.6 MB 236.4 MB/s eta 0:00:03 2024-08-22T20:33:12.9446232Z  ━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━ 216.1/778.6 MB 237.8 MB/s eta 0:00:03 2024-08-22T20:33:12.9447343Z  ━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━ 224.4/778.6 MB 241.3 MB/s eta 0:00:03 2024-08-22T20:33:12.9448828Z  ━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━ 232.8/778.6 MB 242.8 MB/s eta 0:00:03 2024-08-22T20:33:12.9449943Z  ━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━ 241.1/778.6 MB 242.2 MB/s eta 0:00:03 2024-08-22T20:33:12.9451114Z  ━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━ 249.4/778.6 MB 239.8 MB/s eta 0:00:03 2024-08-22T20:33:12.9452265Z  ━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━ 257.7/778.6 MB 240.8 MB/s eta 0:00:03 2024-08-22T20:33:12.9453542Z  ━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━ 266.1/778.6 MB 241.1 MB/s eta 0:00:03 2024-08-22T20:33:12.9454640Z  ━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━ 274.4/778.6 MB 241.5 MB/s eta 0:00:03 2024-08-22T20:33:12.9455754Z  ━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━ 282.8/778.6 MB 242.1 MB/s eta 0:00:03 2024-08-22T20:33:12.9456847Z  ━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━ 291.2/778.6 MB 244.6 MB/s eta 0:00:02 2024-08-22T20:33:12.9457937Z  ━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━ 299.7/778.6 MB 245.2 MB/s eta 0:00:02 2024-08-22T20:33:12.9459034Z  ━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━ 308.1/778.6 MB 244.5 MB/s eta 0:00:02 2024-08-22T20:33:12.9460144Z  ━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━ 316.5/778.6 MB 242.2 MB/s eta 0:00:02 2024-08-22T20:33:12.9461241Z  ━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━ 324.8/778.6 MB 241.5 MB/s eta 0:00:02 2024-08-22T20:33:12.9462433Z  ━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━ 333.1/778.6 MB 241.2 MB/s eta 0:00:02 2024-08-22T20:33:12.9463532Z  ━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 341.5/778.6 MB 238.9 MB/s eta 0:00:02 2024-08-22T20:33:12.9464620Z  ━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━ 349.9/778.6 MB 243.0 MB/s eta 0:00:02 2024-08-22T20:33:12.9465711Z  ━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━ 358.3/778.6 MB 241.0 MB/s eta 0:00:02 2024-08-22T20:33:12.9466826Z  ━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━ 365.5/778.6 MB 219.2 MB/s eta 0:00:02 2024-08-22T20:33:12.9467917Z  ━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 372.8/778.6 MB 211.7 MB/s eta 0:00:02 2024-08-22T20:33:12.9469020Z  ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 380.0/778.6 MB 210.9 MB/s eta 0:00:02 2024-08-22T20:33:12.9470109Z  ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 387.2/778.6 MB 209.2 MB/s eta 0:00:02 2024-08-22T20:33:12.9471339Z  ━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━ 394.4/778.6 MB 211.3 MB/s eta 0:00:02 2024-08-22T20:33:12.9472481Z  ━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━ 401.6/778.6 MB 209.4 MB/s eta 0:00:02 2024-08-22T20:33:12.9473694Z  ━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━ 409.5/778.6 MB 224.4 MB/s eta 0:00:02 2024-08-22T20:33:12.9474774Z  ━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━ 417.4/778.6 MB 230.9 MB/s eta 0:00:02 2024-08-22T20:33:12.9475881Z  ━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━ 425.4/778.6 MB 231.2 MB/s eta 0:00:02 2024-08-22T20:33:12.9476963Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━ 433.4/778.6 MB 231.8 MB/s eta 0:00:02 2024-08-22T20:33:12.9478330Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━ 441.3/778.6 MB 228.8 MB/s eta 0:00:02 2024-08-22T20:33:12.9479422Z  ━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━ 449.2/778.6 MB 229.8 MB/s eta 0:00:02 2024-08-22T20:33:12.9480527Z  ━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 457.2/778.6 MB 230.1 MB/s eta 0:00:02 2024-08-22T20:33:12.9481630Z  ━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━ 465.2/778.6 MB 231.1 MB/s eta 0:00:02 2024-08-22T20:33:12.9482899Z  ━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━ 473.2/778.6 MB 229.7 MB/s eta 0:00:02 2024-08-22T20:33:12.9483995Z  ━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━ 481.0/778.6 MB 228.9 MB/s eta 0:00:02 2024-08-22T20:33:12.9485082Z  ━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━ 489.0/778.6 MB 229.5 MB/s eta 0:00:02 2024-08-22T20:33:12.9486194Z  ━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━ 496.9/778.6 MB 231.4 MB/s eta 0:00:02 2024-08-22T20:33:14.7153447Z  ━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━ 504.9/778.6 MB 231.6 MB/s eta 0:00:02 2024-08-22T20:33:14.7154639Z  ━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━ 512.9/778.6 MB 231.4 MB/s eta 0:00:02 2024-08-22T20:33:14.7155780Z  ━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━ 520.8/778.6 MB 230.6 MB/s eta 0:00:02 2024-08-22T20:33:14.7156868Z  ━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━ 528.8/778.6 MB 230.5 MB/s eta 0:00:02 2024-08-22T20:33:14.7157947Z  ━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━ 536.9/778.6 MB 234.8 MB/s eta 0:00:02 2024-08-22T20:33:14.7159030Z  ━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━ 544.8/778.6 MB 230.2 MB/s eta 0:00:02 2024-08-22T20:33:14.7160517Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━ 553.1/778.6 MB 238.3 MB/s eta 0:00:01 2024-08-22T20:33:14.7161603Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━ 561.1/778.6 MB 233.6 MB/s eta 0:00:01 2024-08-22T20:33:14.7162700Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━ 569.1/778.6 MB 231.6 MB/s eta 0:00:01 2024-08-22T20:33:14.7163786Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━ 577.1/778.6 MB 231.0 MB/s eta 0:00:01 2024-08-22T20:33:14.7164867Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━ 584.9/778.6 MB 228.7 MB/s eta 0:00:01 2024-08-22T20:33:14.7165938Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━ 592.9/778.6 MB 229.3 MB/s eta 0:00:01 2024-08-22T20:33:14.7167028Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━ 601.0/778.6 MB 234.8 MB/s eta 0:00:01 2024-08-22T20:33:14.7168245Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━ 608.9/778.6 MB 232.0 MB/s eta 0:00:01 2024-08-22T20:33:14.7169527Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 616.9/778.6 MB 231.3 MB/s eta 0:00:01 2024-08-22T20:33:14.7170610Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━ 624.8/778.6 MB 229.9 MB/s eta 0:00:01 2024-08-22T20:33:14.7171682Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━ 632.7/778.6 MB 228.7 MB/s eta 0:00:01 2024-08-22T20:33:14.7172816Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━ 641.0/778.6 MB 237.3 MB/s eta 0:00:01 2024-08-22T20:33:14.7173998Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━ 649.1/778.6 MB 236.3 MB/s eta 0:00:01 2024-08-22T20:33:14.7175073Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━ 657.1/778.6 MB 229.7 MB/s eta 0:00:01 2024-08-22T20:33:14.7176164Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━ 665.1/778.6 MB 232.1 MB/s eta 0:00:01 2024-08-22T20:33:14.7177236Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━ 673.1/778.6 MB 231.1 MB/s eta 0:00:01 2024-08-22T20:33:14.7178526Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━ 681.1/778.6 MB 231.2 MB/s eta 0:00:01 2024-08-22T20:33:14.7179608Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 689.0/778.6 MB 230.1 MB/s eta 0:00:01 2024-08-22T20:33:14.7180696Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 697.0/778.6 MB 232.0 MB/s eta 0:00:01 2024-08-22T20:33:14.7181787Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━ 705.0/778.6 MB 229.5 MB/s eta 0:00:01 2024-08-22T20:33:14.7182859Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━ 712.9/778.6 MB 231.1 MB/s eta 0:00:01 2024-08-22T20:33:14.7183944Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━ 720.9/778.6 MB 231.2 MB/s eta 0:00:01 2024-08-22T20:33:14.7185008Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━ 728.8/778.6 MB 230.3 MB/s eta 0:00:01 2024-08-22T20:33:14.7186078Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 737.1/778.6 MB 238.3 MB/s eta 0:00:01 2024-08-22T20:33:14.7187149Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 745.4/778.6 MB 240.1 MB/s eta 0:00:01 2024-08-22T20:33:14.7188233Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━ 753.7/778.6 MB 241.0 MB/s eta 0:00:01 2024-08-22T20:33:14.7189267Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺ 762.0/778.6 MB 239.9 MB/s eta 0:00:01 2024-08-22T20:33:14.7190422Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 770.3/778.6 MB 239.6 MB/s eta 0:00:01 2024-08-22T20:33:14.7191435Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:14.7192487Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:14.7193470Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:14.7194603Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:16.1505479Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:16.1506972Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:16.1508053Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:16.1509277Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:16.1510303Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:16.1511330Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:16.1512333Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:16.1513318Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:16.1514571Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:16.1515594Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:16.1516594Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:16.1517581Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:16.1518607Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:16.1519607Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:16.1520618Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:16.1521602Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:16.1522607Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:16.1523603Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:16.1524767Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:16.1525750Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:16.1526772Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:16.1527778Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:16.1528919Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:16.1529907Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:16.1530909Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:16.1531923Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:16.1532962Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:16.1534059Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:16.1535063Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:16.1536059Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:16.1537052Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:16.1538062Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:16.1539058Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:16.1540068Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:16.1541054Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:16.1542046Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:16.1543035Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:16.1544023Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:16.1545107Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:16.1546103Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:17.5341660Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:17.5343110Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:17.5344154Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:17.5345145Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:17.5346161Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:17.5347174Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:17.5348407Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:17.5349417Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:17.5350412Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:17.5351416Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:17.5352555Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:17.5353539Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:17.5354546Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:17.5355557Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:17.5356547Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:17.5357534Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:17.5358532Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:17.5359538Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:17.5360523Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:17.5361516Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:17.5362518Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:17.5363562Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:17.5364547Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:17.5365549Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:17.5366542Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:17.5367530Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:17.5368710Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:17.5369706Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:17.5370705Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:17.5371700Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:17.5372776Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:17.5373814Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:17.5374818Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:17.5375801Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:17.5376776Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:17.5378034Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:17.5379052Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:17.5380042Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:17.5381161Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:17.5382167Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:18.9200623Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:18.9201777Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:18.9202810Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:18.9203902Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:18.9204912Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:18.9205934Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:18.9206929Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:18.9207910Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:18.9209021Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:18.9210343Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:18.9211340Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:18.9212352Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:18.9213361Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:18.9214362Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:18.9215352Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:18.9216343Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:18.9217360Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:18.9218353Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:18.9219497Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:18.9220498Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:18.9221497Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:18.9222483Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:18.9223537Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:18.9224535Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:18.9225546Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:18.9226554Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:18.9227546Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:18.9228537Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:18.9229626Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:18.9230614Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:18.9231601Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:18.9232613Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:18.9233664Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:18.9234649Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:18.9235645Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:18.9236660Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:18.9237653Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:18.9238757Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:18.9239753Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:18.9240748Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:20.3052337Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:20.3053939Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:20.3054957Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:20.3055957Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:20.3057037Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:20.3058037Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:20.3059049Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:20.3060048Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:20.3061055Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:20.3062046Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:20.3063266Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:20.3064298Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:20.3065279Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:20.3066285Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:20.3067298Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:20.3068285Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:20.3069284Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:20.3070288Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:20.3071274Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:20.3072258Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:20.3073249Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:20.3074356Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:20.3075354Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:20.3076363Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:20.3079143Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:20.3080138Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:20.3081127Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:20.3082126Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:20.3083108Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:20.3084255Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:20.3085255Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:20.3086234Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:20.3087221Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:20.3088344Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:20.3089342Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:20.3090324Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:20.3091337Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:20.3092327Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:20.3093346Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:20.3094346Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:21.6863243Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:21.6864461Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:21.6865531Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:21.6866547Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:21.6867553Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:21.6868544Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:21.6869587Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:21.6870589Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:21.6871589Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:21.6872929Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:21.6873973Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:21.6874977Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:21.6875970Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:21.6877130Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:21.6878475Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:21.6879493Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:21.6880484Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:21.6881473Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:21.6882471Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:21.6883484Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:21.6884477Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:21.6885470Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:21.6886474Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:21.6887577Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:21.6888669Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:21.6889665Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:21.6890671Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:21.6891734Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:21.6892907Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:21.6893913Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:21.6894974Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:21.6895950Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:21.6897073Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:21.6898064Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:21.6899069Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:21.6900044Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:21.6901029Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:21.6902022Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:21.6903008Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:21.6904007Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:23.4646170Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:23.4647706Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:23.4649014Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:23.4650128Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:23.4651215Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:23.4652232Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:23.4653233Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:23.4654376Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:23.4655415Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:23.4656502Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 778.6/778.6 MB 244.2 MB/s eta 0:00:01 2024-08-22T20:33:23.4657536Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 778.6/778.6 MB 1.3 MB/s eta 0:00:00 2024-08-22T20:33:23.4658986Z [?25hRequirement already satisfied: filelock in /opt/conda/lib/python3.11/site-packages (from torch==2.5.0.dev20240814) (3.13.1) 2024-08-22T20:33:23.4660499Z Requirement already satisfied: typing-extensions>=4.8.0 in /opt/conda/lib/python3.11/site-packages (from torch==2.5.0.dev20240814) (4.12.2) 2024-08-22T20:33:23.4661996Z Requirement already satisfied: networkx in /opt/conda/lib/python3.11/site-packages (from torch==2.5.0.dev20240814) (3.3) 2024-08-22T20:33:23.4663396Z Requirement already satisfied: jinja2 in /opt/conda/lib/python3.11/site-packages (from torch==2.5.0.dev20240814) (3.1.4) 2024-08-22T20:33:23.4664976Z Requirement already satisfied: fsspec in /opt/conda/lib/python3.11/site-packages (from torch==2.5.0.dev20240814) (2024.6.1) 2024-08-22T20:33:23.4666485Z Requirement already satisfied: nvidia-cuda-nvrtc-cu12==12.1.105 in /opt/conda/lib/python3.11/site-packages (from torch==2.5.0.dev20240814) (12.1.105) 2024-08-22T20:33:23.4668311Z Requirement already satisfied: nvidia-cuda-runtime-cu12==12.1.105 in /opt/conda/lib/python3.11/site-packages (from torch==2.5.0.dev20240814) (12.1.105) 2024-08-22T20:33:23.4670035Z Requirement already satisfied: nvidia-cuda-cupti-cu12==12.1.105 in /opt/conda/lib/python3.11/site-packages (from torch==2.5.0.dev20240814) (12.1.105) 2024-08-22T20:33:23.4671757Z Requirement already satisfied: nvidia-cudnn-cu12==9.1.0.70 in /opt/conda/lib/python3.11/site-packages (from torch==2.5.0.dev20240814) (9.1.0.70) 2024-08-22T20:33:23.4673408Z Requirement already satisfied: nvidia-cublas-cu12==12.1.3.1 in /opt/conda/lib/python3.11/site-packages (from torch==2.5.0.dev20240814) (12.1.3.1) 2024-08-22T20:33:23.4675048Z Requirement already satisfied: nvidia-cufft-cu12==11.0.2.54 in /opt/conda/lib/python3.11/site-packages (from torch==2.5.0.dev20240814) (11.0.2.54) 2024-08-22T20:33:23.4676707Z Requirement already satisfied: nvidia-curand-cu12==10.3.2.106 in /opt/conda/lib/python3.11/site-packages (from torch==2.5.0.dev20240814) (10.3.2.106) 2024-08-22T20:33:23.4678787Z Requirement already satisfied: nvidia-cusolver-cu12==11.4.5.107 in /opt/conda/lib/python3.11/site-packages (from torch==2.5.0.dev20240814) (11.4.5.107) 2024-08-22T20:33:23.4680492Z Requirement already satisfied: nvidia-cusparse-cu12==12.1.0.106 in /opt/conda/lib/python3.11/site-packages (from torch==2.5.0.dev20240814) (12.1.0.106) 2024-08-22T20:33:23.4681746Z Collecting nvidia-nccl-cu12==2.21.5 (from torch==2.5.0.dev20240814) 2024-08-22T20:33:23.4683099Z Downloading https://download.pytorch.org/whl/nightly/cu121/nvidia_nccl_cu12-2.21.5-py3-none-manylinux2014_x86_64.whl (188.7 MB) 2024-08-22T20:33:23.4684360Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/188.7 MB ? eta -:--:-- 2024-08-22T20:33:23.4685380Z  ━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 8.0/188.7 MB 241.2 MB/s eta 0:00:01 2024-08-22T20:33:23.4686587Z  ━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 16.2/188.7 MB 236.6 MB/s eta 0:00:01 2024-08-22T20:33:23.4687992Z  ━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 24.4/188.7 MB 237.9 MB/s eta 0:00:01 2024-08-22T20:33:23.4689283Z  ━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 32.5/188.7 MB 235.3 MB/s eta 0:00:01 2024-08-22T20:33:23.4690451Z  ━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 40.6/188.7 MB 236.7 MB/s eta 0:00:01 2024-08-22T20:33:23.4691594Z  ━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 48.8/188.7 MB 235.6 MB/s eta 0:00:01 2024-08-22T20:33:23.4692726Z  ━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━ 56.9/188.7 MB 235.4 MB/s eta 0:00:01 2024-08-22T20:33:23.4693816Z  ━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━ 65.0/188.7 MB 235.2 MB/s eta 0:00:01 2024-08-22T20:33:23.4694965Z  ━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━ 73.1/188.7 MB 234.6 MB/s eta 0:00:01 2024-08-22T20:33:23.4696095Z  ━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━ 81.0/188.7 MB 231.9 MB/s eta 0:00:01 2024-08-22T20:33:23.4697241Z  ━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━ 89.1/188.7 MB 233.4 MB/s eta 0:00:01 2024-08-22T20:33:23.4698333Z  ━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━ 97.2/188.7 MB 235.3 MB/s eta 0:00:01 2024-08-22T20:33:23.4699413Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━ 105.4/188.7 MB 236.3 MB/s eta 0:00:01 2024-08-22T20:33:23.4700552Z  ━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━ 113.6/188.7 MB 236.9 MB/s eta 0:00:01 2024-08-22T20:33:23.4701651Z  ━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━ 121.6/188.7 MB 234.2 MB/s eta 0:00:01 2024-08-22T20:33:23.4702732Z  ━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━ 129.5/188.7 MB 228.7 MB/s eta 0:00:01 2024-08-22T20:33:24.9246926Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━ 137.2/188.7 MB 225.8 MB/s eta 0:00:01 2024-08-22T20:33:24.9248508Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━ 145.3/188.7 MB 233.1 MB/s eta 0:00:01 2024-08-22T20:33:24.9249622Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━ 153.0/188.7 MB 228.0 MB/s eta 0:00:01 2024-08-22T20:33:24.9250711Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━ 160.9/188.7 MB 226.9 MB/s eta 0:00:01 2024-08-22T20:33:24.9252023Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 168.7/188.7 MB 227.0 MB/s eta 0:00:01 2024-08-22T20:33:24.9253108Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━ 176.8/188.7 MB 233.5 MB/s eta 0:00:01 2024-08-22T20:33:24.9254157Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺ 184.6/188.7 MB 228.1 MB/s eta 0:00:01 2024-08-22T20:33:24.9255192Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:24.9256202Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:24.9257197Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:24.9258181Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:24.9259202Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:24.9260199Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:24.9261295Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:24.9262282Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:24.9263283Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:24.9264279Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:24.9265343Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:24.9266330Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:24.9267337Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:24.9268348Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:24.9269329Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:24.9270317Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:24.9271311Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:24.9272407Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:24.9273388Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:24.9274388Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:24.9275433Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:24.9276426Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:24.9277410Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:24.9278733Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:24.9279723Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:24.9280870Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:24.9281854Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:24.9282841Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:24.9283826Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:24.9284809Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:24.9285804Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:24.9286793Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:26.3064797Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:26.3066273Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:26.3067586Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:26.3068631Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:26.3069879Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:26.3070879Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:26.3071877Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:26.3072865Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:26.3073868Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:26.3074871Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:26.3075933Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:26.3076933Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:26.3078238Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:26.3079418Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:26.3080413Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:26.3081412Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:26.3082403Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:26.3083524Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:26.3084506Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:26.3085580Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:26.3086580Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:26.3087575Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:26.3088688Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:26.3089702Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:26.3090694Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:26.3091680Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:26.3092673Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:26.3093666Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:26.3094655Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:26.3095639Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:26.3096633Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:26.3097621Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:26.3098716Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:26.3099701Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:26.3100686Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:26.3101679Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:26.3102788Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:26.3103772Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:26.3104827Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:26.3105819Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:27.7604020Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:27.7605657Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:27.7606837Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:27.7607897Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:27.7609034Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:27.7610367Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:27.7611444Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:27.7612451Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:27.7613492Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:27.7614542Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:27.7615641Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:27.7616701Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 188.7/188.7 MB 232.4 MB/s eta 0:00:01 2024-08-22T20:33:27.7617678Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 188.7/188.7 MB 3.3 MB/s eta 0:00:00 2024-08-22T20:33:27.7618969Z [?25hRequirement already satisfied: nvidia-nvtx-cu12==12.1.105 in /opt/conda/lib/python3.11/site-packages (from torch==2.5.0.dev20240814) (12.1.105) 2024-08-22T20:33:27.7620172Z Collecting pytorch-triton==3.0.0+dedb7bdf33 (from torch==2.5.0.dev20240814) 2024-08-22T20:33:27.7621405Z Downloading https://download.pytorch.org/whl/nightly/pytorch_triton-3.0.0%2Bdedb7bdf33-cp311-cp311-linux_x86_64.whl (239.5 MB) 2024-08-22T20:33:27.7622783Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/239.5 MB ? eta -:--:-- 2024-08-22T20:33:27.7623860Z  ━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 7.9/239.5 MB 237.7 MB/s eta 0:00:01 2024-08-22T20:33:27.7624980Z  ━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 15.9/239.5 MB 230.0 MB/s eta 0:00:01 2024-08-22T20:33:27.7626076Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 23.6/239.5 MB 226.6 MB/s eta 0:00:01 2024-08-22T20:33:27.7627168Z  ━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 31.4/239.5 MB 224.9 MB/s eta 0:00:01 2024-08-22T20:33:27.7628319Z  ━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 39.1/239.5 MB 224.8 MB/s eta 0:00:01 2024-08-22T20:33:27.7629432Z  ━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 46.8/239.5 MB 223.5 MB/s eta 0:00:01 2024-08-22T20:33:27.7630577Z  ━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 54.5/239.5 MB 224.2 MB/s eta 0:00:01 2024-08-22T20:33:27.7631853Z  ━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 62.5/239.5 MB 230.2 MB/s eta 0:00:01 2024-08-22T20:33:27.7632996Z  ━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━ 70.3/239.5 MB 227.8 MB/s eta 0:00:01 2024-08-22T20:33:27.7634089Z  ━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━ 78.1/239.5 MB 223.4 MB/s eta 0:00:01 2024-08-22T20:33:27.7635272Z  ━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━ 85.9/239.5 MB 227.4 MB/s eta 0:00:01 2024-08-22T20:33:27.7636416Z  ━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━ 93.8/239.5 MB 229.3 MB/s eta 0:00:01 2024-08-22T20:33:27.7637502Z  ━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━ 101.9/239.5 MB 233.1 MB/s eta 0:00:01 2024-08-22T20:33:27.7638667Z  ━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━ 110.1/239.5 MB 237.0 MB/s eta 0:00:01 2024-08-22T20:33:27.7639761Z  ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━ 118.1/239.5 MB 234.7 MB/s eta 0:00:01 2024-08-22T20:33:27.7640897Z  ━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━ 126.3/239.5 MB 236.1 MB/s eta 0:00:01 2024-08-22T20:33:27.7642025Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━ 134.4/239.5 MB 235.1 MB/s eta 0:00:01 2024-08-22T20:33:27.7643298Z  ━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━ 142.4/239.5 MB 235.3 MB/s eta 0:00:01 2024-08-22T20:33:27.7644383Z  ━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━ 150.6/239.5 MB 235.7 MB/s eta 0:00:01 2024-08-22T20:33:27.7645587Z  ━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━ 158.7/239.5 MB 236.1 MB/s eta 0:00:01 2024-08-22T20:33:27.7646716Z  ━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━ 166.7/239.5 MB 233.0 MB/s eta 0:00:01 2024-08-22T20:33:27.7647846Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━ 174.6/239.5 MB 229.0 MB/s eta 0:00:01 2024-08-22T20:33:27.7649042Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━ 182.7/239.5 MB 233.7 MB/s eta 0:00:01 2024-08-22T20:33:29.2242357Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 190.8/239.5 MB 235.4 MB/s eta 0:00:01 2024-08-22T20:33:29.2243542Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━ 198.9/239.5 MB 235.1 MB/s eta 0:00:01 2024-08-22T20:33:29.2244942Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━ 206.9/239.5 MB 233.0 MB/s eta 0:00:01 2024-08-22T20:33:29.2246114Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 215.0/239.5 MB 233.8 MB/s eta 0:00:01 2024-08-22T20:33:29.2247214Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━ 223.1/239.5 MB 233.0 MB/s eta 0:00:01 2024-08-22T20:33:29.2248390Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━ 230.9/239.5 MB 227.1 MB/s eta 0:00:01 2024-08-22T20:33:29.2249503Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.0/239.5 MB 233.5 MB/s eta 0:00:01 2024-08-22T20:33:29.2250522Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:29.2251530Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:29.2252559Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:29.2253564Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:29.2254560Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:29.2255614Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:29.2256813Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:29.2257816Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:29.2258825Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:29.2259841Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:29.2260842Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:29.2261840Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:29.2262849Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:29.2263855Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:29.2264858Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:29.2265969Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:29.2267112Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:29.2268122Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:29.2269125Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:29.2270237Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:29.2271251Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:29.2272283Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:29.2273294Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:29.2274298Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:29.2275330Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:29.2276383Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:29.2277544Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:29.2279219Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:29.2280238Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:29.2281228Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:29.2282212Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:29.2283196Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:30.6059743Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:30.6061191Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:30.6062538Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:30.6063608Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:30.6064629Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:30.6065626Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:30.6066953Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:30.6067941Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:30.6068964Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:30.6069965Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:30.6070960Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:30.6071956Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:30.6072956Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:30.6073975Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:30.6074955Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:30.6076132Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:30.6077174Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:30.6078465Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:30.6079444Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:30.6080455Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:30.6081454Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:30.6082462Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:30.6083444Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:30.6084437Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:30.6085428Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:30.6086589Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:30.6087577Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:30.6088675Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:30.6089680Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:30.6090664Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:30.6091644Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:30.6092634Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:30.6093646Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:30.6094637Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:30.6095786Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:30.6096791Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:30.6097788Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:30.6098771Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:30.6099855Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:33:30.6100852Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:35:19.4731014Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:35:19.4732219Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:35:19.4733585Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:35:19.4735013Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:35:19.4736221Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:35:19.4737256Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:35:19.4738289Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:35:19.4739416Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:35:19.4740498Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:35:19.4741557Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:35:19.4742563Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:35:19.4743897Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:35:19.4745211Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:35:19.4746960Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:35:19.4748340Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 239.5/239.5 MB 226.7 MB/s eta 0:00:01 2024-08-22T20:35:19.4749343Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 239.5/239.5 MB 3.2 MB/s eta 0:00:00 2024-08-22T20:35:19.4750141Z [?25hCollecting sympy==1.13.1 (from torch==2.5.0.dev20240814) 2024-08-22T20:35:19.4751039Z Downloading https://download.pytorch.org/whl/nightly/sympy-1.13.1-py3-none-any.whl (6.2 MB) 2024-08-22T20:35:19.4752285Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/6.2 MB ? eta -:--:-- 2024-08-22T20:35:19.4753259Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 6.2/6.2 MB 249.6 MB/s eta 0:00:01 2024-08-22T20:35:19.4754262Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 6.2/6.2 MB 249.6 MB/s eta 0:00:01 2024-08-22T20:35:19.4755353Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 6.2/6.2 MB 249.6 MB/s eta 0:00:01 2024-08-22T20:35:19.4756357Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 6.2/6.2 MB 249.6 MB/s eta 0:00:01 2024-08-22T20:35:19.4757328Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.2/6.2 MB 39.7 MB/s eta 0:00:00 2024-08-22T20:35:19.4758787Z [?25hRequirement already satisfied: nvidia-nvjitlink-cu12 in /opt/conda/lib/python3.11/site-packages (from nvidia-cusolver-cu12==11.4.5.107->torch==2.5.0.dev20240814) (12.6.20) 2024-08-22T20:35:19.4760609Z Requirement already satisfied: mpmath<1.4,>=1.1.0 in /opt/conda/lib/python3.11/site-packages (from sympy==1.13.1->torch==2.5.0.dev20240814) (1.3.0) 2024-08-22T20:35:19.4762165Z Requirement already satisfied: MarkupSafe>=2.0 in /opt/conda/lib/python3.11/site-packages (from jinja2->torch==2.5.0.dev20240814) (2.1.3) 2024-08-22T20:35:19.4763334Z Installing collected packages: sympy, pytorch-triton, nvidia-nccl-cu12, torch 2024-08-22T20:35:19.4763940Z Attempting uninstall: sympy 2024-08-22T20:35:19.4764359Z Found existing installation: sympy 1.13.2 2024-08-22T20:35:19.4764856Z Uninstalling sympy-1.13.2: 2024-08-22T20:35:19.4765312Z Successfully uninstalled sympy-1.13.2 2024-08-22T20:35:19.4765861Z Attempting uninstall: nvidia-nccl-cu12 2024-08-22T20:35:19.4766437Z Found existing installation: nvidia-nccl-cu12 2.20.5 2024-08-22T20:35:19.4766997Z Uninstalling nvidia-nccl-cu12-2.20.5: 2024-08-22T20:35:19.4767558Z Successfully uninstalled nvidia-nccl-cu12-2.20.5 2024-08-22T20:35:19.4768045Z Attempting uninstall: torch 2024-08-22T20:35:19.4768617Z Found existing installation: torch 2.4.0 2024-08-22T20:35:19.4769108Z Uninstalling torch-2.4.0: 2024-08-22T20:35:19.4769556Z Successfully uninstalled torch-2.4.0 2024-08-22T20:35:19.4770657Z Successfully installed nvidia-nccl-cu12-2.21.5 pytorch-triton-3.0.0+dedb7bdf33 sympy-1.13.1 torch-2.5.0.dev20240814+cu121 2024-08-22T20:35:19.4772674Z 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 2024-08-22T20:35:19.4774440Z + pip3 install git+https://github.com/pytorch/ao.git@e11201a62669f582d81cdb33e031a07fb8dfc4f3 2024-08-22T20:35:19.4775415Z Collecting git+https://github.com/pytorch/ao.git@e11201a62669f582d81cdb33e031a07fb8dfc4f3 2024-08-22T20:35:19.4776667Z Cloning https://github.com/pytorch/ao.git (to revision e11201a62669f582d81cdb33e031a07fb8dfc4f3) to /tmp/pip-req-build-w2wle4kr 2024-08-22T20:35:19.4778369Z Running command git clone --filter=blob:none --quiet https://github.com/pytorch/ao.git /tmp/pip-req-build-w2wle4kr 2024-08-22T20:35:19.4779661Z Running command git rev-parse -q --verify 'sha^e11201a62669f582d81cdb33e031a07fb8dfc4f3' 2024-08-22T20:35:19.4780765Z Running command git fetch -q https://github.com/pytorch/ao.git e11201a62669f582d81cdb33e031a07fb8dfc4f3 2024-08-22T20:35:19.4781743Z Running command git checkout -q e11201a62669f582d81cdb33e031a07fb8dfc4f3 2024-08-22T20:35:19.4782610Z Resolved https://github.com/pytorch/ao.git to commit e11201a62669f582d81cdb33e031a07fb8dfc4f3 2024-08-22T20:35:19.4783411Z Preparing metadata (setup.py) ... [?25l- done 2024-08-22T20:35:19.4784008Z [?25hBuilding wheels for collected packages: torchao 2024-08-22T20:35:19.4784789Z Building wheel for torchao (setup.py) ... [?25l- \ | / - \ | / - done 2024-08-22T20:35:19.4786477Z [?25h Created wheel for torchao: filename=torchao-0.4.0+gite11201a-cp311-cp311-linux_x86_64.whl size=1019164 sha256=13ac58874dc4cf5adc351c4dc178a0a0d7b65bd817249a5d7f5bae8adb133247 2024-08-22T20:35:19.4787988Z Stored in directory: /root/.cache/pip/wheels/f7/33/31/b21ec8d5a4ec3826118179c0c853d6f776a1f80c58c0960d0e 2024-08-22T20:35:19.4788773Z Successfully built torchao 2024-08-22T20:35:19.4789157Z Installing collected packages: torchao 2024-08-22T20:35:19.4789691Z Successfully installed torchao-0.4.0+gite11201a 2024-08-22T20:35:19.4791327Z 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 2024-08-22T20:35:19.4792759Z + python3 scripts/patch_triton.py 2024-08-22T20:35:19.4793157Z + pip3 list 2024-08-22T20:35:19.4793447Z Package Version 2024-08-22T20:35:19.4793903Z ------------------------- ----------------------- 2024-08-22T20:35:19.4794370Z absl-py 2.1.0 2024-08-22T20:35:19.4794743Z accelerate 0.33.0 2024-08-22T20:35:19.4795119Z aiohappyeyeballs 2.4.0 2024-08-22T20:35:19.4795497Z aiohttp 3.10.5 2024-08-22T20:35:19.4795865Z aiosignal 1.3.1 2024-08-22T20:35:19.4796220Z altair 5.4.0 2024-08-22T20:35:19.4796643Z anaconda-anon-usage 0.4.4 2024-08-22T20:35:19.4797072Z anaconda-client 1.12.3 2024-08-22T20:35:19.4797436Z attrs 23.1.0 2024-08-22T20:35:19.4797806Z beautifulsoup4 4.12.3 2024-08-22T20:35:19.4798178Z blinker 1.8.2 2024-08-22T20:35:21.2661757Z blobfile 2.1.1 2024-08-22T20:35:21.2662350Z boltons 23.0.0 2024-08-22T20:35:21.2662828Z brotlipy 0.7.0 2024-08-22T20:35:21.2663292Z cachetools 5.5.0 2024-08-22T20:35:21.2663783Z certifi 2024.7.4 2024-08-22T20:35:21.2664284Z cffi 1.15.1 2024-08-22T20:35:21.2664742Z chardet 4.0.0 2024-08-22T20:35:21.2665523Z charset-normalizer 2.0.4 2024-08-22T20:35:21.2665967Z click 8.1.7 2024-08-22T20:35:21.2666446Z cmake 3.30.2 2024-08-22T20:35:21.2666928Z colorama 0.4.6 2024-08-22T20:35:21.2667397Z conda 23.5.2 2024-08-22T20:35:21.2668489Z conda-build 24.3.0 2024-08-22T20:35:21.2668990Z conda-content-trust 0.1.3 2024-08-22T20:35:21.2669367Z conda_index 0.5.0 2024-08-22T20:35:21.2669787Z conda-libmamba-solver 23.5.0 2024-08-22T20:35:21.2670211Z conda-package-handling 2.1.0 2024-08-22T20:35:21.2670598Z conda_package_streaming 0.8.0 2024-08-22T20:35:21.2670974Z cryptography 39.0.1 2024-08-22T20:35:21.2671341Z DataProperty 1.0.1 2024-08-22T20:35:21.2671707Z datasets 2.21.0 2024-08-22T20:35:21.2672076Z defusedxml 0.7.1 2024-08-22T20:35:21.2672426Z dill 0.3.8 2024-08-22T20:35:21.2672783Z evaluate 0.4.2 2024-08-22T20:35:21.2673155Z fastjsonschema 2.16.2 2024-08-22T20:35:21.2673520Z filelock 3.13.1 2024-08-22T20:35:21.2673878Z Flask 3.0.3 2024-08-22T20:35:21.2674239Z frozenlist 1.4.1 2024-08-22T20:35:21.2674607Z fsspec 2024.6.1 2024-08-22T20:35:21.2674978Z gguf 0.9.1 2024-08-22T20:35:21.2675332Z gitdb 4.0.11 2024-08-22T20:35:21.2675691Z GitPython 3.1.43 2024-08-22T20:35:21.2676114Z huggingface-hub 0.24.6 2024-08-22T20:35:21.2676485Z idna 3.4 2024-08-22T20:35:21.2676835Z itsdangerous 2.2.0 2024-08-22T20:35:21.2677195Z Jinja2 3.1.4 2024-08-22T20:35:21.2677553Z joblib 1.4.2 2024-08-22T20:35:21.2678275Z jsonlines 4.0.0 2024-08-22T20:35:21.2678635Z jsonpatch 1.32 2024-08-22T20:35:21.2679045Z jsonpointer 2.1 2024-08-22T20:35:21.2679400Z jsonschema 4.19.2 2024-08-22T20:35:21.2679849Z jsonschema-specifications 2023.7.1 2024-08-22T20:35:21.2680247Z jupyter_core 5.7.2 2024-08-22T20:35:21.2680653Z libarchive-c 2.9 2024-08-22T20:35:21.2681061Z libmambapy 1.4.1 2024-08-22T20:35:21.2681425Z lm_eval 0.4.2 2024-08-22T20:35:21.2681772Z lxml 4.9.4 2024-08-22T20:35:21.2682174Z markdown-it-py 3.0.0 2024-08-22T20:35:21.2682539Z MarkupSafe 2.1.3 2024-08-22T20:35:21.2682895Z mbstrdecoder 1.1.3 2024-08-22T20:35:21.2683254Z mdurl 0.1.2 2024-08-22T20:35:21.2683607Z menuinst 2.1.2 2024-08-22T20:35:21.2684008Z more-itertools 10.1.0 2024-08-22T20:35:21.2684376Z mpmath 1.3.0 2024-08-22T20:35:21.2684741Z multidict 6.0.5 2024-08-22T20:35:21.2685103Z multiprocess 0.70.16 2024-08-22T20:35:21.2685479Z narwhals 1.5.2 2024-08-22T20:35:21.2685834Z nbformat 5.9.2 2024-08-22T20:35:21.2686186Z networkx 3.3 2024-08-22T20:35:21.2686539Z ninja 1.11.1.1 2024-08-22T20:35:21.2686904Z nltk 3.9.1 2024-08-22T20:35:21.2687254Z numexpr 2.10.1 2024-08-22T20:35:21.2687628Z numpy 1.26.4 2024-08-22T20:35:21.2688051Z nvidia-cublas-cu12 12.1.3.1 2024-08-22T20:35:21.2688586Z nvidia-cuda-cupti-cu12 12.1.105 2024-08-22T20:35:21.2689036Z nvidia-cuda-nvrtc-cu12 12.1.105 2024-08-22T20:35:21.2689483Z nvidia-cuda-runtime-cu12 12.1.105 2024-08-22T20:35:21.2689917Z nvidia-cudnn-cu12 9.1.0.70 2024-08-22T20:35:21.2690352Z nvidia-cufft-cu12 11.0.2.54 2024-08-22T20:35:21.2690798Z nvidia-curand-cu12 10.3.2.106 2024-08-22T20:35:21.2691254Z nvidia-cusolver-cu12 11.4.5.107 2024-08-22T20:35:21.2691709Z nvidia-cusparse-cu12 12.1.0.106 2024-08-22T20:35:21.2692152Z nvidia-nccl-cu12 2.21.5 2024-08-22T20:35:21.2692578Z nvidia-nvjitlink-cu12 12.6.20 2024-08-22T20:35:21.2693013Z nvidia-nvtx-cu12 12.1.105 2024-08-22T20:35:21.2693398Z packaging 23.0 2024-08-22T20:35:21.2693752Z pandas 2.2.2 2024-08-22T20:35:21.2694117Z pathvalidate 3.2.0 2024-08-22T20:35:21.2694621Z peft 0.12.0 2024-08-22T20:35:21.2694982Z pillow 10.4.0 2024-08-22T20:35:21.2695346Z pip 23.1.2 2024-08-22T20:35:21.2695712Z pkginfo 1.10.0 2024-08-22T20:35:21.2696072Z platformdirs 3.10.0 2024-08-22T20:35:21.2696439Z pluggy 1.0.0 2024-08-22T20:35:21.2696802Z portalocker 2.10.1 2024-08-22T20:35:21.2697163Z protobuf 5.27.3 2024-08-22T20:35:21.2697526Z psutil 5.9.0 2024-08-22T20:35:21.2697895Z pyarrow 17.0.0 2024-08-22T20:35:21.2698250Z pybind11 2.13.5 2024-08-22T20:35:21.2698611Z pycosat 0.6.4 2024-08-22T20:35:21.2698974Z pycparser 2.21 2024-08-22T20:35:21.2699339Z pycryptodomex 3.20.0 2024-08-22T20:35:21.2699711Z pydeck 0.9.1 2024-08-22T20:35:21.2700075Z Pygments 2.18.0 2024-08-22T20:35:21.2700441Z pyOpenSSL 23.0.0 2024-08-22T20:35:21.2700806Z PySocks 1.7.1 2024-08-22T20:35:21.2701172Z pytablewriter 1.2.0 2024-08-22T20:35:21.2701606Z python-dateutil 2.9.0.post0 2024-08-22T20:35:21.2702091Z pytorch-triton 3.0.0+dedb7bdf33 2024-08-22T20:35:21.2702514Z pytz 2024.1 2024-08-22T20:35:21.2702871Z PyYAML 6.0.1 2024-08-22T20:35:21.2703234Z referencing 0.30.2 2024-08-22T20:35:21.2703606Z regex 2024.7.24 2024-08-22T20:35:21.2704094Z requests 2.32.3 2024-08-22T20:35:21.2704508Z requests-toolbelt 1.0.0 2024-08-22T20:35:21.2704873Z rich 13.7.1 2024-08-22T20:35:21.2705266Z rouge-score 0.1.2 2024-08-22T20:35:21.2705674Z rpds-py 0.10.6 2024-08-22T20:35:21.2706043Z ruamel.yaml 0.17.21 2024-08-22T20:35:21.2706409Z sacrebleu 2.4.3 2024-08-22T20:35:21.2706772Z safetensors 0.4.4 2024-08-22T20:35:21.2707183Z scikit-learn 1.5.1 2024-08-22T20:35:21.2707538Z scipy 1.14.1 2024-08-22T20:35:21.2707904Z sentencepiece 0.2.0 2024-08-22T20:35:21.2708275Z setuptools 67.8.0 2024-08-22T20:35:21.2708626Z six 1.16.0 2024-08-22T20:35:21.2708982Z smmap 5.0.1 2024-08-22T20:35:21.2709338Z snakeviz 2.2.0 2024-08-22T20:35:21.2709691Z soupsieve 2.5 2024-08-22T20:35:21.2710048Z sqlitedict 2.1.0 2024-08-22T20:35:21.2710420Z streamlit 1.37.1 2024-08-22T20:35:21.2710790Z sympy 1.13.1 2024-08-22T20:35:21.2711191Z tabledata 1.3.3 2024-08-22T20:35:21.2711557Z tabulate 0.9.0 2024-08-22T20:35:21.2711912Z tcolorpy 0.1.6 2024-08-22T20:35:21.2712267Z tenacity 8.5.0 2024-08-22T20:35:21.2712629Z threadpoolctl 3.5.0 2024-08-22T20:35:21.2712989Z tiktoken 0.7.0 2024-08-22T20:35:21.2713352Z tokenizers 0.19.1 2024-08-22T20:35:21.2713721Z toml 0.10.2 2024-08-22T20:35:21.2714074Z toolz 0.12.0 2024-08-22T20:35:21.2714478Z torch 2.5.0.dev20240814+cu121 2024-08-22T20:35:21.2714936Z torchao 0.4.0+gite11201a 2024-08-22T20:35:21.2715343Z tornado 6.4.1 2024-08-22T20:35:21.2715704Z tqdm 4.66.5 2024-08-22T20:35:21.2716123Z tqdm-multiprocess 0.0.11 2024-08-22T20:35:21.2716497Z traitlets 5.14.3 2024-08-22T20:35:21.2716865Z transformers 4.44.2 2024-08-22T20:35:21.2717229Z typepy 1.3.2 2024-08-22T20:35:21.2717589Z typing_extensions 4.12.2 2024-08-22T20:35:21.2717958Z tzdata 2024.1 2024-08-22T20:35:21.2718317Z urllib3 1.26.16 2024-08-22T20:35:21.2718679Z watchdog 4.0.2 2024-08-22T20:35:21.2719038Z Werkzeug 3.0.4 2024-08-22T20:35:21.2719491Z wheel 0.38.4 2024-08-22T20:35:21.2719847Z word2number 1.1 2024-08-22T20:35:21.2720200Z xxhash 3.5.0 2024-08-22T20:35:21.2720551Z yarl 1.9.4 2024-08-22T20:35:21.2720916Z zstandard 0.19.0 2024-08-22T20:35:21.2721320Z zstd 1.5.5.1 2024-08-22T20:35:21.2722027Z + python3 -c 'import torch;print(f"torch: {torch.__version__, torch.version.git_version}")' 2024-08-22T20:35:21.2722949Z torch: ('2.5.0.dev20240814+cu121', '3a023a67c47bcde45538c9991e332d21ac548e46') 2024-08-22T20:35:21.2723558Z + echo ::endgroup:: 2024-08-22T20:35:21.2724246Z ##[endgroup] 2024-08-22T20:35:21.2724672Z + echo '::group::Download checkpoints' 2024-08-22T20:35:21.2725308Z ##[group]Download checkpoints 2024-08-22T20:35:21.2725731Z + mkdir -p checkpoints/stories15M 2024-08-22T20:35:21.2726128Z + pushd checkpoints/stories15M 2024-08-22T20:35:21.2726629Z /pytorch/torchchat/checkpoints/stories15M /pytorch/torchchat 2024-08-22T20:35:21.2727382Z + wget https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.pt 2024-08-22T20:35:21.2728417Z --2024-08-22 20:35:21-- https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.pt 2024-08-22T20:35:21.2729352Z Resolving huggingface.co (huggingface.co)... 18.154.227.69, 18.154.227.87, 18.154.227.7, ... 2024-08-22T20:35:21.2730195Z Connecting to huggingface.co (huggingface.co)|18.154.227.69|:443... connected. 2024-08-22T20:35:21.2730879Z HTTP request sent, awaiting response... 302 Found 2024-08-22T20:35:21.2739832Z Location: https://cdn-lfs.huggingface.co/repos/88/4b/884bade32e5ee32eea725c5087af1358179a1bea94a4f6abc3c0470c9610ac38/3da00c0fef684f3f83b457736837c46ab55e92a26662b61d6104de2d271c708d?response-content-disposition=inline%3B+filename*%3DUTF-8%27%27stories15M.pt%3B+filename%3D%22stories15M.pt%22%3B&Expires=1724617338&Policy=eyJTdGF0ZW1lbnQiOlt7IkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTcyNDYxNzMzOH19LCJSZXNvdXJjZSI6Imh0dHBzOi8vY2RuLWxmcy5odWdnaW5nZmFjZS5jby9yZXBvcy84OC80Yi84ODRiYWRlMzJlNWVlMzJlZWE3MjVjNTA4N2FmMTM1ODE3OWExYmVhOTRhNGY2YWJjM2MwNDcwYzk2MTBhYzM4LzNkYTAwYzBmZWY2ODRmM2Y4M2I0NTc3MzY4MzdjNDZhYjU1ZTkyYTI2NjYyYjYxZDYxMDRkZTJkMjcxYzcwOGQ%7EcmVzcG9uc2UtY29udGVudC1kaXNwb3NpdGlvbj0qIn1dfQ__&Signature=f1ZHqXa6KImnUwA63gTrv9x13BSVC%7EqMQmfdoui8ED8v8gRi2oYs5U0B%7EWDyByLVArLhlV37HyJURKfPMSVfWGJw7KqB0oFqgDw-ijNp4EtF0M1LvS5AhHLLaNEGo9qALmHmCwLGYDw28M151zvvaN5R6KEvHmgZcYB1gt49foS21yU3xn8tB0-vRLRHhsUQThQPqOQG3OHRci8CkP4o25g38t-VaKbNypL1JR%7ERPJ9B%7ECxMYBuZZq9TZCwvdYeuVPD8BBNYFiSBpYQdCC%7Evh6ZNEqpS5uzWAjT9V76hFPWwKa9OnTWohJ63DQlWPLfgKJu7n565GhtP6M6qnaVeMA__&Key-Pair-Id=K3ESJI6DHPFC7 [following] 2024-08-22T20:35:21.2756302Z --2024-08-22 20:35:21-- https://cdn-lfs.huggingface.co/repos/88/4b/884bade32e5ee32eea725c5087af1358179a1bea94a4f6abc3c0470c9610ac38/3da00c0fef684f3f83b457736837c46ab55e92a26662b61d6104de2d271c708d?response-content-disposition=inline%3B+filename*%3DUTF-8%27%27stories15M.pt%3B+filename%3D%22stories15M.pt%22%3B&Expires=1724617338&Policy=eyJTdGF0ZW1lbnQiOlt7IkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTcyNDYxNzMzOH19LCJSZXNvdXJjZSI6Imh0dHBzOi8vY2RuLWxmcy5odWdnaW5nZmFjZS5jby9yZXBvcy84OC80Yi84ODRiYWRlMzJlNWVlMzJlZWE3MjVjNTA4N2FmMTM1ODE3OWExYmVhOTRhNGY2YWJjM2MwNDcwYzk2MTBhYzM4LzNkYTAwYzBmZWY2ODRmM2Y4M2I0NTc3MzY4MzdjNDZhYjU1ZTkyYTI2NjYyYjYxZDYxMDRkZTJkMjcxYzcwOGQ%7EcmVzcG9uc2UtY29udGVudC1kaXNwb3NpdGlvbj0qIn1dfQ__&Signature=f1ZHqXa6KImnUwA63gTrv9x13BSVC%7EqMQmfdoui8ED8v8gRi2oYs5U0B%7EWDyByLVArLhlV37HyJURKfPMSVfWGJw7KqB0oFqgDw-ijNp4EtF0M1LvS5AhHLLaNEGo9qALmHmCwLGYDw28M151zvvaN5R6KEvHmgZcYB1gt49foS21yU3xn8tB0-vRLRHhsUQThQPqOQG3OHRci8CkP4o25g38t-VaKbNypL1JR%7ERPJ9B%7ECxMYBuZZq9TZCwvdYeuVPD8BBNYFiSBpYQdCC%7Evh6ZNEqpS5uzWAjT9V76hFPWwKa9OnTWohJ63DQlWPLfgKJu7n565GhtP6M6qnaVeMA__&Key-Pair-Id=K3ESJI6DHPFC7 2024-08-22T20:35:21.2764958Z Resolving cdn-lfs.huggingface.co (cdn-lfs.huggingface.co)... 108.138.64.49, 108.138.64.121, 108.138.64.111, ... 2024-08-22T20:35:21.2766188Z Connecting to cdn-lfs.huggingface.co (cdn-lfs.huggingface.co)|108.138.64.49|:443... connected. 2024-08-22T20:35:56.7317450Z HTTP request sent, awaiting response... 200 OK 2024-08-22T20:35:56.7318332Z Length: 60789090 (58M) [binary/octet-stream] 2024-08-22T20:35:56.7321213Z Saving to: ‘stories15M.pt’ 2024-08-22T20:35:56.7321522Z 2024-08-22T20:35:56.7321529Z 2024-08-22T20:35:56.7321861Z 0% [ ] 0 --.-K/s 2024-08-22T20:35:56.7322594Z 100%[======================================>] 60,789,090 --.-K/s in 0.1s 2024-08-22T20:35:56.7323041Z 2024-08-22T20:35:56.7333290Z 2024-08-22 20:35:21 (397 MB/s) - ‘stories15M.pt’ saved [60789090/60789090] 2024-08-22T20:35:56.7333881Z 2024-08-22T20:35:56.7334296Z + wget https://github.com/karpathy/llama2.c/raw/master/tokenizer.model 2024-08-22T20:35:56.7335524Z --2024-08-22 20:35:21-- https://github.com/karpathy/llama2.c/raw/master/tokenizer.model 2024-08-22T20:35:56.7336319Z Resolving github.com (github.com)... 140.82.114.4 2024-08-22T20:35:56.7337044Z Connecting to github.com (github.com)|140.82.114.4|:443... connected. 2024-08-22T20:35:56.7337745Z HTTP request sent, awaiting response... 302 Found 2024-08-22T20:35:56.7338629Z Location: https://raw.githubusercontent.com/karpathy/llama2.c/master/tokenizer.model [following] 2024-08-22T20:35:56.7339883Z --2024-08-22 20:35:21-- https://raw.githubusercontent.com/karpathy/llama2.c/master/tokenizer.model 2024-08-22T20:35:56.7341133Z Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.111.133, 185.199.108.133, 185.199.109.133, ... 2024-08-22T20:35:56.7342812Z Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.111.133|:443... connected. 2024-08-22T20:35:56.7343734Z HTTP request sent, awaiting response... 200 OK 2024-08-22T20:35:56.7344384Z Length: 499723 (488K) [application/octet-stream] 2024-08-22T20:35:56.7344967Z Saving to: ‘tokenizer.model’ 2024-08-22T20:35:56.7345257Z 2024-08-22T20:35:56.7345263Z 2024-08-22T20:35:56.7345584Z 0% [ ] 0 --.-K/s 2024-08-22T20:35:56.7346301Z 100%[======================================>] 499,723 --.-K/s in 0.006s 2024-08-22T20:35:56.7346706Z 2024-08-22T20:35:56.7347184Z 2024-08-22 20:35:21 (85.5 MB/s) - ‘tokenizer.model’ saved [499723/499723] 2024-08-22T20:35:56.7347885Z 2024-08-22T20:35:56.7348047Z + popd 2024-08-22T20:35:56.7348552Z /pytorch/torchchat 2024-08-22T20:35:56.7348988Z + echo ::endgroup:: 2024-08-22T20:35:56.7349868Z ##[endgroup] 2024-08-22T20:35:56.7350459Z + echo '::group::Run inference' 2024-08-22T20:35:56.7351332Z ##[group]Run inference 2024-08-22T20:35:56.7351938Z + export MODEL_PATH=checkpoints/stories15M/stories15M.pt 2024-08-22T20:35:56.7352620Z + MODEL_PATH=checkpoints/stories15M/stories15M.pt 2024-08-22T20:35:56.7353302Z + export MODEL_NAME=stories15M 2024-08-22T20:35:56.7353847Z + MODEL_NAME=stories15M 2024-08-22T20:35:56.7354366Z + export MODEL_DIR=/tmp 2024-08-22T20:35:56.7354921Z + MODEL_DIR=/tmp 2024-08-22T20:35:56.7355477Z + for DTYPE in bfloat16 float16 float32 2024-08-22T20:35:56.7356628Z + python generate.py --checkpoint-path checkpoints/stories15M/stories15M.pt --device cpu --dtype bfloat16 --temperature 0 2024-08-22T20:35:56.7357549Z 2024-08-22T20:35:56.7357872Z Downloading builder script: 0% 0.00/5.67k [00:00/dev/null 2>/dev/null; then 2024-08-22T20:56:37.7107434Z  mv -v dist/*.whl "${RUNNER_ARTIFACT_DIR}/" 2024-08-22T20:56:37.7107893Z  fi 2024-08-22T20:56:37.7108282Z  if [[ -d "artifacts-to-be-uploaded" ]]; then 2024-08-22T20:56:37.7108936Z  mv -v artifacts-to-be-uploaded/* "${RUNNER_ARTIFACT_DIR}/" 2024-08-22T20:56:37.7109489Z  fi 2024-08-22T20:56:37.7110109Z  # Set to fail upload step if there are no files for upload and expected files for upload 2024-08-22T20:56:37.7110942Z  echo 'if-no-files-found=error' >> "${GITHUB_OUTPUT}" 2024-08-22T20:56:37.7111461Z fi 2024-08-22T20:56:37.7111741Z  2024-08-22T20:56:37.7112014Z upload_docs=0 2024-08-22T20:56:37.7112590Z # Check if there are files in the documentation folder to upload, note that 2024-08-22T20:56:37.7113247Z # empty folders do not count 2024-08-22T20:56:37.7113873Z if find "${RUNNER_DOCS_DIR}" -mindepth 1 -maxdepth 1 -type f | read -r; then 2024-08-22T20:56:37.7114739Z  # TODO: Add a check here to test if on ec2 because if we're not on ec2 then this 2024-08-22T20:56:37.7115475Z  # upload will probably not work correctly 2024-08-22T20:56:37.7115950Z  upload_docs=1 2024-08-22T20:56:37.7116277Z fi 2024-08-22T20:56:37.7116710Z echo "upload-docs=${upload_docs}" >> "${GITHUB_OUTPUT}" 2024-08-22T20:56:37.7127270Z shell: /usr/bin/bash -e {0} 2024-08-22T20:56:37.7127610Z env: 2024-08-22T20:56:37.7127943Z DOCKER_IMAGE: pytorch/conda-builder:cuda12.1 2024-08-22T20:56:37.7128540Z REPOSITORY: pytorch/torchchat 2024-08-22T20:56:37.7128910Z PR_NUMBER: 1044 2024-08-22T20:56:37.7147748Z SCRIPT: echo "::group::Print machine info" uname -a echo "::endgroup::" echo "::group::Install newer objcopy that supports --set-section-alignment" yum install -y devtoolset-10-binutils export PATH=/opt/rh/devtoolset-10/root/usr/bin/:$PATH echo "::endgroup::" echo "::group::Download checkpoints" # Install requirements ./install_requirements.sh cuda pip3 list python3 -c 'import torch;print(f"torch: {torch.__version__, torch.version.git_version}")' echo "::endgroup::" echo "::group::Download checkpoints" mkdir -p checkpoints/stories15M pushd checkpoints/stories15M wget https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.pt wget https://github.com/karpathy/llama2.c/raw/master/tokenizer.model popd echo "::endgroup::" echo "::group::Run inference" export MODEL_PATH=checkpoints/stories15M/stories15M.pt export MODEL_NAME=stories15M export MODEL_DIR=/tmp for DTYPE in bfloat16 float16 float32; do ################################################################### # group with different temperatures python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 ################################################################### # group with different temperatures and prefill, and compile # and prefill compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --compile --compile-prefill ################################################################### # group with different temperatures and sequential prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill ################################################################### # group with different temperatures and prefill, and compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill --compile done echo "tests complete" echo "******************************************" echo "::endgroup::" 2024-08-22T20:56:37.7167214Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2024-08-22T20:56:37.7167983Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2024-08-22T20:56:37.7168753Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2024-08-22T20:56:37.7169361Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2024-08-22T20:56:37.7169855Z UPLOAD_ARTIFACT_NAME: 2024-08-22T20:56:37.7170232Z ##[endgroup] 2024-08-22T20:56:37.7270344Z Prepare all required actions 2024-08-22T20:56:37.7308637Z ##[group]Run ./test-infra/.github/actions/teardown-linux 2024-08-22T20:56:37.7309112Z with: 2024-08-22T20:56:37.7309366Z env: 2024-08-22T20:56:37.7309688Z DOCKER_IMAGE: pytorch/conda-builder:cuda12.1 2024-08-22T20:56:37.7310138Z REPOSITORY: pytorch/torchchat 2024-08-22T20:56:37.7310511Z PR_NUMBER: 1044 2024-08-22T20:56:37.7329799Z SCRIPT: echo "::group::Print machine info" uname -a echo "::endgroup::" echo "::group::Install newer objcopy that supports --set-section-alignment" yum install -y devtoolset-10-binutils export PATH=/opt/rh/devtoolset-10/root/usr/bin/:$PATH echo "::endgroup::" echo "::group::Download checkpoints" # Install requirements ./install_requirements.sh cuda pip3 list python3 -c 'import torch;print(f"torch: {torch.__version__, torch.version.git_version}")' echo "::endgroup::" echo "::group::Download checkpoints" mkdir -p checkpoints/stories15M pushd checkpoints/stories15M wget https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.pt wget https://github.com/karpathy/llama2.c/raw/master/tokenizer.model popd echo "::endgroup::" echo "::group::Run inference" export MODEL_PATH=checkpoints/stories15M/stories15M.pt export MODEL_NAME=stories15M export MODEL_DIR=/tmp for DTYPE in bfloat16 float16 float32; do ################################################################### # group with different temperatures python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 ################################################################### # group with different temperatures and prefill, and compile # and prefill compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --compile --compile-prefill ################################################################### # group with different temperatures and sequential prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill ################################################################### # group with different temperatures and prefill, and compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill --compile done echo "tests complete" echo "******************************************" echo "::endgroup::" 2024-08-22T20:56:37.7349263Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2024-08-22T20:56:37.7350031Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2024-08-22T20:56:37.7350740Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2024-08-22T20:56:37.7351356Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2024-08-22T20:56:37.7351826Z ##[endgroup] 2024-08-22T20:56:37.7372771Z ##[group]Run set -eou pipefail 2024-08-22T20:56:37.7373161Z set -eou pipefail 2024-08-22T20:56:37.7373500Z  2024-08-22T20:56:37.7373998Z echo "Holding runner for 2 hours until all ssh sessions have logged out" 2024-08-22T20:56:37.7374619Z for _ in $(seq 1440); do 2024-08-22T20:56:37.7375081Z  # Break if no ssh session exists anymore 2024-08-22T20:56:37.7375567Z  if [ "$(who)" = "" ]; then 2024-08-22T20:56:37.7375959Z  break 2024-08-22T20:56:37.7376264Z  fi 2024-08-22T20:56:37.7376554Z  echo "." 2024-08-22T20:56:37.7376869Z  sleep 5 2024-08-22T20:56:37.7377174Z done 2024-08-22T20:56:37.7386023Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2024-08-22T20:56:37.7386516Z env: 2024-08-22T20:56:37.7386846Z DOCKER_IMAGE: pytorch/conda-builder:cuda12.1 2024-08-22T20:56:37.7387299Z REPOSITORY: pytorch/torchchat 2024-08-22T20:56:37.7387674Z PR_NUMBER: 1044 2024-08-22T20:56:37.7406586Z SCRIPT: echo "::group::Print machine info" uname -a echo "::endgroup::" echo "::group::Install newer objcopy that supports --set-section-alignment" yum install -y devtoolset-10-binutils export PATH=/opt/rh/devtoolset-10/root/usr/bin/:$PATH echo "::endgroup::" echo "::group::Download checkpoints" # Install requirements ./install_requirements.sh cuda pip3 list python3 -c 'import torch;print(f"torch: {torch.__version__, torch.version.git_version}")' echo "::endgroup::" echo "::group::Download checkpoints" mkdir -p checkpoints/stories15M pushd checkpoints/stories15M wget https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.pt wget https://github.com/karpathy/llama2.c/raw/master/tokenizer.model popd echo "::endgroup::" echo "::group::Run inference" export MODEL_PATH=checkpoints/stories15M/stories15M.pt export MODEL_NAME=stories15M export MODEL_DIR=/tmp for DTYPE in bfloat16 float16 float32; do ################################################################### # group with different temperatures python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 ################################################################### # group with different temperatures and prefill, and compile # and prefill compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --compile --compile-prefill ################################################################### # group with different temperatures and sequential prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill ################################################################### # group with different temperatures and prefill, and compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill --compile done echo "tests complete" echo "******************************************" echo "::endgroup::" 2024-08-22T20:56:37.7426064Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2024-08-22T20:56:37.7426834Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2024-08-22T20:56:37.7427551Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2024-08-22T20:56:37.7428149Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2024-08-22T20:56:37.7428620Z ##[endgroup] 2024-08-22T20:56:37.7457029Z Holding runner for 2 hours until all ssh sessions have logged out 2024-08-22T20:56:37.7518223Z ##[group]Run # ignore expansion of "docker ps -q" since it could be empty 2024-08-22T20:56:37.7518979Z # ignore expansion of "docker ps -q" since it could be empty 2024-08-22T20:56:37.7519566Z # shellcheck disable=SC2046 2024-08-22T20:56:37.7520058Z docker stop $(docker ps -q) || true 2024-08-22T20:56:37.7520521Z # Prune all of the docker images 2024-08-22T20:56:37.7520959Z docker system prune -af 2024-08-22T20:56:37.7530101Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2024-08-22T20:56:37.7530594Z env: 2024-08-22T20:56:37.7530926Z DOCKER_IMAGE: pytorch/conda-builder:cuda12.1 2024-08-22T20:56:37.7531391Z REPOSITORY: pytorch/torchchat 2024-08-22T20:56:37.7531770Z PR_NUMBER: 1044 2024-08-22T20:56:37.7550770Z SCRIPT: echo "::group::Print machine info" uname -a echo "::endgroup::" echo "::group::Install newer objcopy that supports --set-section-alignment" yum install -y devtoolset-10-binutils export PATH=/opt/rh/devtoolset-10/root/usr/bin/:$PATH echo "::endgroup::" echo "::group::Download checkpoints" # Install requirements ./install_requirements.sh cuda pip3 list python3 -c 'import torch;print(f"torch: {torch.__version__, torch.version.git_version}")' echo "::endgroup::" echo "::group::Download checkpoints" mkdir -p checkpoints/stories15M pushd checkpoints/stories15M wget https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.pt wget https://github.com/karpathy/llama2.c/raw/master/tokenizer.model popd echo "::endgroup::" echo "::group::Run inference" export MODEL_PATH=checkpoints/stories15M/stories15M.pt export MODEL_NAME=stories15M export MODEL_DIR=/tmp for DTYPE in bfloat16 float16 float32; do ################################################################### # group with different temperatures python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 ################################################################### # group with different temperatures and prefill, and compile # and prefill compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --compile --compile-prefill ################################################################### # group with different temperatures and sequential prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill ################################################################### # group with different temperatures and prefill, and compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill --compile done echo "tests complete" echo "******************************************" echo "::endgroup::" 2024-08-22T20:56:37.7570391Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2024-08-22T20:56:37.7571156Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2024-08-22T20:56:37.7571880Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2024-08-22T20:56:37.7572489Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2024-08-22T20:56:37.7572964Z ##[endgroup] 2024-08-22T20:56:48.7305897Z 638b8463543e 2024-08-22T20:56:52.1443565Z Deleted Containers: 2024-08-22T20:56:52.1444112Z 638b8463543e1793a9bf9b9c5317033fb1f5078871a798e3dab1e776fe9db640 2024-08-22T20:56:52.1444526Z 2024-08-22T20:56:57.4315873Z Deleted Images: 2024-08-22T20:56:57.4316990Z untagged: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine:latest 2024-08-22T20:56:57.4327163Z untagged: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine@sha256:def822f9851ca422481ec6fee59a9966f12b351c62ccb9aca841526ffaa9f748 2024-08-22T20:56:57.4329012Z deleted: sha256:6dbb9cc54074106d46d4ccb330f2a40a682d49dda5f4844962b7dce9fe44aaec 2024-08-22T20:56:57.4330151Z deleted: sha256:b2d5eeeaba3a22b9b8aa97261957974a6bd65274ebd43e1d81d0a7b8b752b116 2024-08-22T20:56:57.4331047Z untagged: pytorch/conda-builder:cuda12.1 2024-08-22T20:56:57.4332079Z untagged: pytorch/conda-builder@sha256:9f128b503c8de2d2267228e5a5ddfd791872f8fe7e4630afeec3efb07d810e8b 2024-08-22T20:56:57.4333293Z deleted: sha256:ca6cb5e15adf1287624fd5ee41e98e3482f9ba8e8eb49b94e1c89149740d589e 2024-08-22T20:56:57.4334548Z deleted: sha256:7ea5160e27b147a9b8579d1ecaa57d793582bf5bc915c7f8cdbfb0e9d6cb07a7 2024-08-22T20:56:57.4335763Z deleted: sha256:b62ea2cf6a5771e822ce3339bbcc153c9d1d567d410908f8c8bb6364538d5ce4 2024-08-22T20:56:57.4336986Z deleted: sha256:e2aa7aeae6883178dc9137b7198de0dd0e488fe2f3c2350041d78a21c5268174 2024-08-22T20:56:57.4338218Z deleted: sha256:7d64cbcd3947a1e0aa1abd5a9d734cd961aea4c0ec4635ea3294e37e96f69830 2024-08-22T20:56:57.4339455Z deleted: sha256:3eb08d55a9f629f97e2e1c0cf20ff802536c0d341d9ba38f949500fdc3329dc9 2024-08-22T20:56:57.4340690Z deleted: sha256:617916537dafd2cb5f4e62e43d1fffecd492f1dbdd557b93a8d4a3d8516f182a 2024-08-22T20:56:57.4341849Z deleted: sha256:e39e75923171030569887b5cbf74f952383a76c593d9abf08059f9d6c0eba9b6 2024-08-22T20:56:57.4342996Z deleted: sha256:d1a0a10f342c13f93556fdd4df93a12497190394e4198dcd5618cbac69506c9b 2024-08-22T20:56:57.4344159Z deleted: sha256:e9a939e626efc5c03f7b5206aa11981d73de39345c575dcc35552c4b1f4fe935 2024-08-22T20:56:57.4345098Z deleted: sha256:12bf6c0ce8bb61ca65095e25018efabe18faabbf4ba318874150aa3ce13a8008 2024-08-22T20:56:57.4345907Z deleted: sha256:d4899a6466695bcab7f74253d4e13a31e2861aa3346ae5e87cfaec75bfa2a5a1 2024-08-22T20:56:57.4346698Z deleted: sha256:57f423db078477fd48a3b21e0e960108e17ad45def0728927e3607b867c011be 2024-08-22T20:56:57.4347484Z deleted: sha256:4d9e8db683cb433346e5a329c9a1223693b21cbe1ef03ad9669ea169d2531568 2024-08-22T20:56:57.4348290Z deleted: sha256:636b11b88d0d4f380e06ce31e183eb66b39baf66d25b46d671a6d07156272626 2024-08-22T20:56:57.4349391Z deleted: sha256:5fb38e0fdae552967ea7e31c6dbf71dd662194ce4c3e34a73275d955c7516ac9 2024-08-22T20:56:57.4350193Z deleted: sha256:e945d944e062cb5b4b5bce5ca9255339c385aa7e76352cba574e7b9adcbfaf81 2024-08-22T20:56:57.4350984Z deleted: sha256:629a87d40778fa59aae239569d2e4022eb9c73c24d5a8a80b631578c6a0d95de 2024-08-22T20:56:57.4351776Z deleted: sha256:28b222b3a9320157c8d332c568c93debef3da5ea2a633329870ce36a79787ec0 2024-08-22T20:56:57.4352568Z deleted: sha256:77654d0fdc0b2b63fe1b22c1e69a2e39d9c51f0935f861e7828d36f4f736ad79 2024-08-22T20:56:57.4353370Z deleted: sha256:bf65b0450ea54ac3431526e360b0f7c3e7c4ac66000529df84d01fa39061535c 2024-08-22T20:56:57.4354211Z deleted: sha256:2e78abff6cee136276a6b6ac50167c9b9761c7005e02c832947580165140577f 2024-08-22T20:56:57.4355004Z deleted: sha256:779151bb607dc93e1099434061314ed422972abb54587e96a0400de4fdc718c0 2024-08-22T20:56:57.4355773Z deleted: sha256:8b116155e6592b810a5108f4e36aed3bd14b162dc4636a3b9052a885006508a4 2024-08-22T20:56:57.4356976Z deleted: sha256:16eb6de95902da3aa8f26838aa5e0876e791b9d338a43d4ddf7864bccfcb3e25 2024-08-22T20:56:57.4357826Z deleted: sha256:f1cc8ad9df374e9b9b2cfbdcd52ce63a53a3ee8b4f82edcebde8156aeec389ad 2024-08-22T20:56:57.4358642Z deleted: sha256:29937eb76d3be5ed458043982e587e3ae1c44991b86fef436ac51e69b3526331 2024-08-22T20:56:57.4359443Z deleted: sha256:fa0dd9cde456c1e5de9010f19af898bbeaa2c089cc1ae9f6e56166a558d448a8 2024-08-22T20:56:57.4360267Z deleted: sha256:74a8a6ee05c38b7d2b93ff2b2cfc3502c47cc6dc1043ecda998808f02c36076e 2024-08-22T20:56:57.4361059Z deleted: sha256:c734a1acf015e761506178e29744373917426c75b2191f3e74173bd615af5108 2024-08-22T20:56:57.4361822Z deleted: sha256:174f5685490326fc0a1c0f5570b8663732189b327007e47ff13d2ca59673db02 2024-08-22T20:56:57.4362290Z 2024-08-22T20:56:57.4362426Z Total reclaimed space: 24.26GB 2024-08-22T20:56:57.5196647Z ##[group]Run set +e 2024-08-22T20:56:57.5196992Z set +e 2024-08-22T20:56:57.5197332Z if [[ "${NO_SUDO}" == "false" ]]; then 2024-08-22T20:56:57.5197909Z  sudo rm -rf "${GITHUB_WORKSPACE:?}/${REPOSITORY:?}" 2024-08-22T20:56:57.5198405Z else 2024-08-22T20:56:57.5198790Z  rm -rf "${GITHUB_WORKSPACE:?}/${REPOSITORY:?}" 2024-08-22T20:56:57.5199255Z fi 2024-08-22T20:56:57.5199532Z set -e 2024-08-22T20:56:57.5210412Z shell: /usr/bin/bash -e {0} 2024-08-22T20:56:57.5210765Z env: 2024-08-22T20:56:57.5211087Z DOCKER_IMAGE: pytorch/conda-builder:cuda12.1 2024-08-22T20:56:57.5211541Z REPOSITORY: pytorch/torchchat 2024-08-22T20:56:57.5211924Z PR_NUMBER: 1044 2024-08-22T20:56:57.5231103Z SCRIPT: echo "::group::Print machine info" uname -a echo "::endgroup::" echo "::group::Install newer objcopy that supports --set-section-alignment" yum install -y devtoolset-10-binutils export PATH=/opt/rh/devtoolset-10/root/usr/bin/:$PATH echo "::endgroup::" echo "::group::Download checkpoints" # Install requirements ./install_requirements.sh cuda pip3 list python3 -c 'import torch;print(f"torch: {torch.__version__, torch.version.git_version}")' echo "::endgroup::" echo "::group::Download checkpoints" mkdir -p checkpoints/stories15M pushd checkpoints/stories15M wget https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.pt wget https://github.com/karpathy/llama2.c/raw/master/tokenizer.model popd echo "::endgroup::" echo "::group::Run inference" export MODEL_PATH=checkpoints/stories15M/stories15M.pt export MODEL_NAME=stories15M export MODEL_DIR=/tmp for DTYPE in bfloat16 float16 float32; do ################################################################### # group with different temperatures python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 ################################################################### # group with different temperatures and prefill, and compile # and prefill compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --compile --compile-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --compile --compile-prefill ################################################################### # group with different temperatures and sequential prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill ################################################################### # group with different temperatures and prefill, and compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 0.9 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --temperature 1.0 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 100 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 200 --sequential-prefill --compile python generate.py --checkpoint-path ${MODEL_PATH} --device cpu --dtype ${DTYPE} --top-k 500 --sequential-prefill --compile done echo "tests complete" echo "******************************************" echo "::endgroup::" 2024-08-22T20:56:57.5250730Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2024-08-22T20:56:57.5251508Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2024-08-22T20:56:57.5252219Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2024-08-22T20:56:57.5252831Z GPU_FLAG: --gpus all -e NVIDIA_DRIVER_CAPABILITIES=all 2024-08-22T20:56:57.5253309Z NO_SUDO: false 2024-08-22T20:56:57.5253596Z ##[endgroup] 2024-08-22T20:56:57.7157225Z Post job cleanup. 2024-08-22T20:56:57.8134857Z Post job cleanup. 2024-08-22T20:56:57.9009213Z [command]/usr/bin/git version 2024-08-22T20:56:57.9061991Z git version 2.40.1 2024-08-22T20:56:57.9099819Z Temporarily overriding HOME='/home/ec2-user/actions-runner/_work/_temp/d7e4a8d9-63cd-4c8d-903d-3c135a9d45aa' before making global git config changes 2024-08-22T20:56:57.9101036Z Adding repository directory to the temporary git global config as a safe directory 2024-08-22T20:56:57.9105037Z [command]/usr/bin/git config --global --add safe.directory /home/ec2-user/actions-runner/_work/torchchat/torchchat/test-infra 2024-08-22T20:56:57.9151005Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2024-08-22T20:56:57.9195455Z [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' || :" 2024-08-22T20:56:57.9560760Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2024-08-22T20:56:57.9596272Z http.https://github.com/.extraheader 2024-08-22T20:56:57.9606050Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader 2024-08-22T20:56:57.9651265Z [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' || :" 2024-08-22T20:56:58.0092133Z A job completed hook has been configured by the self-hosted runner administrator 2024-08-22T20:56:58.0114915Z ##[group]Run '/home/ec2-user/runner-scripts/after_job.sh' 2024-08-22T20:56:58.0122995Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2024-08-22T20:56:58.0123508Z ##[endgroup] 2024-08-22T20:57:04.8392752Z Cleaning up orphan processes