2024-08-22T20:40:23.7807400Z Current runner version: '2.319.1' 2024-08-22T20:40:23.7810750Z Runner name: 'i-06ae96fea8dbed85a' 2024-08-22T20:40:23.7811190Z Runner group name: 'Default' 2024-08-22T20:40:23.7811770Z Machine name: 'ip-10-0-0-196' 2024-08-22T20:40:23.7820780Z Testing runner upgrade compatibility 2024-08-22T20:40:24.2081070Z ##[group]GITHUB_TOKEN Permissions 2024-08-22T20:40:24.2082270Z Contents: read 2024-08-22T20:40:24.2082600Z Metadata: read 2024-08-22T20:40:24.2082940Z Packages: read 2024-08-22T20:40:24.2083260Z ##[endgroup] 2024-08-22T20:40:24.2084960Z Secret source: Actions 2024-08-22T20:40:24.2085390Z Prepare workflow directory 2024-08-22T20:40:24.2872030Z Prepare all required actions 2024-08-22T20:40:24.2972900Z Getting action download info 2024-08-22T20:40:24.4815330Z Download action repository 'actions/checkout@v3' (SHA:f43a0e5ff2bd294095638e18286ca9a3d1956744) 2024-08-22T20:40:24.7313840Z Download action repository 'actions/download-artifact@v3' (SHA:9bc31d5ccc31df68ecc42ccf4149144866c47d8a) 2024-08-22T20:40:24.9466840Z Download action repository 'pmeier/pytest-results-action@v0.3.0' (SHA:a2c1430e2bddadbad9f49a6f9b879f062c6b19b1) 2024-08-22T20:40:25.2175950Z Download action repository 'actions/upload-artifact@v3' (SHA:a8a3f3ad30e3422c9c7b888a15615d19a852ae32) 2024-08-22T20:40:25.4615300Z Uses: pytorch/test-infra/.github/workflows/macos_job.yml@refs/heads/main (6dab351bed7d1c647665a8b8e883ec5b1c973feb) 2024-08-22T20:40:25.4616570Z ##[group] Inputs 2024-08-22T20:40:25.4623770Z script: set -x # NS/MC: Remove previous installation of torch and torchao first # as this script does not install anything into conda env but rather as system dep pip3 uninstall -y torch || true set -eou pipefail pip3 uninstall -y torchao || true set -eou pipefail echo "::group::Print machine info" uname -a sysctl machdep.cpu.brand_string sysctl machdep.cpu.core_count echo "::endgroup::" echo "::group::Install requirements" # Install requirements ./install_requirements.sh ls -la pwd 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 curl -fsSL -O https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.pt curl -fsSL -O 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 python3 torchchat.py generate --device mps --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** embedding" echo "************************************************************" python3 torchchat.py generate --device mps --quant '{"embedding" : {"bitwidth": 8, "groupsize": 0}}' --checkpoint-path ${MODEL_PATH} --temperature 0 python3 torchchat.py generate --device mps --quant '{"embedding" : {"bitwidth": 8, "groupsize": 8}}' --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** linear int8" echo "************************************************************" python3 torchchat.py generate --device mps --quant '{"linear:int8" : {"bitwidth": 8, "groupsize": 0}}' --checkpoint-path ${MODEL_PATH} --temperature 0 python3 torchchat.py generate --device mps --quant '{"linear:int8" : {"bitwidth": 8, "groupsize": 8}}' --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** linear int4" echo "************************************************************" PYTORCH_ENABLE_MPS_FALLBACK=1 python3 torchchat.py generate --device mps --quant '{"linear:int4" : {"groupsize": 32}}' --checkpoint-path ${MODEL_PATH} --temperature 0 2024-08-22T20:40:25.4631350Z timeout: 30 2024-08-22T20:40:25.4631550Z runner: macos-m1-stable 2024-08-22T20:40:25.4631780Z upload-artifact: 2024-08-22T20:40:25.4632520Z download-artifact: 2024-08-22T20:40:25.4633020Z repository: 2024-08-22T20:40:25.4633210Z fetch-depth: 1 2024-08-22T20:40:25.4633400Z submodules: 2024-08-22T20:40:25.4633580Z ref: 2024-08-22T20:40:25.4633780Z test-infra-repository: pytorch/test-infra 2024-08-22T20:40:25.4634080Z test-infra-ref: 2024-08-22T20:40:25.4634280Z job-name: macos-job 2024-08-22T20:40:25.4634680Z continue-on-error: false 2024-08-22T20:40:25.4634920Z binary-matrix: 2024-08-22T20:40:25.4635110Z secrets-env: 2024-08-22T20:40:25.4635350Z python-version: 3.9 2024-08-22T20:40:25.4635590Z ##[endgroup] 2024-08-22T20:40:25.4635920Z Complete job name: test-mps / macos-job 2024-08-22T20:40:25.5042300Z ##[group]Run echo "::group::Cleanup debug output" 2024-08-22T20:40:25.5042770Z echo "::group::Cleanup debug output" 2024-08-22T20:40:25.5043100Z rm -rfv "${GITHUB_WORKSPACE}" 2024-08-22T20:40:25.5043420Z mkdir -p "${GITHUB_WORKSPACE}" 2024-08-22T20:40:25.5043720Z echo "::endgroup::" 2024-08-22T20:40:25.5062150Z shell: /bin/bash -e {0} 2024-08-22T20:40:25.5062380Z env: 2024-08-22T20:40:25.5062590Z REPOSITORY: pytorch/torchchat 2024-08-22T20:40:25.5069730Z SCRIPT: set -x # NS/MC: Remove previous installation of torch and torchao first # as this script does not install anything into conda env but rather as system dep pip3 uninstall -y torch || true set -eou pipefail pip3 uninstall -y torchao || true set -eou pipefail echo "::group::Print machine info" uname -a sysctl machdep.cpu.brand_string sysctl machdep.cpu.core_count echo "::endgroup::" echo "::group::Install requirements" # Install requirements ./install_requirements.sh ls -la pwd 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 curl -fsSL -O https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.pt curl -fsSL -O 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 python3 torchchat.py generate --device mps --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** embedding" echo "************************************************************" python3 torchchat.py generate --device mps --quant '{"embedding" : {"bitwidth": 8, "groupsize": 0}}' --checkpoint-path ${MODEL_PATH} --temperature 0 python3 torchchat.py generate --device mps --quant '{"embedding" : {"bitwidth": 8, "groupsize": 8}}' --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** linear int8" echo "************************************************************" python3 torchchat.py generate --device mps --quant '{"linear:int8" : {"bitwidth": 8, "groupsize": 0}}' --checkpoint-path ${MODEL_PATH} --temperature 0 python3 torchchat.py generate --device mps --quant '{"linear:int8" : {"bitwidth": 8, "groupsize": 8}}' --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** linear int4" echo "************************************************************" PYTORCH_ENABLE_MPS_FALLBACK=1 python3 torchchat.py generate --device mps --quant '{"linear:int4" : {"groupsize": 32}}' --checkpoint-path ${MODEL_PATH} --temperature 0 2024-08-22T20:40:25.5076970Z ##[endgroup] 2024-08-22T20:40:25.5545170Z ##[group]Cleanup debug output 2024-08-22T20:40:25.5638990Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset.config.json 2024-08-22T20:40:25.5639870Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/types/next-auth-d.ts 2024-08-22T20:40:25.5640580Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/types 2024-08-22T20:40:25.5641360Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/disableFlakyBot.test.ts 2024-08-22T20:40:25.5642490Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/reporter.js 2024-08-22T20:40:25.5643260Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/closeCommands.test.ts 2024-08-22T20:40:25.5644070Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/jobUtils.test.ts 2024-08-22T20:40:25.5644900Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/codevNoWritePermBot.test.ts 2024-08-22T20:40:25.5645990Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/subscriptions.test.ts 2024-08-22T20:40:25.5646820Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/autoCcBot.test.ts 2024-08-22T20:40:25.5647620Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/autoLabelBot.test.ts 2024-08-22T20:40:25.5648360Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/common.ts 2024-08-22T20:40:25.5649080Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/utils.ts 2024-08-22T20:40:25.5649830Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/labelCommands.test.ts 2024-08-22T20:40:25.5650690Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/ciflow-push-trigger.test.ts 2024-08-22T20:40:25.5651610Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/cancelWorkflowsOnCloseBot.test.ts 2024-08-22T20:40:25.5652440Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/retryBot.test.ts 2024-08-22T20:40:25.5653270Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/verifyDisableTestIssue.test.ts 2024-08-22T20:40:25.5654090Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/drciUtils.test.ts 2024-08-22T20:40:25.5654870Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/stripApprovals.test.ts 2024-08-22T20:40:25.5655680Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/mergeCommands.test.ts 2024-08-22T20:40:25.5656580Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/fixtures/push-trigger/pull_request.closed.json 2024-08-22T20:40:25.5657550Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/fixtures/push-trigger/permission.json 2024-08-22T20:40:25.5658550Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/fixtures/push-trigger/pull_request.synchronize.json 2024-08-22T20:40:25.5659600Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/fixtures/push-trigger/pull_request.unlabeled.json 2024-08-22T20:40:25.5660640Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/fixtures/push-trigger/pull_request.labeled.json 2024-08-22T20:40:25.5661530Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/fixtures/push-trigger 2024-08-22T20:40:25.5662360Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/fixtures/pull_request.closed.json 2024-08-22T20:40:25.5663220Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/fixtures/issue_comment.json 2024-08-22T20:40:25.5664070Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/fixtures/pull_request.opened.json 2024-08-22T20:40:25.5664900Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/fixtures/config.json 2024-08-22T20:40:25.5665680Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/fixtures/issue.json 2024-08-22T20:40:25.5666510Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/fixtures/workflow_jobs.json 2024-08-22T20:40:25.5667340Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/fixtures/issues.labeled.json 2024-08-22T20:40:25.5668140Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/fixtures/push.json 2024-08-22T20:40:25.5668960Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/fixtures/pull_request_comment.json 2024-08-22T20:40:25.5670060Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/fixtures/workflow_run.completed.json 2024-08-22T20:40:25.5670960Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/fixtures/pull_request.reopened.json 2024-08-22T20:40:25.5671860Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/fixtures/issues.opened.json 2024-08-22T20:40:25.5672760Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/fixtures/pull_request.synchronize.json 2024-08-22T20:40:25.5673820Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/fixtures/pull_request.labeled.json 2024-08-22T20:40:25.5674750Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/fixtures/pull_request_review_approved.json 2024-08-22T20:40:25.5675680Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/fixtures/pull_request_review.json 2024-08-22T20:40:25.5676520Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/fixtures/pull_files.json 2024-08-22T20:40:25.5677380Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/fixtures/pull_request_reviews.json 2024-08-22T20:40:25.5678250Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/fixtures/known_labels.json 2024-08-22T20:40:25.5679010Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/fixtures 2024-08-22T20:40:25.5679730Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/drciBot.test.ts 2024-08-22T20:40:25.5680570Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/triggerCircleCIWorkflows.test.ts 2024-08-22T20:40:25.5681430Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/metricUtils.test.ts 2024-08-22T20:40:25.5682190Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/drci.test.ts 2024-08-22T20:40:25.5682930Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test/searchUtils.test.ts 2024-08-22T20:40:25.5683600Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/test 2024-08-22T20:40:25.5684250Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/jest.config.js 2024-08-22T20:40:25.5684920Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/next.config.js 2024-08-22T20:40:25.5685610Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/docs/architecture.md 2024-08-22T20:40:25.5686340Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/docs/write-path.png 2024-08-22T20:40:25.5686990Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/docs 2024-08-22T20:40:25.5687860Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/inductor/compilers_benchmark_performance.lambda.json 2024-08-22T20:40:25.5688940Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/inductor/__sql/compilers_benchmark_performance.sql 2024-08-22T20:40:25.5689910Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/inductor/__sql/torchao_query.sql 2024-08-22T20:40:25.5690850Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/inductor/__sql/torchao_query_branches.sql 2024-08-22T20:40:25.5691900Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/inductor/__sql/compilers_benchmark_performance_branches.sql 2024-08-22T20:40:25.5692820Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/inductor/__sql 2024-08-22T20:40:25.5693710Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/inductor/torchao_query_branches.lambda.json 2024-08-22T20:40:25.5694810Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/inductor/compilers_benchmark_performance_branches.lambda.json 2024-08-22T20:40:25.5695840Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/inductor/torchao_query.lambda.json 2024-08-22T20:40:25.5696770Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/inductor 2024-08-22T20:40:25.5697600Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/disabled_test_total.lambda.json 2024-08-22T20:40:25.5698560Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/job_duration_avg.lambda.json 2024-08-22T20:40:25.5699550Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/completed_pr_jobs_aggregate.lambda.json 2024-08-22T20:40:25.5700690Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/master_jobs_red_avg.lambda.json 2024-08-22T20:40:25.5701690Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/tts_duration_historical.lambda.json 2024-08-22T20:40:25.5702660Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/last_branch_push.lambda.json 2024-08-22T20:40:25.5703560Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/top_reds.lambda.json 2024-08-22T20:40:25.5704490Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/__sql/last_successful_jobs.sql 2024-08-22T20:40:25.5705500Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/__sql/workflow_duration_percentile.sql 2024-08-22T20:40:25.5706540Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/__sql/last_successful_workflow.sql 2024-08-22T20:40:25.5707560Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/__sql/job_duration_percentile.sql 2024-08-22T20:40:25.5708490Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/__sql/top_reds.sql 2024-08-22T20:40:25.5709400Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/__sql/job_duration_avg.sql 2024-08-22T20:40:25.5710380Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/__sql/master_commit_red_percent_groups.sql 2024-08-22T20:40:25.5711410Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/__sql/external_contribution_stats.sql 2024-08-22T20:40:25.5712440Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/__sql/tts_duration_historical.sql 2024-08-22T20:40:25.5713350Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/__sql/tts_avg.sql 2024-08-22T20:40:25.5714290Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/__sql/tts_percentile.sql 2024-08-22T20:40:25.5715210Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/__sql/reverts.sql 2024-08-22T20:40:25.5716160Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/__sql/master_commit_red_percent.sql 2024-08-22T20:40:25.5717190Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/__sql/completed_pr_jobs_aggregate.sql 2024-08-22T20:40:25.5718210Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/__sql/number_of_force_pushes.sql 2024-08-22T20:40:25.5719200Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/__sql/disabled_test_total.sql 2024-08-22T20:40:25.5720140Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/__sql/strict_lag_sec.sql 2024-08-22T20:40:25.5721080Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/__sql/master_commit_red_avg.sql 2024-08-22T20:40:25.5722090Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/__sql/master_commit_red.sql 2024-08-22T20:40:25.5723000Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/__sql/correlation_matrix.sql 2024-08-22T20:40:25.5723910Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/__sql/last_branch_push.sql 2024-08-22T20:40:25.5725000Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/__sql/get_workers_on_period.sql 2024-08-22T20:40:25.5725970Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/__sql/queue_times_historical_pct.sql 2024-08-22T20:40:25.5726960Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/__sql/queued_jobs.sql 2024-08-22T20:40:25.5727970Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/__sql/queued_jobs_by_label.sql 2024-08-22T20:40:25.5728890Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/__sql/workflow_load.sql 2024-08-22T20:40:25.5741980Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/__sql/log_captures_count.sql 2024-08-22T20:40:25.5742940Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/__sql/master_jobs_red_avg.sql 2024-08-22T20:40:25.5743920Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/__sql/queue_times_historical.sql 2024-08-22T20:40:25.5744870Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/__sql/master_jobs_red.sql 2024-08-22T20:40:25.5745820Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/__sql/disabled_test_historical.sql 2024-08-22T20:40:25.5746810Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/__sql/workflow_duration_avg.sql 2024-08-22T20:40:25.5747820Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/__sql/tts_duration_historical_percentile.sql 2024-08-22T20:40:25.5748720Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/__sql 2024-08-22T20:40:25.5749560Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/last_successful_jobs.lambda.json 2024-08-22T20:40:25.5750490Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/queued_jobs.lambda.json 2024-08-22T20:40:25.5751350Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/reverts.lambda.json 2024-08-22T20:40:25.5752220Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/workflow_load.lambda.json 2024-08-22T20:40:25.5753110Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/tts_percentile.lambda.json 2024-08-22T20:40:25.5754040Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/log_captures_count.lambda.json 2024-08-22T20:40:25.5755030Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/queue_times_historical.lambda.json 2024-08-22T20:40:25.5756000Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/correlation_matrix.lambda.json 2024-08-22T20:40:25.5757010Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/workflow_duration_percentile.lambda.json 2024-08-22T20:40:25.5758100Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/tts_duration_historical_percentile.lambda.json 2024-08-22T20:40:25.5759130Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/get_workers_on_period.lambda.json 2024-08-22T20:40:25.5760130Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/job_duration_percentile.lambda.json 2024-08-22T20:40:25.5761110Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/workflow_duration_avg.lambda.json 2024-08-22T20:40:25.5762090Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/last_successful_workflow.lambda.json 2024-08-22T20:40:25.5763100Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/queue_times_historical_pct.lambda.json 2024-08-22T20:40:25.5764280Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/master_jobs_red.lambda.json 2024-08-22T20:40:25.5765260Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/external_contribution_stats.lambda.json 2024-08-22T20:40:25.5766270Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/disabled_test_historical.lambda.json 2024-08-22T20:40:25.5767260Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/master_commit_red_avg.lambda.json 2024-08-22T20:40:25.5768360Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/queued_jobs_by_label.lambda.json 2024-08-22T20:40:25.5769290Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/tts_avg.lambda.json 2024-08-22T20:40:25.5770170Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/strict_lag_sec.lambda.json 2024-08-22T20:40:25.5771180Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/master_commit_red_percent_groups.lambda.json 2024-08-22T20:40:25.5772210Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/number_of_force_pushes.lambda.json 2024-08-22T20:40:25.5773200Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/master_commit_red_percent.lambda.json 2024-08-22T20:40:25.5774200Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics/master_commit_red.lambda.json 2024-08-22T20:40:25.5775010Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/metrics 2024-08-22T20:40:25.5775900Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/pytorch_dev_infra_kpis/strict_lag_historical.lambda.json 2024-08-22T20:40:25.5776950Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/pytorch_dev_infra_kpis/time_to_merge.lambda.json 2024-08-22T20:40:25.5778010Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/pytorch_dev_infra_kpis/ttrs_percentiles.lambda.json 2024-08-22T20:40:25.5779020Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/pytorch_dev_infra_kpis/__sql/num_reverts.sql 2024-08-22T20:40:25.5780170Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/pytorch_dev_infra_kpis/__sql/ttrs_percentiles.sql 2024-08-22T20:40:25.5781270Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/pytorch_dev_infra_kpis/__sql/monthly_contribution_stats.sql 2024-08-22T20:40:25.5782570Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/pytorch_dev_infra_kpis/__sql/number_of_force_pushes_historical.sql 2024-08-22T20:40:25.5783720Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/pytorch_dev_infra_kpis/__sql/strict_lag_historical.sql 2024-08-22T20:40:25.5784760Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/pytorch_dev_infra_kpis/__sql/time_to_review.sql 2024-08-22T20:40:25.5785770Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/pytorch_dev_infra_kpis/__sql/time_to_signal.sql 2024-08-22T20:40:25.5786770Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/pytorch_dev_infra_kpis/__sql/time_to_merge.sql 2024-08-22T20:40:25.5787780Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/pytorch_dev_infra_kpis/__sql/ci_wait_time.sql 2024-08-22T20:40:25.5788690Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/pytorch_dev_infra_kpis/__sql 2024-08-22T20:40:25.5789780Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/pytorch_dev_infra_kpis/number_of_force_pushes_historical.lambda.json 2024-08-22T20:40:25.5790910Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/pytorch_dev_infra_kpis/num_reverts.lambda.json 2024-08-22T20:40:25.5792160Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/pytorch_dev_infra_kpis/monthly_contribution_stats.lambda.json 2024-08-22T20:40:25.5793230Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/pytorch_dev_infra_kpis/ci_wait_time.lambda.json 2024-08-22T20:40:25.5794250Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/pytorch_dev_infra_kpis/time_to_signal.lambda.json 2024-08-22T20:40:25.5795260Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/pytorch_dev_infra_kpis/time_to_review.lambda.json 2024-08-22T20:40:25.5796270Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/pytorch_dev_infra_kpis 2024-08-22T20:40:25.5797270Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/torchbench/torchbench_userbenchmark_list_commits.lambda.json 2024-08-22T20:40:25.5798370Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/torchbench/__sql/torchbench_list_userbenchmarks.sql 2024-08-22T20:40:25.5799450Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/torchbench/__sql/torchbench_userbenchmark_list_commits.sql 2024-08-22T20:40:25.5800550Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/torchbench/__sql/torchbench_userbenchmark_query_metrics.sql 2024-08-22T20:40:25.5801470Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/torchbench/__sql 2024-08-22T20:40:25.5802390Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/torchbench/torchbench_list_userbenchmarks.lambda.json 2024-08-22T20:40:25.5803510Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/torchbench/torchbench_userbenchmark_query_metrics.lambda.json 2024-08-22T20:40:25.5804450Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/torchbench 2024-08-22T20:40:25.5805280Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/failed_workflow_jobs.lambda.json 2024-08-22T20:40:25.5806230Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/disabled_test_labels.lambda.json 2024-08-22T20:40:25.5807190Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/get_relevant_alerts.lambda.json 2024-08-22T20:40:25.5808250Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/individual_test_times_per_oncall_per_workflow.lambda.json 2024-08-22T20:40:25.5809290Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/unclassified.lambda.json 2024-08-22T20:40:25.5810180Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/pr_commits.lambda.json 2024-08-22T20:40:25.5811070Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/__sql/get_workflow_jobs.sql 2024-08-22T20:40:25.5812020Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/__sql/test_times_per_workflow_type.sql 2024-08-22T20:40:25.5813010Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/__sql/reverted_prs_with_reason.sql 2024-08-22T20:40:25.5814010Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/__sql/recent_pr_workflows_query.sql 2024-08-22T20:40:25.5814970Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/__sql/get_relevant_alerts.sql 2024-08-22T20:40:25.5815910Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/__sql/flaky_workflows_jobs.sql 2024-08-22T20:40:25.5816850Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/__sql/disabled_non_flaky_tests.sql 2024-08-22T20:40:25.5817750Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/__sql/pr_commits.sql 2024-08-22T20:40:25.5818650Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/__sql/annotated_flaky_jobs.sql 2024-08-22T20:40:25.5819690Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/__sql/test_time_per_file.sql 2024-08-22T20:40:25.5820580Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/__sql/disabled_tests.sql 2024-08-22T20:40:25.5821500Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/__sql/unclassified.sql 2024-08-22T20:40:25.5822420Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/__sql/flaky_tests_across_jobs.sql 2024-08-22T20:40:25.5823460Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/__sql/commit_failed_jobs.sql 2024-08-22T20:40:25.5824390Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/__sql/master_commit_red_jobs.sql 2024-08-22T20:40:25.5825340Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/__sql/weekly_force_merge_stats.sql 2024-08-22T20:40:25.5826310Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/__sql/test_insights_latest_runs.sql 2024-08-22T20:40:25.5827270Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/__sql/failed_workflow_jobs.sql 2024-08-22T20:40:25.5828170Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/__sql/issue_query.sql 2024-08-22T20:40:25.5829140Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/__sql/test_time_per_file_periodic_jobs.sql 2024-08-22T20:40:25.5830200Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/__sql/flaky_tests.sql 2024-08-22T20:40:25.5831220Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/__sql/individual_test_stats_per_workflow_per_oncall.sql 2024-08-22T20:40:25.5838220Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/__sql/num_commits_master.sql 2024-08-22T20:40:25.5839220Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/__sql/test_time_and_price_per_oncall.sql 2024-08-22T20:40:25.5840190Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/__sql/disabled_test_labels.sql 2024-08-22T20:40:25.5841100Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/__sql/test_time_per_class.sql 2024-08-22T20:40:25.5842160Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/__sql/failure_samples_query.sql 2024-08-22T20:40:25.5843130Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/__sql/test_time_per_oncall.sql 2024-08-22T20:40:25.5844060Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/__sql/filter_forced_merge_pr.sql 2024-08-22T20:40:25.5844960Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/__sql/commit_query.sql 2024-08-22T20:40:25.5845870Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/__sql/test_insights_overview.sql 2024-08-22T20:40:25.5846820Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/__sql/commit_jobs_query.sql 2024-08-22T20:40:25.5847720Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/__sql/slow_tests.sql 2024-08-22T20:40:25.5848690Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/__sql/test_time_per_class_periodic_jobs.sql 2024-08-22T20:40:25.5849820Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/__sql/individual_test_times_per_oncall_per_workflow.sql 2024-08-22T20:40:25.5850820Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/__sql/hud_query.sql 2024-08-22T20:40:25.5851610Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/__sql 2024-08-22T20:40:25.5852640Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/failure_samples_query.lambda.json 2024-08-22T20:40:25.5853690Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/test_time_per_class_periodic_jobs.lambda.json 2024-08-22T20:40:25.5854780Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/commit_jobs_query.lambda.json 2024-08-22T20:40:25.5855780Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/reverted_prs_with_reason.lambda.json 2024-08-22T20:40:25.5856960Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/test_time_and_price_per_oncall.lambda.json 2024-08-22T20:40:25.5857990Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/test_time_per_class.lambda.json 2024-08-22T20:40:25.5858980Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/filter_forced_merge_pr.lambda.json 2024-08-22T20:40:25.5859970Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/test_time_per_oncall.lambda.json 2024-08-22T20:40:25.5860990Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/test_times_per_workflow_type.lambda.json 2024-08-22T20:40:25.5862000Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/flaky_test_query.lambda.json 2024-08-22T20:40:25.5862950Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/issue_query.lambda.json 2024-08-22T20:40:25.5863930Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/num_commits_master.lambda.json 2024-08-22T20:40:25.5864890Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/disabled_tests.lambda.json 2024-08-22T20:40:25.5865850Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/annotated_flaky_jobs.lambda.json 2024-08-22T20:40:25.5866840Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/flaky_workflows_jobs.lambda.json 2024-08-22T20:40:25.5867840Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/master_commit_red_jobs.lambda.json 2024-08-22T20:40:25.5868860Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/test_insights_latest_runs.lambda.json 2024-08-22T20:40:25.5869900Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/recent_pr_workflows_query.lambda.json 2024-08-22T20:40:25.5870910Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/get_workflow_jobs.lambda.json 2024-08-22T20:40:25.5871930Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/weekly_force_merge_stats.lambda.json 2024-08-22T20:40:25.5872890Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/hud_query.lambda.json 2024-08-22T20:40:25.5873890Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/test_time_per_file_periodic_jobs.lambda.json 2024-08-22T20:40:25.5874890Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/flaky_tests.lambda.json 2024-08-22T20:40:25.5875830Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/commit_failed_jobs.lambda.json 2024-08-22T20:40:25.5876790Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/test_time_per_file.lambda.json 2024-08-22T20:40:25.5877780Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/flaky_tests_across_jobs.lambda.json 2024-08-22T20:40:25.5878910Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/individual_test_stats_per_workflow_per_oncall.lambda.json 2024-08-22T20:40:25.5879970Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/slow_tests.lambda.json 2024-08-22T20:40:25.5881010Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/commit_query.lambda.json 2024-08-22T20:40:25.5882010Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/disabled_non_flaky_tests.lambda.json 2024-08-22T20:40:25.5883030Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons/test_insights_overview.lambda.json 2024-08-22T20:40:25.5883870Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/commons 2024-08-22T20:40:25.5884740Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/prodVersions.json 2024-08-22T20:40:25.5885670Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/nightlies/nightly_jobs_red_past_day.lambda.json 2024-08-22T20:40:25.5886730Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/nightlies/nightly_jobs_red_by_name.lambda.json 2024-08-22T20:40:25.5887780Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/nightlies/__sql/validation_jobs_red_past_day.sql 2024-08-22T20:40:25.5888820Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/nightlies/__sql/nightly_jobs_red_by_platform.sql 2024-08-22T20:40:25.5889810Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/nightlies/__sql/docker_jobs_red.sql 2024-08-22T20:40:25.5890780Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/nightlies/__sql/nightly_jobs_red_past_day.sql 2024-08-22T20:40:25.5891770Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/nightlies/__sql/validation_jobs_red.sql 2024-08-22T20:40:25.5892750Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/nightlies/__sql/docker_jobs_red_past_day.sql 2024-08-22T20:40:25.5893770Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/nightlies/__sql/nightly_jobs_red_by_name.sql 2024-08-22T20:40:25.5894740Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/nightlies/__sql/nightly_jobs_red.sql 2024-08-22T20:40:25.5895580Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/nightlies/__sql 2024-08-22T20:40:25.5896450Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/nightlies/nightly_jobs_red.lambda.json 2024-08-22T20:40:25.5897430Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/nightlies/validation_jobs_red.lambda.json 2024-08-22T20:40:25.5898480Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/nightlies/nightly_jobs_red_by_platform.lambda.json 2024-08-22T20:40:25.5899540Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/nightlies/docker_jobs_red_past_day.lambda.json 2024-08-22T20:40:25.5900510Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/nightlies/docker_jobs_red.lambda.json 2024-08-22T20:40:25.5901500Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/nightlies/validation_jobs_red_past_day.lambda.json 2024-08-22T20:40:25.5902350Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/nightlies 2024-08-22T20:40:25.5903220Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/utilization/runner_utilization_by_repo.lambda.json 2024-08-22T20:40:25.5904270Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/utilization/__sql/runner_utilization_by_activity.sql 2024-08-22T20:40:25.5905310Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/utilization/__sql/runner_utilization_by_repo.sql 2024-08-22T20:40:25.5906290Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/utilization/__sql/runner_utilization.sql 2024-08-22T20:40:25.5907130Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/utilization/__sql 2024-08-22T20:40:25.5908130Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/utilization/runner_utilization.lambda.json 2024-08-22T20:40:25.5909160Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/utilization/runner_utilization_by_activity.lambda.json 2024-08-22T20:40:25.5910050Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/utilization 2024-08-22T20:40:25.5910880Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/benchmarks/__sql/oss_ci_benchmark_names.sql 2024-08-22T20:40:25.5911950Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/benchmarks/__sql/oss_ci_benchmark_llms.sql 2024-08-22T20:40:25.5912940Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/benchmarks/__sql/oss_ci_benchmark_branches.sql 2024-08-22T20:40:25.5913810Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/benchmarks/__sql 2024-08-22T20:40:25.5914680Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/benchmarks/oss_ci_benchmark_llms.lambda.json 2024-08-22T20:40:25.5915700Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/benchmarks/oss_ci_benchmark_branches.lambda.json 2024-08-22T20:40:25.5916720Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/benchmarks/oss_ci_benchmark_names.lambda.json 2024-08-22T20:40:25.5917560Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset/benchmarks 2024-08-22T20:40:25.5930000Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/rockset 2024-08-22T20:40:25.5930730Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/next-env.d.ts 2024-08-22T20:40:25.5931420Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/.prettierignore 2024-08-22T20:40:25.5932090Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/README.md 2024-08-22T20:40:25.5932770Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/styles/globals.css 2024-08-22T20:40:25.5933420Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/styles 2024-08-22T20:40:25.5934200Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/benchmark/ModeAndDTypePicker.tsx 2024-08-22T20:40:25.5935110Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/benchmark/CommitPanel.tsx 2024-08-22T20:40:25.5936030Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/benchmark/llms/ModelGraphPanel.tsx 2024-08-22T20:40:25.5936960Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/benchmark/llms/SummaryPanel.tsx 2024-08-22T20:40:25.5937860Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/benchmark/llms/common.tsx 2024-08-22T20:40:25.5938670Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/benchmark/llms 2024-08-22T20:40:25.5939550Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/benchmark/compilers/ModelGraphPanel.tsx 2024-08-22T20:40:25.5940550Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/benchmark/compilers/BenchmarkLogs.tsx 2024-08-22T20:40:25.5941540Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/benchmark/compilers/SummaryPanel.tsx 2024-08-22T20:40:25.5942490Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/benchmark/compilers/LogLinks.tsx 2024-08-22T20:40:25.5943440Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/benchmark/compilers/SuitePicker.tsx 2024-08-22T20:40:25.5944380Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/benchmark/compilers/ModelPanel.tsx 2024-08-22T20:40:25.5945360Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/benchmark/compilers/SummaryGraphPanel.tsx 2024-08-22T20:40:25.5946320Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/benchmark/compilers/common.tsx 2024-08-22T20:40:25.5947320Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/benchmark/compilers 2024-08-22T20:40:25.5948120Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/benchmark/common.tsx 2024-08-22T20:40:25.5948990Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/benchmark/torchao/SuitePicker.tsx 2024-08-22T20:40:25.5949900Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/benchmark/torchao/common.tsx 2024-08-22T20:40:25.5950840Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/benchmark/torchao 2024-08-22T20:40:25.5951720Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/benchmark/BranchAndCommitPicker.tsx 2024-08-22T20:40:25.5952560Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/benchmark 2024-08-22T20:40:25.5953330Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/metrics/panels/TablePanel.tsx 2024-08-22T20:40:25.5954330Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/metrics/panels/GenerateIndividualTestsLeaderboard.tsx 2024-08-22T20:40:25.5955460Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/metrics/panels/GenerateTestInsightsOverviewTable.tsx 2024-08-22T20:40:25.5956500Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/metrics/panels/ScalarPanel.tsx 2024-08-22T20:40:25.5957390Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/metrics/panels/WorkflowPicker.tsx 2024-08-22T20:40:25.5958300Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/metrics/panels/TimeSeriesPanel.tsx 2024-08-22T20:40:25.5959120Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/metrics/panels 2024-08-22T20:40:25.5959830Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/metrics 2024-08-22T20:40:25.5960570Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/NavBar.tsx 2024-08-22T20:40:25.5961330Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/WithCommitData.tsx 2024-08-22T20:40:25.5962100Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/SevReport.module.css 2024-08-22T20:40:25.5962890Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/AnnouncementBanner.tsx 2024-08-22T20:40:25.5963660Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/JobArtifact.tsx 2024-08-22T20:40:25.5964420Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/minihud.module.css 2024-08-22T20:40:25.5965280Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/ReproductionCommand.tsx 2024-08-22T20:40:25.5966120Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/GroupJobConclusion.tsx 2024-08-22T20:40:25.5966920Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/ClickHouseCheckBox.tsx 2024-08-22T20:40:25.5967700Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/LoginSection.tsx 2024-08-22T20:40:25.5968540Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/CopyLink.tsx 2024-08-22T20:40:25.5969350Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/TooltipTarget.module.css 2024-08-22T20:40:25.5970120Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/LogViewer.tsx 2024-08-22T20:40:25.5970840Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/JobLinks.tsx 2024-08-22T20:40:25.5971560Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/ValuePicker.tsx 2024-08-22T20:40:25.5972300Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/WorkflowBox.tsx 2024-08-22T20:40:25.5973280Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/AnnouncementBanner.module.css 2024-08-22T20:40:25.5974100Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/JobLinks.module.css 2024-08-22T20:40:25.5974890Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/WorkflowDispatcher.tsx 2024-08-22T20:40:25.5975700Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/GroupHudTableHeaders.tsx 2024-08-22T20:40:25.5976560Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/JobSummary.tsx 2024-08-22T20:40:25.5977290Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/TimeUtils.tsx 2024-08-22T20:40:25.5978010Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/hud.module.css 2024-08-22T20:40:25.5978750Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/FilteredJobList.tsx 2024-08-22T20:40:25.5979520Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/PageSelector.tsx 2024-08-22T20:40:25.5980290Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/JobAnnotationToggle.tsx 2024-08-22T20:40:25.5981070Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/JobConclusion.tsx 2024-08-22T20:40:25.5981830Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/SevReport.tsx 2024-08-22T20:40:25.5982640Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/commit.module.css 2024-08-22T20:40:25.5983440Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/TooltipTarget.tsx 2024-08-22T20:40:25.5984250Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/CommitStatus.tsx 2024-08-22T20:40:25.5985130Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/LogAnnotationToggle.tsx 2024-08-22T20:40:25.5986010Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/NavBar.module.css 2024-08-22T20:40:25.5986820Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/JobFilterInput.tsx 2024-08-22T20:40:25.5987620Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/TestInsights.tsx 2024-08-22T20:40:25.5988450Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/LoginSection.module.css 2024-08-22T20:40:25.5989330Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/JobConclusion.module.css 2024-08-22T20:40:25.5990160Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/LoggedInMenu.tsx 2024-08-22T20:40:25.5991000Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/additionalTestInfo/RerunInfo.tsx 2024-08-22T20:40:25.5991910Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/additionalTestInfo/TestCounts.tsx 2024-08-22T20:40:25.5992850Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/additionalTestInfo/TestInfo.module.css 2024-08-22T20:40:25.5993830Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/additionalTestInfo/TestInfo.tsx 2024-08-22T20:40:25.5994700Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/additionalTestInfo 2024-08-22T20:40:25.5995520Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/metrics.module.css 2024-08-22T20:40:25.5996360Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/VersionControlLinks.tsx 2024-08-22T20:40:25.5997240Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/GranularityPicker.tsx 2024-08-22T20:40:25.5998090Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/DynamicTitle.tsx 2024-08-22T20:40:25.5998890Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/ErrorBoundary.tsx 2024-08-22T20:40:25.5999820Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components/JobTooltip.tsx 2024-08-22T20:40:25.6000640Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/components 2024-08-22T20:40:25.6001270Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/yarn.lock 2024-08-22T20:40:25.6001940Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/public/favicon.ico 2024-08-22T20:40:25.6002840Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/public/failures_spritesheet.png 2024-08-22T20:40:25.6003570Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/public 2024-08-22T20:40:25.6004290Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/.prettierrc.json 2024-08-22T20:40:25.6004960Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/.gitignore 2024-08-22T20:40:25.6005630Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/package-lock.json 2024-08-22T20:40:25.6006320Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/package.json 2024-08-22T20:40:25.6010780Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/clickhouse_queries/filter_forced_merge_pr/query.sql 2024-08-22T20:40:25.6011820Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/clickhouse_queries/filter_forced_merge_pr/params.json 2024-08-22T20:40:25.6012790Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/clickhouse_queries/filter_forced_merge_pr 2024-08-22T20:40:25.6013730Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/clickhouse_queries/queued_jobs_by_label/query.sql 2024-08-22T20:40:25.6014670Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/clickhouse_queries/queued_jobs_by_label 2024-08-22T20:40:25.6015630Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/clickhouse_queries/master_commit_red_avg/query.sql 2024-08-22T20:40:25.6016640Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/clickhouse_queries/master_commit_red_avg/params.json 2024-08-22T20:40:25.6017630Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/clickhouse_queries/master_commit_red_avg 2024-08-22T20:40:25.6018560Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/clickhouse_queries/commit_jobs_query/query.sql 2024-08-22T20:40:25.6019520Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/clickhouse_queries/commit_jobs_query/params.json 2024-08-22T20:40:25.6020470Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/clickhouse_queries/commit_jobs_query 2024-08-22T20:40:25.6021380Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/clickhouse_queries/master_commit_red/query.sql 2024-08-22T20:40:25.6022330Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/clickhouse_queries/master_commit_red/params.json 2024-08-22T20:40:25.6023190Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/clickhouse_queries/master_commit_red 2024-08-22T20:40:25.6024040Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/clickhouse_queries/last_branch_push/query.sql 2024-08-22T20:40:25.6024930Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/clickhouse_queries/last_branch_push/params.json 2024-08-22T20:40:25.6025890Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/clickhouse_queries/last_branch_push 2024-08-22T20:40:25.6026660Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/clickhouse_queries 2024-08-22T20:40:25.6027420Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/scripts/updateSlowTests.mjs 2024-08-22T20:40:25.6028200Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/scripts/checkRockset.mjs 2024-08-22T20:40:25.6029060Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/scripts/deleteOldQueryLambdaVersions.mjs 2024-08-22T20:40:25.6030090Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/scripts/uploadQueryLambda.mjs 2024-08-22T20:40:25.6030890Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/scripts/backfillJobs.mjs 2024-08-22T20:40:25.6031690Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/scripts/downloadQueryLambda.mjs 2024-08-22T20:40:25.6032540Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/scripts/updateQueueTimes.mjs 2024-08-22T20:40:25.6033440Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/scripts/pushRocksetTags.mjs 2024-08-22T20:40:25.6034160Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/scripts 2024-08-22T20:40:25.6034850Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/benchmark/llmUtils.ts 2024-08-22T20:40:25.6035650Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/benchmark/compilerUtils.ts 2024-08-22T20:40:25.6036390Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/benchmark 2024-08-22T20:40:25.6037060Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/fetchPR.ts 2024-08-22T20:40:25.6037700Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/rockset.ts 2024-08-22T20:40:25.6038390Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/useTableFilter.ts 2024-08-22T20:40:25.6039110Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/drciUtils.ts 2024-08-22T20:40:25.6039770Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/s3.ts 2024-08-22T20:40:25.6040440Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/RevertModal.tsx 2024-08-22T20:40:25.6041150Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/useScrollTo.ts 2024-08-22T20:40:25.6041900Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/fetchIssuesByLabel.ts 2024-08-22T20:40:25.6042610Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/github.ts 2024-08-22T20:40:25.6043320Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/fetchFlakyTests.ts 2024-08-22T20:40:25.6044050Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/getAuthors.ts 2024-08-22T20:40:25.6044750Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/searchUtils.ts 2024-08-22T20:40:25.6045440Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/jobUtils.ts 2024-08-22T20:40:25.6046140Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/fetchCommit.ts 2024-08-22T20:40:25.6046850Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/commitUtils.ts 2024-08-22T20:40:25.6047610Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/useGroupingPreference.tsx 2024-08-22T20:40:25.6048380Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/GeneralUtils.ts 2024-08-22T20:40:25.6049070Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/types.ts 2024-08-22T20:40:25.6049800Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/fetchRecentWorkflows.ts 2024-08-22T20:40:25.6050610Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/JobClassifierUtil.ts 2024-08-22T20:40:25.6051430Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/fetchDisabledNonFlakyTests.ts 2024-08-22T20:40:25.6052240Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/dynamo.ts 2024-08-22T20:40:25.6052930Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/track.ts 2024-08-22T20:40:25.6053660Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/bot/pytorchbotLogger.ts 2024-08-22T20:40:25.6054410Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/bot/autoCcBot.ts 2024-08-22T20:40:25.6055300Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/bot/ciflowPushTrigger.ts 2024-08-22T20:40:25.6056090Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/bot/webhookToDynamo.ts 2024-08-22T20:40:25.6056900Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/bot/codevNoWritePermBot.ts 2024-08-22T20:40:25.6057670Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/bot/pytorchBot.ts 2024-08-22T20:40:25.6058440Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/bot/stripApprovalBot.ts 2024-08-22T20:40:25.6059280Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/bot/utils.ts 2024-08-22T20:40:25.6060010Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/bot/autoLabelBot.ts 2024-08-22T20:40:25.6060750Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/bot/cliParser.ts 2024-08-22T20:40:25.6061470Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/bot/Constants.ts 2024-08-22T20:40:25.6062210Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/bot/subscriptions.ts 2024-08-22T20:40:25.6063040Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/bot/cancelWorkflowsOnCloseBot.ts 2024-08-22T20:40:25.6063930Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/bot/triggerCircleCIWorkflows.ts 2024-08-22T20:40:25.6064710Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/bot/index.ts 2024-08-22T20:40:25.6065510Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/bot/verifyDisableTestIssueBot.ts 2024-08-22T20:40:25.6066360Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/bot/pytorchBotHandler.ts 2024-08-22T20:40:25.6067110Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/bot/retryBot.ts 2024-08-22T20:40:25.6067820Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/bot/drciBot.ts 2024-08-22T20:40:25.6068480Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/bot 2024-08-22T20:40:25.6069120Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/fetchHud.ts 2024-08-22T20:40:25.6069860Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/fetchFailureSamples.ts 2024-08-22T20:40:25.6070600Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/opensearch.ts 2024-08-22T20:40:25.6071300Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/searchLogs.ts 2024-08-22T20:40:25.6072020Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/ParamSelector.tsx 2024-08-22T20:40:25.6072760Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/githubFunctions.ts 2024-08-22T20:40:25.6073480Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/clickhouse.ts 2024-08-22T20:40:25.6074170Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/useHudData.ts 2024-08-22T20:40:25.6074920Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/correlation_matrix.json 2024-08-22T20:40:25.6075670Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/metricUtils.ts 2024-08-22T20:40:25.6076380Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib/fetchS3Links.ts 2024-08-22T20:40:25.6077020Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/lib 2024-08-22T20:40:25.6077640Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/tsconfig.json 2024-08-22T20:40:25.6078300Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/.env.example 2024-08-22T20:40:25.6079140Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/benchmark/[suite]/[compiler]/[[...page]].tsx 2024-08-22T20:40:25.6080060Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/benchmark/[suite]/[compiler] 2024-08-22T20:40:25.6080990Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/benchmark/[suite] 2024-08-22T20:40:25.6081750Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/benchmark/llms.tsx 2024-08-22T20:40:25.6082560Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/benchmark/compilers.tsx 2024-08-22T20:40:25.6083350Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/benchmark/torchao.tsx 2024-08-22T20:40:25.6084080Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/benchmark 2024-08-22T20:40:25.6088260Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/testing_overhead.tsx 2024-08-22T20:40:25.6089240Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/minihud/[repoOwner]/[repoName]/[branch]/[[...page]].tsx 2024-08-22T20:40:25.6090260Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/minihud/[repoOwner]/[repoName]/[branch] 2024-08-22T20:40:25.6091180Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/minihud/[repoOwner]/[repoName] 2024-08-22T20:40:25.6092000Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/minihud/[repoOwner] 2024-08-22T20:40:25.6092710Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/minihud 2024-08-22T20:40:25.6093520Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/[repoOwner]/[repoName]/commit/[sha].tsx 2024-08-22T20:40:25.6094420Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/[repoOwner]/[repoName]/commit 2024-08-22T20:40:25.6095320Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/[repoOwner]/[repoName]/pull/[prNumber].tsx 2024-08-22T20:40:25.6096230Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/[repoOwner]/[repoName]/pull 2024-08-22T20:40:25.6097160Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/[repoOwner]/[repoName]/issues/[issueNumber].tsx 2024-08-22T20:40:25.6098100Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/[repoOwner]/[repoName]/issues 2024-08-22T20:40:25.6098930Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/[repoOwner]/[repoName] 2024-08-22T20:40:25.6099680Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/[repoOwner] 2024-08-22T20:40:25.6100390Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/login_test.tsx 2024-08-22T20:40:25.6101170Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/_githubrunnersutilization.tsx 2024-08-22T20:40:25.6102010Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/torchbench/userbenchmark.tsx 2024-08-22T20:40:25.6102780Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/torchbench 2024-08-22T20:40:25.6103510Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/test/insights.tsx 2024-08-22T20:40:25.6104220Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/test 2024-08-22T20:40:25.6105020Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/testing_overhead/oncall_insights.tsx 2024-08-22T20:40:25.6105920Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/testing_overhead/insights.tsx 2024-08-22T20:40:25.6106710Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/testing_overhead 2024-08-22T20:40:25.6107440Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/flakytest.tsx 2024-08-22T20:40:25.6108140Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/kpis.tsx 2024-08-22T20:40:25.6108830Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/tests.tsx 2024-08-22T20:40:25.6109520Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/metrics.tsx 2024-08-22T20:40:25.6110410Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/reliability/[repoOwner]/[repoName]/[[...page]].tsx 2024-08-22T20:40:25.6111450Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/reliability/[repoOwner]/[repoName] 2024-08-22T20:40:25.6112280Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/reliability/[repoOwner] 2024-08-22T20:40:25.6113010Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/reliability 2024-08-22T20:40:25.6113870Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/tts/[repoOwner]/[repoName]/[branch]/[[...page]].tsx 2024-08-22T20:40:25.6114970Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/tts/[repoOwner]/[repoName]/[branch] 2024-08-22T20:40:25.6115830Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/tts/[repoOwner]/[repoName] 2024-08-22T20:40:25.6116590Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/tts/[repoOwner] 2024-08-22T20:40:25.6117260Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/tts 2024-08-22T20:40:25.6117920Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/disabled.tsx 2024-08-22T20:40:25.6118630Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/correlation.tsx 2024-08-22T20:40:25.6119550Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/failedjobs/[repoOwner]/[repoName]/[branch]/[[...page]].tsx 2024-08-22T20:40:25.6120580Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/failedjobs/[repoOwner]/[repoName]/[branch] 2024-08-22T20:40:25.6121500Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/failedjobs/[repoOwner]/[repoName] 2024-08-22T20:40:25.6122330Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/failedjobs/[repoOwner] 2024-08-22T20:40:25.6123070Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/failedjobs 2024-08-22T20:40:25.6123840Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/clickhouse/[queryName].ts 2024-08-22T20:40:25.6124610Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/clickhouse 2024-08-22T20:40:25.6125400Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/artifacts/s3/[workflowId].ts 2024-08-22T20:40:25.6126200Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/artifacts/s3 2024-08-22T20:40:25.6126910Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/artifacts 2024-08-22T20:40:25.6127750Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/[repoOwner]/[repoName]/commit/[sha].ts 2024-08-22T20:40:25.6128650Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/[repoOwner]/[repoName]/commit 2024-08-22T20:40:25.6129590Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/[repoOwner]/[repoName]/pull/[prNumber].ts 2024-08-22T20:40:25.6130520Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/[repoOwner]/[repoName]/pull 2024-08-22T20:40:25.6131360Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/[repoOwner]/[repoName] 2024-08-22T20:40:25.6132120Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/[repoOwner] 2024-08-22T20:40:25.6132880Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/auth/[...nextauth].js 2024-08-22T20:40:25.6133590Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/auth 2024-08-22T20:40:25.6134260Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/search.ts 2024-08-22T20:40:25.6134960Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/failure.ts 2024-08-22T20:40:25.6135720Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/flaky-tests/disable.ts 2024-08-22T20:40:25.6136600Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/flaky-tests/flakytest.ts 2024-08-22T20:40:25.6137370Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/flaky-tests 2024-08-22T20:40:25.6138110Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/github/webhooks.ts 2024-08-22T20:40:25.6139080Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/github/dispatch/[repoOwner]/[repoName]/[workflow]/[sha].ts 2024-08-22T20:40:25.6140320Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/github/dispatch/[repoOwner]/[repoName]/[workflow] 2024-08-22T20:40:25.6141330Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/github/dispatch/[repoOwner]/[repoName] 2024-08-22T20:40:25.6142240Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/github/dispatch/[repoOwner] 2024-08-22T20:40:25.6143040Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/github/dispatch 2024-08-22T20:40:25.6143750Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/github 2024-08-22T20:40:25.6144440Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/drci/drci.ts 2024-08-22T20:40:25.6145130Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/drci 2024-08-22T20:40:25.6145830Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/issue/[label].ts 2024-08-22T20:40:25.6146540Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/issue 2024-08-22T20:40:25.6147320Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/usage-log-aggregator/lambda.ts 2024-08-22T20:40:25.6148170Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/usage-log-aggregator 2024-08-22T20:40:25.6149040Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/corresponding_workflow_id.ts 2024-08-22T20:40:25.6149970Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/query/[collection]/[lambdaName].ts 2024-08-22T20:40:25.6150850Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/query/[collection] 2024-08-22T20:40:25.6151560Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/query 2024-08-22T20:40:25.6152440Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/log_annotation/[repoOwner]/[repoName]/[annotation].ts 2024-08-22T20:40:25.6153450Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/log_annotation/[repoOwner]/[repoName] 2024-08-22T20:40:25.6154340Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/log_annotation/[repoOwner] 2024-08-22T20:40:25.6155130Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/log_annotation 2024-08-22T20:40:25.6156090Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/job_annotation/[repoOwner]/[repoName]/failures/[queryParams].ts 2024-08-22T20:40:25.6157170Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/job_annotation/[repoOwner]/[repoName]/failures 2024-08-22T20:40:25.6158220Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/job_annotation/[repoOwner]/[repoName]/[annotation].ts 2024-08-22T20:40:25.6159320Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/job_annotation/[repoOwner]/[repoName]/annotations/[jobIds].ts 2024-08-22T20:40:25.6160410Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/job_annotation/[repoOwner]/[repoName]/annotations 2024-08-22T20:40:25.6161400Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/job_annotation/[repoOwner]/[repoName] 2024-08-22T20:40:25.6162290Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/job_annotation/[repoOwner] 2024-08-22T20:40:25.6166400Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/job_annotation 2024-08-22T20:40:25.6167300Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/hud/[repoOwner]/[repoName]/[branch]/[page].ts 2024-08-22T20:40:25.6168250Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/hud/[repoOwner]/[repoName]/[branch] 2024-08-22T20:40:25.6169140Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/hud/[repoOwner]/[repoName] 2024-08-22T20:40:25.6170040Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/hud/[repoOwner] 2024-08-22T20:40:25.6170740Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api/hud 2024-08-22T20:40:25.6171370Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/api 2024-08-22T20:40:25.6172020Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/nightlies.tsx 2024-08-22T20:40:25.6172700Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/sli.tsx 2024-08-22T20:40:25.6173360Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/failure.tsx 2024-08-22T20:40:25.6174050Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/_app.tsx 2024-08-22T20:40:25.6174890Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/hud/[repoOwner]/[repoName]/[branch]/[[...page]].tsx 2024-08-22T20:40:25.6175830Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/hud/[repoOwner]/[repoName]/[branch] 2024-08-22T20:40:25.6176670Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/hud/[repoOwner]/[repoName] 2024-08-22T20:40:25.6177430Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/hud/[repoOwner] 2024-08-22T20:40:25.6178080Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages/hud 2024-08-22T20:40:25.6178680Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/pages 2024-08-22T20:40:25.6179300Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci/.eslintrc.json 2024-08-22T20:40:25.6179900Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/torchci 2024-08-22T20:40:25.6180500Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.git-blame-ignore-revs 2024-08-22T20:40:25.6181140Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/CODE_OF_CONDUCT.md 2024-08-22T20:40:25.6181710Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.flake8 2024-08-22T20:40:25.6182370Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/torchci/requirements.txt 2024-08-22T20:40:25.6183060Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/torchci/reverts.py 2024-08-22T20:40:25.6183760Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/torchci/pyproject.toml 2024-08-22T20:40:25.6184510Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/torchci/tests/test_queue_alert.py 2024-08-22T20:40:25.6185340Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/torchci/tests/test_update_test_times.py 2024-08-22T20:40:25.6186250Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/torchci/tests/td/test_calculate_file_test_rating.py 2024-08-22T20:40:25.6187050Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/torchci/tests/td 2024-08-22T20:40:25.6187780Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/torchci/tests/test_check_alerts.py 2024-08-22T20:40:25.6188490Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/torchci/tests 2024-08-22T20:40:25.6189160Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/torchci/check_alerts.py 2024-08-22T20:40:25.6189860Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/torchci/queue_alert.py 2024-08-22T20:40:25.6190630Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/torchci/td/td_heuristic_profiling.py 2024-08-22T20:40:25.6191600Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/torchci/td/historical_file_failure_correlation.py 2024-08-22T20:40:25.6192550Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/torchci/td/historical_class_failure_correlation.py 2024-08-22T20:40:25.6193440Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/torchci/td/get_merge_base_info.py 2024-08-22T20:40:25.6194200Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/torchci/td/utils.py 2024-08-22T20:40:25.6195090Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/torchci/td/td_rockset_analysis.py 2024-08-22T20:40:25.6195980Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/torchci/td/td_heuristic_historical_edited_files.py 2024-08-22T20:40:25.6196740Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/torchci/td 2024-08-22T20:40:25.6197400Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/torchci/rockset_utils.py 2024-08-22T20:40:25.6198090Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/torchci/README.md 2024-08-22T20:40:25.6198750Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/torchci/utils.py 2024-08-22T20:40:25.6199460Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/torchci/update_test_times.py 2024-08-22T20:40:25.6200230Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/torchci/compute_correlation.py 2024-08-22T20:40:25.6200980Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/torchci/download_logs.py 2024-08-22T20:40:25.6201710Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/torchci/github_analyze.py 2024-08-22T20:40:25.6202360Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/torchci 2024-08-22T20:40:25.6202980Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/torchfix/README.md 2024-08-22T20:40:25.6203610Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/torchfix 2024-08-22T20:40:25.6204240Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/stronghold/.flake8 2024-08-22T20:40:25.6204960Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/stronghold/requirements.txt 2024-08-22T20:40:25.6205700Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/stronghold/bin/.gitignore 2024-08-22T20:40:25.6206450Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/stronghold/bin/analyze-history 2024-08-22T20:40:25.6207300Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/stronghold/bin/build-check-api-compatibility 2024-08-22T20:40:25.6208070Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/stronghold/bin 2024-08-22T20:40:25.6208760Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/stronghold/pyproject.toml 2024-08-22T20:40:25.6209540Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/stronghold/tests/lib/testing/git.py 2024-08-22T20:40:25.6210380Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/stronghold/tests/lib/testing/__init__.py 2024-08-22T20:40:25.6211230Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/stronghold/tests/lib/testing/source.py 2024-08-22T20:40:25.6212030Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/stronghold/tests/lib/testing 2024-08-22T20:40:25.6212750Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/stronghold/tests/lib 2024-08-22T20:40:25.6213490Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/stronghold/tests/api/conftest.py 2024-08-22T20:40:25.6214360Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/stronghold/tests/api/test_compatibility.py 2024-08-22T20:40:25.6215210Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/stronghold/tests/api/test_github.py 2024-08-22T20:40:25.6216010Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/stronghold/tests/api/test_git.py 2024-08-22T20:40:25.6216970Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/stronghold/tests/api/test_ast_param_compatibility.py 2024-08-22T20:40:25.6217850Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/stronghold/tests/api/test_ast.py 2024-08-22T20:40:25.6218700Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/stronghold/tests/api/test_ast_param_types.py 2024-08-22T20:40:25.6219480Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/stronghold/tests/api 2024-08-22T20:40:25.6220270Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/stronghold/tests 2024-08-22T20:40:25.6221020Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/stronghold/src/api/compatibility.py 2024-08-22T20:40:25.6221790Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/stronghold/src/api/git.py 2024-08-22T20:40:25.6222570Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/stronghold/src/api/__init__.py 2024-08-22T20:40:25.6223330Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/stronghold/src/api/types.py 2024-08-22T20:40:25.6224060Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/stronghold/src/api/ast.py 2024-08-22T20:40:25.6224870Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/stronghold/src/api/github.py 2024-08-22T20:40:25.6225630Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/stronghold/src/api/checker.py 2024-08-22T20:40:25.6226410Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/stronghold/src/api/violations.py 2024-08-22T20:40:25.6227130Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/stronghold/src/api 2024-08-22T20:40:25.6227790Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/stronghold/src 2024-08-22T20:40:25.6228400Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/stronghold 2024-08-22T20:40:25.6229080Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/clang-tidy-checks/setup.sh 2024-08-22T20:40:25.6230040Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/clang-tidy-checks/15.x-patches/0002-potential-unbounded-loop-check.diff 2024-08-22T20:40:25.6231190Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/clang-tidy-checks/15.x-patches/0003-Do-not-use-pthread_rwlock_wrlock.diff 2024-08-22T20:40:25.6232270Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/clang-tidy-checks/15.x-patches/0001-Max-tokens-checks.diff 2024-08-22T20:40:25.6233160Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/clang-tidy-checks/15.x-patches 2024-08-22T20:40:25.6234020Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/clang-tidy-checks/Dockerfile.cilint-clang-tidy 2024-08-22T20:40:25.6234860Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/clang-tidy-checks/verify.sh 2024-08-22T20:40:25.6235610Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/clang-tidy-checks/README.md 2024-08-22T20:40:25.6236550Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/clang-tidy-checks/11.x-patches/potential-unbounded-loop-check.diff 2024-08-22T20:40:25.6240700Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/clang-tidy-checks/11.x-patches/max-tokens-check.diff 2024-08-22T20:40:25.6241620Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/clang-tidy-checks/11.x-patches 2024-08-22T20:40:25.6242410Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/clang-tidy-checks/.gitignore 2024-08-22T20:40:25.6243410Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/clang-tidy-checks/17.x-patches/0003-Do-not-use-pthread_rwlock_wrlock.diff 2024-08-22T20:40:25.6244400Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/clang-tidy-checks/17.x-patches 2024-08-22T20:40:25.6245140Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/clang-tidy-checks 2024-08-22T20:40:25.6245980Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/linter/adapters/actionlint_linter.py 2024-08-22T20:40:25.6246780Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/linter/adapters/grep_linter.py 2024-08-22T20:40:25.6247540Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/linter/adapters/ufmt_linter.py 2024-08-22T20:40:25.6248370Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/linter/adapters/lintrunner_version_linter.py 2024-08-22T20:40:25.6249310Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/linter/adapters/pip_init.py 2024-08-22T20:40:25.6250080Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/linter/adapters/flake8_linter.py 2024-08-22T20:40:25.6250840Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/linter/adapters/s3_init.py 2024-08-22T20:40:25.6251590Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/linter/adapters/exec_linter.py 2024-08-22T20:40:25.6252360Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/linter/adapters/ruff_linter.py 2024-08-22T20:40:25.6253130Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/linter/adapters/mypy_linter.py 2024-08-22T20:40:25.6253910Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/linter/adapters/newlines_linter.py 2024-08-22T20:40:25.6254720Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/linter/adapters/s3_init_config.json 2024-08-22T20:40:25.6255430Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/linter/adapters 2024-08-22T20:40:25.6256040Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/linter 2024-08-22T20:40:25.6256670Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/Cargo.toml 2024-08-22T20:40:25.6257440Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/tools/convert_to_sarif_test.py 2024-08-22T20:40:25.6258260Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/tools/convert_to_sarif.py 2024-08-22T20:40:25.6258970Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/tools 2024-08-22T20:40:25.6259620Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/rustfmt.toml 2024-08-22T20:40:25.6260280Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/LICENSE 2024-08-22T20:40:25.6260950Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/CHANGELOG.md 2024-08-22T20:40:25.6261640Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/do_release.sh 2024-08-22T20:40:25.6262340Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/pyproject.toml 2024-08-22T20:40:25.6263290Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/tests/snapshots/integration_test__changed_init_causes_warning_1.snap 2024-08-22T20:40:25.6264520Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/tests/snapshots/integration_test__format_command_doesnt_use_nonformat_linter.snap 2024-08-22T20:40:25.6265780Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/tests/snapshots/integration_test__skip_nonexistent_linter.snap 2024-08-22T20:40:25.6266900Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/tests/snapshots/integration_test__simple_linter.snap 2024-08-22T20:40:25.6268040Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/tests/snapshots/integration_test__linter_nonexistent_command.snap 2024-08-22T20:40:25.6269360Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/tests/snapshots/integration_test__linter_providing_nonexistent_path_degrades_gracefully.snap 2024-08-22T20:40:25.6270630Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/tests/snapshots/integration_test__unknown_config_fails.snap 2024-08-22T20:40:25.6271800Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/tests/snapshots/integration_test__simple_linter_two_configs.snap 2024-08-22T20:40:25.6272890Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/tests/snapshots/integration_test__invalid_args.snap 2024-08-22T20:40:25.6274040Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/tests/snapshots/integration_test__invalid_paths_cmd_and_specified_paths.snap 2024-08-22T20:40:25.6275300Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/tests/snapshots/integration_test__empty_command_fails.snap 2024-08-22T20:40:25.6276380Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/tests/snapshots/integration_test__git_head_files.snap 2024-08-22T20:40:25.6277560Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/tests/snapshots/integration_test__simple_linter_fake_second_config.snap 2024-08-22T20:40:25.6278760Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/tests/snapshots/integration_test__no_op_config_succeeds.snap 2024-08-22T20:40:25.6279940Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/tests/snapshots/integration_test__linter_hard_failure_is_caught.snap 2024-08-22T20:40:25.6281110Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/tests/snapshots/integration_test__rage_command_output.snap 2024-08-22T20:40:25.6282230Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/tests/snapshots/integration_test__invalid_config_fails.snap 2024-08-22T20:40:25.6283390Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/tests/snapshots/integration_test__init_suppresses_warning.snap 2024-08-22T20:40:25.6284540Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/tests/snapshots/integration_test__duplicate_code_fails.snap 2024-08-22T20:40:25.6285690Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/tests/snapshots/integration_test__take_nonexistent_linter.snap 2024-08-22T20:40:25.6286800Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/tests/snapshots/integration_test__tee_json.snap 2024-08-22T20:40:25.6287990Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/tests/snapshots/integration_test__simple_linter_fails_on_nonexistent_file.snap 2024-08-22T20:40:25.6289240Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/tests/snapshots/integration_test__invalid_paths_cmd_and_from.snap 2024-08-22T20:40:25.6290410Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/tests/snapshots/integration_test__excluding_dryrun_fails.snap 2024-08-22T20:40:25.6291600Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/tests/snapshots/integration_test__simple_linter_only_under_dir.snap 2024-08-22T20:40:25.6292870Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/tests/snapshots/integration_test__linter_replacement_trailing_newlines.snap 2024-08-22T20:40:25.6294150Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/tests/snapshots/integration_test__simple_linter_replacement_message.snap 2024-08-22T20:40:25.6295410Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/tests/snapshots/integration_test__changed_init_causes_warning_2.snap 2024-08-22T20:40:25.6296570Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/tests/snapshots/integration_test__git_no_changes.snap 2024-08-22T20:40:25.6297710Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/tests/snapshots/integration_test__simple_linter_oneline.snap 2024-08-22T20:40:25.6298650Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/tests/snapshots 2024-08-22T20:40:25.6299430Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/tests/integration_test.rs 2024-08-22T20:40:25.6300400Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/tests/fixtures/fake_source_file.rs 2024-08-22T20:40:25.6301220Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/tests/fixtures 2024-08-22T20:40:25.6301910Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/tests 2024-08-22T20:40:25.6302580Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/README.md 2024-08-22T20:40:25.6303360Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/cliff.toml 2024-08-22T20:40:25.6304130Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/examples/flake8_linter.py 2024-08-22T20:40:25.6304960Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/examples/rustfmt_linter.py 2024-08-22T20:40:25.6305810Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/examples/config_example.toml 2024-08-22T20:40:25.6306570Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/examples 2024-08-22T20:40:25.6307270Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/src/lint_config.rs 2024-08-22T20:40:25.6308020Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/src/persistent_data.rs 2024-08-22T20:40:25.6308740Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/src/rage.rs 2024-08-22T20:40:25.6309440Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/src/log_utils.rs 2024-08-22T20:40:25.6310140Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/src/render.rs 2024-08-22T20:40:25.6310830Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/src/lib.rs 2024-08-22T20:40:25.6311510Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/src/git.rs 2024-08-22T20:40:25.6312230Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/src/path.rs 2024-08-22T20:40:25.6312950Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/src/linter.rs 2024-08-22T20:40:25.6313670Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/src/testing.rs 2024-08-22T20:40:25.6314370Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/src/main.rs 2024-08-22T20:40:25.6315060Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/src/init.rs 2024-08-22T20:40:25.6315790Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/src/lint_message.rs 2024-08-22T20:40:25.6316530Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/src/sapling.rs 2024-08-22T20:40:25.6317290Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/src/version_control.rs 2024-08-22T20:40:25.6318000Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner/src 2024-08-22T20:40:25.6318620Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/lintrunner 2024-08-22T20:40:25.6319360Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/mirror-pypi/mirror_pytorch_triton_rocm.sh 2024-08-22T20:40:25.6320090Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/mirror-pypi 2024-08-22T20:40:25.6320770Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/tests/update_test_assets.sh 2024-08-22T20:40:25.6321580Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/tests/build_matrix_linux_wheel_nocpu.json 2024-08-22T20:40:25.6325470Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/tests/test_rockset_autoscale.py 2024-08-22T20:40:25.6326340Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/tests/test_generate_binary_build_matrix.py 2024-08-22T20:40:25.6327180Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/tests/test_validate_alerts.py 2024-08-22T20:40:25.6328090Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/tests/test_fetch_latest_green_commit.py 2024-08-22T20:40:25.6328850Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/tests/README.md 2024-08-22T20:40:25.6329670Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/tests/assets/build_matrix_windows_wheel_cuda.json 2024-08-22T20:40:25.6330590Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/tests/assets/build_matrix_linux_conda_cuda.json 2024-08-22T20:40:25.6331660Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/tests/assets/build_matrix_linux_wheel_nocpu.json 2024-08-22T20:40:25.6332630Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/tests/assets/build_matrix_linux_wheel_cuda_norocm.json 2024-08-22T20:40:25.6333570Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/tests/assets/build_matrix_linux_wheel_xpu.json 2024-08-22T20:40:25.6334480Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/tests/assets/build_matrix_linux_wheel_cuda.json 2024-08-22T20:40:25.6335400Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/tests/assets/build_matrix_windows_conda_cuda.json 2024-08-22T20:40:25.6336300Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/tests/assets/build_matrix_macos_wheel.json 2024-08-22T20:40:25.6337170Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/tests/assets/build_matrix_macos_conda.json 2024-08-22T20:40:25.6337910Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/tests/assets 2024-08-22T20:40:25.6338510Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/tests 2024-08-22T20:40:25.6339090Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/__init__.py 2024-08-22T20:40:25.6339780Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/alerts/upload_alerts_to_aws.py 2024-08-22T20:40:25.6340520Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/alerts/validate_alerts.py 2024-08-22T20:40:25.6341170Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/alerts 2024-08-22T20:40:25.6341900Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/self-hosted-runner-utils/requirements.txt 2024-08-22T20:40:25.6342740Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/self-hosted-runner-utils/Makefile 2024-08-22T20:40:25.6343620Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/self-hosted-runner-utils/clear_offline_runners.py 2024-08-22T20:40:25.6344580Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/self-hosted-runner-utils/check_runners_state.py 2024-08-22T20:40:25.6345440Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/self-hosted-runner-utils/README.md 2024-08-22T20:40:25.6346260Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/self-hosted-runner-utils/.gitignore 2024-08-22T20:40:25.6347150Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/self-hosted-runner-utils/check_runners_state_org.py 2024-08-22T20:40:25.6348160Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/self-hosted-runner-utils/replace_runners_prefix_submit_pr.py 2024-08-22T20:40:25.6349160Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/self-hosted-runner-utils/list-vpc-dependencies.sh 2024-08-22T20:40:25.6349990Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/self-hosted-runner-utils 2024-08-22T20:40:25.6350720Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/scripts/backfill_events.py 2024-08-22T20:40:25.6351540Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/scripts/list_prs_from_partners_by_label.py 2024-08-22T20:40:25.6352430Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/scripts/consolidate_scale_config_yaml.py 2024-08-22T20:40:25.6353230Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/scripts/analyze_ci_workflows.py 2024-08-22T20:40:25.6354030Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/scripts/download-lambdas.py 2024-08-22T20:40:25.6354780Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/scripts/generate_release_matrix.py 2024-08-22T20:40:25.6355500Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/scripts/gitutils.py 2024-08-22T20:40:25.6356260Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/scripts/generate_binary_build_matrix.py 2024-08-22T20:40:25.6357070Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/scripts/rockset_autoscale.py 2024-08-22T20:40:25.6358000Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/scripts/generate_docker_release_matrix.py 2024-08-22T20:40:25.6358850Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/scripts/fetch_latest_green_commit.py 2024-08-22T20:40:25.6359540Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/scripts 2024-08-22T20:40:25.6360400Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.filter_forced_merge_pr.raw.json 2024-08-22T20:40:25.6361530Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/inductor.torchao_query_branches.raw.json 2024-08-22T20:40:25.6362730Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.aggregate_test_times_per_workflow_type.sql.json 2024-08-22T20:40:25.6363930Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.reverted_prs_with_reason.raw.json 2024-08-22T20:40:25.6365100Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.test_time_per_class_periodic_jobs.sql.json 2024-08-22T20:40:25.6366330Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.failure_samples_query_with_branch_test.raw.json 2024-08-22T20:40:25.6367600Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/torchbench.torchbench_userbenchmark_query_metrics.sql.json 2024-08-22T20:40:25.6368780Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/nightlies.nightly_jobs_red.sql.json 2024-08-22T20:40:25.6369880Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.disabled_test_labels.sql.json 2024-08-22T20:40:25.6370970Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.unique_aws_login.sql.json 2024-08-22T20:40:25.6372040Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/testing.get_job_duration.sql.json 2024-08-22T20:40:25.6373170Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.test_insights_per_daily_upload.raw.json 2024-08-22T20:40:25.6374270Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.queued_jobs.raw.json 2024-08-22T20:40:25.6375360Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.failed_tests_on_commits.raw.json 2024-08-22T20:40:25.6376540Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/pytorch_dev_infra_kpis.force_merge_stats.raw.json 2024-08-22T20:40:25.6377730Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.master_commit_red_avg.sql.json 2024-08-22T20:40:25.6378900Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.job_starts_by_machine_type.raw.json 2024-08-22T20:40:25.6380040Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.master_jobs_red.raw.json 2024-08-22T20:40:25.6381160Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.top_reds.raw.json 2024-08-22T20:40:25.6382300Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.test_insights_bclint_failures.raw.json 2024-08-22T20:40:25.6383510Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/pytorch_dev_infra_kpis.time_to_review.raw.json 2024-08-22T20:40:25.6384800Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.land_validation_usage.raw.json 2024-08-22T20:40:25.6385990Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/pytorch_dev_infra_kpis.time_to_merge.sql.json 2024-08-22T20:40:25.6387180Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/nightlies.nightly_jobs_red_by_name.raw.json 2024-08-22T20:40:25.6388350Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.flaky_tests_per_job.sql.json 2024-08-22T20:40:25.6389500Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/benchmarks.oss_ci_benchmark_llms.raw.json 2024-08-22T20:40:25.6390710Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/nightlies.nightly_jobs_red_by_platform.sql.json 2024-08-22T20:40:25.6391950Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.get_runner_instance_types_of_jobs.raw.json 2024-08-22T20:40:25.6393130Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.last_successful_jobs.raw.json 2024-08-22T20:40:25.6394220Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.num_tests_run.raw.json 2024-08-22T20:40:25.6395250Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.test_time_per_oncall.raw.json 2024-08-22T20:40:25.6396300Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.disabled_tests.sql.json 2024-08-22T20:40:25.6397410Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/torchbench.torchbench_list_userbenchmarks.sql.json 2024-08-22T20:40:25.6398510Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.tts_percentile.sql.json 2024-08-22T20:40:25.6399580Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.queryPerfNigthlyRunID.raw.json 2024-08-22T20:40:25.6400680Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.force_merge_red_percent.sql.json 2024-08-22T20:40:25.6401850Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.individual_test_stats_per_workflow_per_oncall.sql.json 2024-08-22T20:40:25.6403040Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.test_insights_latest_runs.sql.json 2024-08-22T20:40:25.6404150Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.test_times_per_workflow_type.raw.json 2024-08-22T20:40:25.6405310Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.master_commit_red_jobs.sql.json 2024-08-22T20:40:25.6406480Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.disabled_non_flaky_tests.raw.json 2024-08-22T20:40:25.6407670Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/nightlies.testing_nightly_jobs_total.raw.json 2024-08-22T20:40:25.6408880Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/pytorch_dev_infra_kpis.num_reverts.sql.json 2024-08-22T20:40:25.6410090Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.workflow_load.raw.json 2024-08-22T20:40:25.6411200Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.commit_failed_jobs.raw.json 2024-08-22T20:40:25.6412530Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.individual_test_times_per_oncall_per_workflow.sql.json 2024-08-22T20:40:25.6413760Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.flaky_test_history.sql.json 2024-08-22T20:40:25.6414820Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.Reverts_GH1_counts.sql.json 2024-08-22T20:40:25.6415850Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.pr_commits.sql.json 2024-08-22T20:40:25.6416900Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.tts_avg.raw.json 2024-08-22T20:40:25.6421150Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/inductor.compilers_benchmark_performance.raw.json 2024-08-22T20:40:25.6422380Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.slow_tests_by_workflow.sql.json 2024-08-22T20:40:25.6423560Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/pytorch_dev_infra_kpis.ci_wait_time.sql.json 2024-08-22T20:40:25.6424720Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.GHA-CI-for-shas.raw.json 2024-08-22T20:40:25.6425850Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.test_insights_per_day.raw.json 2024-08-22T20:40:25.6426990Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/inductor.inductor_flaky_runs.raw.json 2024-08-22T20:40:25.6428140Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.last_successful_jobs.raw.json 2024-08-22T20:40:25.6429260Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.revert_comments.sql.json 2024-08-22T20:40:25.6430380Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.force_merge_red_avg.raw.json 2024-08-22T20:40:25.6431510Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.H2_2023_Reverts_GH1.raw.json 2024-08-22T20:40:25.6432640Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.master_jobs_red_avg.sql.json 2024-08-22T20:40:25.6433770Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/notifications.pr_reviews.raw.json 2024-08-22T20:40:25.6434840Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.reverts.sql.json 2024-08-22T20:40:25.6435930Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.log_captures_count.raw.json 2024-08-22T20:40:25.6437050Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.job_failure_examples.raw.json 2024-08-22T20:40:25.6438160Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.get_relevant_alerts.sql.json 2024-08-22T20:40:25.6439350Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/inductor.compilers_benchmark_performance_branches.raw.json 2024-08-22T20:40:25.6440670Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.tts_duration_historical_percentile.raw.json 2024-08-22T20:40:25.6441810Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.unclassified.raw.json 2024-08-22T20:40:25.6442900Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.flaky_tests_across_jobs.sql.json 2024-08-22T20:40:25.6444160Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/benchmarks.oss_ci_benchmark_names.sql.json 2024-08-22T20:40:25.6445290Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.job_failed_steps.sql.json 2024-08-22T20:40:25.6446400Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.job_aggregate_metrics.sql.json 2024-08-22T20:40:25.6447500Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.strict_lag_sec.sql.json 2024-08-22T20:40:25.6448540Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.job_names.raw.json 2024-08-22T20:40:25.6449660Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.master_commit_red_percent_groups.sql.json 2024-08-22T20:40:25.6450790Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.issue_query.sql.json 2024-08-22T20:40:25.6451860Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.commit_jobs_query.sql.json 2024-08-22T20:40:25.6452990Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.test_runtime_history_by_name.raw.json 2024-08-22T20:40:25.6454090Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.hud_query.sql.json 2024-08-22T20:40:25.6455250Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/pytorch_dev_infra_kpis.monthly_contribution_stats.sql.json 2024-08-22T20:40:25.6456480Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.completed_pr_jobs_aggregate.sql.json 2024-08-22T20:40:25.6457650Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.disabled_test_historical.raw.json 2024-08-22T20:40:25.6458770Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.flaky_test_query.sql.json 2024-08-22T20:40:25.6459870Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.master_commit_red_percent.raw.json 2024-08-22T20:40:25.6461020Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.disabled_test_total.sql.json 2024-08-22T20:40:25.6462150Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.test_insights_overview.sql.json 2024-08-22T20:40:25.6463310Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/nightlies.validation_jobs_red_past_day.raw.json 2024-08-22T20:40:25.6464410Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.pr_query.sql.json 2024-08-22T20:40:25.6465450Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.last_branch_push.sql.json 2024-08-22T20:40:25.6466530Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.time_to_close_label.raw.json 2024-08-22T20:40:25.6467620Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.latest_runs_on_master.sql.json 2024-08-22T20:40:25.6468760Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.weekly_force_merge_stats.raw.json 2024-08-22T20:40:25.6469850Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.most_edited_tutorials.raw.json 2024-08-22T20:40:25.6470930Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.job_duration_percentile.sql.json 2024-08-22T20:40:25.6472190Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/flakiness.trunk_avg_flakiness.raw.json 2024-08-22T20:40:25.6473330Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/inductor.inductor_flakiest_jobs.sql.json 2024-08-22T20:40:25.6474410Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.top_failures.raw.json 2024-08-22T20:40:25.6475500Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/nightlies.validation_jobs_red.raw.json 2024-08-22T20:40:25.6476570Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.commit_query.sql.json 2024-08-22T20:40:25.6477670Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.time_to_close_issue_label.raw.json 2024-08-22T20:40:25.6478800Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.last_updated_tutorials.sql.json 2024-08-22T20:40:25.6479940Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.external_contribution_stats.raw.json 2024-08-22T20:40:25.6481130Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/nightlies.monthly_nightly_jobs_red_report.raw.json 2024-08-22T20:40:25.6482290Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.force_merge_historical.sql.json 2024-08-22T20:40:25.6483440Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.unique_aws_job_launches.sql.json 2024-08-22T20:40:25.6484620Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/pytorch_dev_infra_kpis.percent_ignored_signal.sql.json 2024-08-22T20:40:25.6485820Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/notifications.prs_with_failing_jobs.sql.json 2024-08-22T20:40:25.6487000Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/utilization.runner_utilization_by_repo.sql.json 2024-08-22T20:40:25.6488130Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.num_commits_master.raw.json 2024-08-22T20:40:25.6489290Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/utilization.runner_utilization_by_activity.raw.json 2024-08-22T20:40:25.6490580Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/pytorch_dev_infra_kpis.get_all_queue_times_historical.raw.json 2024-08-22T20:40:25.6491780Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.issues_created_weekly.sql.json 2024-08-22T20:40:25.6492930Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/testing.conditional_test_failure_tables.raw.json 2024-08-22T20:40:25.6494070Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.failed_workflow_jobs.sql.json 2024-08-22T20:40:25.6495200Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/nightlies.nightly_jobs_red_past_day.raw.json 2024-08-22T20:40:25.6496410Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/benchmarks.oss_ci_benchmark_branches.raw.json 2024-08-22T20:40:25.6497530Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.job_duration_avg.sql.json 2024-08-22T20:40:25.6498610Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.queued_jobs_by_label.raw.json 2024-08-22T20:40:25.6499850Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.pr_commit_history_query.raw.json 2024-08-22T20:40:25.6500980Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.failure_samples_query.raw.json 2024-08-22T20:40:25.6502120Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/nightlies.docker_jobs_red.raw.json 2024-08-22T20:40:25.6503250Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.test_insights_bclint.sql.json 2024-08-22T20:40:25.6504390Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.test_time_per_class.raw.json 2024-08-22T20:40:25.6505550Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.queue_times_historical_pct.raw.json 2024-08-22T20:40:25.6506750Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.commit_jobs_batch_query.sql.json 2024-08-22T20:40:25.6507910Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.prs_with_label.raw.json 2024-08-22T20:40:25.6508990Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.artifacts.sql.json 2024-08-22T20:40:25.6510100Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.workflow_duration_avg.sql.json 2024-08-22T20:40:25.6511250Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.get_all_aws_request_data.raw.json 2024-08-22T20:40:25.6512430Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/nightlies.docker_jobs_red_past_day.raw.json 2024-08-22T20:40:25.6513550Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.correlation_matrix.raw.json 2024-08-22T20:40:25.6514650Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.H1_2023_Reverts_GH1.sql.json 2024-08-22T20:40:25.6515800Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/pytorch_dev_infra_kpis.strict_lag_historical.sql.json 2024-08-22T20:40:25.6516960Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/flakiness.flaky_job_runs.sql.json 2024-08-22T20:40:25.6518100Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.test_insights_bclint_status_by_date.raw.json 2024-08-22T20:40:25.6519260Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.workflow_jobs_for_sha.sql.json 2024-08-22T20:40:25.6520420Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/utilization.runner_utilization.sql.json 2024-08-22T20:40:25.6521610Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/pytorch_dev_infra_kpis.queue_times_historical.raw.json 2024-08-22T20:40:25.6526160Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/inductor.inductor_workflow_failure_rate_avg.sql.json 2024-08-22T20:40:25.6527450Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.get_workflow_jobs.raw.json 2024-08-22T20:40:25.6528650Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/inductor.compilers_benchmark_performance_latest_runs.sql.json 2024-08-22T20:40:25.6529840Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.query_github_issues.raw.json 2024-08-22T20:40:25.6531160Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/torchbench.torchbench_userbenchmark_list_commits.raw.json 2024-08-22T20:40:25.6532440Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.workflow_duration_percentile.raw.json 2024-08-22T20:40:25.6533580Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.force_push.sql.json 2024-08-22T20:40:25.6534690Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/flakiness.trunk_job_flakiness.raw.json 2024-08-22T20:40:25.6535840Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.flaky_workflows_jobs.raw.json 2024-08-22T20:40:25.6536990Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/inductor.inductor_dynamo_failed_runs.sql.json 2024-08-22T20:40:25.6538150Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.queue_times_historical.sql.json 2024-08-22T20:40:25.6539220Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.slow_tests.sql.json 2024-08-22T20:40:25.6540270Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.test_time_per_file.raw.json 2024-08-22T20:40:25.6541390Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/nightlies.nightly_jobs_red_report.sql.json 2024-08-22T20:40:25.6542460Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.get_jobs.raw.json 2024-08-22T20:40:25.6543500Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.get_runner_names.raw.json 2024-08-22T20:40:25.6544630Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/testing.classification_and_annotation.sql.json 2024-08-22T20:40:25.6545790Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.number_of_force_pushes.sql.json 2024-08-22T20:40:25.6546860Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.flaky_tests.raw.json 2024-08-22T20:40:25.6547960Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/pytorch_dev_infra_kpis.time_to_signal.raw.json 2024-08-22T20:40:25.6549100Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/inductor.inductor_failed_runs.raw.json 2024-08-22T20:40:25.6550210Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.reverted_force_push.raw.json 2024-08-22T20:40:25.6551360Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.test_time_per_file_periodic_jobs.sql.json 2024-08-22T20:40:25.6552620Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/pytorch_dev_infra_kpis.number_of_force_pushes_historical.sql.json 2024-08-22T20:40:25.6553870Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.test_time_and_price_per_oncall.sql.json 2024-08-22T20:40:25.6555100Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.master_commit_red.raw.json 2024-08-22T20:40:25.6556280Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/pytorch_dev_infra_kpis.ttrs_percentiles.sql.json 2024-08-22T20:40:25.6557440Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.ref_from_sha.raw.json 2024-08-22T20:40:25.6558680Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.tts_duration_historical.sql.json 2024-08-22T20:40:25.6559870Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.recent_pr_workflows_query.sql.json 2024-08-22T20:40:25.6561080Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.inductor_workflow_flakiness_avg.raw.json 2024-08-22T20:40:25.6562270Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.original_pr_hud_query.sql.json 2024-08-22T20:40:25.6563440Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.force_merge_stats_per_day.raw.json 2024-08-22T20:40:25.6564610Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.last_successful_workflow.raw.json 2024-08-22T20:40:25.6565750Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/inductor.torchao_query.raw.json 2024-08-22T20:40:25.6566870Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.temp_test_overview.sql.json 2024-08-22T20:40:25.6567910Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.prs_count_weekly.sql.json 2024-08-22T20:40:25.6568970Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.annotated_flaky_jobs.sql.json 2024-08-22T20:40:25.6570080Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.get_workers_on_period.sql.json 2024-08-22T20:40:25.6571200Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.cancelled_jobs.sql.json 2024-08-22T20:40:25.6572380Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/inductor.inductor_workflow_flakiness_avg.raw.json 2024-08-22T20:40:25.6573610Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/utilization.runner_utilization_by_repo.raw.json 2024-08-22T20:40:25.6574790Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.num_commits_master.sql.json 2024-08-22T20:40:25.6575890Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/notifications.prs_with_failing_jobs.raw.json 2024-08-22T20:40:25.6577040Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/pytorch_dev_infra_kpis.percent_ignored_signal.raw.json 2024-08-22T20:40:25.6578230Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.unique_aws_job_launches.raw.json 2024-08-22T20:40:25.6579390Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.force_merge_historical.raw.json 2024-08-22T20:40:25.6580580Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.external_contribution_stats.sql.json 2024-08-22T20:40:25.6581810Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/nightlies.monthly_nightly_jobs_red_report.sql.json 2024-08-22T20:40:25.6583070Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.pr_commit_history_query.sql.json 2024-08-22T20:40:25.6584250Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/nightlies.nightly_jobs_red_past_day.sql.json 2024-08-22T20:40:25.6585420Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.queued_jobs_by_label.sql.json 2024-08-22T20:40:25.6586650Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.job_duration_avg.raw.json 2024-08-22T20:40:25.6587810Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/benchmarks.oss_ci_benchmark_branches.sql.json 2024-08-22T20:40:25.6589010Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/utilization.runner_utilization_by_activity.sql.json 2024-08-22T20:40:25.6590180Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.failed_workflow_jobs.raw.json 2024-08-22T20:40:25.6591370Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/testing.conditional_test_failure_tables.sql.json 2024-08-22T20:40:25.6592560Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.issues_created_weekly.raw.json 2024-08-22T20:40:25.6593810Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/pytorch_dev_infra_kpis.get_all_queue_times_historical.sql.json 2024-08-22T20:40:25.6595070Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.get_all_aws_request_data.sql.json 2024-08-22T20:40:25.6596200Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.workflow_duration_avg.raw.json 2024-08-22T20:40:25.6597310Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.artifacts.raw.json 2024-08-22T20:40:25.6598410Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.correlation_matrix.sql.json 2024-08-22T20:40:25.6599570Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/nightlies.docker_jobs_red_past_day.sql.json 2024-08-22T20:40:25.6600760Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.commit_jobs_batch_query.raw.json 2024-08-22T20:40:25.6601860Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.prs_with_label.sql.json 2024-08-22T20:40:25.6602930Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.test_time_per_class.sql.json 2024-08-22T20:40:25.6604070Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.queue_times_historical_pct.sql.json 2024-08-22T20:40:25.6605240Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.failure_samples_query.sql.json 2024-08-22T20:40:25.6606380Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/nightlies.docker_jobs_red.sql.json 2024-08-22T20:40:25.6607510Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.test_insights_bclint.raw.json 2024-08-22T20:40:25.6608750Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/torchbench.torchbench_userbenchmark_list_commits.sql.json 2024-08-22T20:40:25.6609990Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.workflow_duration_percentile.sql.json 2024-08-22T20:40:25.6611280Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/inductor.compilers_benchmark_performance_latest_runs.raw.json 2024-08-22T20:40:25.6612470Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.query_github_issues.sql.json 2024-08-22T20:40:25.6613590Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/utilization.runner_utilization.raw.json 2024-08-22T20:40:25.6614870Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/pytorch_dev_infra_kpis.queue_times_historical.sql.json 2024-08-22T20:40:25.6616100Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.workflow_jobs_for_sha.raw.json 2024-08-22T20:40:25.6617240Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.get_workflow_jobs.sql.json 2024-08-22T20:40:25.6618440Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/inductor.inductor_workflow_failure_rate_avg.raw.json 2024-08-22T20:40:25.6619630Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/flakiness.flaky_job_runs.raw.json 2024-08-22T20:40:25.6620820Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/pytorch_dev_infra_kpis.strict_lag_historical.raw.json 2024-08-22T20:40:25.6622030Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.H1_2023_Reverts_GH1.raw.json 2024-08-22T20:40:25.6623220Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.test_insights_bclint_status_by_date.sql.json 2024-08-22T20:40:25.6624450Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/inductor.inductor_dynamo_failed_runs.raw.json 2024-08-22T20:40:25.6625580Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.slow_tests.raw.json 2024-08-22T20:40:25.6626700Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.queue_times_historical.raw.json 2024-08-22T20:40:25.6627850Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.flaky_workflows_jobs.sql.json 2024-08-22T20:40:25.6629020Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/flakiness.trunk_job_flakiness.sql.json 2024-08-22T20:40:25.6630160Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.force_push.raw.json 2024-08-22T20:40:25.6631280Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.reverted_force_push.sql.json 2024-08-22T20:40:25.6632430Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/inductor.inductor_failed_runs.sql.json 2024-08-22T20:40:25.6636630Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/pytorch_dev_infra_kpis.time_to_signal.sql.json 2024-08-22T20:40:25.6637800Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.flaky_tests.sql.json 2024-08-22T20:40:25.6638940Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.number_of_force_pushes.raw.json 2024-08-22T20:40:25.6640100Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/testing.classification_and_annotation.raw.json 2024-08-22T20:40:25.6641230Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.get_runner_names.sql.json 2024-08-22T20:40:25.6642380Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/nightlies.nightly_jobs_red_report.raw.json 2024-08-22T20:40:25.6643700Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.test_time_per_file.sql.json 2024-08-22T20:40:25.6644790Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.get_jobs.sql.json 2024-08-22T20:40:25.6645890Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.original_pr_hud_query.raw.json 2024-08-22T20:40:25.6647170Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.recent_pr_workflows_query.raw.json 2024-08-22T20:40:25.6648390Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.inductor_workflow_flakiness_avg.sql.json 2024-08-22T20:40:25.6649600Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.tts_duration_historical.raw.json 2024-08-22T20:40:25.6650730Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.ref_from_sha.sql.json 2024-08-22T20:40:25.6651900Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/pytorch_dev_infra_kpis.ttrs_percentiles.raw.json 2024-08-22T20:40:25.6653080Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.master_commit_red.sql.json 2024-08-22T20:40:25.6654260Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.test_time_and_price_per_oncall.raw.json 2024-08-22T20:40:25.6655560Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/pytorch_dev_infra_kpis.number_of_force_pushes_historical.raw.json 2024-08-22T20:40:25.6656870Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.test_time_per_file_periodic_jobs.raw.json 2024-08-22T20:40:25.6657420Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.get_workers_on_period.raw.json 2024-08-22T20:40:25.6658020Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/inductor.inductor_workflow_flakiness_avg.sql.json 2024-08-22T20:40:25.6658540Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.cancelled_jobs.raw.json 2024-08-22T20:40:25.6659090Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.annotated_flaky_jobs.raw.json 2024-08-22T20:40:25.6659620Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.prs_count_weekly.raw.json 2024-08-22T20:40:25.6660180Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.last_successful_workflow.sql.json 2024-08-22T20:40:25.6660710Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/inductor.torchao_query.sql.json 2024-08-22T20:40:25.6661250Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.temp_test_overview.raw.json 2024-08-22T20:40:25.6661810Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.force_merge_stats_per_day.sql.json 2024-08-22T20:40:25.6662340Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.unique_aws_login.raw.json 2024-08-22T20:40:25.6662920Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.test_insights_per_daily_upload.sql.json 2024-08-22T20:40:25.6663450Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/testing.get_job_duration.raw.json 2024-08-22T20:40:25.6664150Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/torchbench.torchbench_userbenchmark_query_metrics.raw.json 2024-08-22T20:40:25.6664750Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.test_time_per_class_periodic_jobs.raw.json 2024-08-22T20:40:25.6665380Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.failure_samples_query_with_branch_test.sql.json 2024-08-22T20:40:25.6666080Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.disabled_test_labels.raw.json 2024-08-22T20:40:25.6666630Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/nightlies.nightly_jobs_red.raw.json 2024-08-22T20:40:25.6667190Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.reverted_prs_with_reason.sql.json 2024-08-22T20:40:25.6667740Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.filter_forced_merge_pr.sql.json 2024-08-22T20:40:25.6668370Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.aggregate_test_times_per_workflow_type.raw.json 2024-08-22T20:40:25.6668940Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/inductor.torchao_query_branches.sql.json 2024-08-22T20:40:25.6669530Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.test_insights_bclint_failures.sql.json 2024-08-22T20:40:25.6670110Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/pytorch_dev_infra_kpis.time_to_review.sql.json 2024-08-22T20:40:25.6670690Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.job_starts_by_machine_type.sql.json 2024-08-22T20:40:25.6671220Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.master_jobs_red.sql.json 2024-08-22T20:40:25.6671720Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.top_reds.sql.json 2024-08-22T20:40:25.6672230Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.queued_jobs.sql.json 2024-08-22T20:40:25.6672770Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.master_commit_red_avg.raw.json 2024-08-22T20:40:25.6673370Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/pytorch_dev_infra_kpis.force_merge_stats.sql.json 2024-08-22T20:40:25.6673930Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.failed_tests_on_commits.sql.json 2024-08-22T20:40:25.6674490Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.test_insights_latest_runs.raw.json 2024-08-22T20:40:25.6675060Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.test_times_per_workflow_type.sql.json 2024-08-22T20:40:25.6675720Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.individual_test_stats_per_workflow_per_oncall.raw.json 2024-08-22T20:40:25.6676280Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.disabled_non_flaky_tests.sql.json 2024-08-22T20:40:25.6676830Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.master_commit_red_jobs.raw.json 2024-08-22T20:40:25.6677360Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.tts_percentile.raw.json 2024-08-22T20:40:25.6677980Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.queryPerfNigthlyRunID.sql.json 2024-08-22T20:40:25.6678540Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.force_merge_red_percent.raw.json 2024-08-22T20:40:25.6679050Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.num_tests_run.sql.json 2024-08-22T20:40:25.6679690Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.last_successful_jobs.sql.json 2024-08-22T20:40:25.6680310Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/torchbench.torchbench_list_userbenchmarks.raw.json 2024-08-22T20:40:25.6680830Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.disabled_tests.raw.json 2024-08-22T20:40:25.6681370Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.test_time_per_oncall.sql.json 2024-08-22T20:40:25.6681930Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/benchmarks.oss_ci_benchmark_llms.sql.json 2024-08-22T20:40:25.6682530Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.get_runner_instance_types_of_jobs.sql.json 2024-08-22T20:40:25.6683120Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/nightlies.nightly_jobs_red_by_platform.raw.json 2024-08-22T20:40:25.6683660Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.flaky_tests_per_job.raw.json 2024-08-22T20:40:25.6684230Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/pytorch_dev_infra_kpis.time_to_merge.raw.json 2024-08-22T20:40:25.6684810Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/nightlies.nightly_jobs_red_by_name.sql.json 2024-08-22T20:40:25.6685360Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.land_validation_usage.sql.json 2024-08-22T20:40:25.6685910Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.slow_tests_by_workflow.raw.json 2024-08-22T20:40:25.6686460Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.test_insights_per_day.sql.json 2024-08-22T20:40:25.6687000Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.GHA-CI-for-shas.sql.json 2024-08-22T20:40:25.6687570Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/pytorch_dev_infra_kpis.ci_wait_time.raw.json 2024-08-22T20:40:25.6688060Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.tts_avg.sql.json 2024-08-22T20:40:25.6688660Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/inductor.compilers_benchmark_performance.sql.json 2024-08-22T20:40:25.6689160Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.pr_commits.raw.json 2024-08-22T20:40:25.6689700Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.Reverts_GH1_counts.raw.json 2024-08-22T20:40:25.6690350Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.individual_test_times_per_oncall_per_workflow.raw.json 2024-08-22T20:40:25.6690890Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.flaky_test_history.raw.json 2024-08-22T20:40:25.6691450Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.workflow_load.sql.json 2024-08-22T20:40:25.6692010Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/pytorch_dev_infra_kpis.num_reverts.raw.json 2024-08-22T20:40:25.6692570Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/nightlies.testing_nightly_jobs_total.sql.json 2024-08-22T20:40:25.6693190Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.commit_failed_jobs.sql.json 2024-08-22T20:40:25.6693670Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.reverts.raw.json 2024-08-22T20:40:25.6694190Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/notifications.pr_reviews.sql.json 2024-08-22T20:40:25.6694690Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.unclassified.sql.json 2024-08-22T20:40:25.6695280Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.tts_duration_historical_percentile.sql.json 2024-08-22T20:40:25.6695900Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/inductor.compilers_benchmark_performance_branches.sql.json 2024-08-22T20:40:25.6696420Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.get_relevant_alerts.raw.json 2024-08-22T20:40:25.6696950Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.job_failure_examples.sql.json 2024-08-22T20:40:25.6697460Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.log_captures_count.sql.json 2024-08-22T20:40:25.6697980Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.force_merge_red_avg.sql.json 2024-08-22T20:40:25.6698490Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.revert_comments.raw.json 2024-08-22T20:40:25.6699010Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.master_jobs_red_avg.raw.json 2024-08-22T20:40:25.6699530Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.H2_2023_Reverts_GH1.sql.json 2024-08-22T20:40:25.6700040Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.last_successful_jobs.sql.json 2024-08-22T20:40:25.6700540Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/inductor.inductor_flaky_runs.sql.json 2024-08-22T20:40:25.6701000Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.hud_query.raw.json 2024-08-22T20:40:25.6701540Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.completed_pr_jobs_aggregate.raw.json 2024-08-22T20:40:25.6702220Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/pytorch_dev_infra_kpis.monthly_contribution_stats.raw.json 2024-08-22T20:40:25.6702800Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.test_runtime_history_by_name.sql.json 2024-08-22T20:40:25.6703290Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.job_names.sql.json 2024-08-22T20:40:25.6703820Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.commit_jobs_query.raw.json 2024-08-22T20:40:25.6704410Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.master_commit_red_percent_groups.raw.json 2024-08-22T20:40:25.6705000Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.issue_query.raw.json 2024-08-22T20:40:25.6705550Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.flaky_tests_across_jobs.raw.json 2024-08-22T20:40:25.6706110Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/benchmarks.oss_ci_benchmark_names.raw.json 2024-08-22T20:40:25.6706720Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.strict_lag_sec.raw.json 2024-08-22T20:40:25.6707270Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.job_aggregate_metrics.raw.json 2024-08-22T20:40:25.6707790Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.job_failed_steps.raw.json 2024-08-22T20:40:25.6708330Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.weekly_force_merge_stats.sql.json 2024-08-22T20:40:25.6708850Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.most_edited_tutorials.sql.json 2024-08-22T20:40:25.6709380Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.latest_runs_on_master.raw.json 2024-08-22T20:40:25.6709890Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.last_branch_push.raw.json 2024-08-22T20:40:25.6710410Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.time_to_close_label.sql.json 2024-08-22T20:40:25.6710880Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.pr_query.raw.json 2024-08-22T20:40:25.6711450Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/nightlies.validation_jobs_red_past_day.sql.json 2024-08-22T20:40:25.6711970Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.disabled_test_total.raw.json 2024-08-22T20:40:25.6712470Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.flaky_test_query.raw.json 2024-08-22T20:40:25.6713020Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.master_commit_red_percent.sql.json 2024-08-22T20:40:25.6713690Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.disabled_test_historical.sql.json 2024-08-22T20:40:25.6714240Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.test_insights_overview.raw.json 2024-08-22T20:40:25.6714760Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.commit_query.raw.json 2024-08-22T20:40:25.6715310Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.last_updated_tutorials.raw.json 2024-08-22T20:40:25.6715870Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/commons.time_to_close_issue_label.sql.json 2024-08-22T20:40:25.6716420Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/nightlies.validation_jobs_red.sql.json 2024-08-22T20:40:25.6716930Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.top_failures.sql.json 2024-08-22T20:40:25.6717480Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/flakiness.trunk_avg_flakiness.sql.json 2024-08-22T20:40:25.6718090Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/metrics.job_duration_percentile.raw.json 2024-08-22T20:40:25.6718650Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup/inductor.inductor_flakiest_jobs.raw.json 2024-08-22T20:40:25.6719020Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/lambdas_backup 2024-08-22T20:40:25.6719410Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/rockset_queries.py 2024-08-22T20:40:25.6719910Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/README.md 2024-08-22T20:40:25.6720330Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration/rockset_queries.ipynb 2024-08-22T20:40:25.6720630Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/rockset_migration 2024-08-22T20:40:25.6721100Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/binary_size_validation/test_binary_size_validation.py 2024-08-22T20:40:25.6721510Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/binary_size_validation/requirements.txt 2024-08-22T20:40:25.6721890Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/binary_size_validation/README.md 2024-08-22T20:40:25.6722330Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/binary_size_validation/binary_size_validation.py 2024-08-22T20:40:25.6722650Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/binary_size_validation 2024-08-22T20:40:25.6722970Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/pkg-helpers/.flake8 2024-08-22T20:40:25.6723380Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/pkg-helpers/pytorch_pkg_helpers/macos.py 2024-08-22T20:40:25.6723800Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/pkg-helpers/pytorch_pkg_helpers/version.py 2024-08-22T20:40:25.6724220Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/pkg-helpers/pytorch_pkg_helpers/conda.py 2024-08-22T20:40:25.6724620Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/pkg-helpers/pytorch_pkg_helpers/__init__.py 2024-08-22T20:40:25.6725010Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/pkg-helpers/pytorch_pkg_helpers/cuda.py 2024-08-22T20:40:25.6725400Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/pkg-helpers/pytorch_pkg_helpers/utils.py 2024-08-22T20:40:25.6725810Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/pkg-helpers/pytorch_pkg_helpers/__main__.py 2024-08-22T20:40:25.6726200Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/pkg-helpers/pytorch_pkg_helpers/wheel.py 2024-08-22T20:40:25.6726560Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/pkg-helpers/pytorch_pkg_helpers 2024-08-22T20:40:25.6726860Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/pkg-helpers/Makefile 2024-08-22T20:40:25.6727200Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/pkg-helpers/pyproject.toml 2024-08-22T20:40:25.6727550Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/pkg-helpers/tests/test_version.py 2024-08-22T20:40:25.6727890Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/pkg-helpers/tests/test_utils.py 2024-08-22T20:40:25.6728230Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/pkg-helpers/tests/test_wheel.py 2024-08-22T20:40:25.6728590Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/pkg-helpers/tests/test_cuda.py 2024-08-22T20:40:25.6728960Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/pkg-helpers/tests/test_macos.py 2024-08-22T20:40:25.6729320Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/pkg-helpers/tests/test_conda.py 2024-08-22T20:40:25.6729740Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/pkg-helpers/tests/assets/conda_search.json 2024-08-22T20:40:25.6730130Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/pkg-helpers/tests/assets 2024-08-22T20:40:25.6730430Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/pkg-helpers/tests 2024-08-22T20:40:25.6733820Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/pkg-helpers/README.md 2024-08-22T20:40:25.6734160Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/pkg-helpers/.gitignore 2024-08-22T20:40:25.6734500Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/pkg-helpers/.gitattributes 2024-08-22T20:40:25.6734960Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/pkg-helpers/poetry.lock 2024-08-22T20:40:25.6735250Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/pkg-helpers 2024-08-22T20:40:25.6735640Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/device-farm-runner/requirements.txt 2024-08-22T20:40:25.6736060Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/device-farm-runner/run_on_aws_devicefarm.py 2024-08-22T20:40:25.6736380Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools/device-farm-runner 2024-08-22T20:40:25.6736610Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/tools 2024-08-22T20:40:25.6736840Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/LICENSE 2024-08-22T20:40:25.6737110Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/pyproject.toml 2024-08-22T20:40:25.6737440Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/release/cut-release-branch.sh 2024-08-22T20:40:25.6737680Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/release 2024-08-22T20:40:25.6738060Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/s3_management/update_dependencies.py 2024-08-22T20:40:25.6738390Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/s3_management/requirements.txt 2024-08-22T20:40:25.6738700Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/s3_management/README.md 2024-08-22T20:40:25.6739000Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/s3_management/manage.py 2024-08-22T20:40:25.6739320Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/s3_management/backup_conda.py 2024-08-22T20:40:25.6739580Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/s3_management 2024-08-22T20:40:25.6739820Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/README.md 2024-08-22T20:40:25.6740060Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/mypy.ini 2024-08-22T20:40:25.6740340Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.lintrunner.toml 2024-08-22T20:40:25.6740580Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.gitignore 2024-08-22T20:40:25.6740880Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.mypy_requirements.txt 2024-08-22T20:40:25.6741270Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/outputs.tf 2024-08-22T20:40:25.6741650Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/LICENSE.md 2024-08-22T20:40:25.6742020Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/main.tf 2024-08-22T20:40:25.6742400Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/.tflint.hcl 2024-08-22T20:40:25.6742760Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/kms.tf 2024-08-22T20:40:25.6743170Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/elastic_cache.tf 2024-08-22T20:40:25.6743610Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/architecture-diagram.png 2024-08-22T20:40:25.6744120Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/policies/lambda-publish-sqs-policy.json 2024-08-22T20:40:25.6744480Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/policies 2024-08-22T20:40:25.6744890Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/README.md 2024-08-22T20:40:25.6745260Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/.gitignore 2024-08-22T20:40:25.6745630Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/variables.tf 2024-08-22T20:40:25.6746110Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/terraform_migrations/local_ops.sh 2024-08-22T20:40:25.6746610Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/terraform_migrations 2024-08-22T20:40:25.6747080Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/templates/resource-group.json 2024-08-22T20:40:25.6747460Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/templates 2024-08-22T20:40:25.6748040Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook/jest.config.js-bkp 2024-08-22T20:40:25.6748600Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook/test/reporter.js 2024-08-22T20:40:25.6749300Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook/test/resources/github_check_run_event.json 2024-08-22T20:40:25.6749850Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook/test/resources 2024-08-22T20:40:25.6750350Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook/test 2024-08-22T20:40:25.6750900Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook/jest.config.js 2024-08-22T20:40:25.6751430Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook/yarn.lock 2024-08-22T20:40:25.6751960Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook/.gitignore 2024-08-22T20:40:25.6752510Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook/package.json 2024-08-22T20:40:25.6752980Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook/.nvmrc 2024-08-22T20:40:25.6753490Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook/.prettierrc 2024-08-22T20:40:25.6754000Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook/tsconfig.json 2024-08-22T20:40:25.6754510Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook/.eslintrc.yaml 2024-08-22T20:40:25.6755090Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook/src/webhook/handler.test.ts 2024-08-22T20:40:25.6755650Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook/src/webhook/handler.ts 2024-08-22T20:40:25.6756150Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook/src/webhook 2024-08-22T20:40:25.6756670Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook/src/kms/index.ts 2024-08-22T20:40:25.6757150Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook/src/kms 2024-08-22T20:40:25.6757670Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook/src/sqs/index.ts 2024-08-22T20:40:25.6758220Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook/src/sqs 2024-08-22T20:40:25.6758730Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook/src/lambda.ts 2024-08-22T20:40:25.6759240Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook/src/local.ts 2024-08-22T20:40:25.6759780Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook/src 2024-08-22T20:40:25.6760240Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook 2024-08-22T20:40:25.6760650Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/webhook/lambdas 2024-08-22T20:40:25.6761070Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/webhook/outputs.tf 2024-08-22T20:40:25.6761510Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/webhook/policies.tf 2024-08-22T20:40:25.6761940Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/webhook/main.tf 2024-08-22T20:40:25.6762400Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/webhook/.tflint.hcl 2024-08-22T20:40:25.6762890Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/webhook/terraform.tfvars 2024-08-22T20:40:25.6763500Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/webhook/policies/lambda-publish-sqs-policy.json 2024-08-22T20:40:25.6764070Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/webhook/policies/lambda-orchestrator.json 2024-08-22T20:40:25.6764630Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/webhook/policies/lambda-cloudwatch.json 2024-08-22T20:40:25.6765080Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/webhook/policies 2024-08-22T20:40:25.6765530Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/webhook/README.md 2024-08-22T20:40:25.6766000Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/webhook/variables.tf 2024-08-22T20:40:25.6766450Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/webhook/webhook.tf 2024-08-22T20:40:25.6766850Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/webhook 2024-08-22T20:40:25.6767340Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/download-lambda/outputs.tf 2024-08-22T20:40:25.6767800Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/download-lambda/main.tf 2024-08-22T20:40:25.6768280Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/download-lambda/.tflint.hcl 2024-08-22T20:40:25.6768750Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/download-lambda/README.md 2024-08-22T20:40:25.6769240Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/download-lambda/variables.tf 2024-08-22T20:40:25.6769670Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/download-lambda 2024-08-22T20:40:25.6770160Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners-instances/outputs.tf 2024-08-22T20:40:25.6770630Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners-instances/main.tf 2024-08-22T20:40:25.6771220Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners-instances/security-groups.tf 2024-08-22T20:40:25.6771850Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners-instances/policies/instance-cloudwatch-policy.json 2024-08-22T20:40:25.6772520Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners-instances/policies/instance-ec2-create-tags-policy.json 2024-08-22T20:40:25.6773320Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners-instances/policies/instance-ssm-parameters-policy.json 2024-08-22T20:40:25.6773940Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners-instances/policies/instance-s3-policy.json 2024-08-22T20:40:25.6774600Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners-instances/policies/instance-role-trust-policy.json 2024-08-22T20:40:25.6775090Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners-instances/policies 2024-08-22T20:40:25.6775650Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners-instances/launch-template.tf 2024-08-22T20:40:25.6776160Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners-instances/variables.tf 2024-08-22T20:40:25.6776730Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners-instances/templates/user-data.ps1 2024-08-22T20:40:25.6777400Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners-instances/templates/cloudwatch_config_linux_arm64.json 2024-08-22T20:40:25.6778020Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners-instances/templates/install-config-runner.ps1 2024-08-22T20:40:25.6778610Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners-instances/templates/cloudwatch_config.json 2024-08-22T20:40:25.6779250Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners-instances/templates/cloudwatch_config_linux_nvidia.json 2024-08-22T20:40:25.6779810Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners-instances/templates/user-data.sh 2024-08-22T20:40:25.6780430Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners-instances/templates/install-config-runner.sh 2024-08-22T20:40:25.6781030Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners-instances/templates/arm-runner-patch.tpl 2024-08-22T20:40:25.6781670Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners-instances/templates/cloudwatch_config_linux.json 2024-08-22T20:40:25.6782320Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners-instances/templates/cloudwatch_config_windows.json 2024-08-22T20:40:25.6782820Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners-instances/templates 2024-08-22T20:40:25.6783360Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners-instances/policies-runner.tf 2024-08-22T20:40:25.6783870Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners-instances/encrypt.tf 2024-08-22T20:40:25.6784370Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners-instances/logging.tf 2024-08-22T20:40:25.6784820Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners-instances 2024-08-22T20:40:25.6785380Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/setup-iam-permissions/outputs.tf 2024-08-22T20:40:25.6785880Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/setup-iam-permissions/main.tf 2024-08-22T20:40:25.6786390Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/setup-iam-permissions/.tflint.hcl 2024-08-22T20:40:25.6787080Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/setup-iam-permissions/policies/deploy-boundary.json 2024-08-22T20:40:25.6787730Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/setup-iam-permissions/policies/assume-role-for-account.json 2024-08-22T20:40:25.6788310Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/setup-iam-permissions/policies/deploy-policy.json 2024-08-22T20:40:25.6788900Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/setup-iam-permissions/policies/boundary.json 2024-08-22T20:40:25.6789420Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/setup-iam-permissions/policies 2024-08-22T20:40:25.6789940Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/setup-iam-permissions/README.md 2024-08-22T20:40:25.6790480Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/setup-iam-permissions/variables.tf 2024-08-22T20:40:25.6790950Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/setup-iam-permissions 2024-08-22T20:40:25.6791440Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/lambdas/.gitignore 2024-08-22T20:40:25.6792010Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/test/reporter.js 2024-08-22T20:40:25.6792680Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/test/resources/sqs_receive_event.json 2024-08-22T20:40:25.6793230Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/test/resources 2024-08-22T20:40:25.6793730Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/test 2024-08-22T20:40:25.6794260Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/jest.config.js 2024-08-22T20:40:25.6794770Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/yarn.lock 2024-08-22T20:40:25.6795300Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/package.json 2024-08-22T20:40:25.6795800Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/.nvmrc 2024-08-22T20:40:25.6796320Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/.prettierrc 2024-08-22T20:40:25.6796850Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/tsconfig.json 2024-08-22T20:40:25.6797380Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/.eslintrc.yaml 2024-08-22T20:40:25.6797930Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/lambda.test.ts 2024-08-22T20:40:25.6798580Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/gh-runners.test.ts 2024-08-22T20:40:25.6799260Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/kms/index.test.ts 2024-08-22T20:40:25.6799870Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/kms/index.ts 2024-08-22T20:40:25.6800440Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/kms 2024-08-22T20:40:25.6801150Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/utils.test.ts 2024-08-22T20:40:25.6801790Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/scale-up.ts 2024-08-22T20:40:25.6802410Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/sqs.test.ts 2024-08-22T20:40:25.6803060Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/cache.test.ts 2024-08-22T20:40:25.6803710Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/gh-auth.test.ts 2024-08-22T20:40:25.6804360Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/metrics.test.ts 2024-08-22T20:40:25.6804990Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/runners.ts 2024-08-22T20:40:25.6805600Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/utils.ts 2024-08-22T20:40:25.6806230Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/gh-auth.ts 2024-08-22T20:40:25.6806870Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/runners.test.ts 2024-08-22T20:40:25.6807460Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/cache.ts 2024-08-22T20:40:25.6808080Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/gh-runners.ts 2024-08-22T20:40:25.6808720Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/scale-down.test.ts 2024-08-22T20:40:25.6809310Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/sqs.ts 2024-08-22T20:40:25.6809950Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/gh-issues.test.ts 2024-08-22T20:40:25.6810550Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/config.ts 2024-08-22T20:40:25.6811160Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/gh-issues.ts 2024-08-22T20:40:25.6811790Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/config.test.ts 2024-08-22T20:40:25.6812420Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/scale-up.test.ts 2024-08-22T20:40:25.6813020Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/metrics.ts 2024-08-22T20:40:25.6813790Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/scale-down.ts 2024-08-22T20:40:25.6814340Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners 2024-08-22T20:40:25.6814880Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/lambda.ts 2024-08-22T20:40:25.6815470Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src 2024-08-22T20:40:25.6815960Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners 2024-08-22T20:40:25.6816410Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/lambdas 2024-08-22T20:40:25.6816870Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/outputs.tf 2024-08-22T20:40:25.6817320Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/main.tf 2024-08-22T20:40:25.6817780Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/scale-up.tf 2024-08-22T20:40:25.6818240Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/.tflint.hcl 2024-08-22T20:40:25.6818780Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/policies-lambda-common.tf 2024-08-22T20:40:25.6819230Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/.gitkeep 2024-08-22T20:40:25.6819820Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/policies/lambda-secretsmanager.json 2024-08-22T20:40:25.6820380Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/policies/lambda-scale-down.json 2024-08-22T20:40:25.6820930Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/policies/lambda-scale-up.json 2024-08-22T20:40:25.6821490Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/policies/lambda-cloudwatch.json 2024-08-22T20:40:25.6822150Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/policies/service-linked-role-create-policy.json 2024-08-22T20:40:25.6822610Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/policies 2024-08-22T20:40:25.6823090Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/variables.tf 2024-08-22T20:40:25.6823560Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners/scale-down.tf 2024-08-22T20:40:25.6823980Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runners 2024-08-22T20:40:25.6827890Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/test/resources/github-list-releases-no-linux.json 2024-08-22T20:40:25.6828710Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/test/resources/github-list-releases.json 2024-08-22T20:40:25.6829600Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/test/resources/github-list-releases-empty-assets.json 2024-08-22T20:40:25.6830460Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/test/resources/github-list-releases-no-arm64.json 2024-08-22T20:40:25.6831210Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/test/resources 2024-08-22T20:40:25.6831840Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/test 2024-08-22T20:40:25.6832630Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/jest.config.js 2024-08-22T20:40:25.6833290Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/yarn.lock 2024-08-22T20:40:25.6833940Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/.gitignore 2024-08-22T20:40:25.6834590Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/package.json 2024-08-22T20:40:25.6835200Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/.nvmrc 2024-08-22T20:40:25.6835840Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/.prettierrc 2024-08-22T20:40:25.6836520Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/tsconfig.json 2024-08-22T20:40:25.6837210Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/.eslintrc.yaml 2024-08-22T20:40:25.6837920Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/src/lambda.ts 2024-08-22T20:40:25.6838610Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/src/local.ts 2024-08-22T20:40:25.6839360Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/src/syncer/handler.test.ts 2024-08-22T20:40:25.6840090Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/src/syncer/handler.ts 2024-08-22T20:40:25.6840770Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/src/syncer 2024-08-22T20:40:25.6841420Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/src 2024-08-22T20:40:25.6842030Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer 2024-08-22T20:40:25.6842530Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/lambdas 2024-08-22T20:40:25.6843050Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/outputs.tf 2024-08-22T20:40:25.6843550Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/main.tf 2024-08-22T20:40:25.6844070Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/.tflint.hcl 2024-08-22T20:40:25.6844610Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/terraform.tfvars 2024-08-22T20:40:25.6845200Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/trigger.json 2024-08-22T20:40:25.6845810Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/policies/lambda-cloudwatch.json 2024-08-22T20:40:25.6846410Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/policies/lambda-syncer.json 2024-08-22T20:40:25.6847010Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/policies 2024-08-22T20:40:25.6847530Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/README.md 2024-08-22T20:40:25.6848060Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/variables.tf 2024-08-22T20:40:25.6848650Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/runner-binaries-syncer.tf 2024-08-22T20:40:25.6849120Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer 2024-08-22T20:40:25.6849470Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner/modules 2024-08-22T20:40:25.6849790Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/terraform-aws-github-runner 2024-08-22T20:40:25.6850050Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/CONTRIBUTING.md 2024-08-22T20:40:25.6850380Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/arc-runner-config.yaml 2024-08-22T20:40:25.6850740Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/build_conda_macos.yml 2024-08-22T20:40:25.6851140Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/update_ci_wait_time_metric.yml 2024-08-22T20:40:25.6851490Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/test_windows_job.yml 2024-08-22T20:40:25.6851920Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/generate_docker_release_matrix.yml 2024-08-22T20:40:25.6852360Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/rockset_delete_old_lambda_versions.yml 2024-08-22T20:40:25.6852810Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/test_build_wheels_windows_without_cuda.yml 2024-08-22T20:40:25.6853220Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/opensearch-gha-jobs-lambda.yml 2024-08-22T20:40:25.6853610Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/test_build_wheels_macos.yml 2024-08-22T20:40:25.6853990Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/disable-flaky-tests.yml 2024-08-22T20:40:25.6854400Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/test-setup-miniconda-env-file 2024-08-22T20:40:25.6854750Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/revert-tracker.yml 2024-08-22T20:40:25.6855160Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/servicelab-ingestor-lambda.yml 2024-08-22T20:40:25.6855600Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/test_build_conda_linux_without_cuda.yml 2024-08-22T20:40:25.6855980Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/trigger_nightly_core.yml 2024-08-22T20:40:25.6856410Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/test_build_conda_linux_with_cuda.yml 2024-08-22T20:40:25.6856780Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/test_build_wheels_m1.yml 2024-08-22T20:40:25.6857120Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/check-alerts.yml 2024-08-22T20:40:25.6857540Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/test_build_conda_m1.yml 2024-08-22T20:40:25.6857950Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/generate_binary_build_matrix.yml 2024-08-22T20:40:25.6858300Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/update-s3-html.yml 2024-08-22T20:40:25.6858600Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/lint.yml 2024-08-22T20:40:25.6859170Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/test_build_wheels_linux_without_cuda.yml 2024-08-22T20:40:25.6859590Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/github-status-test-lambda.yml 2024-08-22T20:40:25.6859970Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/update-drci-comments.yml 2024-08-22T20:40:25.6860330Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/build_wheels_macos.yml 2024-08-22T20:40:25.6860770Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/test_build_wheels_windows_with_cuda.yml 2024-08-22T20:40:25.6861140Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/update-queue-times.yml 2024-08-22T20:40:25.6861490Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/test-setup-ssh.yml 2024-08-22T20:40:25.6861860Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/test-setup-nvidia.yml 2024-08-22T20:40:25.6862220Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/clang-tidy-linux.yml 2024-08-22T20:40:25.6862570Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/anaconda-prune.yml 2024-08-22T20:40:25.6862980Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/lambda-do-release-runners.yml 2024-08-22T20:40:25.6863330Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/test_macos_job.yml 2024-08-22T20:40:25.6863810Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/test_build_wheels_linux_aarch64_without_cuda.yml 2024-08-22T20:40:25.6864160Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/_binary_upload.yml 2024-08-22T20:40:25.6864500Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/test_linux_job.yml 2024-08-22T20:40:25.6864840Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/stronghold.yml 2024-08-22T20:40:25.6865220Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/test-setup-miniconda.yml 2024-08-22T20:40:25.6865590Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/update-viablestrict.yml 2024-08-22T20:40:25.6865960Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/build_conda_windows.yml 2024-08-22T20:40:25.6866330Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/sync_pytorch_canary.yml 2024-08-22T20:40:25.6866770Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/test_build_conda_windows_with_cuda.yml 2024-08-22T20:40:25.6867120Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/build_wheels_linux.yml 2024-08-22T20:40:25.6867450Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/_upload_docs.yml 2024-08-22T20:40:25.6867780Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/lintrunner_ci.yml 2024-08-22T20:40:25.6868160Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/scale_config_validation.yml 2024-08-22T20:40:25.6868500Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/clang-tidy-macos.yml 2024-08-22T20:40:25.6868880Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/backfill-workflow-job.yml 2024-08-22T20:40:25.6869300Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/mobile_job.yml 2024-08-22T20:40:25.6869700Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/lambda-release-tag-runners.yml 2024-08-22T20:40:25.6870080Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/validate-domain-library.yml 2024-08-22T20:40:25.6870490Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/test-export-matrix-variables.yml 2024-08-22T20:40:25.6870930Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/update-slow-tests.yml 2024-08-22T20:40:25.6871340Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/test-binary-size-validation.yml 2024-08-22T20:40:25.6871650Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/linux_job.yml 2024-08-22T20:40:25.6872010Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/update_disabled_tests.yml 2024-08-22T20:40:25.6872360Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/lambda-webhook.yml 2024-08-22T20:40:25.6872730Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/gha-artifacts-lambda.yml 2024-08-22T20:40:25.6873110Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/_prune-anaconda-packages.yml 2024-08-22T20:40:25.6873550Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/test_build_conda_windows_without_cuda.yml 2024-08-22T20:40:25.6873960Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/test-validate-domain-library.yml 2024-08-22T20:40:25.6874270Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/macos_job.yml 2024-08-22T20:40:25.6874610Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/lambda-runners.yml 2024-08-22T20:40:25.6875020Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/upload-tutorials-stats.yml 2024-08-22T20:40:25.6875330Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/tests.yml 2024-08-22T20:40:25.6875720Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/build_wheels_windows.yml 2024-08-22T20:40:25.6876110Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/log-classifier-lambda.yml 2024-08-22T20:40:25.6876500Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/generate_release_matrix.yml 2024-08-22T20:40:25.6876850Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/build_conda_linux.yml 2024-08-22T20:40:25.6877200Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/update-test-times.yml 2024-08-22T20:40:25.6877540Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/rockset_autoscale.yml 2024-08-22T20:40:25.6877850Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/torchci.yml 2024-08-22T20:40:25.6878170Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/windows_job.yml 2024-08-22T20:40:25.6878540Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/test_build_conda_macos.yml 2024-08-22T20:40:25.6878940Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/usage-log-aggregator-lambda.yml 2024-08-22T20:40:25.6879310Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/pr-dependencies-check.yml 2024-08-22T20:40:25.6879640Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/tflint.yml 2024-08-22T20:40:25.6880130Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/test-setup-miniconda-pip-requirements-file 2024-08-22T20:40:25.6880500Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/test_mobile_job.yml 2024-08-22T20:40:25.6880890Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/trigger_nightly.yml 2024-08-22T20:40:25.6881280Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/test-update-viablestrict.yml 2024-08-22T20:40:25.6881650Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/update_test_file_ratings.yml 2024-08-22T20:40:25.6882010Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/_binary_conda_upload.yml 2024-08-22T20:40:25.6882500Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/windows-ami-validation.yml 2024-08-22T20:40:25.6882920Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/test_build_wheels_linux_with_cuda.yml 2024-08-22T20:40:25.6883340Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows/push-rockset-query-lambda-tags.yml 2024-08-22T20:40:25.6883600Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/workflows 2024-08-22T20:40:25.6883890Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/scale-config.yml 2024-08-22T20:40:25.6884250Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/scripts/export_matrix_variables.py 2024-08-22T20:40:25.6884610Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/scripts/update_disabled_issues.py 2024-08-22T20:40:25.6884970Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/scripts/run_clickhouse_format.sh 2024-08-22T20:40:25.6885310Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/scripts/get_tutorials_stats.py 2024-08-22T20:40:25.6885700Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/scripts/test_fetch_latest_green_commit.py 2024-08-22T20:40:25.6886050Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/scripts/validate_scale_config.py 2024-08-22T20:40:25.6886400Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/scripts/run_with_env_secrets.py 2024-08-22T20:40:25.6886720Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/scripts/install_torch.sh 2024-08-22T20:40:25.6887020Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/scripts/gitutils.py 2024-08-22T20:40:25.6887460Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/scripts/test_compute_and_upload_ci_wait_time_metric.py 2024-08-22T20:40:25.6887810Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/scripts/anaconda-prune/prune.sh 2024-08-22T20:40:25.6888150Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/scripts/anaconda-prune/run.sh 2024-08-22T20:40:25.6888460Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/scripts/anaconda-prune 2024-08-22T20:40:25.6888840Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/scripts/test_update_disabled_issues.py 2024-08-22T20:40:25.6889260Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/scripts/compute_and_upload_ci_wait_time_metric.py 2024-08-22T20:40:25.6889610Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/scripts/update_commit_hashes.py 2024-08-22T20:40:25.6889980Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/scripts/fetch_latest_green_commit.py 2024-08-22T20:40:25.6890230Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/scripts 2024-08-22T20:40:25.6890590Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/setup-windows/action.yml 2024-08-22T20:40:25.6890890Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/setup-windows 2024-08-22T20:40:25.6891260Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/check-disk-space/action.yml 2024-08-22T20:40:25.6891580Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/check-disk-space 2024-08-22T20:40:25.6891930Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/setup-linux/action.yml 2024-08-22T20:40:25.6892280Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/setup-linux 2024-08-22T20:40:25.6892670Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/calculate-docker-image/action.yml 2024-08-22T20:40:25.6893020Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/calculate-docker-image 2024-08-22T20:40:25.6893380Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/upload-alerts/action.yml 2024-08-22T20:40:25.6893770Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/upload-alerts 2024-08-22T20:40:25.6894120Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/set-channel/action.yml 2024-08-22T20:40:25.6894410Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/set-channel 2024-08-22T20:40:25.6894760Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/setup-nvidia/action.yml 2024-08-22T20:40:25.6895070Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/setup-nvidia 2024-08-22T20:40:25.6895440Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/teardown-windows/action.yml 2024-08-22T20:40:25.6895760Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/teardown-windows 2024-08-22T20:40:25.6896140Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/setup-binary-builds/action.yml 2024-08-22T20:40:25.6896480Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/setup-binary-builds 2024-08-22T20:40:25.6896840Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/setup-miniconda/README.md 2024-08-22T20:40:25.6897200Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/setup-miniconda/action.yml 2024-08-22T20:40:25.6897510Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/setup-miniconda 2024-08-22T20:40:25.6897890Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/pull-docker-image/action.yml 2024-08-22T20:40:25.6898220Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/pull-docker-image 2024-08-22T20:40:25.6898610Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/run-script-with-cache/action.yml 2024-08-22T20:40:25.6898950Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/run-script-with-cache 2024-08-22T20:40:25.6899360Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/update-viablestrict/action.yml 2024-08-22T20:40:25.6899720Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/update-viablestrict 2024-08-22T20:40:25.6900080Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/cleanup-runner/action.yml 2024-08-22T20:40:25.6900390Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/cleanup-runner 2024-08-22T20:40:25.6900760Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/trigger-nightly/action.yml 2024-08-22T20:40:25.6901070Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/trigger-nightly 2024-08-22T20:40:25.6901400Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/bc-lint/action.yml 2024-08-22T20:40:25.6901680Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/bc-lint 2024-08-22T20:40:25.6902060Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/setup-binary-upload/action.yml 2024-08-22T20:40:25.6902400Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/setup-binary-upload 2024-08-22T20:40:25.6902720Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/setup-ssh/index.js 2024-08-22T20:40:25.6903060Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/setup-ssh/action.yml 2024-08-22T20:40:25.6903390Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/setup-ssh 2024-08-22T20:40:25.6903750Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/teardown-linux/action.yml 2024-08-22T20:40:25.6904070Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/teardown-linux 2024-08-22T20:40:25.6904440Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/setup-build-test/action.yml 2024-08-22T20:40:25.6907580Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/setup-build-test 2024-08-22T20:40:25.6907960Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/chown-directory/action.yml 2024-08-22T20:40:25.6908280Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/chown-directory 2024-08-22T20:40:25.6908680Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/export-matrix-variables/action.yml 2024-08-22T20:40:25.6909040Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/export-matrix-variables 2024-08-22T20:40:25.6909420Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/update-commit-hash/action.yml 2024-08-22T20:40:25.6909750Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions/update-commit-hash 2024-08-22T20:40:25.6909990Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actions 2024-08-22T20:40:25.6910280Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/actionlint.yaml 2024-08-22T20:40:25.6910560Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/dependabot.yml 2024-08-22T20:40:25.6910860Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/arc-node-config.yaml 2024-08-22T20:40:25.6911080Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github 2024-08-22T20:40:25.6911320Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.gitattributes 2024-08-22T20:40:25.6911610Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/setup-ssh/jest.config.js 2024-08-22T20:40:25.6911910Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/setup-ssh/.prettierignore 2024-08-22T20:40:25.6912170Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/setup-ssh/README.md 2024-08-22T20:40:25.6912430Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/setup-ssh/yarn.lock 2024-08-22T20:40:25.6912720Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/setup-ssh/.prettierrc.json 2024-08-22T20:40:25.6913060Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/setup-ssh/__tests__/get-ip.test.ts 2024-08-22T20:40:25.6913410Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/setup-ssh/__tests__/github-utils.test.ts 2024-08-22T20:40:25.6913820Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/setup-ssh/__tests__/add-github-ssh-key.test.ts 2024-08-22T20:40:25.6914100Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/setup-ssh/__tests__ 2024-08-22T20:40:25.6914390Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/setup-ssh/package.json 2024-08-22T20:40:25.6914680Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/setup-ssh/tsconfig.json 2024-08-22T20:40:25.6914970Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/setup-ssh/.eslintignore 2024-08-22T20:40:25.6915260Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/setup-ssh/.eslintrc.json 2024-08-22T20:40:25.6915580Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/setup-ssh/src/github-utils.ts 2024-08-22T20:40:25.6915910Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/setup-ssh/src/main.ts 2024-08-22T20:40:25.6916260Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/setup-ssh/src/add-github-ssh-key.ts 2024-08-22T20:40:25.6916550Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/setup-ssh/src/get-ip.ts 2024-08-22T20:40:25.6916850Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/setup-ssh/src/ec2-utils.ts 2024-08-22T20:40:25.6917180Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/setup-ssh/src 2024-08-22T20:40:25.6917420Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/setup-ssh 2024-08-22T20:40:25.6917740Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/ami/windows/plugins.pkr.hcl 2024-08-22T20:40:25.6918030Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/ami/windows/build.hwm 2024-08-22T20:40:25.6918560Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/ami/windows/user-data-scripts/bootstrap-winrm.ps1 2024-08-22T20:40:25.6918920Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/ami/windows/user-data-scripts 2024-08-22T20:40:25.6919210Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/ami/windows/build.pwd 2024-08-22T20:40:25.6919500Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/ami/windows/README.md 2024-08-22T20:40:25.6919820Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/ami/windows/variables.pkr.hcl 2024-08-22T20:40:25.6920150Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/ami/windows/configs/sshd_config 2024-08-22T20:40:25.6920430Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/ami/windows/configs 2024-08-22T20:40:25.6920870Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/ami/windows/scripts/Helpers/Uninstall-WinDefend.ps1 2024-08-22T20:40:25.6921290Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/ami/windows/scripts/Helpers/Reset-UserData.ps1 2024-08-22T20:40:25.6921630Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/ami/windows/scripts/Helpers 2024-08-22T20:40:25.6922140Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/ami/windows/scripts/Installers/Install-Pip-Dependencies.ps1 2024-08-22T20:40:25.6922640Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/ami/windows/scripts/Installers/Install-Conda-Dependencies.ps1 2024-08-22T20:40:25.6923080Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/ami/windows/scripts/Installers/Install-Tools.ps1 2024-08-22T20:40:25.6923500Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/ami/windows/scripts/Installers/Install-SSH.ps1 2024-08-22T20:40:25.6923970Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/ami/windows/scripts/Installers/Initialize-Python3.ps1 2024-08-22T20:40:25.6924430Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/ami/windows/scripts/Installers/Install-Miniconda3.ps1 2024-08-22T20:40:25.6924890Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/ami/windows/scripts/Installers/Install-CUDA-Tools.ps1 2024-08-22T20:40:25.6925310Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/ami/windows/scripts/Installers/Install-VS.ps1 2024-08-22T20:40:25.6925840Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/ami/windows/scripts/Installers/Install-Choco-GenerateProfile.ps1 2024-08-22T20:40:25.6926190Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/ami/windows/scripts/Installers 2024-08-22T20:40:25.6926470Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/ami/windows/scripts 2024-08-22T20:40:25.6926800Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/ami/windows/windows.pkr.hcl 2024-08-22T20:40:25.6927100Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/ami/windows/build.pwi 2024-08-22T20:40:25.6927350Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/ami/windows 2024-08-22T20:40:25.6927580Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/ami 2024-08-22T20:40:25.6927990Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/servicelab-ingestor/requirements.txt 2024-08-22T20:40:25.6928360Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/servicelab-ingestor/Makefile 2024-08-22T20:40:25.6928730Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/servicelab-ingestor/README.md 2024-08-22T20:40:25.6929200Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/servicelab-ingestor/lambda_function.py 2024-08-22T20:40:25.6929530Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/servicelab-ingestor 2024-08-22T20:40:25.6929880Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/log-classifier/Cargo.toml 2024-08-22T20:40:25.6930230Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/log-classifier/Cargo.lock 2024-08-22T20:40:25.6930720Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/log-classifier/README.md 2024-08-22T20:40:25.6931090Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/log-classifier/ruleset.toml 2024-08-22T20:40:25.6931430Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/log-classifier/.gitignore 2024-08-22T20:40:25.6931850Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/log-classifier/scripts/download_logs.py 2024-08-22T20:40:25.6932180Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/log-classifier/scripts 2024-08-22T20:40:25.6932590Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/log-classifier/fixtures/request.json 2024-08-22T20:40:25.6933070Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/log-classifier/fixtures/error_log_multiple_matches.txt 2024-08-22T20:40:25.6933480Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/log-classifier/fixtures/error_log1.txt 2024-08-22T20:40:25.6933820Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/log-classifier/fixtures 2024-08-22T20:40:25.6934340Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/log-classifier/data/log_classifier_dataset_query_2024-08-14.csv 2024-08-22T20:40:25.6934710Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/log-classifier/data/README.md 2024-08-22T20:40:25.6935030Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/log-classifier/data 2024-08-22T20:40:25.6935410Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/log-classifier/src/rule_match.rs 2024-08-22T20:40:25.6936110Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/log-classifier/src/snapshots/log_classifier__engine__test__get_snippets_on_log_with_multiple_matches.snap 2024-08-22T20:40:25.6936720Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/log-classifier/src/snapshots/log_classifier__engine__test__get_snippets_on_log.snap 2024-08-22T20:40:25.6937080Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/log-classifier/src/snapshots 2024-08-22T20:40:25.6937430Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/log-classifier/src/log.rs 2024-08-22T20:40:25.6937780Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/log-classifier/src/lib.rs 2024-08-22T20:40:25.6938160Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/log-classifier/src/bedrock.rs 2024-08-22T20:40:25.6938570Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/log-classifier/src/bedrock/prompts.rs 2024-08-22T20:40:25.6938920Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/log-classifier/src/bedrock 2024-08-22T20:40:25.6939270Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/log-classifier/src/main.rs 2024-08-22T20:40:25.6939670Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/log-classifier/src/network.rs 2024-08-22T20:40:25.6940050Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/log-classifier/src/rule.rs 2024-08-22T20:40:25.6940440Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/log-classifier/src/engine.rs 2024-08-22T20:40:25.6941420Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/log-classifier/src 2024-08-22T20:40:25.6942740Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/log-classifier 2024-08-22T20:40:25.6943130Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/rds-proxy/requirements.txt 2024-08-22T20:40:25.6943470Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/rds-proxy/Makefile 2024-08-22T20:40:25.6943860Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/rds-proxy/lambda_function.py 2024-08-22T20:40:25.6944270Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/rds-proxy 2024-08-22T20:40:25.6944710Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/github-webhook-rds-sync/requirements.txt 2024-08-22T20:40:25.6945110Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/github-webhook-rds-sync/Makefile 2024-08-22T20:40:25.6945540Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/github-webhook-rds-sync/generate_schema.py 2024-08-22T20:40:25.6945990Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/github-webhook-rds-sync/existing_schema.py 2024-08-22T20:40:25.6946400Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/github-webhook-rds-sync/utils.py 2024-08-22T20:40:25.6946820Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/github-webhook-rds-sync/test_lambda.py 2024-08-22T20:40:25.6947260Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/github-webhook-rds-sync/lambda_function.py 2024-08-22T20:40:25.6947620Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/github-webhook-rds-sync 2024-08-22T20:40:25.6948050Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/opensearch-gha-jobs/requirements.txt 2024-08-22T20:40:25.6948500Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/opensearch-gha-jobs/test_lambda_function.py 2024-08-22T20:40:25.6948870Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/opensearch-gha-jobs/Makefile 2024-08-22T20:40:25.6949250Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/opensearch-gha-jobs/README.md 2024-08-22T20:40:25.6949660Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/opensearch-gha-jobs/lambda_function.py 2024-08-22T20:40:25.6949990Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/opensearch-gha-jobs 2024-08-22T20:40:25.6950400Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/github-status-test/requirements.txt 2024-08-22T20:40:25.6950770Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/github-status-test/Makefile 2024-08-22T20:40:25.6951140Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/github-status-test/README.md 2024-08-22T20:40:25.6951560Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/github-status-test/lambda_function.py 2024-08-22T20:40:25.6951880Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/github-status-test 2024-08-22T20:40:25.6952290Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/usage-log-aggregator/requirements.txt 2024-08-22T20:40:25.6952740Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/usage-log-aggregator/test_lambda_function.py 2024-08-22T20:40:25.6953120Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/usage-log-aggregator/Makefile 2024-08-22T20:40:25.6953620Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/usage-log-aggregator/test_samples/test_usage_log_1.txt 2024-08-22T20:40:25.6954110Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/usage-log-aggregator/test_samples/test_usage_log_1.zip 2024-08-22T20:40:25.6954500Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/usage-log-aggregator/test_samples 2024-08-22T20:40:25.6954920Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/usage-log-aggregator/lambda_function.py 2024-08-22T20:40:25.6955330Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/usage-log-aggregator 2024-08-22T20:40:25.6955720Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/gha-artifacts/requirements.txt 2024-08-22T20:40:25.6956080Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/gha-artifacts/Makefile 2024-08-22T20:40:25.6956450Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/gha-artifacts/README.md 2024-08-22T20:40:25.6956980Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/gha-artifacts/lambda_function.py 2024-08-22T20:40:25.6957300Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/gha-artifacts 2024-08-22T20:40:25.6957690Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/checks-cron/requirements.txt 2024-08-22T20:40:25.6958040Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/checks-cron/Makefile 2024-08-22T20:40:25.6958430Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/checks-cron/lambda_function.py 2024-08-22T20:40:25.6958740Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda/checks-cron 2024-08-22T20:40:25.6958990Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/lambda 2024-08-22T20:40:25.6959400Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/websites/download.pytorch.org/README.md 2024-08-22T20:40:25.6959880Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/websites/download.pytorch.org/meta_cdn_whl_redirect.js 2024-08-22T20:40:25.6960340Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/websites/download.pytorch.org/pep503_whl_redirect.js 2024-08-22T20:40:25.6960690Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/websites/download.pytorch.org 2024-08-22T20:40:25.6960930Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws/websites 2024-08-22T20:40:25.6961150Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/aws 2024-08-22T20:40:25.6961390Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.git/config 2024-08-22T20:40:25.6961630Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.git/shallow 2024-08-22T20:40:25.6962150Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.git/objects/pack/pack-7972eaf2dcc54febda86a9d3ca95bc5cdd749533.idx 2024-08-22T20:40:25.6962680Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.git/objects/pack/pack-7972eaf2dcc54febda86a9d3ca95bc5cdd749533.pack 2024-08-22T20:40:25.6962940Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.git/objects/pack 2024-08-22T20:40:25.6963200Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.git/objects/info 2024-08-22T20:40:25.6963450Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.git/objects 2024-08-22T20:40:25.6963680Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.git/HEAD 2024-08-22T20:40:25.6963940Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.git/info/exclude 2024-08-22T20:40:25.6964170Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.git/info 2024-08-22T20:40:25.6964430Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.git/logs/HEAD 2024-08-22T20:40:25.6964710Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.git/logs/refs/heads/main 2024-08-22T20:40:25.6964980Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.git/logs/refs/heads 2024-08-22T20:40:25.6965310Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.git/logs/refs/remotes/origin/main 2024-08-22T20:40:25.6965610Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.git/logs/refs/remotes/origin 2024-08-22T20:40:25.6965890Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.git/logs/refs/remotes 2024-08-22T20:40:25.6966130Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.git/logs/refs 2024-08-22T20:40:25.6966430Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.git/logs 2024-08-22T20:40:25.6966680Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.git/description 2024-08-22T20:40:25.6966980Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.git/hooks/commit-msg.sample 2024-08-22T20:40:25.6967290Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.git/hooks/pre-rebase.sample 2024-08-22T20:40:25.6967590Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.git/hooks/pre-commit.sample 2024-08-22T20:40:25.6968000Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.git/hooks/applypatch-msg.sample 2024-08-22T20:40:25.6968360Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.git/hooks/fsmonitor-watchman.sample 2024-08-22T20:40:25.6968660Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.git/hooks/pre-receive.sample 2024-08-22T20:40:25.6969010Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.git/hooks/prepare-commit-msg.sample 2024-08-22T20:40:25.6969320Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.git/hooks/post-update.sample 2024-08-22T20:40:25.6969650Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.git/hooks/pre-merge-commit.sample 2024-08-22T20:40:25.6969980Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.git/hooks/pre-applypatch.sample 2024-08-22T20:40:25.6970270Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.git/hooks/pre-push.sample 2024-08-22T20:40:25.6970560Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.git/hooks/update.sample 2024-08-22T20:40:25.6970890Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.git/hooks/push-to-checkout.sample 2024-08-22T20:40:25.6971120Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.git/hooks 2024-08-22T20:40:25.6971390Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.git/refs/heads/main 2024-08-22T20:40:25.6971640Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.git/refs/heads 2024-08-22T20:40:25.6971880Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.git/refs/tags 2024-08-22T20:40:25.6972180Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.git/refs/remotes/origin/main 2024-08-22T20:40:25.6975800Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.git/refs/remotes/origin 2024-08-22T20:40:25.6976080Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.git/refs/remotes 2024-08-22T20:40:25.6976300Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.git/refs 2024-08-22T20:40:25.6976540Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.git/index 2024-08-22T20:40:25.6976780Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.git/FETCH_HEAD 2024-08-22T20:40:25.6976990Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.git 2024-08-22T20:40:25.6977230Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/stats/README.md 2024-08-22T20:40:25.6977540Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/stats/windows_smoke_tests.csv 2024-08-22T20:40:25.6977750Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/stats 2024-08-22T20:40:25.6977940Z /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra 2024-08-22T20:40:25.6978260Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/install_requirements.sh 2024-08-22T20:40:25.6978550Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/CODE_OF_CONDUCT.md 2024-08-22T20:40:25.6978800Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.flake8 2024-08-22T20:40:25.6979060Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/server.py 2024-08-22T20:40:25.6979340Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/CMakeLists.txt 2024-08-22T20:40:25.6979630Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/torchchat/README.md 2024-08-22T20:40:25.6979890Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/torchchat 2024-08-22T20:40:25.6980390Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/LICENSE 2024-08-22T20:40:25.6980690Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/requirements.txt 2024-08-22T20:40:25.6981050Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.ci/scripts/download_llama.sh 2024-08-22T20:40:25.6981350Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.ci/scripts/run-docs 2024-08-22T20:40:25.6981720Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.ci/scripts/convert_checkpoint.sh 2024-08-22T20:40:25.6982190Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.ci/scripts/validate.sh 2024-08-22T20:40:25.6982550Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.ci/scripts/gather_test_models.py 2024-08-22T20:40:25.6982910Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.ci/scripts/extract-sequence.py 2024-08-22T20:40:25.6983250Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.ci/scripts/check_gibberish 2024-08-22T20:40:25.6983590Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.ci/scripts/wget_checkpoint.sh 2024-08-22T20:40:25.6983860Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.ci/scripts 2024-08-22T20:40:25.6984090Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.ci 2024-08-22T20:40:25.6984420Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/distributed/world_maker.py 2024-08-22T20:40:25.6984770Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/distributed/config_manager.py 2024-08-22T20:40:25.6985110Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/distributed/checkpoint.py 2024-08-22T20:40:25.6985430Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/distributed/__init__.py 2024-08-22T20:40:25.6985890Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/distributed/__pycache__/logging_utils.cpython-312.pyc 2024-08-22T20:40:25.6986360Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/distributed/__pycache__/config_manager.cpython-312.pyc 2024-08-22T20:40:25.6986790Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/distributed/__pycache__/utils.cpython-312.pyc 2024-08-22T20:40:25.6987260Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/distributed/__pycache__/parallelize_llama.cpython-312.pyc 2024-08-22T20:40:25.6987740Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/distributed/__pycache__/parallel_config.cpython-312.pyc 2024-08-22T20:40:25.6988190Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/distributed/__pycache__/checkpoint.cpython-312.pyc 2024-08-22T20:40:25.6988640Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/distributed/__pycache__/world_maker.cpython-312.pyc 2024-08-22T20:40:25.6989070Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/distributed/__pycache__/__init__.cpython-312.pyc 2024-08-22T20:40:25.6989390Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/distributed/__pycache__ 2024-08-22T20:40:25.6989700Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/distributed/README.md 2024-08-22T20:40:25.6990000Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/distributed/utils.py 2024-08-22T20:40:25.6990420Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/distributed/inference_configs/llama3_8B.toml 2024-08-22T20:40:25.6990770Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/distributed/inference_configs 2024-08-22T20:40:25.6991130Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/distributed/parallelize_llama.py 2024-08-22T20:40:25.6991480Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/distributed/parallel_config.py 2024-08-22T20:40:25.6991850Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/distributed/run_dist_inference.sh 2024-08-22T20:40:25.6992220Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/distributed/version.txt 2024-08-22T20:40:25.6992570Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/distributed/logging_utils.py 2024-08-22T20:40:25.6992830Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/distributed 2024-08-22T20:40:25.6993140Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/config/model_config.py 2024-08-22T20:40:25.6993440Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/config/__init__.py 2024-08-22T20:40:25.6993950Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/config/__pycache__/model_config.cpython-312.pyc 2024-08-22T20:40:25.6994370Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/config/__pycache__/__init__.cpython-312.pyc 2024-08-22T20:40:25.6994670Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/config/__pycache__ 2024-08-22T20:40:25.6994980Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/config/data/models.json 2024-08-22T20:40:25.6995290Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/config/data/mobile.json 2024-08-22T20:40:25.6995600Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/config/data/cuda.json 2024-08-22T20:40:25.6995900Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/config/data/pi5.json 2024-08-22T20:40:25.6996220Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/config/data/desktop.json 2024-08-22T20:40:25.6996480Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/config/data 2024-08-22T20:40:25.6996730Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/config 2024-08-22T20:40:25.6996990Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/generate.py 2024-08-22T20:40:25.6997300Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/tokenizer/CMakeLists.txt 2024-08-22T20:40:25.6997600Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/tokenizer/base64.h 2024-08-22T20:40:25.6997910Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/tokenizer/tiktoken.py 2024-08-22T20:40:25.6998210Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/tokenizer/__init__.py 2024-08-22T20:40:25.6998520Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/tokenizer/tokenizer.h 2024-08-22T20:40:25.6998940Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/tokenizer/__pycache__/tiktoken.cpython-312.pyc 2024-08-22T20:40:25.6999360Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/tokenizer/__pycache__/__init__.cpython-312.pyc 2024-08-22T20:40:25.6999670Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/tokenizer/__pycache__ 2024-08-22T20:40:25.7000010Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/tokenizer/sentencepiece.cpp 2024-08-22T20:40:25.7000320Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/tokenizer/tiktoken.cpp 2024-08-22T20:40:25.7000680Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/tokenizer/third-party/abseil-cpp 2024-08-22T20:40:25.7001060Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/tokenizer/third-party/sentencepiece 2024-08-22T20:40:25.7001400Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/tokenizer/third-party/re2 2024-08-22T20:40:25.7001700Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/tokenizer/third-party 2024-08-22T20:40:25.7001960Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/tokenizer 2024-08-22T20:40:25.7002240Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/runner/et.cmake 2024-08-22T20:40:25.7002520Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/runner/LICENSE 2024-08-22T20:40:25.7002810Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/runner/aoti.cmake 2024-08-22T20:40:25.7003160Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/runner/build_android.sh 2024-08-22T20:40:25.7003460Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/runner/Utils.cmake 2024-08-22T20:40:25.7003730Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/runner/run.cpp 2024-08-22T20:40:25.7003970Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/runner 2024-08-22T20:40:25.7004230Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/download.py 2024-08-22T20:40:25.7004720Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/checkpoints/stories15M/tokenizer.model 2024-08-22T20:40:25.7005110Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/checkpoints/stories15M/stories15M.pt 2024-08-22T20:40:25.7005430Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/checkpoints/stories15M 2024-08-22T20:40:25.7005690Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/checkpoints 2024-08-22T20:40:25.7005970Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.pins/et-pin.txt 2024-08-22T20:40:25.7006220Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.pins 2024-08-22T20:40:25.7006480Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/torchchat.py 2024-08-22T20:40:25.7006780Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/utils/device_info.py 2024-08-22T20:40:25.7007070Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/utils/__init__.py 2024-08-22T20:40:25.7007490Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/utils/__pycache__/measure_time.cpython-312.pyc 2024-08-22T20:40:25.7007910Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/utils/__pycache__/device_info.cpython-312.pyc 2024-08-22T20:40:25.7008310Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/utils/__pycache__/__init__.cpython-312.pyc 2024-08-22T20:40:25.7008610Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/utils/__pycache__ 2024-08-22T20:40:25.7008910Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/utils/measure_time.py 2024-08-22T20:40:25.7009150Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/utils 2024-08-22T20:40:25.7009500Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/requirements-lintrunner.txt 2024-08-22T20:40:25.7009870Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/__pycache__/download.cpython-312.pyc 2024-08-22T20:40:25.7010230Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/__pycache__/cli.cpython-312.pyc 2024-08-22T20:40:25.7010610Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/__pycache__/generate.cpython-312.pyc 2024-08-22T20:40:25.7010870Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/__pycache__ 2024-08-22T20:40:25.7011180Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/docs/ADVANCED-USERS.md 2024-08-22T20:40:25.7011510Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/docs/native-execution.md 2024-08-22T20:40:25.7011850Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/docs/model_customization.md 2024-08-22T20:40:25.7012130Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/docs/Android.md 2024-08-22T20:40:25.7012400Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/docs/README.md 2024-08-22T20:40:25.7012720Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/docs/executorch_setup.md 2024-08-22T20:40:25.7013000Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/docs/Models.md 2024-08-22T20:40:25.7013300Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/docs/CONTRIBUTING.md 2024-08-22T20:40:25.7013560Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/docs/GGUF.md 2024-08-22T20:40:25.7013940Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/docs/iOS.md 2024-08-22T20:40:25.7014240Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/docs/quantization.md 2024-08-22T20:40:25.7014530Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/docs/evaluation.md 2024-08-22T20:40:25.7014770Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/docs 2024-08-22T20:40:25.7015020Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/export.py 2024-08-22T20:40:25.7015280Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.gitmodules 2024-08-22T20:40:25.7015690Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/quantization/quantize.py 2024-08-22T20:40:25.7016120Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/quantization/__pycache__/qops.cpython-312.pyc 2024-08-22T20:40:25.7016560Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/quantization/__pycache__/quantize.cpython-312.pyc 2024-08-22T20:40:25.7016890Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/quantization/__pycache__ 2024-08-22T20:40:25.7017190Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/quantization/qops.py 2024-08-22T20:40:25.7017450Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/quantization 2024-08-22T20:40:25.7017700Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/README.md 2024-08-22T20:40:25.7018000Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/browser/browser.py 2024-08-22T20:40:25.7018250Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/browser 2024-08-22T20:40:25.7018530Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.lintrunner.toml 2024-08-22T20:40:25.7018780Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/cli.py 2024-08-22T20:40:25.7019030Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.gitignore 2024-08-22T20:40:25.7019320Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/CONTRIBUTING.md 2024-08-22T20:40:25.7019720Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/proguard-rules.pro 2024-08-22T20:40:25.7020080Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/.gitignore 2024-08-22T20:40:25.7020470Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/build.gradle.kts 2024-08-22T20:40:25.7021120Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/androidTest/java/org/pytorch/torchchat/LlamaModuleTest.java 2024-08-22T20:40:25.7021650Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/androidTest/java/org/pytorch/torchchat 2024-08-22T20:40:25.7022120Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/androidTest/java/org/pytorch 2024-08-22T20:40:25.7022550Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/androidTest/java/org 2024-08-22T20:40:25.7022960Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/androidTest/java 2024-08-22T20:40:25.7023340Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/androidTest 2024-08-22T20:40:25.7023960Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/test/java/org/pytorch/torchchat/ExampleUnitTest.java 2024-08-22T20:40:25.7024440Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/test/java/org/pytorch/torchchat 2024-08-22T20:40:25.7024870Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/test/java/org/pytorch 2024-08-22T20:40:25.7025260Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/test/java/org 2024-08-22T20:40:25.7025640Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/test/java 2024-08-22T20:40:25.7026060Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/test 2024-08-22T20:40:25.7026590Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/res/mipmap-mdpi/ic_launcher.webp 2024-08-22T20:40:25.7027130Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp 2024-08-22T20:40:25.7027700Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/res/mipmap-mdpi 2024-08-22T20:40:25.7028210Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/res/values-w600dp/dimens.xml 2024-08-22T20:40:25.7028640Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/res/values-w600dp 2024-08-22T20:40:25.7029170Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/res/mipmap-hdpi/ic_launcher.webp 2024-08-22T20:40:25.7029710Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp 2024-08-22T20:40:25.7030140Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/res/mipmap-hdpi 2024-08-22T20:40:25.7030640Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/res/drawable/sent_message.xml 2024-08-22T20:40:25.7031190Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/res/drawable/ic_launcher_foreground.xml 2024-08-22T20:40:25.7031680Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/res/drawable/three_dots.xml 2024-08-22T20:40:25.7032200Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/res/drawable/received_message.xml 2024-08-22T20:40:25.7032760Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/res/drawable/ic_launcher_background.xml 2024-08-22T20:40:25.7033170Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/res/drawable 2024-08-22T20:40:25.7033700Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp 2024-08-22T20:40:25.7034270Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp 2024-08-22T20:40:25.7034710Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/res/mipmap-xxxhdpi 2024-08-22T20:40:25.7035190Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/res/layout/sent_message.xml 2024-08-22T20:40:25.7035680Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/res/layout/activity_main.xml 2024-08-22T20:40:25.7036200Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/res/layout/received_message.xml 2024-08-22T20:40:25.7036600Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/res/layout 2024-08-22T20:40:25.7037120Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp 2024-08-22T20:40:25.7037680Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp 2024-08-22T20:40:25.7038120Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/res/mipmap-xxhdpi 2024-08-22T20:40:25.7038590Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/res/values-land/dimens.xml 2024-08-22T20:40:25.7039070Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/res/values-land 2024-08-22T20:40:25.7039530Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/res/values/colors.xml 2024-08-22T20:40:25.7039990Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/res/values/dimens.xml 2024-08-22T20:40:25.7040440Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/res/values/themes.xml 2024-08-22T20:40:25.7041010Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/res/values/styles.xml 2024-08-22T20:40:25.7041480Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/res/values/strings.xml 2024-08-22T20:40:25.7041890Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/res/values 2024-08-22T20:40:25.7042410Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/res/xml/backup_rules.xml 2024-08-22T20:40:25.7042930Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/res/xml/data_extraction_rules.xml 2024-08-22T20:40:25.7045780Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/res/xml 2024-08-22T20:40:25.7046270Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/res/values-v23/themes.xml 2024-08-22T20:40:25.7046700Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/res/values-v23 2024-08-22T20:40:25.7047220Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/res/mipmap-xhdpi/ic_launcher.webp 2024-08-22T20:40:25.7047770Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp 2024-08-22T20:40:25.7048210Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/res/mipmap-xhdpi 2024-08-22T20:40:25.7048710Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/res/values-w1240dp/dimens.xml 2024-08-22T20:40:25.7049150Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/res/values-w1240dp 2024-08-22T20:40:25.7049700Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml 2024-08-22T20:40:25.7050300Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml 2024-08-22T20:40:25.7050760Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/res/mipmap-anydpi-v26 2024-08-22T20:40:25.7051140Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/res 2024-08-22T20:40:25.7051590Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/AndroidManifest.xml 2024-08-22T20:40:25.7052150Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/java/org/pytorch/torchchat/Message.java 2024-08-22T20:40:25.7052740Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/java/org/pytorch/torchchat/MainActivity.java 2024-08-22T20:40:25.7053350Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/java/org/pytorch/torchchat/MessageAdapter.java 2024-08-22T20:40:25.7053990Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/java/org/pytorch/torchchat 2024-08-22T20:40:25.7054440Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/java/org/pytorch 2024-08-22T20:40:25.7054890Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/java/org 2024-08-22T20:40:25.7055270Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main/java 2024-08-22T20:40:25.7055610Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src/main 2024-08-22T20:40:25.7055940Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app/src 2024-08-22T20:40:25.7056350Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/app 2024-08-22T20:40:25.7056820Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/gradle/wrapper/gradle-wrapper.jar 2024-08-22T20:40:25.7057320Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/gradle/wrapper/gradle-wrapper.properties 2024-08-22T20:40:25.7057670Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/gradle/wrapper 2024-08-22T20:40:25.7058000Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/gradle 2024-08-22T20:40:25.7058320Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/gradlew 2024-08-22T20:40:25.7058660Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/.gitignore 2024-08-22T20:40:25.7059040Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/build.gradle.kts 2024-08-22T20:40:25.7059430Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/settings.gradle.kts 2024-08-22T20:40:25.7059810Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/gradle.properties 2024-08-22T20:40:25.7060160Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/gradlew.bat 2024-08-22T20:40:25.7060520Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/.idea/.gitignore 2024-08-22T20:40:25.7060840Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat/.idea 2024-08-22T20:40:25.7061130Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/torchchat 2024-08-22T20:40:25.7061420Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android/README.md 2024-08-22T20:40:25.7061660Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/android 2024-08-22T20:40:25.7061980Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/scripts/patch_triton.py 2024-08-22T20:40:25.7062300Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/scripts/install_utils.sh 2024-08-22T20:40:25.7062600Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/scripts/workflow.sh 2024-08-22T20:40:25.7062910Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/scripts/build_native.sh 2024-08-22T20:40:25.7063210Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/scripts/prepare.sh 2024-08-22T20:40:25.7063500Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/scripts/updown.py 2024-08-22T20:40:25.7063800Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/scripts/test_flow.sh 2024-08-22T20:40:25.7064100Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/scripts/install_et.sh 2024-08-22T20:40:25.7064430Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/scripts/android_example.sh 2024-08-22T20:40:25.7064680Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/scripts 2024-08-22T20:40:25.7064950Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.clang-format 2024-08-22T20:40:25.7065290Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.github/pytorch-probot.yml 2024-08-22T20:40:25.7065610Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.github/workflows/pull.yml 2024-08-22T20:40:25.7066080Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.github/workflows/run-readme-periodic.yml 2024-08-22T20:40:25.7066470Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.github/workflows/run-readme-pr-mps.yml 2024-08-22T20:40:25.7066820Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.github/workflows/periodic.yml 2024-08-22T20:40:25.7067170Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.github/workflows/more-tests.yml 2024-08-22T20:40:25.7067650Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.github/workflows/run-readme-pr-macos.yml 2024-08-22T20:40:25.7068030Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.github/workflows/run-readme-pr.yml 2024-08-22T20:40:25.7068420Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.github/workflows/runner-cuda-dtype.yml 2024-08-22T20:40:25.7068710Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.github/workflows 2024-08-22T20:40:25.7069090Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.github/ISSUE_TEMPLATE/bug-report.yml 2024-08-22T20:40:25.7069450Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.github/ISSUE_TEMPLATE/config.yml 2024-08-22T20:40:25.7069850Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.github/ISSUE_TEMPLATE/feature-request.yml 2024-08-22T20:40:25.7070150Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.github/ISSUE_TEMPLATE 2024-08-22T20:40:25.7070400Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.github 2024-08-22T20:40:25.7070700Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/api/openai_api.py 2024-08-22T20:40:25.7070930Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/api 2024-08-22T20:40:25.7071170Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/eval.py 2024-08-22T20:40:25.7071470Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/build/gguf_loader.py 2024-08-22T20:40:25.7071770Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/build/gguf_util.py 2024-08-22T20:40:25.7072130Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/build/known_model_params/13B.json 2024-08-22T20:40:25.7072490Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/build/known_model_params/70B.json 2024-08-22T20:40:25.7072950Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/build/known_model_params/CodeLlama-7b-Python-hf.json 2024-08-22T20:40:25.7073310Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/build/known_model_params/34B.json 2024-08-22T20:40:25.7073740Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/build/known_model_params/Meta-Llama-3.1-8B.json 2024-08-22T20:40:25.7074130Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/build/known_model_params/stories42M.json 2024-08-22T20:40:25.7074500Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/build/known_model_params/30B.json 2024-08-22T20:40:25.7074900Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/build/known_model_params/stories110M.json 2024-08-22T20:40:25.7075320Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/build/known_model_params/Meta-Llama-3.1-70B.json 2024-08-22T20:40:25.7075680Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/build/known_model_params/7B.json 2024-08-22T20:40:25.7076080Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/build/known_model_params/stories15M.json 2024-08-22T20:40:25.7076470Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/build/known_model_params/Mistral-7B.json 2024-08-22T20:40:25.7076880Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/build/known_model_params/Meta-Llama-3-70B.json 2024-08-22T20:40:25.7077300Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/build/known_model_params/Meta-Llama-3-8B.json 2024-08-22T20:40:25.7077670Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/build/known_model_params 2024-08-22T20:40:25.7078020Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/build/convert_hf_checkpoint.py 2024-08-22T20:40:25.7078310Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/build/__init__.py 2024-08-22T20:40:25.7078600Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/build/model_et.py 2024-08-22T20:40:25.7079170Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/build/__pycache__/convert_hf_checkpoint.cpython-312.pyc 2024-08-22T20:40:25.7079580Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/build/__pycache__/utils.cpython-312.pyc 2024-08-22T20:40:25.7079970Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/build/__pycache__/model.cpython-312.pyc 2024-08-22T20:40:25.7080370Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/build/__pycache__/builder.cpython-312.pyc 2024-08-22T20:40:25.7080770Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/build/__pycache__/__init__.cpython-312.pyc 2024-08-22T20:40:25.7081060Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/build/__pycache__ 2024-08-22T20:40:25.7081340Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/build/model.py 2024-08-22T20:40:25.7081620Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/build/builder.py 2024-08-22T20:40:25.7081900Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/build/utils.py 2024-08-22T20:40:25.7082140Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/build 2024-08-22T20:40:25.7082400Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.git/config 2024-08-22T20:40:25.7082660Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.git/shallow 2024-08-22T20:40:25.7083200Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.git/objects/pack/pack-bb4a726f6bac9aecf2aa030c22d38d047579977b.pack 2024-08-22T20:40:25.7083730Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.git/objects/pack/pack-bb4a726f6bac9aecf2aa030c22d38d047579977b.idx 2024-08-22T20:40:25.7084020Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.git/objects/pack 2024-08-22T20:40:25.7084300Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.git/objects/info 2024-08-22T20:40:25.7084570Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.git/objects 2024-08-22T20:40:25.7084820Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.git/HEAD 2024-08-22T20:40:25.7085100Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.git/info/exclude 2024-08-22T20:40:25.7085350Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.git/info 2024-08-22T20:40:25.7085620Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.git/logs/HEAD 2024-08-22T20:40:25.7086000Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.git/logs/refs/remotes/pull/1050/merge 2024-08-22T20:40:25.7086350Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.git/logs/refs/remotes/pull/1050 2024-08-22T20:40:25.7086690Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.git/logs/refs/remotes/pull 2024-08-22T20:40:25.7086990Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.git/logs/refs/remotes 2024-08-22T20:40:25.7087260Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.git/logs/refs 2024-08-22T20:40:25.7087520Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.git/logs 2024-08-22T20:40:25.7087800Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.git/description 2024-08-22T20:40:25.7088140Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.git/hooks/commit-msg.sample 2024-08-22T20:40:25.7088530Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.git/hooks/pre-rebase.sample 2024-08-22T20:40:25.7088860Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.git/hooks/pre-commit.sample 2024-08-22T20:40:25.7089220Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.git/hooks/applypatch-msg.sample 2024-08-22T20:40:25.7089600Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.git/hooks/fsmonitor-watchman.sample 2024-08-22T20:40:25.7089940Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.git/hooks/pre-receive.sample 2024-08-22T20:40:25.7090410Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.git/hooks/prepare-commit-msg.sample 2024-08-22T20:40:25.7090760Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.git/hooks/post-update.sample 2024-08-22T20:40:25.7091130Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.git/hooks/pre-merge-commit.sample 2024-08-22T20:40:25.7091500Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.git/hooks/pre-applypatch.sample 2024-08-22T20:40:25.7091830Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.git/hooks/pre-push.sample 2024-08-22T20:40:25.7092140Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.git/hooks/update.sample 2024-08-22T20:40:25.7092510Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.git/hooks/push-to-checkout.sample 2024-08-22T20:40:25.7092760Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.git/hooks 2024-08-22T20:40:25.7093050Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.git/refs/heads 2024-08-22T20:40:25.7093320Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.git/refs/tags 2024-08-22T20:40:25.7093670Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.git/refs/remotes/pull/1050/merge 2024-08-22T20:40:25.7094010Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.git/refs/remotes/pull/1050 2024-08-22T20:40:25.7094320Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.git/refs/remotes/pull 2024-08-22T20:40:25.7094600Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.git/refs/remotes 2024-08-22T20:40:25.7094860Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.git/refs 2024-08-22T20:40:25.7095110Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.git/index 2024-08-22T20:40:25.7095390Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.git/FETCH_HEAD 2024-08-22T20:40:25.7095620Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.git 2024-08-22T20:40:25.7095930Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/assets/torchchat.png 2024-08-22T20:40:25.7096170Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/assets 2024-08-22T20:40:25.7096490Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/export_util/export_et.py 2024-08-22T20:40:25.7096840Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/export_util/export_et_util.py 2024-08-22T20:40:25.7097230Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/export_util/executorch_portable_utils.py 2024-08-22T20:40:25.7097490Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/export_util 2024-08-22T20:40:25.7097700Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat 2024-08-22T20:40:25.7097870Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch 2024-08-22T20:40:25.7098050Z /Users/ec2-user/runner/_work/torchchat/torchchat 2024-08-22T20:40:25.7098510Z ##[endgroup] 2024-08-22T20:40:25.7253380Z ##[group]Run actions/checkout@v3 2024-08-22T20:40:25.7253460Z with: 2024-08-22T20:40:25.7253560Z repository: pytorch/test-infra 2024-08-22T20:40:25.7253630Z path: test-infra 2024-08-22T20:40:25.7253810Z token: *** 2024-08-22T20:40:25.7253890Z ssh-strict: true 2024-08-22T20:40:25.7254050Z persist-credentials: true 2024-08-22T20:40:25.7254110Z clean: true 2024-08-22T20:40:25.7254210Z sparse-checkout-cone-mode: true 2024-08-22T20:40:25.7254280Z fetch-depth: 1 2024-08-22T20:40:25.7254350Z fetch-tags: false 2024-08-22T20:40:25.7254410Z lfs: false 2024-08-22T20:40:25.7254480Z submodules: false 2024-08-22T20:40:25.7254560Z set-safe-directory: true 2024-08-22T20:40:25.7254630Z env: 2024-08-22T20:40:25.7254720Z REPOSITORY: pytorch/torchchat 2024-08-22T20:40:25.7261660Z SCRIPT: set -x # NS/MC: Remove previous installation of torch and torchao first # as this script does not install anything into conda env but rather as system dep pip3 uninstall -y torch || true set -eou pipefail pip3 uninstall -y torchao || true set -eou pipefail echo "::group::Print machine info" uname -a sysctl machdep.cpu.brand_string sysctl machdep.cpu.core_count echo "::endgroup::" echo "::group::Install requirements" # Install requirements ./install_requirements.sh ls -la pwd 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 curl -fsSL -O https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.pt curl -fsSL -O 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 python3 torchchat.py generate --device mps --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** embedding" echo "************************************************************" python3 torchchat.py generate --device mps --quant '{"embedding" : {"bitwidth": 8, "groupsize": 0}}' --checkpoint-path ${MODEL_PATH} --temperature 0 python3 torchchat.py generate --device mps --quant '{"embedding" : {"bitwidth": 8, "groupsize": 8}}' --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** linear int8" echo "************************************************************" python3 torchchat.py generate --device mps --quant '{"linear:int8" : {"bitwidth": 8, "groupsize": 0}}' --checkpoint-path ${MODEL_PATH} --temperature 0 python3 torchchat.py generate --device mps --quant '{"linear:int8" : {"bitwidth": 8, "groupsize": 8}}' --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** linear int4" echo "************************************************************" PYTORCH_ENABLE_MPS_FALLBACK=1 python3 torchchat.py generate --device mps --quant '{"linear:int4" : {"groupsize": 32}}' --checkpoint-path ${MODEL_PATH} --temperature 0 2024-08-22T20:40:25.7261760Z ##[endgroup] 2024-08-22T20:40:25.8182660Z Syncing repository: pytorch/test-infra 2024-08-22T20:40:25.8183440Z ##[group]Getting Git version info 2024-08-22T20:40:25.8184060Z Working directory is '/Users/ec2-user/runner/_work/torchchat/torchchat/test-infra' 2024-08-22T20:40:25.8184760Z [command]/usr/bin/git version 2024-08-22T20:40:25.8213030Z git version 2.39.3 (Apple Git-146) 2024-08-22T20:40:25.8227250Z ##[endgroup] 2024-08-22T20:40:25.8237340Z Temporarily overriding HOME='/Users/ec2-user/runner/_work/_temp/7900f398-3e41-4a1d-907b-743a4f34706f' before making global git config changes 2024-08-22T20:40:25.8238250Z Adding repository directory to the temporary git global config as a safe directory 2024-08-22T20:40:25.8252210Z [command]/usr/bin/git config --global --add safe.directory /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra 2024-08-22T20:40:25.8308930Z ##[group]Initializing the repository 2024-08-22T20:40:25.8311130Z [command]/usr/bin/git init /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra 2024-08-22T20:40:25.8435770Z Initialized empty Git repository in /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.git/ 2024-08-22T20:40:25.8442040Z [command]/usr/bin/git remote add origin https://github.com/pytorch/test-infra 2024-08-22T20:40:25.8515400Z ##[endgroup] 2024-08-22T20:40:25.8515850Z ##[group]Disabling automatic garbage collection 2024-08-22T20:40:25.8517990Z [command]/usr/bin/git config --local gc.auto 0 2024-08-22T20:40:25.8584640Z ##[endgroup] 2024-08-22T20:40:25.8588390Z ##[group]Setting up auth 2024-08-22T20:40:25.8588960Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2024-08-22T20:40:25.8651280Z [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:40:25.9133720Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2024-08-22T20:40:25.9193560Z [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:40:25.9674560Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** 2024-08-22T20:40:25.9738660Z ##[endgroup] 2024-08-22T20:40:25.9739080Z ##[group]Determining the default branch 2024-08-22T20:40:25.9739820Z Retrieving the default branch name 2024-08-22T20:40:26.1933990Z Default branch 'main' 2024-08-22T20:40:26.1934850Z ##[endgroup] 2024-08-22T20:40:26.1935480Z ##[group]Fetching the repository 2024-08-22T20:40:26.1939880Z [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:40:26.3811070Z remote: Enumerating objects: 1649, done. 2024-08-22T20:40:26.3811650Z remote: Counting objects: 0% (1/1649) 2024-08-22T20:40:26.3812120Z remote: Counting objects: 1% (17/1649) 2024-08-22T20:40:26.3812560Z remote: Counting objects: 2% (33/1649) 2024-08-22T20:40:26.3813020Z remote: Counting objects: 3% (50/1649) 2024-08-22T20:40:26.3813470Z remote: Counting objects: 4% (66/1649) 2024-08-22T20:40:26.3813900Z remote: Counting objects: 5% (83/1649) 2024-08-22T20:40:26.3814320Z remote: Counting objects: 6% (99/1649) 2024-08-22T20:40:26.3814780Z remote: Counting objects: 7% (116/1649) 2024-08-22T20:40:26.3815210Z remote: Counting objects: 8% (132/1649) 2024-08-22T20:40:26.3815640Z remote: Counting objects: 9% (149/1649) 2024-08-22T20:40:26.3818450Z remote: Counting objects: 10% (165/1649) 2024-08-22T20:40:26.3818930Z remote: Counting objects: 11% (182/1649) 2024-08-22T20:40:26.3819380Z remote: Counting objects: 12% (198/1649) 2024-08-22T20:40:26.3819830Z remote: Counting objects: 13% (215/1649) 2024-08-22T20:40:26.3820240Z remote: Counting objects: 14% (231/1649) 2024-08-22T20:40:26.3820670Z remote: Counting objects: 15% (248/1649) 2024-08-22T20:40:26.3821080Z remote: Counting objects: 16% (264/1649) 2024-08-22T20:40:26.3821490Z remote: Counting objects: 17% (281/1649) 2024-08-22T20:40:26.3821930Z remote: Counting objects: 18% (297/1649) 2024-08-22T20:40:26.3822340Z remote: Counting objects: 19% (314/1649) 2024-08-22T20:40:26.3822760Z remote: Counting objects: 20% (330/1649) 2024-08-22T20:40:26.3823170Z remote: Counting objects: 21% (347/1649) 2024-08-22T20:40:26.3823590Z remote: Counting objects: 22% (363/1649) 2024-08-22T20:40:26.3824010Z remote: Counting objects: 23% (380/1649) 2024-08-22T20:40:26.3824790Z remote: Counting objects: 24% (396/1649) 2024-08-22T20:40:26.3825220Z remote: Counting objects: 25% (413/1649) 2024-08-22T20:40:26.3825640Z remote: Counting objects: 26% (429/1649) 2024-08-22T20:40:26.3826070Z remote: Counting objects: 27% (446/1649) 2024-08-22T20:40:26.3826480Z remote: Counting objects: 28% (462/1649) 2024-08-22T20:40:26.3827040Z remote: Counting objects: 29% (479/1649) 2024-08-22T20:40:26.3827480Z remote: Counting objects: 30% (495/1649) 2024-08-22T20:40:26.3827890Z remote: Counting objects: 31% (512/1649) 2024-08-22T20:40:26.3828300Z remote: Counting objects: 32% (528/1649) 2024-08-22T20:40:26.3828720Z remote: Counting objects: 33% (545/1649) 2024-08-22T20:40:26.3829130Z remote: Counting objects: 34% (561/1649) 2024-08-22T20:40:26.3829540Z remote: Counting objects: 35% (578/1649) 2024-08-22T20:40:26.3829980Z remote: Counting objects: 36% (594/1649) 2024-08-22T20:40:26.3830400Z remote: Counting objects: 37% (611/1649) 2024-08-22T20:40:26.3830800Z remote: Counting objects: 38% (627/1649) 2024-08-22T20:40:26.3831230Z remote: Counting objects: 39% (644/1649) 2024-08-22T20:40:26.3831630Z remote: Counting objects: 40% (660/1649) 2024-08-22T20:40:26.3832030Z remote: Counting objects: 41% (677/1649) 2024-08-22T20:40:26.3832470Z remote: Counting objects: 42% (693/1649) 2024-08-22T20:40:26.3832900Z remote: Counting objects: 43% (710/1649) 2024-08-22T20:40:26.3833300Z remote: Counting objects: 44% (726/1649) 2024-08-22T20:40:26.3833720Z remote: Counting objects: 45% (743/1649) 2024-08-22T20:40:26.3834120Z remote: Counting objects: 46% (759/1649) 2024-08-22T20:40:26.3834550Z remote: Counting objects: 47% (776/1649) 2024-08-22T20:40:26.3834950Z remote: Counting objects: 48% (792/1649) 2024-08-22T20:40:26.3835360Z remote: Counting objects: 49% (809/1649) 2024-08-22T20:40:26.3835790Z remote: Counting objects: 50% (825/1649) 2024-08-22T20:40:26.3836190Z remote: Counting objects: 51% (841/1649) 2024-08-22T20:40:26.3836600Z remote: Counting objects: 52% (858/1649) 2024-08-22T20:40:26.3837020Z remote: Counting objects: 53% (874/1649) 2024-08-22T20:40:26.3837420Z remote: Counting objects: 54% (891/1649) 2024-08-22T20:40:26.3837830Z remote: Counting objects: 55% (907/1649) 2024-08-22T20:40:26.3838250Z remote: Counting objects: 56% (924/1649) 2024-08-22T20:40:26.3838650Z remote: Counting objects: 57% (940/1649) 2024-08-22T20:40:26.3839050Z remote: Counting objects: 58% (957/1649) 2024-08-22T20:40:26.3839470Z remote: Counting objects: 59% (973/1649) 2024-08-22T20:40:26.3839860Z remote: Counting objects: 60% (990/1649) 2024-08-22T20:40:26.3840280Z remote: Counting objects: 61% (1006/1649) 2024-08-22T20:40:26.3840720Z remote: Counting objects: 62% (1023/1649) 2024-08-22T20:40:26.3841150Z remote: Counting objects: 63% (1039/1649) 2024-08-22T20:40:26.3841580Z remote: Counting objects: 64% (1056/1649) 2024-08-22T20:40:26.3842010Z remote: Counting objects: 65% (1072/1649) 2024-08-22T20:40:26.3842430Z remote: Counting objects: 66% (1089/1649) 2024-08-22T20:40:26.3842840Z remote: Counting objects: 67% (1105/1649) 2024-08-22T20:40:26.3843280Z remote: Counting objects: 68% (1122/1649) 2024-08-22T20:40:26.3843700Z remote: Counting objects: 69% (1138/1649) 2024-08-22T20:40:26.3844120Z remote: Counting objects: 70% (1155/1649) 2024-08-22T20:40:26.3844570Z remote: Counting objects: 71% (1171/1649) 2024-08-22T20:40:26.3844980Z remote: Counting objects: 72% (1188/1649) 2024-08-22T20:40:26.3845390Z remote: Counting objects: 73% (1204/1649) 2024-08-22T20:40:26.3845820Z remote: Counting objects: 74% (1221/1649) 2024-08-22T20:40:26.3846240Z remote: Counting objects: 75% (1237/1649) 2024-08-22T20:40:26.3846820Z remote: Counting objects: 76% (1254/1649) 2024-08-22T20:40:26.3847250Z remote: Counting objects: 77% (1270/1649) 2024-08-22T20:40:26.3847740Z remote: Counting objects: 78% (1287/1649) 2024-08-22T20:40:26.3848150Z remote: Counting objects: 79% (1303/1649) 2024-08-22T20:40:26.3848570Z remote: Counting objects: 80% (1320/1649) 2024-08-22T20:40:26.3849090Z remote: Counting objects: 81% (1336/1649) 2024-08-22T20:40:26.3849500Z remote: Counting objects: 82% (1353/1649) 2024-08-22T20:40:26.3849920Z remote: Counting objects: 83% (1369/1649) 2024-08-22T20:40:26.3850350Z remote: Counting objects: 84% (1386/1649) 2024-08-22T20:40:26.3850780Z remote: Counting objects: 85% (1402/1649) 2024-08-22T20:40:26.3851200Z remote: Counting objects: 86% (1419/1649) 2024-08-22T20:40:26.3851640Z remote: Counting objects: 87% (1435/1649) 2024-08-22T20:40:26.3852060Z remote: Counting objects: 88% (1452/1649) 2024-08-22T20:40:26.3852470Z remote: Counting objects: 89% (1468/1649) 2024-08-22T20:40:26.3852930Z remote: Counting objects: 90% (1485/1649) 2024-08-22T20:40:26.3853350Z remote: Counting objects: 91% (1501/1649) 2024-08-22T20:40:26.3853770Z remote: Counting objects: 92% (1518/1649) 2024-08-22T20:40:26.3854190Z remote: Counting objects: 93% (1534/1649) 2024-08-22T20:40:26.3854610Z remote: Counting objects: 94% (1551/1649) 2024-08-22T20:40:26.3855020Z remote: Counting objects: 95% (1567/1649) 2024-08-22T20:40:26.3855450Z remote: Counting objects: 96% (1584/1649) 2024-08-22T20:40:26.3855860Z remote: Counting objects: 97% (1600/1649) 2024-08-22T20:40:26.3856280Z remote: Counting objects: 98% (1617/1649) 2024-08-22T20:40:26.3856720Z remote: Counting objects: 99% (1633/1649) 2024-08-22T20:40:26.3857140Z remote: Counting objects: 100% (1649/1649) 2024-08-22T20:40:26.3857620Z remote: Counting objects: 100% (1649/1649), done. 2024-08-22T20:40:26.3858090Z remote: Compressing objects: 0% (1/1260) 2024-08-22T20:40:26.3865100Z remote: Compressing objects: 1% (13/1260) 2024-08-22T20:40:26.3883790Z remote: Compressing objects: 2% (26/1260) 2024-08-22T20:40:26.3901900Z remote: Compressing objects: 3% (38/1260) 2024-08-22T20:40:26.3931440Z remote: Compressing objects: 4% (51/1260) 2024-08-22T20:40:26.3970440Z remote: Compressing objects: 5% (63/1260) 2024-08-22T20:40:26.4003100Z remote: Compressing objects: 6% (76/1260) 2024-08-22T20:40:26.4011700Z remote: Compressing objects: 7% (89/1260) 2024-08-22T20:40:26.4170720Z remote: Compressing objects: 8% (101/1260) 2024-08-22T20:40:26.4211400Z remote: Compressing objects: 9% (114/1260) 2024-08-22T20:40:26.4227230Z remote: Compressing objects: 10% (126/1260) 2024-08-22T20:40:26.4258950Z remote: Compressing objects: 11% (139/1260) 2024-08-22T20:40:26.4284540Z remote: Compressing objects: 12% (152/1260) 2024-08-22T20:40:26.4326330Z remote: Compressing objects: 13% (164/1260) 2024-08-22T20:40:26.4355720Z remote: Compressing objects: 14% (177/1260) 2024-08-22T20:40:26.4391710Z remote: Compressing objects: 15% (189/1260) 2024-08-22T20:40:26.4423260Z remote: Compressing objects: 16% (202/1260) 2024-08-22T20:40:26.4424000Z remote: Compressing objects: 17% (215/1260) 2024-08-22T20:40:26.4435220Z remote: Compressing objects: 18% (227/1260) 2024-08-22T20:40:26.4450640Z remote: Compressing objects: 19% (240/1260) 2024-08-22T20:40:26.4489230Z remote: Compressing objects: 20% (252/1260) 2024-08-22T20:40:26.4584970Z remote: Compressing objects: 21% (265/1260) 2024-08-22T20:40:26.4652050Z remote: Compressing objects: 22% (278/1260) 2024-08-22T20:40:26.4680060Z remote: Compressing objects: 23% (290/1260) 2024-08-22T20:40:26.4717340Z remote: Compressing objects: 24% (303/1260) 2024-08-22T20:40:26.4751410Z remote: Compressing objects: 25% (315/1260) 2024-08-22T20:40:26.4784710Z remote: Compressing objects: 26% (328/1260) 2024-08-22T20:40:26.4799000Z remote: Compressing objects: 27% (341/1260) 2024-08-22T20:40:26.4817530Z remote: Compressing objects: 28% (353/1260) 2024-08-22T20:40:26.4823460Z remote: Compressing objects: 29% (366/1260) 2024-08-22T20:40:26.4850210Z remote: Compressing objects: 30% (378/1260) 2024-08-22T20:40:26.4864840Z remote: Compressing objects: 31% (391/1260) 2024-08-22T20:40:26.4870510Z remote: Compressing objects: 32% (404/1260) 2024-08-22T20:40:26.4896340Z remote: Compressing objects: 33% (416/1260) 2024-08-22T20:40:26.4896720Z remote: Compressing objects: 34% (429/1260) 2024-08-22T20:40:26.4897070Z remote: Compressing objects: 35% (441/1260) 2024-08-22T20:40:26.4897410Z remote: Compressing objects: 36% (454/1260) 2024-08-22T20:40:26.4897770Z remote: Compressing objects: 37% (467/1260) 2024-08-22T20:40:26.4901320Z remote: Compressing objects: 38% (479/1260) 2024-08-22T20:40:26.4901670Z remote: Compressing objects: 39% (492/1260) 2024-08-22T20:40:26.4902060Z remote: Compressing objects: 40% (504/1260) 2024-08-22T20:40:26.4905500Z remote: Compressing objects: 41% (517/1260) 2024-08-22T20:40:26.4921530Z remote: Compressing objects: 42% (530/1260) 2024-08-22T20:40:26.4922190Z remote: Compressing objects: 43% (542/1260) 2024-08-22T20:40:26.4922550Z remote: Compressing objects: 44% (555/1260) 2024-08-22T20:40:26.4922890Z remote: Compressing objects: 45% (567/1260) 2024-08-22T20:40:26.4923240Z remote: Compressing objects: 46% (580/1260) 2024-08-22T20:40:26.4923590Z remote: Compressing objects: 47% (593/1260) 2024-08-22T20:40:26.4923930Z remote: Compressing objects: 48% (605/1260) 2024-08-22T20:40:26.4924280Z remote: Compressing objects: 49% (618/1260) 2024-08-22T20:40:26.4924630Z remote: Compressing objects: 50% (630/1260) 2024-08-22T20:40:26.4924960Z remote: Compressing objects: 51% (643/1260) 2024-08-22T20:40:26.4925350Z remote: Compressing objects: 52% (656/1260) 2024-08-22T20:40:26.5042520Z remote: Compressing objects: 53% (668/1260) 2024-08-22T20:40:26.5060720Z remote: Compressing objects: 54% (681/1260) 2024-08-22T20:40:26.5061150Z remote: Compressing objects: 55% (693/1260) 2024-08-22T20:40:26.5061510Z remote: Compressing objects: 56% (706/1260) 2024-08-22T20:40:26.5061860Z remote: Compressing objects: 57% (719/1260) 2024-08-22T20:40:26.5063540Z remote: Compressing objects: 58% (731/1260) 2024-08-22T20:40:26.5065490Z remote: Compressing objects: 59% (744/1260) 2024-08-22T20:40:26.5068130Z remote: Compressing objects: 60% (756/1260) 2024-08-22T20:40:26.5070600Z remote: Compressing objects: 61% (769/1260) 2024-08-22T20:40:26.5084420Z remote: Compressing objects: 62% (782/1260) 2024-08-22T20:40:26.5094860Z remote: Compressing objects: 63% (794/1260) 2024-08-22T20:40:26.5104370Z remote: Compressing objects: 64% (807/1260) 2024-08-22T20:40:26.5111360Z remote: Compressing objects: 65% (819/1260) 2024-08-22T20:40:26.5119630Z remote: Compressing objects: 66% (832/1260) 2024-08-22T20:40:26.5125900Z remote: Compressing objects: 67% (845/1260) 2024-08-22T20:40:26.5132430Z remote: Compressing objects: 68% (857/1260) 2024-08-22T20:40:26.5149010Z remote: Compressing objects: 69% (870/1260) 2024-08-22T20:40:26.5174370Z remote: Compressing objects: 70% (882/1260) 2024-08-22T20:40:26.5192010Z remote: Compressing objects: 71% (895/1260) 2024-08-22T20:40:26.5201650Z remote: Compressing objects: 72% (908/1260) 2024-08-22T20:40:26.5213950Z remote: Compressing objects: 73% (920/1260) 2024-08-22T20:40:26.5238200Z remote: Compressing objects: 74% (933/1260) 2024-08-22T20:40:26.5261590Z remote: Compressing objects: 75% (945/1260) 2024-08-22T20:40:26.5286320Z remote: Compressing objects: 76% (958/1260) 2024-08-22T20:40:26.5624970Z remote: Compressing objects: 77% (971/1260) 2024-08-22T20:40:26.5777770Z remote: Compressing objects: 78% (983/1260) 2024-08-22T20:40:26.5788350Z remote: Compressing objects: 79% (996/1260) 2024-08-22T20:40:26.5794830Z remote: Compressing objects: 80% (1008/1260) 2024-08-22T20:40:26.5797910Z remote: Compressing objects: 81% (1021/1260) 2024-08-22T20:40:26.5812880Z remote: Compressing objects: 82% (1034/1260) 2024-08-22T20:40:26.5838820Z remote: Compressing objects: 83% (1046/1260) 2024-08-22T20:40:26.5851690Z remote: Compressing objects: 84% (1059/1260) 2024-08-22T20:40:26.5856050Z remote: Compressing objects: 85% (1071/1260) 2024-08-22T20:40:26.5865190Z remote: Compressing objects: 86% (1084/1260) 2024-08-22T20:40:26.5869650Z remote: Compressing objects: 87% (1097/1260) 2024-08-22T20:40:26.5874870Z remote: Compressing objects: 88% (1109/1260) 2024-08-22T20:40:26.5875460Z remote: Compressing objects: 89% (1122/1260) 2024-08-22T20:40:26.5876820Z remote: Compressing objects: 90% (1134/1260) 2024-08-22T20:40:26.5878630Z remote: Compressing objects: 91% (1147/1260) 2024-08-22T20:40:26.5881840Z remote: Compressing objects: 92% (1160/1260) 2024-08-22T20:40:26.5886580Z remote: Compressing objects: 93% (1172/1260) 2024-08-22T20:40:26.5887170Z remote: Compressing objects: 94% (1185/1260) 2024-08-22T20:40:26.5887750Z remote: Compressing objects: 95% (1197/1260) 2024-08-22T20:40:26.5888330Z remote: Compressing objects: 96% (1210/1260) 2024-08-22T20:40:26.5888910Z remote: Compressing objects: 97% (1223/1260) 2024-08-22T20:40:26.5889500Z remote: Compressing objects: 98% (1235/1260) 2024-08-22T20:40:26.5890080Z remote: Compressing objects: 99% (1248/1260) 2024-08-22T20:40:26.5897950Z remote: Compressing objects: 100% (1260/1260) 2024-08-22T20:40:26.5898650Z remote: Compressing objects: 100% (1260/1260), done. 2024-08-22T20:40:26.5965430Z Receiving objects: 0% (1/1649) 2024-08-22T20:40:26.5967320Z Receiving objects: 1% (17/1649) 2024-08-22T20:40:26.6002250Z Receiving objects: 2% (33/1649) 2024-08-22T20:40:26.6009770Z Receiving objects: 3% (50/1649) 2024-08-22T20:40:26.6023060Z Receiving objects: 4% (66/1649) 2024-08-22T20:40:26.6026310Z Receiving objects: 5% (83/1649) 2024-08-22T20:40:26.6036740Z Receiving objects: 6% (99/1649) 2024-08-22T20:40:26.6039320Z Receiving objects: 7% (116/1649) 2024-08-22T20:40:26.6040820Z Receiving objects: 8% (132/1649) 2024-08-22T20:40:26.6043970Z Receiving objects: 9% (149/1649) 2024-08-22T20:40:26.6046460Z Receiving objects: 10% (165/1649) 2024-08-22T20:40:26.6049950Z Receiving objects: 11% (182/1649) 2024-08-22T20:40:26.6052490Z Receiving objects: 12% (198/1649) 2024-08-22T20:40:26.6150790Z Receiving objects: 13% (215/1649) 2024-08-22T20:40:26.6184430Z Receiving objects: 14% (231/1649) 2024-08-22T20:40:26.6186360Z Receiving objects: 15% (248/1649) 2024-08-22T20:40:26.6188360Z Receiving objects: 16% (264/1649) 2024-08-22T20:40:26.6215520Z Receiving objects: 17% (281/1649) 2024-08-22T20:40:26.6340260Z Receiving objects: 18% (297/1649) 2024-08-22T20:40:26.6352200Z Receiving objects: 19% (314/1649) 2024-08-22T20:40:26.6353230Z Receiving objects: 20% (330/1649) 2024-08-22T20:40:26.6355670Z Receiving objects: 21% (347/1649) 2024-08-22T20:40:26.6357660Z Receiving objects: 22% (363/1649) 2024-08-22T20:40:26.6360120Z Receiving objects: 23% (380/1649) 2024-08-22T20:40:26.6364400Z Receiving objects: 24% (396/1649) 2024-08-22T20:40:26.6376310Z Receiving objects: 25% (413/1649) 2024-08-22T20:40:26.6382280Z Receiving objects: 26% (429/1649) 2024-08-22T20:40:26.6419130Z Receiving objects: 27% (446/1649) 2024-08-22T20:40:26.6423440Z Receiving objects: 28% (462/1649) 2024-08-22T20:40:26.6425820Z Receiving objects: 29% (479/1649) 2024-08-22T20:40:26.6433410Z Receiving objects: 30% (495/1649) 2024-08-22T20:40:26.6437130Z Receiving objects: 31% (512/1649) 2024-08-22T20:40:26.6442540Z Receiving objects: 32% (528/1649) 2024-08-22T20:40:26.6447450Z Receiving objects: 33% (545/1649) 2024-08-22T20:40:26.6448380Z Receiving objects: 34% (561/1649) 2024-08-22T20:40:26.6449800Z Receiving objects: 35% (578/1649) 2024-08-22T20:40:26.6453230Z Receiving objects: 36% (594/1649) 2024-08-22T20:40:26.6456570Z Receiving objects: 37% (611/1649) 2024-08-22T20:40:26.6458510Z Receiving objects: 38% (627/1649) 2024-08-22T20:40:26.6461270Z Receiving objects: 39% (644/1649) 2024-08-22T20:40:26.6471890Z Receiving objects: 40% (660/1649) 2024-08-22T20:40:26.6472290Z Receiving objects: 41% (677/1649) 2024-08-22T20:40:26.6472660Z Receiving objects: 42% (693/1649) 2024-08-22T20:40:26.6473020Z Receiving objects: 43% (710/1649) 2024-08-22T20:40:26.6473840Z Receiving objects: 44% (726/1649) 2024-08-22T20:40:26.6476380Z Receiving objects: 45% (743/1649) 2024-08-22T20:40:26.6478990Z Receiving objects: 46% (759/1649) 2024-08-22T20:40:26.6480780Z Receiving objects: 47% (776/1649) 2024-08-22T20:40:26.6482920Z Receiving objects: 48% (792/1649) 2024-08-22T20:40:26.6484830Z Receiving objects: 49% (809/1649) 2024-08-22T20:40:26.6487450Z Receiving objects: 50% (825/1649) 2024-08-22T20:40:26.6489400Z Receiving objects: 51% (841/1649) 2024-08-22T20:40:26.6491170Z Receiving objects: 52% (858/1649) 2024-08-22T20:40:26.6494220Z Receiving objects: 53% (874/1649) 2024-08-22T20:40:26.6496730Z Receiving objects: 54% (891/1649) 2024-08-22T20:40:26.6497840Z Receiving objects: 55% (907/1649) 2024-08-22T20:40:26.6499540Z Receiving objects: 56% (924/1649) 2024-08-22T20:40:26.6501870Z Receiving objects: 57% (940/1649) 2024-08-22T20:40:26.6504710Z Receiving objects: 58% (957/1649) 2024-08-22T20:40:26.6508280Z Receiving objects: 59% (973/1649) 2024-08-22T20:40:26.6510100Z Receiving objects: 60% (990/1649) 2024-08-22T20:40:26.6512060Z Receiving objects: 61% (1006/1649) 2024-08-22T20:40:26.6513790Z Receiving objects: 62% (1023/1649) 2024-08-22T20:40:26.6516090Z Receiving objects: 63% (1039/1649) 2024-08-22T20:40:26.6518730Z Receiving objects: 64% (1056/1649) 2024-08-22T20:40:26.6528110Z Receiving objects: 65% (1072/1649) 2024-08-22T20:40:26.6529180Z Receiving objects: 66% (1089/1649) 2024-08-22T20:40:26.6541490Z Receiving objects: 67% (1105/1649) 2024-08-22T20:40:26.6552340Z Receiving objects: 68% (1122/1649) 2024-08-22T20:40:26.6562770Z Receiving objects: 69% (1138/1649) 2024-08-22T20:40:26.6574660Z Receiving objects: 70% (1155/1649) 2024-08-22T20:40:26.6581820Z Receiving objects: 71% (1171/1649) 2024-08-22T20:40:26.6604860Z Receiving objects: 72% (1188/1649) 2024-08-22T20:40:26.6620850Z Receiving objects: 73% (1204/1649) 2024-08-22T20:40:26.6637400Z Receiving objects: 74% (1221/1649) 2024-08-22T20:40:26.6939780Z Receiving objects: 75% (1237/1649) 2024-08-22T20:40:26.6941020Z Receiving objects: 76% (1254/1649) 2024-08-22T20:40:26.6945460Z Receiving objects: 77% (1270/1649) 2024-08-22T20:40:26.6945910Z Receiving objects: 78% (1287/1649) 2024-08-22T20:40:26.6947010Z Receiving objects: 79% (1303/1649) 2024-08-22T20:40:26.6950400Z Receiving objects: 80% (1320/1649) 2024-08-22T20:40:26.6960370Z Receiving objects: 81% (1336/1649) 2024-08-22T20:40:26.7014810Z Receiving objects: 82% (1353/1649) 2024-08-22T20:40:26.7016370Z Receiving objects: 83% (1369/1649) 2024-08-22T20:40:26.7018410Z Receiving objects: 84% (1386/1649) 2024-08-22T20:40:26.7019990Z Receiving objects: 85% (1402/1649) 2024-08-22T20:40:26.7020470Z Receiving objects: 86% (1419/1649) 2024-08-22T20:40:26.7020960Z Receiving objects: 87% (1435/1649) 2024-08-22T20:40:26.7022120Z Receiving objects: 88% (1452/1649) 2024-08-22T20:40:26.7024070Z Receiving objects: 89% (1468/1649) 2024-08-22T20:40:26.7025840Z Receiving objects: 90% (1485/1649) 2024-08-22T20:40:26.7026630Z Receiving objects: 91% (1501/1649) 2024-08-22T20:40:26.7027410Z Receiving objects: 92% (1518/1649) 2024-08-22T20:40:26.7028040Z Receiving objects: 93% (1534/1649) 2024-08-22T20:40:26.7029660Z Receiving objects: 94% (1551/1649) 2024-08-22T20:40:26.7030460Z Receiving objects: 95% (1567/1649) 2024-08-22T20:40:26.7048230Z Receiving objects: 96% (1584/1649) 2024-08-22T20:40:26.7058500Z Receiving objects: 97% (1600/1649) 2024-08-22T20:40:26.7063250Z Receiving objects: 98% (1617/1649) 2024-08-22T20:40:26.7085400Z Receiving objects: 99% (1633/1649) 2024-08-22T20:40:26.7086180Z remote: Total 1649 (delta 371), reused 1069 (delta 267), pack-reused 0 (from 0) 2024-08-22T20:40:26.7092180Z Receiving objects: 100% (1649/1649) 2024-08-22T20:40:26.7092660Z Receiving objects: 100% (1649/1649), 2.83 MiB | 25.00 MiB/s, done. 2024-08-22T20:40:26.7109290Z Resolving deltas: 0% (0/371) 2024-08-22T20:40:26.7110380Z Resolving deltas: 1% (4/371) 2024-08-22T20:40:26.7111150Z Resolving deltas: 2% (8/371) 2024-08-22T20:40:26.7112500Z Resolving deltas: 3% (12/371) 2024-08-22T20:40:26.7114180Z Resolving deltas: 4% (15/371) 2024-08-22T20:40:26.7114520Z Resolving deltas: 5% (19/371) 2024-08-22T20:40:26.7114900Z Resolving deltas: 6% (23/371) 2024-08-22T20:40:26.7115670Z Resolving deltas: 7% (26/371) 2024-08-22T20:40:26.7116500Z Resolving deltas: 8% (30/371) 2024-08-22T20:40:26.7118360Z Resolving deltas: 9% (34/371) 2024-08-22T20:40:26.7120580Z Resolving deltas: 10% (38/371) 2024-08-22T20:40:26.7122120Z Resolving deltas: 11% (41/371) 2024-08-22T20:40:26.7122690Z Resolving deltas: 12% (45/371) 2024-08-22T20:40:26.7123240Z Resolving deltas: 13% (50/371) 2024-08-22T20:40:26.7123920Z Resolving deltas: 14% (52/371) 2024-08-22T20:40:26.7124210Z Resolving deltas: 15% (56/371) 2024-08-22T20:40:26.7131740Z Resolving deltas: 16% (60/371) 2024-08-22T20:40:26.7133820Z Resolving deltas: 17% (64/371) 2024-08-22T20:40:26.7134570Z Resolving deltas: 18% (67/371) 2024-08-22T20:40:26.7134870Z Resolving deltas: 19% (71/371) 2024-08-22T20:40:26.7139350Z Resolving deltas: 20% (75/371) 2024-08-22T20:40:26.7139660Z Resolving deltas: 21% (78/371) 2024-08-22T20:40:26.7139950Z Resolving deltas: 22% (82/371) 2024-08-22T20:40:26.7140520Z Resolving deltas: 23% (86/371) 2024-08-22T20:40:26.7141530Z Resolving deltas: 24% (90/371) 2024-08-22T20:40:26.7143500Z Resolving deltas: 25% (94/371) 2024-08-22T20:40:26.7144570Z Resolving deltas: 26% (97/371) 2024-08-22T20:40:26.7145180Z Resolving deltas: 27% (101/371) 2024-08-22T20:40:26.7145830Z Resolving deltas: 28% (104/371) 2024-08-22T20:40:26.7165910Z Resolving deltas: 29% (108/371) 2024-08-22T20:40:26.7173520Z Resolving deltas: 30% (113/371) 2024-08-22T20:40:26.7176090Z Resolving deltas: 31% (116/371) 2024-08-22T20:40:26.7181100Z Resolving deltas: 32% (119/371) 2024-08-22T20:40:26.7189380Z Resolving deltas: 33% (123/371) 2024-08-22T20:40:26.7189790Z Resolving deltas: 34% (127/371) 2024-08-22T20:40:26.7190100Z Resolving deltas: 35% (130/371) 2024-08-22T20:40:26.7190370Z Resolving deltas: 36% (134/371) 2024-08-22T20:40:26.7216040Z Resolving deltas: 37% (139/371) 2024-08-22T20:40:26.7216340Z Resolving deltas: 38% (141/371) 2024-08-22T20:40:26.7216620Z Resolving deltas: 39% (145/371) 2024-08-22T20:40:26.7216900Z Resolving deltas: 40% (149/371) 2024-08-22T20:40:26.7217180Z Resolving deltas: 41% (153/371) 2024-08-22T20:40:26.7217450Z Resolving deltas: 42% (156/371) 2024-08-22T20:40:26.7217740Z Resolving deltas: 43% (160/371) 2024-08-22T20:40:26.7218020Z Resolving deltas: 44% (165/371) 2024-08-22T20:40:26.7218290Z Resolving deltas: 45% (167/371) 2024-08-22T20:40:26.7218560Z Resolving deltas: 46% (171/371) 2024-08-22T20:40:26.7218830Z Resolving deltas: 47% (175/371) 2024-08-22T20:40:26.7219100Z Resolving deltas: 48% (179/371) 2024-08-22T20:40:26.7219370Z Resolving deltas: 49% (182/371) 2024-08-22T20:40:26.7219640Z Resolving deltas: 50% (186/371) 2024-08-22T20:40:26.7219910Z Resolving deltas: 51% (190/371) 2024-08-22T20:40:26.7220180Z Resolving deltas: 52% (193/371) 2024-08-22T20:40:26.7220450Z Resolving deltas: 53% (197/371) 2024-08-22T20:40:26.7220930Z Resolving deltas: 54% (201/371) 2024-08-22T20:40:26.7221230Z Resolving deltas: 55% (205/371) 2024-08-22T20:40:26.7221490Z Resolving deltas: 56% (208/371) 2024-08-22T20:40:26.7221760Z Resolving deltas: 57% (212/371) 2024-08-22T20:40:26.7222030Z Resolving deltas: 58% (217/371) 2024-08-22T20:40:26.7222390Z Resolving deltas: 59% (220/371) 2024-08-22T20:40:26.7222650Z Resolving deltas: 60% (223/371) 2024-08-22T20:40:26.7222920Z Resolving deltas: 61% (228/371) 2024-08-22T20:40:26.7223180Z Resolving deltas: 62% (231/371) 2024-08-22T20:40:26.7223440Z Resolving deltas: 63% (234/371) 2024-08-22T20:40:26.7223700Z Resolving deltas: 64% (238/371) 2024-08-22T20:40:26.7223970Z Resolving deltas: 65% (242/371) 2024-08-22T20:40:26.7224240Z Resolving deltas: 66% (245/371) 2024-08-22T20:40:26.7224510Z Resolving deltas: 67% (249/371) 2024-08-22T20:40:26.7224780Z Resolving deltas: 68% (253/371) 2024-08-22T20:40:26.7225050Z Resolving deltas: 69% (256/371) 2024-08-22T20:40:26.7225320Z Resolving deltas: 70% (260/371) 2024-08-22T20:40:26.7225590Z Resolving deltas: 71% (265/371) 2024-08-22T20:40:26.7225860Z Resolving deltas: 72% (268/371) 2024-08-22T20:40:26.7226130Z Resolving deltas: 73% (271/371) 2024-08-22T20:40:26.7226390Z Resolving deltas: 74% (277/371) 2024-08-22T20:40:26.7226660Z Resolving deltas: 75% (279/371) 2024-08-22T20:40:26.7226920Z Resolving deltas: 76% (282/371) 2024-08-22T20:40:26.7227190Z Resolving deltas: 77% (287/371) 2024-08-22T20:40:26.7227460Z Resolving deltas: 78% (290/371) 2024-08-22T20:40:26.7227720Z Resolving deltas: 79% (295/371) 2024-08-22T20:40:26.7227980Z Resolving deltas: 80% (297/371) 2024-08-22T20:40:26.7228250Z Resolving deltas: 81% (301/371) 2024-08-22T20:40:26.7228510Z Resolving deltas: 82% (305/371) 2024-08-22T20:40:26.7228770Z Resolving deltas: 83% (308/371) 2024-08-22T20:40:26.7229030Z Resolving deltas: 84% (312/371) 2024-08-22T20:40:26.7229290Z Resolving deltas: 85% (316/371) 2024-08-22T20:40:26.7229550Z Resolving deltas: 86% (322/371) 2024-08-22T20:40:26.7229820Z Resolving deltas: 87% (323/371) 2024-08-22T20:40:26.7230080Z Resolving deltas: 88% (327/371) 2024-08-22T20:40:26.7230340Z Resolving deltas: 89% (331/371) 2024-08-22T20:40:26.7230600Z Resolving deltas: 90% (334/371) 2024-08-22T20:40:26.7230870Z Resolving deltas: 91% (338/371) 2024-08-22T20:40:26.7231140Z Resolving deltas: 92% (343/371) 2024-08-22T20:40:26.7231410Z Resolving deltas: 93% (346/371) 2024-08-22T20:40:26.7231670Z Resolving deltas: 94% (349/371) 2024-08-22T20:40:26.7231930Z Resolving deltas: 95% (353/371) 2024-08-22T20:40:26.7232190Z Resolving deltas: 96% (359/371) 2024-08-22T20:40:26.7232450Z Resolving deltas: 97% (360/371) 2024-08-22T20:40:26.7232710Z Resolving deltas: 98% (366/371) 2024-08-22T20:40:26.7232970Z Resolving deltas: 99% (368/371) 2024-08-22T20:40:26.7233240Z Resolving deltas: 100% (371/371) 2024-08-22T20:40:26.7233510Z Resolving deltas: 100% (371/371), done. 2024-08-22T20:40:26.7385200Z From https://github.com/pytorch/test-infra 2024-08-22T20:40:26.7385630Z * [new branch] main -> origin/main 2024-08-22T20:40:26.7426620Z ##[endgroup] 2024-08-22T20:40:26.7427000Z ##[group]Determining the checkout info 2024-08-22T20:40:26.7427400Z ##[endgroup] 2024-08-22T20:40:26.7427720Z ##[group]Checking out the ref 2024-08-22T20:40:26.7429080Z [command]/usr/bin/git checkout --progress --force -B main refs/remotes/origin/main 2024-08-22T20:40:26.9092010Z Reset branch 'main' 2024-08-22T20:40:26.9092350Z branch 'main' set up to track 'origin/main'. 2024-08-22T20:40:26.9097480Z ##[endgroup] 2024-08-22T20:40:26.9170560Z [command]/usr/bin/git log -1 --format='%H' 2024-08-22T20:40:26.9229460Z '6dab351bed7d1c647665a8b8e883ec5b1c973feb' 2024-08-22T20:40:26.9429370Z Prepare all required actions 2024-08-22T20:40:26.9429680Z Getting action download info 2024-08-22T20:40:27.0368990Z Download action repository 'actions/cache@v3' (SHA:e12d46a63a90f2fae62d114769bbf2a179198b5c) 2024-08-22T20:40:27.3991990Z ##[group]Run ./test-infra/.github/actions/setup-miniconda 2024-08-22T20:40:27.3992340Z with: 2024-08-22T20:40:27.3992510Z python-version: 3.9 2024-08-22T20:40:27.3992720Z miniconda-version: 23.1.0-1 2024-08-22T20:40:27.3992920Z env: 2024-08-22T20:40:27.3993090Z REPOSITORY: pytorch/torchchat 2024-08-22T20:40:27.3999390Z SCRIPT: set -x # NS/MC: Remove previous installation of torch and torchao first # as this script does not install anything into conda env but rather as system dep pip3 uninstall -y torch || true set -eou pipefail pip3 uninstall -y torchao || true set -eou pipefail echo "::group::Print machine info" uname -a sysctl machdep.cpu.brand_string sysctl machdep.cpu.core_count echo "::endgroup::" echo "::group::Install requirements" # Install requirements ./install_requirements.sh ls -la pwd 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 curl -fsSL -O https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.pt curl -fsSL -O 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 python3 torchchat.py generate --device mps --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** embedding" echo "************************************************************" python3 torchchat.py generate --device mps --quant '{"embedding" : {"bitwidth": 8, "groupsize": 0}}' --checkpoint-path ${MODEL_PATH} --temperature 0 python3 torchchat.py generate --device mps --quant '{"embedding" : {"bitwidth": 8, "groupsize": 8}}' --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** linear int8" echo "************************************************************" python3 torchchat.py generate --device mps --quant '{"linear:int8" : {"bitwidth": 8, "groupsize": 0}}' --checkpoint-path ${MODEL_PATH} --temperature 0 python3 torchchat.py generate --device mps --quant '{"linear:int8" : {"bitwidth": 8, "groupsize": 8}}' --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** linear int4" echo "************************************************************" PYTORCH_ENABLE_MPS_FALLBACK=1 python3 torchchat.py generate --device mps --quant '{"linear:int4" : {"groupsize": 32}}' --checkpoint-path ${MODEL_PATH} --temperature 0 2024-08-22T20:40:27.4005970Z ##[endgroup] 2024-08-22T20:40:27.4145080Z ##[group]Run echo "today=$(/bin/date -u '+%Y%m%d')d" >> "${GITHUB_OUTPUT}" 2024-08-22T20:40:27.4145540Z echo "today=$(/bin/date -u '+%Y%m%d')d" >> "${GITHUB_OUTPUT}" 2024-08-22T20:40:27.4162530Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2024-08-22T20:40:27.4162810Z env: 2024-08-22T20:40:27.4162960Z REPOSITORY: pytorch/torchchat 2024-08-22T20:40:27.4169480Z SCRIPT: set -x # NS/MC: Remove previous installation of torch and torchao first # as this script does not install anything into conda env but rather as system dep pip3 uninstall -y torch || true set -eou pipefail pip3 uninstall -y torchao || true set -eou pipefail echo "::group::Print machine info" uname -a sysctl machdep.cpu.brand_string sysctl machdep.cpu.core_count echo "::endgroup::" echo "::group::Install requirements" # Install requirements ./install_requirements.sh ls -la pwd 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 curl -fsSL -O https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.pt curl -fsSL -O 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 python3 torchchat.py generate --device mps --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** embedding" echo "************************************************************" python3 torchchat.py generate --device mps --quant '{"embedding" : {"bitwidth": 8, "groupsize": 0}}' --checkpoint-path ${MODEL_PATH} --temperature 0 python3 torchchat.py generate --device mps --quant '{"embedding" : {"bitwidth": 8, "groupsize": 8}}' --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** linear int8" echo "************************************************************" python3 torchchat.py generate --device mps --quant '{"linear:int8" : {"bitwidth": 8, "groupsize": 0}}' --checkpoint-path ${MODEL_PATH} --temperature 0 python3 torchchat.py generate --device mps --quant '{"linear:int8" : {"bitwidth": 8, "groupsize": 8}}' --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** linear int4" echo "************************************************************" PYTORCH_ENABLE_MPS_FALLBACK=1 python3 torchchat.py generate --device mps --quant '{"linear:int4" : {"groupsize": 32}}' --checkpoint-path ${MODEL_PATH} --temperature 0 2024-08-22T20:40:27.4175970Z ##[endgroup] 2024-08-22T20:40:27.4618900Z ##[group]Run actions/cache@v3 2024-08-22T20:40:27.4619180Z with: 2024-08-22T20:40:27.4619390Z path: /Users/ec2-user/runner/_work/_temp/miniconda 2024-08-22T20:40:27.4619700Z key: miniconda-macOS-ARM64-3.9-20240822d 2024-08-22T20:40:27.4620000Z enableCrossOsArchive: false 2024-08-22T20:40:27.4620230Z fail-on-cache-miss: false 2024-08-22T20:40:27.4620440Z lookup-only: false 2024-08-22T20:40:27.4620610Z env: 2024-08-22T20:40:27.4620760Z REPOSITORY: pytorch/torchchat 2024-08-22T20:40:27.4627240Z SCRIPT: set -x # NS/MC: Remove previous installation of torch and torchao first # as this script does not install anything into conda env but rather as system dep pip3 uninstall -y torch || true set -eou pipefail pip3 uninstall -y torchao || true set -eou pipefail echo "::group::Print machine info" uname -a sysctl machdep.cpu.brand_string sysctl machdep.cpu.core_count echo "::endgroup::" echo "::group::Install requirements" # Install requirements ./install_requirements.sh ls -la pwd 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 curl -fsSL -O https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.pt curl -fsSL -O 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 python3 torchchat.py generate --device mps --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** embedding" echo "************************************************************" python3 torchchat.py generate --device mps --quant '{"embedding" : {"bitwidth": 8, "groupsize": 0}}' --checkpoint-path ${MODEL_PATH} --temperature 0 python3 torchchat.py generate --device mps --quant '{"embedding" : {"bitwidth": 8, "groupsize": 8}}' --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** linear int8" echo "************************************************************" python3 torchchat.py generate --device mps --quant '{"linear:int8" : {"bitwidth": 8, "groupsize": 0}}' --checkpoint-path ${MODEL_PATH} --temperature 0 python3 torchchat.py generate --device mps --quant '{"linear:int8" : {"bitwidth": 8, "groupsize": 8}}' --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** linear int4" echo "************************************************************" PYTORCH_ENABLE_MPS_FALLBACK=1 python3 torchchat.py generate --device mps --quant '{"linear:int4" : {"groupsize": 32}}' --checkpoint-path ${MODEL_PATH} --temperature 0 2024-08-22T20:40:27.4633660Z ##[endgroup] 2024-08-22T20:40:28.7635380Z Received 191179680 of 191179680 (100.0%), 181.8 MBs/sec 2024-08-22T20:40:28.8055640Z Cache Size: ~182 MB (191179680 B) 2024-08-22T20:40:28.8081120Z [command]/usr/bin/tar -xf /Users/ec2-user/runner/_work/_temp/bfb32035-5ea5-458c-8931-9cb53f4d348f/cache.tzst -P -C /Users/ec2-user/runner/_work/torchchat/torchchat --use-compress-program unzstd 2024-08-22T20:40:34.9306280Z Cache restored successfully 2024-08-22T20:40:34.9405690Z Cache restored from key: miniconda-macOS-ARM64-3.9-20240822d 2024-08-22T20:40:34.9474210Z ##[group]Run set -x 2024-08-22T20:40:34.9474440Z set -x 2024-08-22T20:40:34.9474620Z  2024-08-22T20:40:34.9474850Z MINICONDA_INSTALL_PATH="${RUNNER_TEMP}/miniconda" 2024-08-22T20:40:34.9475240Z echo "${MINICONDA_INSTALL_PATH}/bin" >> $GITHUB_PATH 2024-08-22T20:40:34.9475690Z # NB: GITHUB_PATH has a lower priority than PATH, so also set the path 2024-08-22T20:40:34.9476140Z # here to make sure that the correct conda is used 2024-08-22T20:40:34.9476470Z { 2024-08-22T20:40:34.9476700Z  echo "PATH=${MINICONDA_INSTALL_PATH}/bin:${PATH}" 2024-08-22T20:40:34.9477080Z  echo "CONDA_EXE=${MINICONDA_INSTALL_PATH}/bin/conda"; 2024-08-22T20:40:34.9477410Z } >> "${GITHUB_ENV}" 2024-08-22T20:40:34.9493490Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2024-08-22T20:40:34.9493780Z env: 2024-08-22T20:40:34.9493940Z REPOSITORY: pytorch/torchchat 2024-08-22T20:40:34.9500720Z SCRIPT: set -x # NS/MC: Remove previous installation of torch and torchao first # as this script does not install anything into conda env but rather as system dep pip3 uninstall -y torch || true set -eou pipefail pip3 uninstall -y torchao || true set -eou pipefail echo "::group::Print machine info" uname -a sysctl machdep.cpu.brand_string sysctl machdep.cpu.core_count echo "::endgroup::" echo "::group::Install requirements" # Install requirements ./install_requirements.sh ls -la pwd 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 curl -fsSL -O https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.pt curl -fsSL -O 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 python3 torchchat.py generate --device mps --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** embedding" echo "************************************************************" python3 torchchat.py generate --device mps --quant '{"embedding" : {"bitwidth": 8, "groupsize": 0}}' --checkpoint-path ${MODEL_PATH} --temperature 0 python3 torchchat.py generate --device mps --quant '{"embedding" : {"bitwidth": 8, "groupsize": 8}}' --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** linear int8" echo "************************************************************" python3 torchchat.py generate --device mps --quant '{"linear:int8" : {"bitwidth": 8, "groupsize": 0}}' --checkpoint-path ${MODEL_PATH} --temperature 0 python3 torchchat.py generate --device mps --quant '{"linear:int8" : {"bitwidth": 8, "groupsize": 8}}' --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** linear int4" echo "************************************************************" PYTORCH_ENABLE_MPS_FALLBACK=1 python3 torchchat.py generate --device mps --quant '{"linear:int4" : {"groupsize": 32}}' --checkpoint-path ${MODEL_PATH} --temperature 0 2024-08-22T20:40:34.9507560Z ##[endgroup] 2024-08-22T20:40:34.9893280Z + MINICONDA_INSTALL_PATH=/Users/ec2-user/runner/_work/_temp/miniconda 2024-08-22T20:40:34.9893830Z + echo /Users/ec2-user/runner/_work/_temp/miniconda/bin 2024-08-22T20:40:34.9899360Z + echo PATH=/Users/ec2-user/runner/_work/_temp/miniconda/bin:/opt/homebrew/Caskroom/miniconda/base/bin:/opt/homebrew/Caskroom/miniconda/base/condabin:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/bin:/bin:/usr/sbin:/sbin 2024-08-22T20:40:34.9906970Z + echo CONDA_EXE=/Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2024-08-22T20:40:35.1350250Z ##[group]Run actions/cache@v3 2024-08-22T20:40:35.1350520Z with: 2024-08-22T20:40:35.1350760Z path: /Users/ec2-user/runner/_work/_temp/conda-python-3.9 2024-08-22T20:40:35.1351150Z key: miniconda-env-macOS-ARM64-3.9-20240822d-- 2024-08-22T20:40:35.1351440Z enableCrossOsArchive: false 2024-08-22T20:40:35.1351670Z fail-on-cache-miss: false 2024-08-22T20:40:35.1351900Z lookup-only: false 2024-08-22T20:40:35.1352080Z env: 2024-08-22T20:40:35.1352240Z REPOSITORY: pytorch/torchchat 2024-08-22T20:40:35.1358730Z SCRIPT: set -x # NS/MC: Remove previous installation of torch and torchao first # as this script does not install anything into conda env but rather as system dep pip3 uninstall -y torch || true set -eou pipefail pip3 uninstall -y torchao || true set -eou pipefail echo "::group::Print machine info" uname -a sysctl machdep.cpu.brand_string sysctl machdep.cpu.core_count echo "::endgroup::" echo "::group::Install requirements" # Install requirements ./install_requirements.sh ls -la pwd 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 curl -fsSL -O https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.pt curl -fsSL -O 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 python3 torchchat.py generate --device mps --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** embedding" echo "************************************************************" python3 torchchat.py generate --device mps --quant '{"embedding" : {"bitwidth": 8, "groupsize": 0}}' --checkpoint-path ${MODEL_PATH} --temperature 0 python3 torchchat.py generate --device mps --quant '{"embedding" : {"bitwidth": 8, "groupsize": 8}}' --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** linear int8" echo "************************************************************" python3 torchchat.py generate --device mps --quant '{"linear:int8" : {"bitwidth": 8, "groupsize": 0}}' --checkpoint-path ${MODEL_PATH} --temperature 0 python3 torchchat.py generate --device mps --quant '{"linear:int8" : {"bitwidth": 8, "groupsize": 8}}' --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** linear int4" echo "************************************************************" PYTORCH_ENABLE_MPS_FALLBACK=1 python3 torchchat.py generate --device mps --quant '{"linear:int4" : {"groupsize": 32}}' --checkpoint-path ${MODEL_PATH} --temperature 0 2024-08-22T20:40:35.1366170Z PATH: /Users/ec2-user/runner/_work/_temp/miniconda/bin:/opt/homebrew/Caskroom/miniconda/base/bin:/opt/homebrew/Caskroom/miniconda/base/condabin:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/bin:/bin:/usr/sbin:/sbin 2024-08-22T20:40:35.1367160Z CONDA_EXE: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2024-08-22T20:40:35.1367480Z ##[endgroup] 2024-08-22T20:40:35.6321260Z Cache Size: ~55 MB (57766477 B) 2024-08-22T20:40:35.6337530Z [command]/usr/bin/tar -xf /Users/ec2-user/runner/_work/_temp/35905616-7db7-4277-8af9-d2e9d9829c12/cache.tzst -P -C /Users/ec2-user/runner/_work/torchchat/torchchat --use-compress-program unzstd 2024-08-22T20:40:36.3086870Z Received 57766477 of 57766477 (100.0%), 55.0 MBs/sec 2024-08-22T20:40:37.5127980Z Cache restored successfully 2024-08-22T20:40:37.5205970Z Cache restored from key: miniconda-env-macOS-ARM64-3.9-20240822d-- 2024-08-22T20:40:37.5270270Z ##[group]Run set -x 2024-08-22T20:40:37.5270490Z set -x 2024-08-22T20:40:37.5270660Z  2024-08-22T20:40:37.5270980Z # Print the conda we are using here in case we need debugging information 2024-08-22T20:40:37.5271390Z CONDA_RUNTIME=$(which conda) 2024-08-22T20:40:37.5271660Z "${CONDA_RUNTIME}" --version 2024-08-22T20:40:37.5271940Z  2024-08-22T20:40:37.5272370Z # https://docs.conda.io/projects/conda-build/en/stable/user-guide/environment-variables.html 2024-08-22T20:40:37.5272970Z CONDA_PREFIX="${RUNNER_TEMP}/conda_environment_${GITHUB_RUN_ID}" 2024-08-22T20:40:37.5273340Z "${CONDA_RUNTIME}" create \ 2024-08-22T20:40:37.5273600Z  --yes --quiet \ 2024-08-22T20:40:37.5273830Z  --prefix "${CONDA_PREFIX}" \ 2024-08-22T20:40:37.5274100Z  --clone "${CONDA_BASE_ENV}" 2024-08-22T20:40:37.5274360Z  2024-08-22T20:40:37.5274520Z set +e 2024-08-22T20:40:37.5274910Z # NB: Cloning sometimes doesn't copied pip dependencies (untracked files) over. If this 2024-08-22T20:40:37.5275540Z # happens, let's attempt to install the pip requirements directly on top of the cloned 2024-08-22T20:40:37.5276110Z # environment. This is to make sure that no dependency is missing. 2024-08-22T20:40:37.5276700Z UNTRACKED_FILES_COUNT=$("${CONDA_RUNTIME}" package -p "${CONDA_PREFIX}" -u | grep -v "^#" | wc -l | xargs) 2024-08-22T20:40:37.5277170Z set -e 2024-08-22T20:40:37.5277340Z  2024-08-22T20:40:37.5277680Z if [[ -z "${UNTRACKED_FILES_COUNT}" ]] || [[ "${UNTRACKED_FILES_COUNT}" == "0" ]]; then 2024-08-22T20:40:37.5278120Z  if [[ -f "${PIP_REQUIREMENTS_FILE}" ]]; then 2024-08-22T20:40:37.5278610Z  # NB: Force reinstall and don't use the cache, as the installation would still fail 2024-08-22T20:40:37.5279140Z  # when reporting that all requirements have been satisfied 2024-08-22T20:40:37.5279870Z  "${CONDA_RUNTIME}" run -p "${CONDA_PREFIX}" --no-capture-output python3 -mpip install --ignore-installed --no-cache-dir -r "${PIP_REQUIREMENTS_FILE}" 2024-08-22T20:40:37.5280540Z  elif [[ -n "${PIP_REQUIREMENTS_FILE}" ]]; then 2024-08-22T20:40:37.5281090Z  echo "::warning::Specified pip requirements file (${PIP_REQUIREMENTS_FILE}) not found, not going to include it" 2024-08-22T20:40:37.5281600Z  fi 2024-08-22T20:40:37.5281780Z fi 2024-08-22T20:40:37.5281930Z  2024-08-22T20:40:37.5282290Z # Keep exporting CONDA_PREFIX under CONDA_ENV because the latter could be used elsewhere 2024-08-22T20:40:37.5282790Z echo "CONDA_ENV=${CONDA_PREFIX}" >> "${GITHUB_ENV}" 2024-08-22T20:40:37.5283080Z  2024-08-22T20:40:37.5283310Z echo "CONDA_PREFIX=${CONDA_PREFIX}" >> "${GITHUB_ENV}" 2024-08-22T20:40:37.5283820Z echo "CONDA_RUN=${CONDA_RUNTIME} run -p ${CONDA_PREFIX} --no-capture-output" >> "${GITHUB_ENV}" 2024-08-22T20:40:37.5284290Z if [[ "${PYTHON_VERSION}" == "3.11" ]]; then 2024-08-22T20:40:37.5284890Z  # TODO: Remove me, when more packages will be available on default channel 2024-08-22T20:40:37.5285540Z  echo "CONDA_INSTALL=${CONDA_RUNTIME} install --yes --quiet -p ${CONDA_PREFIX} -c pytorch-nightly" >> "${GITHUB_ENV}" 2024-08-22T20:40:37.5286020Z else 2024-08-22T20:40:37.5286380Z  echo "CONDA_INSTALL=${CONDA_RUNTIME} install --yes --quiet -p ${CONDA_PREFIX}" >> "${GITHUB_ENV}" 2024-08-22T20:40:37.5286810Z fi 2024-08-22T20:40:37.5307570Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2024-08-22T20:40:37.5307860Z env: 2024-08-22T20:40:37.5308030Z REPOSITORY: pytorch/torchchat 2024-08-22T20:40:37.5314480Z SCRIPT: set -x # NS/MC: Remove previous installation of torch and torchao first # as this script does not install anything into conda env but rather as system dep pip3 uninstall -y torch || true set -eou pipefail pip3 uninstall -y torchao || true set -eou pipefail echo "::group::Print machine info" uname -a sysctl machdep.cpu.brand_string sysctl machdep.cpu.core_count echo "::endgroup::" echo "::group::Install requirements" # Install requirements ./install_requirements.sh ls -la pwd 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 curl -fsSL -O https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.pt curl -fsSL -O 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 python3 torchchat.py generate --device mps --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** embedding" echo "************************************************************" python3 torchchat.py generate --device mps --quant '{"embedding" : {"bitwidth": 8, "groupsize": 0}}' --checkpoint-path ${MODEL_PATH} --temperature 0 python3 torchchat.py generate --device mps --quant '{"embedding" : {"bitwidth": 8, "groupsize": 8}}' --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** linear int8" echo "************************************************************" python3 torchchat.py generate --device mps --quant '{"linear:int8" : {"bitwidth": 8, "groupsize": 0}}' --checkpoint-path ${MODEL_PATH} --temperature 0 python3 torchchat.py generate --device mps --quant '{"linear:int8" : {"bitwidth": 8, "groupsize": 8}}' --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** linear int4" echo "************************************************************" PYTORCH_ENABLE_MPS_FALLBACK=1 python3 torchchat.py generate --device mps --quant '{"linear:int4" : {"groupsize": 32}}' --checkpoint-path ${MODEL_PATH} --temperature 0 2024-08-22T20:40:37.5321750Z PATH: /Users/ec2-user/runner/_work/_temp/miniconda/bin:/opt/homebrew/Caskroom/miniconda/base/bin:/opt/homebrew/Caskroom/miniconda/base/condabin:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/bin:/bin:/usr/sbin:/sbin 2024-08-22T20:40:37.5322710Z CONDA_EXE: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2024-08-22T20:40:37.5323070Z PYTHON_VERSION: 3.9 2024-08-22T20:40:37.5323370Z CONDA_BASE_ENV: /Users/ec2-user/runner/_work/_temp/conda-python-3.9 2024-08-22T20:40:37.5323700Z PIP_REQUIREMENTS_FILE: 2024-08-22T20:40:37.5323920Z ##[endgroup] 2024-08-22T20:40:37.5701480Z ++ which conda 2024-08-22T20:40:37.5711170Z + CONDA_RUNTIME=/Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2024-08-22T20:40:37.5711820Z + /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda --version 2024-08-22T20:40:39.6966540Z conda 23.1.0 2024-08-22T20:40:39.7479070Z + CONDA_PREFIX=/Users/ec2-user/runner/_work/_temp/conda_environment_10515112133 2024-08-22T20:40:39.7481090Z + /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda create --yes --quiet --prefix /Users/ec2-user/runner/_work/_temp/conda_environment_10515112133 --clone /Users/ec2-user/runner/_work/_temp/conda-python-3.9 2024-08-22T20:40:40.1365870Z Source: /Users/ec2-user/runner/_work/_temp/conda-python-3.9 2024-08-22T20:40:40.1366460Z Destination: /Users/ec2-user/runner/_work/_temp/conda_environment_10515112133 2024-08-22T20:40:40.1366880Z Packages: 33 2024-08-22T20:40:40.1367070Z Files: 0 2024-08-22T20:40:40.3237300Z Preparing transaction: ...working... done 2024-08-22T20:40:42.8816250Z Verifying transaction: ...working... done 2024-08-22T20:40:46.4708720Z Executing transaction: ...working... done 2024-08-22T20:40:46.5652210Z + set +e 2024-08-22T20:40:46.5660330Z ++ /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda package -p /Users/ec2-user/runner/_work/_temp/conda_environment_10515112133 -u 2024-08-22T20:40:46.5662190Z ++ grep -v '^#' 2024-08-22T20:40:46.5662890Z ++ wc -l 2024-08-22T20:40:46.5663100Z ++ xargs 2024-08-22T20:40:46.9745110Z + UNTRACKED_FILES_COUNT=0 2024-08-22T20:40:46.9745520Z + set -e 2024-08-22T20:40:46.9745760Z + [[ -z 0 ]] 2024-08-22T20:40:46.9745950Z + [[ 0 == \0 ]] 2024-08-22T20:40:46.9746180Z + [[ -f '' ]] 2024-08-22T20:40:46.9746380Z + [[ -n '' ]] 2024-08-22T20:40:46.9746780Z + echo CONDA_ENV=/Users/ec2-user/runner/_work/_temp/conda_environment_10515112133 2024-08-22T20:40:46.9747420Z + echo CONDA_PREFIX=/Users/ec2-user/runner/_work/_temp/conda_environment_10515112133 2024-08-22T20:40:46.9765110Z + echo 'CONDA_RUN=/Users/ec2-user/runner/_work/_temp/miniconda/bin/conda run -p /Users/ec2-user/runner/_work/_temp/conda_environment_10515112133 --no-capture-output' 2024-08-22T20:40:46.9770190Z + [[ 3.9 == \3\.\1\1 ]] 2024-08-22T20:40:46.9770970Z + echo 'CONDA_INSTALL=/Users/ec2-user/runner/_work/_temp/miniconda/bin/conda install --yes --quiet -p /Users/ec2-user/runner/_work/_temp/conda_environment_10515112133' 2024-08-22T20:40:46.9808430Z ##[group]Run CONDA_RUNTIME=$(which conda) 2024-08-22T20:40:46.9808720Z CONDA_RUNTIME=$(which conda) 2024-08-22T20:40:46.9808970Z  2024-08-22T20:40:46.9809140Z set -euxo pipefail 2024-08-22T20:40:46.9809440Z "${CONDA_RUNTIME}" config --set channel_priority false 2024-08-22T20:40:46.9827220Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2024-08-22T20:40:46.9827510Z env: 2024-08-22T20:40:46.9827670Z REPOSITORY: pytorch/torchchat 2024-08-22T20:40:46.9834300Z SCRIPT: set -x # NS/MC: Remove previous installation of torch and torchao first # as this script does not install anything into conda env but rather as system dep pip3 uninstall -y torch || true set -eou pipefail pip3 uninstall -y torchao || true set -eou pipefail echo "::group::Print machine info" uname -a sysctl machdep.cpu.brand_string sysctl machdep.cpu.core_count echo "::endgroup::" echo "::group::Install requirements" # Install requirements ./install_requirements.sh ls -la pwd 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 curl -fsSL -O https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.pt curl -fsSL -O 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 python3 torchchat.py generate --device mps --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** embedding" echo "************************************************************" python3 torchchat.py generate --device mps --quant '{"embedding" : {"bitwidth": 8, "groupsize": 0}}' --checkpoint-path ${MODEL_PATH} --temperature 0 python3 torchchat.py generate --device mps --quant '{"embedding" : {"bitwidth": 8, "groupsize": 8}}' --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** linear int8" echo "************************************************************" python3 torchchat.py generate --device mps --quant '{"linear:int8" : {"bitwidth": 8, "groupsize": 0}}' --checkpoint-path ${MODEL_PATH} --temperature 0 python3 torchchat.py generate --device mps --quant '{"linear:int8" : {"bitwidth": 8, "groupsize": 8}}' --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** linear int4" echo "************************************************************" PYTORCH_ENABLE_MPS_FALLBACK=1 python3 torchchat.py generate --device mps --quant '{"linear:int4" : {"groupsize": 32}}' --checkpoint-path ${MODEL_PATH} --temperature 0 2024-08-22T20:40:46.9841520Z PATH: /Users/ec2-user/runner/_work/_temp/miniconda/bin:/opt/homebrew/Caskroom/miniconda/base/bin:/opt/homebrew/Caskroom/miniconda/base/condabin:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/bin:/bin:/usr/sbin:/sbin 2024-08-22T20:40:46.9842470Z CONDA_EXE: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2024-08-22T20:40:46.9842920Z CONDA_ENV: /Users/ec2-user/runner/_work/_temp/conda_environment_10515112133 2024-08-22T20:40:46.9843410Z CONDA_PREFIX: /Users/ec2-user/runner/_work/_temp/conda_environment_10515112133 2024-08-22T20:40:46.9844180Z CONDA_RUN: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda run -p /Users/ec2-user/runner/_work/_temp/conda_environment_10515112133 --no-capture-output 2024-08-22T20:40:46.9845180Z CONDA_INSTALL: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda install --yes --quiet -p /Users/ec2-user/runner/_work/_temp/conda_environment_10515112133 2024-08-22T20:40:46.9845800Z ##[endgroup] 2024-08-22T20:40:47.0229070Z + /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda config --set channel_priority false 2024-08-22T20:40:47.2448990Z ##[group]Run actions/checkout@v3 2024-08-22T20:40:47.2449220Z with: 2024-08-22T20:40:47.2449380Z repository: pytorch/torchchat 2024-08-22T20:40:47.2449600Z ref: refs/pull/1044/merge 2024-08-22T20:40:47.2449810Z path: pytorch/torchchat 2024-08-22T20:40:47.2450000Z fetch-depth: 1 2024-08-22T20:40:47.2450240Z token: *** 2024-08-22T20:40:47.2450400Z ssh-strict: true 2024-08-22T20:40:47.2450590Z persist-credentials: true 2024-08-22T20:40:47.2450790Z clean: true 2024-08-22T20:40:47.2450960Z sparse-checkout-cone-mode: true 2024-08-22T20:40:47.2451190Z fetch-tags: false 2024-08-22T20:40:47.2451360Z lfs: false 2024-08-22T20:40:47.2451520Z set-safe-directory: true 2024-08-22T20:40:47.2451710Z env: 2024-08-22T20:40:47.2451860Z REPOSITORY: pytorch/torchchat 2024-08-22T20:40:47.2458310Z SCRIPT: set -x # NS/MC: Remove previous installation of torch and torchao first # as this script does not install anything into conda env but rather as system dep pip3 uninstall -y torch || true set -eou pipefail pip3 uninstall -y torchao || true set -eou pipefail echo "::group::Print machine info" uname -a sysctl machdep.cpu.brand_string sysctl machdep.cpu.core_count echo "::endgroup::" echo "::group::Install requirements" # Install requirements ./install_requirements.sh ls -la pwd 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 curl -fsSL -O https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.pt curl -fsSL -O 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 python3 torchchat.py generate --device mps --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** embedding" echo "************************************************************" python3 torchchat.py generate --device mps --quant '{"embedding" : {"bitwidth": 8, "groupsize": 0}}' --checkpoint-path ${MODEL_PATH} --temperature 0 python3 torchchat.py generate --device mps --quant '{"embedding" : {"bitwidth": 8, "groupsize": 8}}' --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** linear int8" echo "************************************************************" python3 torchchat.py generate --device mps --quant '{"linear:int8" : {"bitwidth": 8, "groupsize": 0}}' --checkpoint-path ${MODEL_PATH} --temperature 0 python3 torchchat.py generate --device mps --quant '{"linear:int8" : {"bitwidth": 8, "groupsize": 8}}' --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** linear int4" echo "************************************************************" PYTORCH_ENABLE_MPS_FALLBACK=1 python3 torchchat.py generate --device mps --quant '{"linear:int4" : {"groupsize": 32}}' --checkpoint-path ${MODEL_PATH} --temperature 0 2024-08-22T20:40:47.2465700Z PATH: /Users/ec2-user/runner/_work/_temp/miniconda/bin:/opt/homebrew/Caskroom/miniconda/base/bin:/opt/homebrew/Caskroom/miniconda/base/condabin:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/bin:/bin:/usr/sbin:/sbin 2024-08-22T20:40:47.2466640Z CONDA_EXE: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2024-08-22T20:40:47.2467090Z CONDA_ENV: /Users/ec2-user/runner/_work/_temp/conda_environment_10515112133 2024-08-22T20:40:47.2467570Z CONDA_PREFIX: /Users/ec2-user/runner/_work/_temp/conda_environment_10515112133 2024-08-22T20:40:47.2468330Z CONDA_RUN: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda run -p /Users/ec2-user/runner/_work/_temp/conda_environment_10515112133 --no-capture-output 2024-08-22T20:40:47.2469530Z CONDA_INSTALL: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda install --yes --quiet -p /Users/ec2-user/runner/_work/_temp/conda_environment_10515112133 2024-08-22T20:40:47.2470150Z ##[endgroup] 2024-08-22T20:40:47.3271860Z Syncing repository: pytorch/torchchat 2024-08-22T20:40:47.3274670Z ##[group]Getting Git version info 2024-08-22T20:40:47.3275230Z Working directory is '/Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat' 2024-08-22T20:40:47.3290650Z [command]/usr/bin/git version 2024-08-22T20:40:47.3353860Z git version 2.39.3 (Apple Git-146) 2024-08-22T20:40:47.3367450Z ##[endgroup] 2024-08-22T20:40:47.3374020Z Temporarily overriding HOME='/Users/ec2-user/runner/_work/_temp/dd99800e-c17a-4371-a001-0ded38cb3f37' before making global git config changes 2024-08-22T20:40:47.3374840Z Adding repository directory to the temporary git global config as a safe directory 2024-08-22T20:40:47.3376790Z [command]/usr/bin/git config --global --add safe.directory /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat 2024-08-22T20:40:47.3443370Z ##[group]Initializing the repository 2024-08-22T20:40:47.3445380Z [command]/usr/bin/git init /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat 2024-08-22T20:40:47.3577710Z Initialized empty Git repository in /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat/.git/ 2024-08-22T20:40:47.3583300Z [command]/usr/bin/git remote add origin https://github.com/pytorch/torchchat 2024-08-22T20:40:47.3649950Z ##[endgroup] 2024-08-22T20:40:47.3650350Z ##[group]Disabling automatic garbage collection 2024-08-22T20:40:47.3652180Z [command]/usr/bin/git config --local gc.auto 0 2024-08-22T20:40:47.3709100Z ##[endgroup] 2024-08-22T20:40:47.3709460Z ##[group]Setting up auth 2024-08-22T20:40:47.3712340Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2024-08-22T20:40:47.3766690Z [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:40:47.4248060Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2024-08-22T20:40:47.4305040Z [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:40:47.4776380Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** 2024-08-22T20:40:47.4839240Z ##[endgroup] 2024-08-22T20:40:47.4839660Z ##[group]Fetching the repository 2024-08-22T20:40:47.4843270Z [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:40:47.6957000Z remote: Enumerating objects: 237, done. 2024-08-22T20:40:47.6958460Z remote: Counting objects: 0% (1/237) 2024-08-22T20:40:47.6959400Z remote: Counting objects: 1% (3/237) 2024-08-22T20:40:47.6960280Z remote: Counting objects: 2% (5/237) 2024-08-22T20:40:47.6961140Z remote: Counting objects: 3% (8/237) 2024-08-22T20:40:47.6962010Z remote: Counting objects: 4% (10/237) 2024-08-22T20:40:47.6962890Z remote: Counting objects: 5% (12/237) 2024-08-22T20:40:47.6963760Z remote: Counting objects: 6% (15/237) 2024-08-22T20:40:47.6964650Z remote: Counting objects: 7% (17/237) 2024-08-22T20:40:47.6965530Z remote: Counting objects: 8% (19/237) 2024-08-22T20:40:47.6966400Z remote: Counting objects: 9% (22/237) 2024-08-22T20:40:47.6967290Z remote: Counting objects: 10% (24/237) 2024-08-22T20:40:47.6968170Z remote: Counting objects: 11% (27/237) 2024-08-22T20:40:47.6969080Z remote: Counting objects: 12% (29/237) 2024-08-22T20:40:47.6969960Z remote: Counting objects: 13% (31/237) 2024-08-22T20:40:47.6970820Z remote: Counting objects: 14% (34/237) 2024-08-22T20:40:47.6972130Z remote: Counting objects: 15% (36/237) 2024-08-22T20:40:47.6973010Z remote: Counting objects: 16% (38/237) 2024-08-22T20:40:47.6973890Z remote: Counting objects: 17% (41/237) 2024-08-22T20:40:47.6974750Z remote: Counting objects: 18% (43/237) 2024-08-22T20:40:47.6975620Z remote: Counting objects: 19% (46/237) 2024-08-22T20:40:47.6976560Z remote: Counting objects: 20% (48/237) 2024-08-22T20:40:47.6977420Z remote: Counting objects: 21% (50/237) 2024-08-22T20:40:47.6978310Z remote: Counting objects: 22% (53/237) 2024-08-22T20:40:47.6979170Z remote: Counting objects: 23% (55/237) 2024-08-22T20:40:47.6980040Z remote: Counting objects: 24% (57/237) 2024-08-22T20:40:47.6980910Z remote: Counting objects: 25% (60/237) 2024-08-22T20:40:47.6981790Z remote: Counting objects: 26% (62/237) 2024-08-22T20:40:47.6982680Z remote: Counting objects: 27% (64/237) 2024-08-22T20:40:47.6983570Z remote: Counting objects: 28% (67/237) 2024-08-22T20:40:47.6984440Z remote: Counting objects: 29% (69/237) 2024-08-22T20:40:47.6985360Z remote: Counting objects: 30% (72/237) 2024-08-22T20:40:47.6986230Z remote: Counting objects: 31% (74/237) 2024-08-22T20:40:47.6987090Z remote: Counting objects: 32% (76/237) 2024-08-22T20:40:47.6987940Z remote: Counting objects: 33% (79/237) 2024-08-22T20:40:47.6988800Z remote: Counting objects: 34% (81/237) 2024-08-22T20:40:47.6989660Z remote: Counting objects: 35% (83/237) 2024-08-22T20:40:47.6990510Z remote: Counting objects: 36% (86/237) 2024-08-22T20:40:47.6991370Z remote: Counting objects: 37% (88/237) 2024-08-22T20:40:47.6992230Z remote: Counting objects: 38% (91/237) 2024-08-22T20:40:47.6993070Z remote: Counting objects: 39% (93/237) 2024-08-22T20:40:47.6993930Z remote: Counting objects: 40% (95/237) 2024-08-22T20:40:47.6994770Z remote: Counting objects: 41% (98/237) 2024-08-22T20:40:47.6995720Z remote: Counting objects: 42% (100/237) 2024-08-22T20:40:47.6996640Z remote: Counting objects: 43% (102/237) 2024-08-22T20:40:47.6997530Z remote: Counting objects: 44% (105/237) 2024-08-22T20:40:47.6998460Z remote: Counting objects: 45% (107/237) 2024-08-22T20:40:47.6999350Z remote: Counting objects: 46% (110/237) 2024-08-22T20:40:47.7000230Z remote: Counting objects: 47% (112/237) 2024-08-22T20:40:47.7001110Z remote: Counting objects: 48% (114/237) 2024-08-22T20:40:47.7001980Z remote: Counting objects: 49% (117/237) 2024-08-22T20:40:47.7002740Z remote: Counting objects: 50% (119/237) 2024-08-22T20:40:47.7003470Z remote: Counting objects: 51% (121/237) 2024-08-22T20:40:47.7004180Z remote: Counting objects: 52% (124/237) 2024-08-22T20:40:47.7005110Z remote: Counting objects: 53% (126/237) 2024-08-22T20:40:47.7005830Z remote: Counting objects: 54% (128/237) 2024-08-22T20:40:47.7006550Z remote: Counting objects: 55% (131/237) 2024-08-22T20:40:47.7007270Z remote: Counting objects: 56% (133/237) 2024-08-22T20:40:47.7007980Z remote: Counting objects: 57% (136/237) 2024-08-22T20:40:47.7008690Z remote: Counting objects: 58% (138/237) 2024-08-22T20:40:47.7009400Z remote: Counting objects: 59% (140/237) 2024-08-22T20:40:47.7010120Z remote: Counting objects: 60% (143/237) 2024-08-22T20:40:47.7010830Z remote: Counting objects: 61% (145/237) 2024-08-22T20:40:47.7011530Z remote: Counting objects: 62% (147/237) 2024-08-22T20:40:47.7012240Z remote: Counting objects: 63% (150/237) 2024-08-22T20:40:47.7012950Z remote: Counting objects: 64% (152/237) 2024-08-22T20:40:47.7013660Z remote: Counting objects: 65% (155/237) 2024-08-22T20:40:47.7014350Z remote: Counting objects: 66% (157/237) 2024-08-22T20:40:47.7015060Z remote: Counting objects: 67% (159/237) 2024-08-22T20:40:47.7016030Z remote: Counting objects: 68% (162/237) 2024-08-22T20:40:47.7016770Z remote: Counting objects: 69% (164/237) 2024-08-22T20:40:47.7017480Z remote: Counting objects: 70% (166/237) 2024-08-22T20:40:47.7018230Z remote: Counting objects: 71% (169/237) 2024-08-22T20:40:47.7018940Z remote: Counting objects: 72% (171/237) 2024-08-22T20:40:47.7019640Z remote: Counting objects: 73% (174/237) 2024-08-22T20:40:47.7020380Z remote: Counting objects: 74% (176/237) 2024-08-22T20:40:47.7021170Z remote: Counting objects: 75% (178/237) 2024-08-22T20:40:47.7021910Z remote: Counting objects: 76% (181/237) 2024-08-22T20:40:47.7022660Z remote: Counting objects: 77% (183/237) 2024-08-22T20:40:47.7023420Z remote: Counting objects: 78% (185/237) 2024-08-22T20:40:47.7024160Z remote: Counting objects: 79% (188/237) 2024-08-22T20:40:47.7024920Z remote: Counting objects: 80% (190/237) 2024-08-22T20:40:47.7025660Z remote: Counting objects: 81% (192/237) 2024-08-22T20:40:47.7026420Z remote: Counting objects: 82% (195/237) 2024-08-22T20:40:47.7027150Z remote: Counting objects: 83% (197/237) 2024-08-22T20:40:47.7027920Z remote: Counting objects: 84% (200/237) 2024-08-22T20:40:47.7028650Z remote: Counting objects: 85% (202/237) 2024-08-22T20:40:47.7029430Z remote: Counting objects: 86% (204/237) 2024-08-22T20:40:47.7030160Z remote: Counting objects: 87% (207/237) 2024-08-22T20:40:47.7030920Z remote: Counting objects: 88% (209/237) 2024-08-22T20:40:47.7031650Z remote: Counting objects: 89% (211/237) 2024-08-22T20:40:47.7032380Z remote: Counting objects: 90% (214/237) 2024-08-22T20:40:47.7033140Z remote: Counting objects: 91% (216/237) 2024-08-22T20:40:47.7033870Z remote: Counting objects: 92% (219/237) 2024-08-22T20:40:47.7034640Z remote: Counting objects: 93% (221/237) 2024-08-22T20:40:47.7035370Z remote: Counting objects: 94% (223/237) 2024-08-22T20:40:47.7036130Z remote: Counting objects: 95% (226/237) 2024-08-22T20:40:47.7036870Z remote: Counting objects: 96% (228/237) 2024-08-22T20:40:47.7037650Z remote: Counting objects: 97% (230/237) 2024-08-22T20:40:47.7038380Z remote: Counting objects: 98% (233/237) 2024-08-22T20:40:47.7039130Z remote: Counting objects: 99% (235/237) 2024-08-22T20:40:47.7039860Z remote: Counting objects: 100% (237/237) 2024-08-22T20:40:47.7040720Z remote: Counting objects: 100% (237/237), done. 2024-08-22T20:40:47.7041550Z remote: Compressing objects: 0% (1/193) 2024-08-22T20:40:47.7042370Z remote: Compressing objects: 1% (2/193) 2024-08-22T20:40:47.7043140Z remote: Compressing objects: 2% (4/193) 2024-08-22T20:40:47.7043900Z remote: Compressing objects: 3% (6/193) 2024-08-22T20:40:47.7044870Z remote: Compressing objects: 4% (8/193) 2024-08-22T20:40:47.7045680Z remote: Compressing objects: 5% (10/193) 2024-08-22T20:40:47.7046550Z remote: Compressing objects: 6% (12/193) 2024-08-22T20:40:47.7047370Z remote: Compressing objects: 7% (14/193) 2024-08-22T20:40:47.7048210Z remote: Compressing objects: 8% (16/193) 2024-08-22T20:40:47.7049010Z remote: Compressing objects: 9% (18/193) 2024-08-22T20:40:47.7049840Z remote: Compressing objects: 10% (20/193) 2024-08-22T20:40:47.7050620Z remote: Compressing objects: 11% (22/193) 2024-08-22T20:40:47.7051450Z remote: Compressing objects: 12% (24/193) 2024-08-22T20:40:47.7052240Z remote: Compressing objects: 13% (26/193) 2024-08-22T20:40:47.7053040Z remote: Compressing objects: 14% (28/193) 2024-08-22T20:40:47.7053830Z remote: Compressing objects: 15% (29/193) 2024-08-22T20:40:47.7054630Z remote: Compressing objects: 16% (31/193) 2024-08-22T20:40:47.7055450Z remote: Compressing objects: 17% (33/193) 2024-08-22T20:40:47.7066190Z remote: Compressing objects: 18% (35/193) 2024-08-22T20:40:47.7069280Z remote: Compressing objects: 19% (37/193) 2024-08-22T20:40:47.7070360Z remote: Compressing objects: 20% (39/193) 2024-08-22T20:40:47.7076620Z remote: Compressing objects: 21% (41/193) 2024-08-22T20:40:47.7079680Z remote: Compressing objects: 22% (43/193) 2024-08-22T20:40:47.7080560Z remote: Compressing objects: 23% (45/193) 2024-08-22T20:40:47.7081570Z remote: Compressing objects: 24% (47/193) 2024-08-22T20:40:47.7082390Z remote: Compressing objects: 25% (49/193) 2024-08-22T20:40:47.7083220Z remote: Compressing objects: 26% (51/193) 2024-08-22T20:40:47.7084390Z remote: Compressing objects: 27% (53/193) 2024-08-22T20:40:47.7085250Z remote: Compressing objects: 28% (55/193) 2024-08-22T20:40:47.7090170Z remote: Compressing objects: 29% (56/193) 2024-08-22T20:40:47.7091690Z remote: Compressing objects: 30% (58/193) 2024-08-22T20:40:47.7092540Z remote: Compressing objects: 31% (60/193) 2024-08-22T20:40:47.7093380Z remote: Compressing objects: 32% (62/193) 2024-08-22T20:40:47.7094220Z remote: Compressing objects: 33% (64/193) 2024-08-22T20:40:47.7095020Z remote: Compressing objects: 34% (66/193) 2024-08-22T20:40:47.7095880Z remote: Compressing objects: 35% (68/193) 2024-08-22T20:40:47.7096670Z remote: Compressing objects: 36% (70/193) 2024-08-22T20:40:47.7097490Z remote: Compressing objects: 37% (72/193) 2024-08-22T20:40:47.7098310Z remote: Compressing objects: 38% (74/193) 2024-08-22T20:40:47.7099120Z remote: Compressing objects: 39% (76/193) 2024-08-22T20:40:47.7099950Z remote: Compressing objects: 40% (78/193) 2024-08-22T20:40:47.7100740Z remote: Compressing objects: 41% (80/193) 2024-08-22T20:40:47.7101560Z remote: Compressing objects: 42% (82/193) 2024-08-22T20:40:47.7102370Z remote: Compressing objects: 43% (83/193) 2024-08-22T20:40:47.7103190Z remote: Compressing objects: 44% (85/193) 2024-08-22T20:40:47.7104120Z remote: Compressing objects: 45% (87/193) 2024-08-22T20:40:47.7106900Z remote: Compressing objects: 46% (89/193) 2024-08-22T20:40:47.7107830Z remote: Compressing objects: 47% (91/193) 2024-08-22T20:40:47.7108660Z remote: Compressing objects: 48% (93/193) 2024-08-22T20:40:47.7109500Z remote: Compressing objects: 49% (95/193) 2024-08-22T20:40:47.7110370Z remote: Compressing objects: 50% (97/193) 2024-08-22T20:40:47.7111160Z remote: Compressing objects: 51% (99/193) 2024-08-22T20:40:47.7112050Z remote: Compressing objects: 52% (101/193) 2024-08-22T20:40:47.7112900Z remote: Compressing objects: 53% (103/193) 2024-08-22T20:40:47.7113770Z remote: Compressing objects: 54% (105/193) 2024-08-22T20:40:47.7114950Z remote: Compressing objects: 55% (107/193) 2024-08-22T20:40:47.7115790Z remote: Compressing objects: 56% (109/193) 2024-08-22T20:40:47.7116630Z remote: Compressing objects: 57% (111/193) 2024-08-22T20:40:47.7117460Z remote: Compressing objects: 58% (112/193) 2024-08-22T20:40:47.7118300Z remote: Compressing objects: 59% (114/193) 2024-08-22T20:40:47.7119140Z remote: Compressing objects: 60% (116/193) 2024-08-22T20:40:47.7119980Z remote: Compressing objects: 61% (118/193) 2024-08-22T20:40:47.7120800Z remote: Compressing objects: 62% (120/193) 2024-08-22T20:40:47.7121640Z remote: Compressing objects: 63% (122/193) 2024-08-22T20:40:47.7123170Z remote: Compressing objects: 64% (124/193) 2024-08-22T20:40:47.7124260Z remote: Compressing objects: 65% (126/193) 2024-08-22T20:40:47.7126260Z remote: Compressing objects: 66% (128/193) 2024-08-22T20:40:47.7127210Z remote: Compressing objects: 67% (130/193) 2024-08-22T20:40:47.7128580Z remote: Compressing objects: 68% (132/193) 2024-08-22T20:40:47.7132190Z remote: Compressing objects: 69% (134/193) 2024-08-22T20:40:47.7135760Z remote: Compressing objects: 70% (136/193) 2024-08-22T20:40:47.7137040Z remote: Compressing objects: 71% (138/193) 2024-08-22T20:40:47.7137950Z remote: Compressing objects: 72% (139/193) 2024-08-22T20:40:47.7138780Z remote: Compressing objects: 73% (141/193) 2024-08-22T20:40:47.7143670Z remote: Compressing objects: 74% (143/193) 2024-08-22T20:40:47.7144570Z remote: Compressing objects: 75% (145/193) 2024-08-22T20:40:47.7145370Z remote: Compressing objects: 76% (147/193) 2024-08-22T20:40:47.7146240Z remote: Compressing objects: 77% (149/193) 2024-08-22T20:40:47.7152810Z remote: Compressing objects: 78% (151/193) 2024-08-22T20:40:47.7153790Z remote: Compressing objects: 79% (153/193) 2024-08-22T20:40:47.7154990Z remote: Compressing objects: 80% (155/193) 2024-08-22T20:40:47.7155830Z remote: Compressing objects: 81% (157/193) 2024-08-22T20:40:47.7156670Z remote: Compressing objects: 82% (159/193) 2024-08-22T20:40:47.7157480Z remote: Compressing objects: 83% (161/193) 2024-08-22T20:40:47.7158280Z remote: Compressing objects: 84% (163/193) 2024-08-22T20:40:47.7159080Z remote: Compressing objects: 85% (165/193) 2024-08-22T20:40:47.7159890Z remote: Compressing objects: 86% (166/193) 2024-08-22T20:40:47.7160670Z remote: Compressing objects: 87% (168/193) 2024-08-22T20:40:47.7161480Z remote: Compressing objects: 88% (170/193) 2024-08-22T20:40:47.7162280Z remote: Compressing objects: 89% (172/193) 2024-08-22T20:40:47.7163110Z remote: Compressing objects: 90% (174/193) 2024-08-22T20:40:47.7163910Z remote: Compressing objects: 91% (176/193) 2024-08-22T20:40:47.7164730Z remote: Compressing objects: 92% (178/193) 2024-08-22T20:40:47.7165550Z remote: Compressing objects: 93% (180/193) 2024-08-22T20:40:47.7166340Z remote: Compressing objects: 94% (182/193) 2024-08-22T20:40:47.7167160Z remote: Compressing objects: 95% (184/193) 2024-08-22T20:40:47.7167950Z remote: Compressing objects: 96% (186/193) 2024-08-22T20:40:47.7168760Z remote: Compressing objects: 97% (188/193) 2024-08-22T20:40:47.7169550Z remote: Compressing objects: 98% (190/193) 2024-08-22T20:40:47.7170360Z remote: Compressing objects: 99% (192/193) 2024-08-22T20:40:47.7185590Z remote: Compressing objects: 100% (193/193) 2024-08-22T20:40:47.7186510Z remote: Compressing objects: 100% (193/193), done. 2024-08-22T20:40:47.7248640Z Receiving objects: 0% (1/237) 2024-08-22T20:40:47.7249140Z Receiving objects: 1% (3/237) 2024-08-22T20:40:47.7249620Z Receiving objects: 2% (5/237) 2024-08-22T20:40:47.7250690Z Receiving objects: 3% (8/237) 2024-08-22T20:40:47.7251520Z Receiving objects: 4% (10/237) 2024-08-22T20:40:47.7252020Z Receiving objects: 5% (12/237) 2024-08-22T20:40:47.7252520Z Receiving objects: 6% (15/237) 2024-08-22T20:40:47.7253000Z Receiving objects: 7% (17/237) 2024-08-22T20:40:47.7253490Z Receiving objects: 8% (19/237) 2024-08-22T20:40:47.7254690Z Receiving objects: 9% (22/237) 2024-08-22T20:40:47.7255240Z Receiving objects: 10% (24/237) 2024-08-22T20:40:47.7255740Z Receiving objects: 11% (27/237) 2024-08-22T20:40:47.7256240Z Receiving objects: 12% (29/237) 2024-08-22T20:40:47.7256740Z Receiving objects: 13% (31/237) 2024-08-22T20:40:47.7257250Z Receiving objects: 14% (34/237) 2024-08-22T20:40:47.7257730Z Receiving objects: 15% (36/237) 2024-08-22T20:40:47.7259690Z Receiving objects: 16% (38/237) 2024-08-22T20:40:47.7260170Z Receiving objects: 17% (41/237) 2024-08-22T20:40:47.7260660Z Receiving objects: 18% (43/237) 2024-08-22T20:40:47.7261130Z Receiving objects: 19% (46/237) 2024-08-22T20:40:47.7261620Z Receiving objects: 20% (48/237) 2024-08-22T20:40:47.7262120Z Receiving objects: 21% (50/237) 2024-08-22T20:40:47.7262600Z Receiving objects: 22% (53/237) 2024-08-22T20:40:47.7263440Z Receiving objects: 23% (55/237) 2024-08-22T20:40:47.7263950Z Receiving objects: 24% (57/237) 2024-08-22T20:40:47.7264430Z Receiving objects: 25% (60/237) 2024-08-22T20:40:47.7264920Z Receiving objects: 26% (62/237) 2024-08-22T20:40:47.7265400Z Receiving objects: 27% (64/237) 2024-08-22T20:40:47.7265900Z Receiving objects: 28% (67/237) 2024-08-22T20:40:47.7266370Z Receiving objects: 29% (69/237) 2024-08-22T20:40:47.7266840Z Receiving objects: 30% (72/237) 2024-08-22T20:40:47.7267310Z Receiving objects: 31% (74/237) 2024-08-22T20:40:47.7267800Z Receiving objects: 32% (76/237) 2024-08-22T20:40:47.7268270Z Receiving objects: 33% (79/237) 2024-08-22T20:40:47.7268730Z Receiving objects: 34% (81/237) 2024-08-22T20:40:47.7269190Z Receiving objects: 35% (83/237) 2024-08-22T20:40:47.7269670Z Receiving objects: 36% (86/237) 2024-08-22T20:40:47.7270150Z Receiving objects: 37% (88/237) 2024-08-22T20:40:47.7270620Z Receiving objects: 38% (91/237) 2024-08-22T20:40:47.7271090Z Receiving objects: 39% (93/237) 2024-08-22T20:40:47.7271580Z Receiving objects: 40% (95/237) 2024-08-22T20:40:47.7272050Z Receiving objects: 41% (98/237) 2024-08-22T20:40:47.7272520Z Receiving objects: 42% (100/237) 2024-08-22T20:40:47.7273020Z Receiving objects: 43% (102/237) 2024-08-22T20:40:47.7273510Z Receiving objects: 44% (105/237) 2024-08-22T20:40:47.7274000Z Receiving objects: 45% (107/237) 2024-08-22T20:40:47.7274500Z Receiving objects: 46% (110/237) 2024-08-22T20:40:47.7274990Z Receiving objects: 47% (112/237) 2024-08-22T20:40:47.7275510Z Receiving objects: 48% (114/237) 2024-08-22T20:40:47.7276000Z Receiving objects: 49% (117/237) 2024-08-22T20:40:47.7276510Z Receiving objects: 50% (119/237) 2024-08-22T20:40:47.7292190Z Receiving objects: 51% (121/237) 2024-08-22T20:40:47.7292980Z Receiving objects: 52% (124/237) 2024-08-22T20:40:47.7387270Z Receiving objects: 53% (126/237) 2024-08-22T20:40:47.7387810Z Receiving objects: 54% (128/237) 2024-08-22T20:40:47.7388780Z Receiving objects: 55% (131/237) 2024-08-22T20:40:47.7390240Z Receiving objects: 56% (133/237) 2024-08-22T20:40:47.7390800Z Receiving objects: 57% (136/237) 2024-08-22T20:40:47.7391290Z Receiving objects: 58% (138/237) 2024-08-22T20:40:47.7391780Z Receiving objects: 59% (140/237) 2024-08-22T20:40:47.7392260Z Receiving objects: 60% (143/237) 2024-08-22T20:40:47.7392740Z Receiving objects: 61% (145/237) 2024-08-22T20:40:47.7393210Z Receiving objects: 62% (147/237) 2024-08-22T20:40:47.7407120Z Receiving objects: 63% (150/237) 2024-08-22T20:40:47.7408200Z Receiving objects: 64% (152/237) 2024-08-22T20:40:47.7409270Z Receiving objects: 65% (155/237) 2024-08-22T20:40:47.7409780Z Receiving objects: 66% (157/237) 2024-08-22T20:40:47.7410260Z Receiving objects: 67% (159/237) 2024-08-22T20:40:47.7410730Z Receiving objects: 68% (162/237) 2024-08-22T20:40:47.7411230Z Receiving objects: 69% (164/237) 2024-08-22T20:40:47.7411980Z Receiving objects: 70% (166/237) 2024-08-22T20:40:47.7412450Z Receiving objects: 71% (169/237) 2024-08-22T20:40:47.7412950Z Receiving objects: 72% (171/237) 2024-08-22T20:40:47.7413420Z Receiving objects: 73% (174/237) 2024-08-22T20:40:47.7413890Z Receiving objects: 74% (176/237) 2024-08-22T20:40:47.7415560Z Receiving objects: 75% (178/237) 2024-08-22T20:40:47.7416090Z Receiving objects: 76% (181/237) 2024-08-22T20:40:47.7416580Z Receiving objects: 77% (183/237) 2024-08-22T20:40:47.7431650Z Receiving objects: 78% (185/237) 2024-08-22T20:40:47.7432170Z Receiving objects: 79% (188/237) 2024-08-22T20:40:47.7432640Z Receiving objects: 80% (190/237) 2024-08-22T20:40:47.7433120Z Receiving objects: 81% (192/237) 2024-08-22T20:40:47.7433600Z Receiving objects: 82% (195/237) 2024-08-22T20:40:47.7434070Z Receiving objects: 83% (197/237) 2024-08-22T20:40:47.7434550Z Receiving objects: 84% (200/237) 2024-08-22T20:40:47.7435050Z Receiving objects: 85% (202/237) 2024-08-22T20:40:47.7436100Z remote: Total 237 (delta 16), reused 151 (delta 7), pack-reused 0 (from 0) 2024-08-22T20:40:47.7437240Z Receiving objects: 86% (204/237) 2024-08-22T20:40:47.7437760Z Receiving objects: 87% (207/237) 2024-08-22T20:40:47.7438250Z Receiving objects: 88% (209/237) 2024-08-22T20:40:47.7438720Z Receiving objects: 89% (211/237) 2024-08-22T20:40:47.7439190Z Receiving objects: 90% (214/237) 2024-08-22T20:40:47.7439650Z Receiving objects: 91% (216/237) 2024-08-22T20:40:47.7440120Z Receiving objects: 92% (219/237) 2024-08-22T20:40:47.7440620Z Receiving objects: 93% (221/237) 2024-08-22T20:40:47.7441120Z Receiving objects: 94% (223/237) 2024-08-22T20:40:47.7441610Z Receiving objects: 95% (226/237) 2024-08-22T20:40:47.7442080Z Receiving objects: 96% (228/237) 2024-08-22T20:40:47.7442560Z Receiving objects: 97% (230/237) 2024-08-22T20:40:47.7443030Z Receiving objects: 98% (233/237) 2024-08-22T20:40:47.7443510Z Receiving objects: 99% (235/237) 2024-08-22T20:40:47.7443970Z Receiving objects: 100% (237/237) 2024-08-22T20:40:47.7444660Z Receiving objects: 100% (237/237), 488.09 KiB | 24.40 MiB/s, done. 2024-08-22T20:40:47.7445390Z Resolving deltas: 0% (0/16) 2024-08-22T20:40:47.7445850Z Resolving deltas: 6% (1/16) 2024-08-22T20:40:47.7446310Z Resolving deltas: 18% (3/16) 2024-08-22T20:40:47.7446760Z Resolving deltas: 25% (4/16) 2024-08-22T20:40:47.7447210Z Resolving deltas: 31% (5/16) 2024-08-22T20:40:47.7447690Z Resolving deltas: 37% (6/16) 2024-08-22T20:40:47.7448160Z Resolving deltas: 43% (7/16) 2024-08-22T20:40:47.7448620Z Resolving deltas: 50% (8/16) 2024-08-22T20:40:47.7449080Z Resolving deltas: 56% (9/16) 2024-08-22T20:40:47.7449530Z Resolving deltas: 62% (10/16) 2024-08-22T20:40:47.7449990Z Resolving deltas: 68% (11/16) 2024-08-22T20:40:47.7450450Z Resolving deltas: 75% (12/16) 2024-08-22T20:40:47.7450900Z Resolving deltas: 81% (13/16) 2024-08-22T20:40:47.7451350Z Resolving deltas: 93% (15/16) 2024-08-22T20:40:47.7451810Z Resolving deltas: 100% (16/16) 2024-08-22T20:40:47.7452280Z Resolving deltas: 100% (16/16), done. 2024-08-22T20:40:47.7614470Z From https://github.com/pytorch/torchchat 2024-08-22T20:40:47.7615230Z * [new ref] refs/pull/1044/merge -> pull/1044/merge 2024-08-22T20:40:47.7669100Z ##[endgroup] 2024-08-22T20:40:47.7669560Z ##[group]Determining the checkout info 2024-08-22T20:40:47.7670370Z ##[endgroup] 2024-08-22T20:40:47.7670840Z ##[group]Checking out the ref 2024-08-22T20:40:47.7673480Z [command]/usr/bin/git checkout --progress --force refs/remotes/pull/1044/merge 2024-08-22T20:40:47.8626160Z Note: switching to 'refs/remotes/pull/1044/merge'. 2024-08-22T20:40:47.8626490Z 2024-08-22T20:40:47.8626990Z You are in 'detached HEAD' state. You can look around, make experimental 2024-08-22T20:40:47.8627640Z changes and commit them, and you can discard any commits you make in this 2024-08-22T20:40:47.8628270Z state without impacting any branches by switching back to a branch. 2024-08-22T20:40:47.8628640Z 2024-08-22T20:40:47.8628890Z If you want to create a new branch to retain commits you create, you may 2024-08-22T20:40:47.8629770Z do so (now or later) by using -c with the switch command. Example: 2024-08-22T20:40:47.8630140Z 2024-08-22T20:40:47.8630290Z git switch -c 2024-08-22T20:40:47.8630510Z 2024-08-22T20:40:47.8630620Z Or undo this operation with: 2024-08-22T20:40:47.8630810Z 2024-08-22T20:40:47.8630900Z git switch - 2024-08-22T20:40:47.8631040Z 2024-08-22T20:40:47.8631320Z Turn off this advice by setting config variable advice.detachedHead to false 2024-08-22T20:40:47.8631690Z 2024-08-22T20:40:47.8632100Z HEAD is now at 0e4d4b1 Merge c8dc18a48d66f51855d89294f3ca800692cd5dad into d5bb3c6659c8978a95c5141eb31e6e58f94af20a 2024-08-22T20:40:47.8633270Z ##[endgroup] 2024-08-22T20:40:47.8711270Z [command]/usr/bin/git log -1 --format='%H' 2024-08-22T20:40:47.8770280Z '0e4d4b184770ee5c0943c8ad43f2a1be7a2dd2c9' 2024-08-22T20:40:47.8827810Z ##[group]Run RUNNER_ARTIFACT_DIR="${RUNNER_TEMP}/artifacts" 2024-08-22T20:40:47.8828200Z RUNNER_ARTIFACT_DIR="${RUNNER_TEMP}/artifacts" 2024-08-22T20:40:47.8828530Z mkdir -p "${RUNNER_ARTIFACT_DIR}" 2024-08-22T20:40:47.8828910Z echo "RUNNER_ARTIFACT_DIR=${RUNNER_ARTIFACT_DIR}" >> "${GITHUB_ENV}" 2024-08-22T20:40:47.8829250Z  2024-08-22T20:40:47.8829480Z RUNNER_TEST_RESULTS_DIR="${RUNNER_TEMP}/test-results" 2024-08-22T20:40:47.8829820Z mkdir -p "${RUNNER_TEST_RESULTS_DIR}" 2024-08-22T20:40:47.8830220Z echo "RUNNER_TEST_RESULTS_DIR=${RUNNER_TEST_RESULTS_DIR}" >> "${GITHUB_ENV}" 2024-08-22T20:40:47.8847820Z shell: /bin/bash -e {0} 2024-08-22T20:40:47.8848020Z env: 2024-08-22T20:40:47.8848190Z REPOSITORY: pytorch/torchchat 2024-08-22T20:40:47.8854710Z SCRIPT: set -x # NS/MC: Remove previous installation of torch and torchao first # as this script does not install anything into conda env but rather as system dep pip3 uninstall -y torch || true set -eou pipefail pip3 uninstall -y torchao || true set -eou pipefail echo "::group::Print machine info" uname -a sysctl machdep.cpu.brand_string sysctl machdep.cpu.core_count echo "::endgroup::" echo "::group::Install requirements" # Install requirements ./install_requirements.sh ls -la pwd 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 curl -fsSL -O https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.pt curl -fsSL -O 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 python3 torchchat.py generate --device mps --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** embedding" echo "************************************************************" python3 torchchat.py generate --device mps --quant '{"embedding" : {"bitwidth": 8, "groupsize": 0}}' --checkpoint-path ${MODEL_PATH} --temperature 0 python3 torchchat.py generate --device mps --quant '{"embedding" : {"bitwidth": 8, "groupsize": 8}}' --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** linear int8" echo "************************************************************" python3 torchchat.py generate --device mps --quant '{"linear:int8" : {"bitwidth": 8, "groupsize": 0}}' --checkpoint-path ${MODEL_PATH} --temperature 0 python3 torchchat.py generate --device mps --quant '{"linear:int8" : {"bitwidth": 8, "groupsize": 8}}' --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** linear int4" echo "************************************************************" PYTORCH_ENABLE_MPS_FALLBACK=1 python3 torchchat.py generate --device mps --quant '{"linear:int4" : {"groupsize": 32}}' --checkpoint-path ${MODEL_PATH} --temperature 0 2024-08-22T20:40:47.8862120Z PATH: /Users/ec2-user/runner/_work/_temp/miniconda/bin:/opt/homebrew/Caskroom/miniconda/base/bin:/opt/homebrew/Caskroom/miniconda/base/condabin:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/bin:/bin:/usr/sbin:/sbin 2024-08-22T20:40:47.8863060Z CONDA_EXE: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2024-08-22T20:40:47.8863510Z CONDA_ENV: /Users/ec2-user/runner/_work/_temp/conda_environment_10515112133 2024-08-22T20:40:47.8864000Z CONDA_PREFIX: /Users/ec2-user/runner/_work/_temp/conda_environment_10515112133 2024-08-22T20:40:47.8864750Z CONDA_RUN: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda run -p /Users/ec2-user/runner/_work/_temp/conda_environment_10515112133 --no-capture-output 2024-08-22T20:40:47.8865980Z CONDA_INSTALL: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda install --yes --quiet -p /Users/ec2-user/runner/_work/_temp/conda_environment_10515112133 2024-08-22T20:40:47.8866610Z ##[endgroup] 2024-08-22T20:40:47.9331320Z ##[group]Run { 2024-08-22T20:40:47.9331550Z { 2024-08-22T20:40:47.9331740Z  echo "#!/usr/bin/env bash"; 2024-08-22T20:40:47.9332000Z  echo "set -eou pipefail"; 2024-08-22T20:40:47.9332350Z  # Source conda so it's available to the script environment 2024-08-22T20:40:47.9332760Z  echo 'eval "$(conda shell.bash hook)"'; 2024-08-22T20:40:47.9333050Z  echo "${SCRIPT}"; 2024-08-22T20:40:47.9333290Z } > "${RUNNER_TEMP}/exec_script" 2024-08-22T20:40:47.9333570Z while read line; do 2024-08-22T20:40:47.9333800Z  eval "export ${line}" 2024-08-22T20:40:47.9334090Z done < "${RUNNER_TEMP}/github_env_${GITHUB_RUN_ID}" 2024-08-22T20:40:47.9334690Z python3 "/Users/ec2-user/runner/_work/torchchat/torchchat/test-infra/.github/scripts/run_with_env_secrets.py" "" 2024-08-22T20:40:47.9351970Z shell: /bin/bash -l {0} 2024-08-22T20:40:47.9352160Z env: 2024-08-22T20:40:47.9352370Z REPOSITORY: pytorch/torchchat 2024-08-22T20:40:47.9358840Z SCRIPT: set -x # NS/MC: Remove previous installation of torch and torchao first # as this script does not install anything into conda env but rather as system dep pip3 uninstall -y torch || true set -eou pipefail pip3 uninstall -y torchao || true set -eou pipefail echo "::group::Print machine info" uname -a sysctl machdep.cpu.brand_string sysctl machdep.cpu.core_count echo "::endgroup::" echo "::group::Install requirements" # Install requirements ./install_requirements.sh ls -la pwd 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 curl -fsSL -O https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.pt curl -fsSL -O 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 python3 torchchat.py generate --device mps --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** embedding" echo "************************************************************" python3 torchchat.py generate --device mps --quant '{"embedding" : {"bitwidth": 8, "groupsize": 0}}' --checkpoint-path ${MODEL_PATH} --temperature 0 python3 torchchat.py generate --device mps --quant '{"embedding" : {"bitwidth": 8, "groupsize": 8}}' --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** linear int8" echo "************************************************************" python3 torchchat.py generate --device mps --quant '{"linear:int8" : {"bitwidth": 8, "groupsize": 0}}' --checkpoint-path ${MODEL_PATH} --temperature 0 python3 torchchat.py generate --device mps --quant '{"linear:int8" : {"bitwidth": 8, "groupsize": 8}}' --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** linear int4" echo "************************************************************" PYTORCH_ENABLE_MPS_FALLBACK=1 python3 torchchat.py generate --device mps --quant '{"linear:int4" : {"groupsize": 32}}' --checkpoint-path ${MODEL_PATH} --temperature 0 2024-08-22T20:40:47.9366100Z PATH: /Users/ec2-user/runner/_work/_temp/miniconda/bin:/opt/homebrew/Caskroom/miniconda/base/bin:/opt/homebrew/Caskroom/miniconda/base/condabin:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/bin:/bin:/usr/sbin:/sbin 2024-08-22T20:40:47.9367040Z CONDA_EXE: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2024-08-22T20:40:47.9367480Z CONDA_ENV: /Users/ec2-user/runner/_work/_temp/conda_environment_10515112133 2024-08-22T20:40:47.9367960Z CONDA_PREFIX: /Users/ec2-user/runner/_work/_temp/conda_environment_10515112133 2024-08-22T20:40:47.9368980Z CONDA_RUN: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda run -p /Users/ec2-user/runner/_work/_temp/conda_environment_10515112133 --no-capture-output 2024-08-22T20:40:47.9370030Z CONDA_INSTALL: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda install --yes --quiet -p /Users/ec2-user/runner/_work/_temp/conda_environment_10515112133 2024-08-22T20:40:47.9370730Z RUNNER_ARTIFACT_DIR: /Users/ec2-user/runner/_work/_temp/artifacts 2024-08-22T20:40:47.9371150Z RUNNER_TEST_RESULTS_DIR: /Users/ec2-user/runner/_work/_temp/test-results 2024-08-22T20:40:47.9371680Z ALL_SECRETS: { "github_token": "***" } 2024-08-22T20:40:47.9371920Z ##[endgroup] 2024-08-22T20:40:48.0932970Z /Users/ec2-user/runner/_work/_temp/30aad3cc-8dda-4d56-92cc-e4b772b0f5d0.sh: line 10: /Users/ec2-user/runner/_work/_temp/github_env_10515112133: No such file or directory 2024-08-22T20:41:09.1182420Z Running command: bash /Users/ec2-user/runner/_work/_temp/exec_script 2024-08-22T20:41:09.1182910Z + pip3 uninstall -y torch 2024-08-22T20:41:09.1183240Z Found existing installation: torch 2.5.0.dev20240814 2024-08-22T20:41:09.1183690Z Uninstalling torch-2.5.0.dev20240814: 2024-08-22T20:41:09.1184070Z Successfully uninstalled torch-2.5.0.dev20240814 2024-08-22T20:41:09.1184470Z + set -eou pipefail 2024-08-22T20:41:09.1184720Z + pip3 uninstall -y torchao 2024-08-22T20:41:09.1185040Z Found existing installation: torchao 0.4.0+gite11201a 2024-08-22T20:41:09.1185430Z Uninstalling torchao-0.4.0+gite11201a: 2024-08-22T20:41:09.1185820Z Successfully uninstalled torchao-0.4.0+gite11201a 2024-08-22T20:41:09.1186160Z + set -eou pipefail 2024-08-22T20:41:09.1194970Z + echo '::group::Print machine info' 2024-08-22T20:41:09.1195580Z ##[group]Print machine info 2024-08-22T20:41:09.1195820Z + uname -a 2024-08-22T20:41:09.1196530Z Darwin ip-10-0-0-196.ec2.internal 23.4.0 Darwin Kernel Version 23.4.0: Fri Mar 15 00:12:41 PDT 2024; root:xnu-10063.101.17~1/RELEASE_ARM64_T8103 arm64 2024-08-22T20:41:09.1197250Z + sysctl machdep.cpu.brand_string 2024-08-22T20:41:09.1197550Z machdep.cpu.brand_string: Apple M1 2024-08-22T20:41:09.1197840Z + sysctl machdep.cpu.core_count 2024-08-22T20:41:09.1198100Z machdep.cpu.core_count: 8 2024-08-22T20:41:09.1198320Z + echo ::endgroup:: 2024-08-22T20:41:09.1198680Z ##[endgroup] 2024-08-22T20:41:09.1198940Z + echo '::group::Install requirements' 2024-08-22T20:41:09.1199380Z ##[group]Install requirements 2024-08-22T20:41:09.1199630Z + ./install_requirements.sh 2024-08-22T20:41:09.1200200Z + pip3 install -r requirements.txt --extra-index-url https://download.pytorch.org/whl/nightly/cu121 2024-08-22T20:41:09.1200940Z Looking in indexes: https://pypi.org/simple, https://download.pytorch.org/whl/nightly/cu121 2024-08-22T20:41:09.1201620Z Ignoring tomli: markers 'python_version < "3.11"' don't match your environment 2024-08-22T20:41:09.1202650Z Requirement already satisfied: huggingface_hub in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from -r requirements.txt (line 4)) (0.24.6) 2024-08-22T20:41:09.1203970Z Requirement already satisfied: gguf in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from -r requirements.txt (line 7)) (0.9.1) 2024-08-22T20:41:09.1205560Z Requirement already satisfied: tiktoken in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from -r requirements.txt (line 10)) (0.7.0) 2024-08-22T20:41:09.1206890Z Requirement already satisfied: snakeviz in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from -r requirements.txt (line 13)) (2.2.0) 2024-08-22T20:41:09.1208240Z Requirement already satisfied: sentencepiece in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from -r requirements.txt (line 14)) (0.2.0) 2024-08-22T20:41:09.1209630Z Requirement already satisfied: numpy<2.0 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from -r requirements.txt (line 15)) (1.26.4) 2024-08-22T20:41:09.1211270Z Requirement already satisfied: lm-eval==0.4.2 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from -r requirements.txt (line 17)) (0.4.2) 2024-08-22T20:41:09.1212600Z Requirement already satisfied: blobfile in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from -r requirements.txt (line 18)) (2.1.1) 2024-08-22T20:41:09.1213880Z Requirement already satisfied: wheel in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from -r requirements.txt (line 22)) (0.43.0) 2024-08-22T20:41:09.1215160Z Requirement already satisfied: cmake>=3.24 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from -r requirements.txt (line 23)) (3.30.2) 2024-08-22T20:41:09.1216460Z Requirement already satisfied: ninja in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from -r requirements.txt (line 24)) (1.11.1.1) 2024-08-22T20:41:09.1217740Z Requirement already satisfied: zstd in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from -r requirements.txt (line 25)) (1.5.5.1) 2024-08-22T20:41:09.1219010Z Requirement already satisfied: streamlit in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from -r requirements.txt (line 28)) (1.37.1) 2024-08-22T20:41:09.1220190Z Requirement already satisfied: flask in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from -r requirements.txt (line 31)) (3.0.3) 2024-08-22T20:41:09.1221470Z Requirement already satisfied: accelerate>=0.21.0 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from lm-eval==0.4.2->-r requirements.txt (line 17)) (0.33.0) 2024-08-22T20:41:09.1222810Z Requirement already satisfied: evaluate in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from lm-eval==0.4.2->-r requirements.txt (line 17)) (0.4.2) 2024-08-22T20:41:09.1224150Z Requirement already satisfied: datasets>=2.16.0 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from lm-eval==0.4.2->-r requirements.txt (line 17)) (2.21.0) 2024-08-22T20:41:09.1225490Z Requirement already satisfied: jsonlines in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from lm-eval==0.4.2->-r requirements.txt (line 17)) (4.0.0) 2024-08-22T20:41:09.1226800Z Requirement already satisfied: numexpr in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from lm-eval==0.4.2->-r requirements.txt (line 17)) (2.10.1) 2024-08-22T20:41:09.1228120Z Requirement already satisfied: peft>=0.2.0 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from lm-eval==0.4.2->-r requirements.txt (line 17)) (0.12.0) 2024-08-22T20:41:09.1229490Z Requirement already satisfied: pybind11>=2.6.2 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from lm-eval==0.4.2->-r requirements.txt (line 17)) (2.13.5) 2024-08-22T20:41:09.1230840Z Requirement already satisfied: pytablewriter in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from lm-eval==0.4.2->-r requirements.txt (line 17)) (1.2.0) 2024-08-22T20:41:09.1232230Z Requirement already satisfied: rouge-score>=0.0.4 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from lm-eval==0.4.2->-r requirements.txt (line 17)) (0.1.2) 2024-08-22T20:41:09.1233700Z Requirement already satisfied: sacrebleu>=1.5.0 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from lm-eval==0.4.2->-r requirements.txt (line 17)) (2.4.3) 2024-08-22T20:41:09.1235070Z Requirement already satisfied: scikit-learn>=0.24.1 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from lm-eval==0.4.2->-r requirements.txt (line 17)) (1.5.1) 2024-08-22T20:41:09.1236420Z Requirement already satisfied: sqlitedict in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from lm-eval==0.4.2->-r requirements.txt (line 17)) (2.1.0) 2024-08-22T20:41:09.1237330Z Collecting torch>=1.8 (from lm-eval==0.4.2->-r requirements.txt (line 17)) 2024-08-22T20:41:09.1237890Z Using cached torch-2.4.0-cp312-none-macosx_11_0_arm64.whl.metadata (26 kB) 2024-08-22T20:41:09.1239030Z Requirement already satisfied: tqdm-multiprocess in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from lm-eval==0.4.2->-r requirements.txt (line 17)) (0.0.11) 2024-08-22T20:41:09.1240440Z Requirement already satisfied: transformers>=4.1 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from lm-eval==0.4.2->-r requirements.txt (line 17)) (4.44.2) 2024-08-22T20:41:09.1241780Z Requirement already satisfied: zstandard in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from lm-eval==0.4.2->-r requirements.txt (line 17)) (0.22.0) 2024-08-22T20:41:09.1243090Z Requirement already satisfied: dill in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from lm-eval==0.4.2->-r requirements.txt (line 17)) (0.3.8) 2024-08-22T20:41:09.1244390Z Requirement already satisfied: word2number in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from lm-eval==0.4.2->-r requirements.txt (line 17)) (1.1) 2024-08-22T20:41:09.1245740Z Requirement already satisfied: more-itertools in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from lm-eval==0.4.2->-r requirements.txt (line 17)) (10.4.0) 2024-08-22T20:41:09.1247120Z Requirement already satisfied: filelock in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from huggingface_hub->-r requirements.txt (line 4)) (3.15.4) 2024-08-22T20:41:09.1248480Z Requirement already satisfied: fsspec>=2023.5.0 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from huggingface_hub->-r requirements.txt (line 4)) (2024.6.1) 2024-08-22T20:41:09.1249860Z Requirement already satisfied: packaging>=20.9 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from huggingface_hub->-r requirements.txt (line 4)) (23.2) 2024-08-22T20:41:09.1251210Z Requirement already satisfied: pyyaml>=5.1 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from huggingface_hub->-r requirements.txt (line 4)) (6.0.2) 2024-08-22T20:41:09.1252580Z Requirement already satisfied: requests in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from huggingface_hub->-r requirements.txt (line 4)) (2.32.2) 2024-08-22T20:41:09.1253930Z Requirement already satisfied: tqdm>=4.42.1 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from huggingface_hub->-r requirements.txt (line 4)) (4.66.4) 2024-08-22T20:41:09.1255370Z Requirement already satisfied: typing-extensions>=3.7.4.3 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from huggingface_hub->-r requirements.txt (line 4)) (4.12.2) 2024-08-22T20:41:09.1256800Z Requirement already satisfied: regex>=2022.1.18 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from tiktoken->-r requirements.txt (line 10)) (2024.7.24) 2024-08-22T20:41:09.1258170Z Requirement already satisfied: tornado>=2.0 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from snakeviz->-r requirements.txt (line 13)) (6.4.1) 2024-08-22T20:41:09.1259510Z Requirement already satisfied: pycryptodomex~=3.8 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from blobfile->-r requirements.txt (line 18)) (3.20.0) 2024-08-22T20:41:09.1261000Z Requirement already satisfied: urllib3<3,>=1.25.3 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from blobfile->-r requirements.txt (line 18)) (2.2.2) 2024-08-22T20:41:09.1268100Z Requirement already satisfied: lxml~=4.9 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from blobfile->-r requirements.txt (line 18)) (4.9.4) 2024-08-22T20:41:09.1269320Z Requirement already satisfied: altair<6,>=4.0 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from streamlit->-r requirements.txt (line 28)) (5.4.0) 2024-08-22T20:41:09.1270560Z Requirement already satisfied: blinker<2,>=1.0.0 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from streamlit->-r requirements.txt (line 28)) (1.8.2) 2024-08-22T20:41:09.1271960Z Requirement already satisfied: cachetools<6,>=4.0 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from streamlit->-r requirements.txt (line 28)) (5.5.0) 2024-08-22T20:41:09.1273210Z Requirement already satisfied: click<9,>=7.0 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from streamlit->-r requirements.txt (line 28)) (8.1.7) 2024-08-22T20:41:09.1274440Z Requirement already satisfied: pandas<3,>=1.3.0 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from streamlit->-r requirements.txt (line 28)) (2.2.2) 2024-08-22T20:41:09.1275680Z Requirement already satisfied: pillow<11,>=7.1.0 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from streamlit->-r requirements.txt (line 28)) (10.4.0) 2024-08-22T20:41:09.1276930Z Requirement already satisfied: protobuf<6,>=3.20 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from streamlit->-r requirements.txt (line 28)) (5.27.3) 2024-08-22T20:41:09.1278190Z Requirement already satisfied: pyarrow>=7.0 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from streamlit->-r requirements.txt (line 28)) (17.0.0) 2024-08-22T20:41:09.1279460Z Requirement already satisfied: rich<14,>=10.14.0 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from streamlit->-r requirements.txt (line 28)) (13.7.1) 2024-08-22T20:41:09.1280710Z Requirement already satisfied: tenacity<9,>=8.1.0 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from streamlit->-r requirements.txt (line 28)) (8.5.0) 2024-08-22T20:41:09.1282210Z Requirement already satisfied: toml<2,>=0.10.1 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from streamlit->-r requirements.txt (line 28)) (0.10.2) 2024-08-22T20:41:09.1283500Z Requirement already satisfied: gitpython!=3.1.19,<4,>=3.0.7 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from streamlit->-r requirements.txt (line 28)) (3.1.43) 2024-08-22T20:41:09.1284790Z Requirement already satisfied: pydeck<1,>=0.8.0b4 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from streamlit->-r requirements.txt (line 28)) (0.9.1) 2024-08-22T20:41:09.1286060Z Requirement already satisfied: Werkzeug>=3.0.0 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from flask->-r requirements.txt (line 31)) (3.0.4) 2024-08-22T20:41:09.1287270Z Requirement already satisfied: Jinja2>=3.1.2 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from flask->-r requirements.txt (line 31)) (3.1.4) 2024-08-22T20:41:09.1288520Z Requirement already satisfied: itsdangerous>=2.1.2 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from flask->-r requirements.txt (line 31)) (2.2.0) 2024-08-22T20:41:09.1289840Z Requirement already satisfied: psutil in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from accelerate>=0.21.0->lm-eval==0.4.2->-r requirements.txt (line 17)) (6.0.0) 2024-08-22T20:41:09.1291230Z Requirement already satisfied: safetensors>=0.3.1 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from accelerate>=0.21.0->lm-eval==0.4.2->-r requirements.txt (line 17)) (0.4.4) 2024-08-22T20:41:09.1292760Z Requirement already satisfied: jsonschema>=3.0 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from altair<6,>=4.0->streamlit->-r requirements.txt (line 28)) (4.23.0) 2024-08-22T20:41:09.1294150Z Requirement already satisfied: narwhals>=1.1.0 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from altair<6,>=4.0->streamlit->-r requirements.txt (line 28)) (1.5.2) 2024-08-22T20:41:09.1295530Z Requirement already satisfied: xxhash in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from datasets>=2.16.0->lm-eval==0.4.2->-r requirements.txt (line 17)) (3.5.0) 2024-08-22T20:41:09.1296950Z Requirement already satisfied: multiprocess in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from datasets>=2.16.0->lm-eval==0.4.2->-r requirements.txt (line 17)) (0.70.16) 2024-08-22T20:41:09.1298530Z Requirement already satisfied: aiohttp in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from datasets>=2.16.0->lm-eval==0.4.2->-r requirements.txt (line 17)) (3.10.5) 2024-08-22T20:41:09.1299970Z Requirement already satisfied: gitdb<5,>=4.0.1 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from gitpython!=3.1.19,<4,>=3.0.7->streamlit->-r requirements.txt (line 28)) (4.0.11) 2024-08-22T20:41:09.1301400Z Requirement already satisfied: MarkupSafe>=2.0 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from Jinja2>=3.1.2->flask->-r requirements.txt (line 31)) (2.1.5) 2024-08-22T20:41:09.1302830Z Requirement already satisfied: python-dateutil>=2.8.2 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from pandas<3,>=1.3.0->streamlit->-r requirements.txt (line 28)) (2.9.0.post0) 2024-08-22T20:41:09.1304280Z Requirement already satisfied: pytz>=2020.1 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from pandas<3,>=1.3.0->streamlit->-r requirements.txt (line 28)) (2024.1) 2024-08-22T20:41:09.1305760Z Requirement already satisfied: tzdata>=2022.7 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from pandas<3,>=1.3.0->streamlit->-r requirements.txt (line 28)) (2024.1) 2024-08-22T20:41:09.1307210Z Requirement already satisfied: charset-normalizer<4,>=2 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from requests->huggingface_hub->-r requirements.txt (line 4)) (2.0.4) 2024-08-22T20:41:09.1308600Z Requirement already satisfied: idna<4,>=2.5 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from requests->huggingface_hub->-r requirements.txt (line 4)) (3.7) 2024-08-22T20:41:09.1309990Z Requirement already satisfied: certifi>=2017.4.17 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from requests->huggingface_hub->-r requirements.txt (line 4)) (2024.7.4) 2024-08-22T20:41:09.1311490Z Requirement already satisfied: markdown-it-py>=2.2.0 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from rich<14,>=10.14.0->streamlit->-r requirements.txt (line 28)) (3.0.0) 2024-08-22T20:41:09.1312930Z Requirement already satisfied: pygments<3.0.0,>=2.13.0 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from rich<14,>=10.14.0->streamlit->-r requirements.txt (line 28)) (2.18.0) 2024-08-22T20:41:09.1314340Z Requirement already satisfied: absl-py in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from rouge-score>=0.0.4->lm-eval==0.4.2->-r requirements.txt (line 17)) (2.1.0) 2024-08-22T20:41:09.1315710Z Requirement already satisfied: nltk in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from rouge-score>=0.0.4->lm-eval==0.4.2->-r requirements.txt (line 17)) (3.9.1) 2024-08-22T20:41:09.1317110Z Requirement already satisfied: six>=1.14.0 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from rouge-score>=0.0.4->lm-eval==0.4.2->-r requirements.txt (line 17)) (1.16.0) 2024-08-22T20:41:09.1318600Z Requirement already satisfied: portalocker in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from sacrebleu>=1.5.0->lm-eval==0.4.2->-r requirements.txt (line 17)) (2.10.1) 2024-08-22T20:41:09.1320020Z Requirement already satisfied: tabulate>=0.8.9 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from sacrebleu>=1.5.0->lm-eval==0.4.2->-r requirements.txt (line 17)) (0.9.0) 2024-08-22T20:41:09.1321410Z Requirement already satisfied: colorama in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from sacrebleu>=1.5.0->lm-eval==0.4.2->-r requirements.txt (line 17)) (0.4.6) 2024-08-22T20:41:09.1322810Z Requirement already satisfied: scipy>=1.6.0 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from scikit-learn>=0.24.1->lm-eval==0.4.2->-r requirements.txt (line 17)) (1.14.1) 2024-08-22T20:41:52.3628200Z Requirement already satisfied: joblib>=1.2.0 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from scikit-learn>=0.24.1->lm-eval==0.4.2->-r requirements.txt (line 17)) (1.4.2) 2024-08-22T20:41:52.3629860Z Requirement already satisfied: threadpoolctl>=3.1.0 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from scikit-learn>=0.24.1->lm-eval==0.4.2->-r requirements.txt (line 17)) (3.5.0) 2024-08-22T20:41:52.3631340Z Requirement already satisfied: sympy in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from torch>=1.8->lm-eval==0.4.2->-r requirements.txt (line 17)) (1.13.1) 2024-08-22T20:41:52.3632730Z Requirement already satisfied: networkx in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from torch>=1.8->lm-eval==0.4.2->-r requirements.txt (line 17)) (3.3) 2024-08-22T20:41:52.3634140Z Requirement already satisfied: setuptools in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from torch>=1.8->lm-eval==0.4.2->-r requirements.txt (line 17)) (69.5.1) 2024-08-22T20:41:52.3635630Z Requirement already satisfied: tokenizers<0.20,>=0.19 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from transformers>=4.1->lm-eval==0.4.2->-r requirements.txt (line 17)) (0.19.1) 2024-08-22T20:41:52.3637110Z Requirement already satisfied: attrs>=19.2.0 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from jsonlines->lm-eval==0.4.2->-r requirements.txt (line 17)) (24.2.0) 2024-08-22T20:41:52.3638580Z Requirement already satisfied: DataProperty<2,>=1.0.1 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from pytablewriter->lm-eval==0.4.2->-r requirements.txt (line 17)) (1.0.1) 2024-08-22T20:41:52.3640070Z Requirement already satisfied: mbstrdecoder<2,>=1.0.0 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from pytablewriter->lm-eval==0.4.2->-r requirements.txt (line 17)) (1.1.3) 2024-08-22T20:41:52.3641560Z Requirement already satisfied: pathvalidate<4,>=2.3.0 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from pytablewriter->lm-eval==0.4.2->-r requirements.txt (line 17)) (3.2.0) 2024-08-22T20:41:52.3643040Z Requirement already satisfied: tabledata<2,>=1.3.1 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from pytablewriter->lm-eval==0.4.2->-r requirements.txt (line 17)) (1.3.3) 2024-08-22T20:41:52.3644510Z Requirement already satisfied: tcolorpy<1,>=0.0.5 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from pytablewriter->lm-eval==0.4.2->-r requirements.txt (line 17)) (0.1.6) 2024-08-22T20:41:52.3646090Z Requirement already satisfied: typepy<2,>=1.3.2 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from typepy[datetime]<2,>=1.3.2->pytablewriter->lm-eval==0.4.2->-r requirements.txt (line 17)) (1.3.2) 2024-08-22T20:41:52.3647650Z Requirement already satisfied: aiohappyeyeballs>=2.3.0 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from aiohttp->datasets>=2.16.0->lm-eval==0.4.2->-r requirements.txt (line 17)) (2.4.0) 2024-08-22T20:41:52.3649350Z Requirement already satisfied: aiosignal>=1.1.2 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from aiohttp->datasets>=2.16.0->lm-eval==0.4.2->-r requirements.txt (line 17)) (1.3.1) 2024-08-22T20:41:52.3650840Z Requirement already satisfied: frozenlist>=1.1.1 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from aiohttp->datasets>=2.16.0->lm-eval==0.4.2->-r requirements.txt (line 17)) (1.4.1) 2024-08-22T20:41:52.3652370Z Requirement already satisfied: multidict<7.0,>=4.5 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from aiohttp->datasets>=2.16.0->lm-eval==0.4.2->-r requirements.txt (line 17)) (6.0.5) 2024-08-22T20:41:52.3653850Z Requirement already satisfied: yarl<2.0,>=1.0 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from aiohttp->datasets>=2.16.0->lm-eval==0.4.2->-r requirements.txt (line 17)) (1.9.4) 2024-08-22T20:41:52.3663710Z Requirement already satisfied: smmap<6,>=3.0.1 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from gitdb<5,>=4.0.1->gitpython!=3.1.19,<4,>=3.0.7->streamlit->-r requirements.txt (line 28)) (5.0.1) 2024-08-22T20:41:52.3665360Z Requirement already satisfied: jsonschema-specifications>=2023.03.6 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from jsonschema>=3.0->altair<6,>=4.0->streamlit->-r requirements.txt (line 28)) (2023.12.1) 2024-08-22T20:41:52.3667010Z Requirement already satisfied: referencing>=0.28.4 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from jsonschema>=3.0->altair<6,>=4.0->streamlit->-r requirements.txt (line 28)) (0.35.1) 2024-08-22T20:41:52.3668510Z Requirement already satisfied: rpds-py>=0.7.1 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from jsonschema>=3.0->altair<6,>=4.0->streamlit->-r requirements.txt (line 28)) (0.20.0) 2024-08-22T20:41:52.3670000Z Requirement already satisfied: mdurl~=0.1 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from markdown-it-py>=2.2.0->rich<14,>=10.14.0->streamlit->-r requirements.txt (line 28)) (0.1.2) 2024-08-22T20:41:52.3671540Z Requirement already satisfied: chardet<6,>=3.0.4 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from mbstrdecoder<2,>=1.0.0->pytablewriter->lm-eval==0.4.2->-r requirements.txt (line 17)) (5.2.0) 2024-08-22T20:41:52.3673030Z Requirement already satisfied: mpmath<1.4,>=1.1.0 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from sympy->torch>=1.8->lm-eval==0.4.2->-r requirements.txt (line 17)) (1.3.0) 2024-08-22T20:41:52.3673970Z Using cached torch-2.4.0-cp312-none-macosx_11_0_arm64.whl (62.1 MB) 2024-08-22T20:41:52.3674340Z Installing collected packages: torch 2024-08-22T20:41:52.3674640Z Successfully installed torch-2.4.0 2024-08-22T20:41:52.3674920Z + pip3 uninstall -y triton 2024-08-22T20:41:52.3675180Z WARNING: Skipping triton as it is not installed. 2024-08-22T20:41:52.3675750Z + pip3 install --extra-index-url https://download.pytorch.org/whl/nightly/cpu torch==2.5.0.dev20240814 2024-08-22T20:41:52.3676410Z Looking in indexes: https://pypi.org/simple, https://download.pytorch.org/whl/nightly/cpu 2024-08-22T20:41:52.3676840Z Collecting torch==2.5.0.dev20240814 2024-08-22T20:41:52.3677480Z Using cached https://download.pytorch.org/whl/nightly/cpu/torch-2.5.0.dev20240814-cp312-none-macosx_11_0_arm64.whl (63.4 MB) 2024-08-22T20:41:52.3678540Z Requirement already satisfied: filelock in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from torch==2.5.0.dev20240814) (3.15.4) 2024-08-22T20:41:52.3679730Z Requirement already satisfied: typing-extensions>=4.8.0 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from torch==2.5.0.dev20240814) (4.12.2) 2024-08-22T20:41:52.3680890Z Requirement already satisfied: networkx in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from torch==2.5.0.dev20240814) (3.3) 2024-08-22T20:41:52.3682000Z Requirement already satisfied: jinja2 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from torch==2.5.0.dev20240814) (3.1.4) 2024-08-22T20:41:52.3683260Z Requirement already satisfied: fsspec in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from torch==2.5.0.dev20240814) (2024.6.1) 2024-08-22T20:41:52.3684380Z Requirement already satisfied: setuptools in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from torch==2.5.0.dev20240814) (69.5.1) 2024-08-22T20:41:52.3685530Z Requirement already satisfied: sympy==1.13.1 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from torch==2.5.0.dev20240814) (1.13.1) 2024-08-22T20:41:52.3686740Z Requirement already satisfied: mpmath<1.4,>=1.1.0 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from sympy==1.13.1->torch==2.5.0.dev20240814) (1.3.0) 2024-08-22T20:41:52.3688080Z Requirement already satisfied: MarkupSafe>=2.0 in /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages (from jinja2->torch==2.5.0.dev20240814) (2.1.5) 2024-08-22T20:41:52.3688790Z Installing collected packages: torch 2024-08-22T20:41:52.3689050Z Attempting uninstall: torch 2024-08-22T20:41:52.3689300Z Found existing installation: torch 2.4.0 2024-08-22T20:41:52.3689600Z Uninstalling torch-2.4.0: 2024-08-22T20:41:52.3689870Z Successfully uninstalled torch-2.4.0 2024-08-22T20:41:52.3690200Z Successfully installed torch-2.5.0.dev20240814 2024-08-22T20:41:52.3690680Z + pip3 install git+https://github.com/pytorch/ao.git@e11201a62669f582d81cdb33e031a07fb8dfc4f3 2024-08-22T20:41:52.3691280Z Collecting git+https://github.com/pytorch/ao.git@e11201a62669f582d81cdb33e031a07fb8dfc4f3 2024-08-22T20:41:52.3692300Z Cloning https://github.com/pytorch/ao.git (to revision e11201a62669f582d81cdb33e031a07fb8dfc4f3) to /private/var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/pip-req-build-jumt57ta 2024-08-22T20:41:52.3693620Z Running command git clone --filter=blob:none --quiet https://github.com/pytorch/ao.git /private/var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/pip-req-build-jumt57ta 2024-08-22T20:41:52.3694550Z Running command git rev-parse -q --verify 'sha^e11201a62669f582d81cdb33e031a07fb8dfc4f3' 2024-08-22T20:41:52.3695230Z Running command git fetch -q https://github.com/pytorch/ao.git e11201a62669f582d81cdb33e031a07fb8dfc4f3 2024-08-22T20:41:52.3695860Z Running command git checkout -q e11201a62669f582d81cdb33e031a07fb8dfc4f3 2024-08-22T20:41:52.3696430Z Resolved https://github.com/pytorch/ao.git to commit e11201a62669f582d81cdb33e031a07fb8dfc4f3 2024-08-22T20:41:52.3696890Z Preparing metadata (setup.py): started 2024-08-22T20:41:52.3697270Z Preparing metadata (setup.py): finished with status 'done' 2024-08-22T20:41:52.3697640Z Building wheels for collected packages: torchao 2024-08-22T20:41:52.3697970Z Building wheel for torchao (setup.py): started 2024-08-22T20:41:52.3698390Z Building wheel for torchao (setup.py): finished with status 'done' 2024-08-22T20:41:52.3699310Z Created wheel for torchao: filename=torchao-0.4.0+gite11201a-cp312-cp312-macosx_11_0_arm64.whl size=340096 sha256=1418643b1a1e79f66bc480e1addf33efbd19927ab0e1295fb469e38ab8dc4e52 2024-08-22T20:41:52.3700490Z Stored in directory: /Users/ec2-user/Library/Caches/pip/wheels/8b/e8/3a/0a476b3ca77bd7e9d88e8ee96793fc8b83849d3ed8aabbd4ab 2024-08-22T20:41:52.3701080Z Successfully built torchao 2024-08-22T20:41:52.3701320Z Installing collected packages: torchao 2024-08-22T20:41:52.3701650Z Successfully installed torchao-0.4.0+gite11201a 2024-08-22T20:41:52.3701940Z + ls -la 2024-08-22T20:41:52.3702080Z total 352 2024-08-22T20:41:52.3702330Z drwxr-xr-x 42 ec2-user staff 1344 Aug 22 20:40 . 2024-08-22T20:41:52.3702700Z drwxr-xr-x 3 ec2-user staff 96 Aug 22 20:40 .. 2024-08-22T20:41:52.3703070Z drwxr-xr-x 3 ec2-user staff 96 Aug 22 20:40 .ci 2024-08-22T20:41:52.3703500Z -rw-r--r-- 1 ec2-user staff 6768 Aug 22 20:40 .clang-format 2024-08-22T20:41:52.3703930Z -rw-r--r-- 1 ec2-user staff 893 Aug 22 20:40 .flake8 2024-08-22T20:41:52.3704410Z drwxr-xr-x 13 ec2-user staff 416 Aug 22 20:40 .git 2024-08-22T20:41:52.3704800Z drwxr-xr-x 5 ec2-user staff 160 Aug 22 20:40 .github 2024-08-22T20:41:52.3705210Z -rw-r--r-- 1 ec2-user staff 285 Aug 22 20:40 .gitignore 2024-08-22T20:41:52.3705640Z -rw-r--r-- 1 ec2-user staff 396 Aug 22 20:40 .gitmodules 2024-08-22T20:41:52.3706080Z -rw-r--r-- 1 ec2-user staff 1313 Aug 22 20:40 .lintrunner.toml 2024-08-22T20:41:52.3706510Z drwxr-xr-x 3 ec2-user staff 96 Aug 22 20:40 .pins 2024-08-22T20:41:52.3706920Z -rw-r--r-- 1 ec2-user staff 543 Aug 22 20:40 CMakeLists.txt 2024-08-22T20:41:52.3707370Z -rw-r--r-- 1 ec2-user staff 3343 Aug 22 20:40 CODE_OF_CONDUCT.md 2024-08-22T20:41:52.3707820Z -rw-r--r-- 1 ec2-user staff 1248 Aug 22 20:40 CONTRIBUTING.md 2024-08-22T20:41:52.3708230Z -rw-r--r-- 1 ec2-user staff 1490 Aug 22 20:40 LICENSE 2024-08-22T20:41:52.3708630Z -rw-r--r-- 1 ec2-user staff 28025 Aug 22 20:40 README.md 2024-08-22T20:41:52.3709160Z drwxr-xr-x 4 ec2-user staff 128 Aug 22 20:40 android 2024-08-22T20:41:52.3709560Z drwxr-xr-x 3 ec2-user staff 96 Aug 22 20:40 api 2024-08-22T20:41:52.3709950Z drwxr-xr-x 3 ec2-user staff 96 Aug 22 20:40 assets 2024-08-22T20:41:52.3710340Z drwxr-xr-x 3 ec2-user staff 96 Aug 22 20:40 browser 2024-08-22T20:41:52.3710730Z drwxr-xr-x 12 ec2-user staff 384 Aug 22 20:40 build 2024-08-22T20:41:52.3711120Z -rw-r--r-- 1 ec2-user staff 15605 Aug 22 20:40 cli.py 2024-08-22T20:41:52.3711510Z drwxr-xr-x 5 ec2-user staff 160 Aug 22 20:40 config 2024-08-22T20:41:52.3711920Z -rw-r--r-- 1 ec2-user staff 1044 Aug 22 20:40 dist_run.py 2024-08-22T20:41:52.3712350Z drwxr-xr-x 14 ec2-user staff 448 Aug 22 20:40 distributed 2024-08-22T20:41:52.3712760Z drwxr-xr-x 14 ec2-user staff 448 Aug 22 20:40 docs 2024-08-22T20:41:52.3713150Z -rw-r--r-- 1 ec2-user staff 6848 Aug 22 20:40 download.py 2024-08-22T20:41:52.3713550Z -rw-r--r-- 1 ec2-user staff 9221 Aug 22 20:40 eval.py 2024-08-22T20:41:52.3713950Z -rw-r--r-- 1 ec2-user staff 5882 Aug 22 20:40 export.py 2024-08-22T20:41:52.3714380Z drwxr-xr-x 5 ec2-user staff 160 Aug 22 20:40 export_util 2024-08-22T20:41:52.3714800Z -rw-r--r-- 1 ec2-user staff 35149 Aug 22 20:40 generate.py 2024-08-22T20:41:52.3715260Z -rwxr-xr-x 1 ec2-user staff 2937 Aug 22 20:40 install_requirements.sh 2024-08-22T20:41:52.3715750Z drwxr-xr-x 4 ec2-user staff 128 Aug 22 20:40 quantization 2024-08-22T20:41:52.3716250Z -rw-r--r-- 1 ec2-user staff 337 Aug 22 20:40 requirements-lintrunner.txt 2024-08-22T20:41:52.3716760Z -rw-r--r-- 1 ec2-user staff 368 Aug 22 20:40 requirements.txt 2024-08-22T20:41:52.3721270Z drwxr-xr-x 8 ec2-user staff 256 Aug 22 20:40 runner 2024-08-22T20:41:52.3721720Z drwxr-xr-x 11 ec2-user staff 352 Aug 22 20:40 scripts 2024-08-22T20:41:52.3722140Z -rw-r--r-- 1 ec2-user staff 4235 Aug 22 20:40 server.py 2024-08-22T20:41:52.3722550Z drwxr-xr-x 10 ec2-user staff 320 Aug 22 20:40 tokenizer 2024-08-22T20:41:52.3722970Z drwxr-xr-x 3 ec2-user staff 96 Aug 22 20:40 torchchat 2024-08-22T20:41:52.3723380Z -rw-r--r-- 1 ec2-user staff 3485 Aug 22 20:40 torchchat.py 2024-08-22T20:41:52.3723790Z drwxr-xr-x 5 ec2-user staff 160 Aug 22 20:40 utils 2024-08-22T20:41:52.3724090Z + pwd 2024-08-22T20:41:52.3724380Z /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat 2024-08-22T20:41:52.3724720Z + pip3 list 2024-08-22T20:41:52.3724890Z Package Version 2024-08-22T20:41:52.3725150Z ------------------------- ----------------- 2024-08-22T20:41:52.3725420Z absl-py 2.1.0 2024-08-22T20:41:52.3725640Z accelerate 0.33.0 2024-08-22T20:41:52.3725870Z aiohappyeyeballs 2.4.0 2024-08-22T20:41:52.3726090Z aiohttp 3.10.5 2024-08-22T20:41:52.3726310Z aiosignal 1.3.1 2024-08-22T20:41:52.3726550Z altair 5.4.0 2024-08-22T20:41:52.3726790Z anaconda-anon-usage 0.4.4 2024-08-22T20:41:52.3727120Z archspec 0.2.3 2024-08-22T20:41:52.3727330Z attrs 24.2.0 2024-08-22T20:41:52.3727550Z blinker 1.8.2 2024-08-22T20:41:52.3727760Z blobfile 2.1.1 2024-08-22T20:41:52.3727970Z boltons 23.0.0 2024-08-22T20:41:52.3728190Z Brotli 1.0.9 2024-08-22T20:41:52.3728400Z cachetools 5.5.0 2024-08-22T20:41:52.3728610Z certifi 2024.7.4 2024-08-22T20:41:52.3728830Z cffi 1.16.0 2024-08-22T20:41:52.3729050Z chardet 5.2.0 2024-08-22T20:41:52.3729290Z charset-normalizer 2.0.4 2024-08-22T20:41:52.3729500Z click 8.1.7 2024-08-22T20:41:52.3729710Z cmake 3.30.2 2024-08-22T20:41:52.3729930Z colorama 0.4.6 2024-08-22T20:41:52.3730150Z conda 24.7.1 2024-08-22T20:41:52.3730400Z conda-content-trust 0.2.0 2024-08-22T20:41:52.3730650Z conda-libmamba-solver 24.1.0 2024-08-22T20:41:52.3731030Z conda-package-handling 2.3.0 2024-08-22T20:41:52.3731260Z conda_package_streaming 0.10.0 2024-08-22T20:41:52.3731490Z cryptography 42.0.5 2024-08-22T20:41:52.3731710Z DataProperty 1.0.1 2024-08-22T20:41:52.3731920Z datasets 2.21.0 2024-08-22T20:41:52.3732140Z dill 0.3.8 2024-08-22T20:41:52.3732340Z distro 1.9.0 2024-08-22T20:41:52.3732560Z evaluate 0.4.2 2024-08-22T20:41:52.3732770Z filelock 3.15.4 2024-08-22T20:41:52.3732990Z Flask 3.0.3 2024-08-22T20:41:52.3733210Z frozendict 2.4.2 2024-08-22T20:41:52.3733420Z frozenlist 1.4.1 2024-08-22T20:41:52.3733640Z fsspec 2024.6.1 2024-08-22T20:41:52.3733870Z gguf 0.9.1 2024-08-22T20:41:52.3734080Z gitdb 4.0.11 2024-08-22T20:41:52.3734310Z GitPython 3.1.43 2024-08-22T20:41:52.3734560Z huggingface-hub 0.24.6 2024-08-22T20:41:52.3734790Z idna 3.7 2024-08-22T20:41:52.3735010Z itsdangerous 2.2.0 2024-08-22T20:41:52.3735230Z Jinja2 3.1.4 2024-08-22T20:41:52.3735430Z joblib 1.4.2 2024-08-22T20:41:52.3735640Z jsonlines 4.0.0 2024-08-22T20:41:52.3735860Z jsonpatch 1.33 2024-08-22T20:41:52.3736070Z jsonpointer 2.1 2024-08-22T20:41:52.3736290Z jsonschema 4.23.0 2024-08-22T20:41:52.3736560Z jsonschema-specifications 2023.12.1 2024-08-22T20:41:52.3736810Z libmambapy 1.5.8 2024-08-22T20:41:52.3737030Z lm_eval 0.4.2 2024-08-22T20:41:52.3737250Z lxml 4.9.4 2024-08-22T20:41:52.3737490Z markdown-it-py 3.0.0 2024-08-22T20:41:52.3737700Z MarkupSafe 2.1.5 2024-08-22T20:41:52.3737920Z mbstrdecoder 1.1.3 2024-08-22T20:41:52.3738130Z mdurl 0.1.2 2024-08-22T20:41:52.3738350Z menuinst 2.1.1 2024-08-22T20:41:52.3738600Z more-itertools 10.4.0 2024-08-22T20:41:52.3738820Z mpmath 1.3.0 2024-08-22T20:41:52.3739040Z multidict 6.0.5 2024-08-22T20:41:52.3739250Z multiprocess 0.70.16 2024-08-22T20:41:52.3739480Z narwhals 1.5.2 2024-08-22T20:41:52.3739690Z networkx 3.3 2024-08-22T20:41:52.3739900Z ninja 1.11.1.1 2024-08-22T20:41:52.3740130Z nltk 3.9.1 2024-08-22T20:41:52.3740340Z numexpr 2.10.1 2024-08-22T20:41:52.3740570Z numpy 1.26.4 2024-08-22T20:41:52.3740780Z packaging 23.2 2024-08-22T20:41:52.3741000Z pandas 2.2.2 2024-08-22T20:41:52.3741210Z pathvalidate 3.2.0 2024-08-22T20:41:52.3741420Z peft 0.12.0 2024-08-22T20:41:52.3741640Z pillow 10.4.0 2024-08-22T20:41:52.3741850Z pip 24.0 2024-08-22T20:41:52.3742140Z platformdirs 3.10.0 2024-08-22T20:41:52.3742360Z pluggy 1.0.0 2024-08-22T20:41:52.3745970Z portalocker 2.10.1 2024-08-22T20:41:52.3746210Z protobuf 5.27.3 2024-08-22T20:41:52.3746420Z psutil 6.0.0 2024-08-22T20:41:52.3746630Z pyarrow 17.0.0 2024-08-22T20:41:52.3746840Z pybind11 2.13.5 2024-08-22T20:41:52.3747050Z pycosat 0.6.6 2024-08-22T20:41:52.3747270Z pycparser 2.21 2024-08-22T20:41:52.3747490Z pycryptodomex 3.20.0 2024-08-22T20:41:52.3747700Z pydeck 0.9.1 2024-08-22T20:41:52.3747920Z Pygments 2.18.0 2024-08-22T20:41:52.3748130Z PySocks 1.7.1 2024-08-22T20:41:52.3748360Z pytablewriter 1.2.0 2024-08-22T20:41:52.3748630Z python-dateutil 2.9.0.post0 2024-08-22T20:41:52.3748880Z pytz 2024.1 2024-08-22T20:41:52.3749220Z PyYAML 6.0.2 2024-08-22T20:41:52.3749450Z referencing 0.35.1 2024-08-22T20:41:52.3749670Z regex 2024.7.24 2024-08-22T20:41:52.3749890Z requests 2.32.2 2024-08-22T20:41:52.3750110Z rich 13.7.1 2024-08-22T20:41:52.3750320Z rouge_score 0.1.2 2024-08-22T20:41:52.3750560Z rpds-py 0.20.0 2024-08-22T20:41:52.3750770Z ruamel.yaml 0.17.21 2024-08-22T20:41:52.3751000Z sacrebleu 2.4.3 2024-08-22T20:41:52.3751210Z safetensors 0.4.4 2024-08-22T20:41:52.3751460Z scikit-learn 1.5.1 2024-08-22T20:41:52.3751680Z scipy 1.14.1 2024-08-22T20:41:52.3751900Z sentencepiece 0.2.0 2024-08-22T20:41:52.3752120Z setuptools 69.5.1 2024-08-22T20:41:52.3752340Z six 1.16.0 2024-08-22T20:41:52.3752560Z smmap 5.0.1 2024-08-22T20:41:52.3752770Z snakeviz 2.2.0 2024-08-22T20:41:52.3752980Z sqlitedict 2.1.0 2024-08-22T20:41:52.3753200Z streamlit 1.37.1 2024-08-22T20:41:52.3753420Z sympy 1.13.1 2024-08-22T20:41:52.3753640Z tabledata 1.3.3 2024-08-22T20:41:52.3753850Z tabulate 0.9.0 2024-08-22T20:41:52.3754060Z tcolorpy 0.1.6 2024-08-22T20:41:52.3754270Z tenacity 8.5.0 2024-08-22T20:41:52.3754480Z threadpoolctl 3.5.0 2024-08-22T20:41:52.3754700Z tiktoken 0.7.0 2024-08-22T20:41:52.3754910Z tokenizers 0.19.1 2024-08-22T20:41:52.3755120Z toml 0.10.2 2024-08-22T20:41:52.3755360Z torch 2.5.0.dev20240814 2024-08-22T20:41:52.3755640Z torchao 0.4.0+gite11201a 2024-08-22T20:41:52.3755890Z tornado 6.4.1 2024-08-22T20:41:52.3756110Z tqdm 4.66.4 2024-08-22T20:41:52.3756360Z tqdm-multiprocess 0.0.11 2024-08-22T20:41:52.3756580Z transformers 4.44.2 2024-08-22T20:41:52.3756800Z truststore 0.8.0 2024-08-22T20:41:52.3757020Z typepy 1.3.2 2024-08-22T20:41:52.3757250Z typing_extensions 4.12.2 2024-08-22T20:41:52.3757470Z tzdata 2024.1 2024-08-22T20:41:52.3757690Z urllib3 2.2.2 2024-08-22T20:41:52.3757930Z Werkzeug 3.0.4 2024-08-22T20:41:52.3758140Z wheel 0.43.0 2024-08-22T20:41:52.3758360Z word2number 1.1 2024-08-22T20:41:52.3758570Z xxhash 3.5.0 2024-08-22T20:41:52.3758780Z yarl 1.9.4 2024-08-22T20:41:52.3758990Z zstandard 0.22.0 2024-08-22T20:41:52.3759200Z zstd 1.5.5.1 2024-08-22T20:41:52.3759640Z + python3 -c 'import torch;print(f"torch: {torch.__version__, torch.version.git_version}")' 2024-08-22T20:41:52.3760210Z torch: ('2.5.0.dev20240814', '3a023a67c47bcde45538c9991e332d21ac548e46') 2024-08-22T20:41:52.3760610Z + echo ::endgroup:: 2024-08-22T20:41:52.3761320Z ##[endgroup] 2024-08-22T20:42:01.3360560Z + echo '::group::Download checkpoints' 2024-08-22T20:42:01.3361130Z ##[group]Download checkpoints 2024-08-22T20:42:01.3361490Z + mkdir -p checkpoints/stories15M 2024-08-22T20:42:01.3361750Z + pushd checkpoints/stories15M 2024-08-22T20:42:01.3362370Z ~/runner/_work/torchchat/torchchat/pytorch/torchchat/checkpoints/stories15M ~/runner/_work/torchchat/torchchat/pytorch/torchchat 2024-08-22T20:42:01.3363230Z + curl -fsSL -O https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.pt 2024-08-22T20:42:01.3363860Z + curl -fsSL -O https://github.com/karpathy/llama2.c/raw/master/tokenizer.model 2024-08-22T20:42:01.3364260Z + popd 2024-08-22T20:42:01.3370290Z ~/runner/_work/torchchat/torchchat/pytorch/torchchat 2024-08-22T20:42:01.3370620Z + echo ::endgroup:: 2024-08-22T20:42:01.3370960Z ##[endgroup] 2024-08-22T20:42:01.3371200Z + echo '::group::Run inference' 2024-08-22T20:42:01.3371560Z ##[group]Run inference 2024-08-22T20:42:01.3372160Z + export MODEL_PATH=checkpoints/stories15M/stories15M.pt 2024-08-22T20:42:01.3372530Z + MODEL_PATH=checkpoints/stories15M/stories15M.pt 2024-08-22T20:42:01.3372820Z + export MODEL_NAME=stories15M 2024-08-22T20:42:01.3373040Z + MODEL_NAME=stories15M 2024-08-22T20:42:01.3373240Z + export MODEL_DIR=/tmp 2024-08-22T20:42:01.3373440Z + MODEL_DIR=/tmp 2024-08-22T20:42:01.3373960Z + python3 torchchat.py generate --device mps --checkpoint-path checkpoints/stories15M/stories15M.pt --temperature 0 2024-08-22T20:42:01.3374480Z NumExpr defaulting to 8 threads. 2024-08-22T20:42:01.3374750Z PyTorch version 2.5.0.dev20240814 available. 2024-08-22T20:42:01.3375210Z Warning: compilation is not available with device MPS, ignoring option to engage compilation 2024-08-22T20:42:01.3375640Z Using device=mps 2024-08-22T20:42:01.3375820Z Loading model... 2024-08-22T20:42:01.3376010Z Time to load model: 0.20 seconds 2024-08-22T20:42:01.3376310Z ----------------------------------------------------------- 2024-08-22T20:42:01.3377100Z Hello, my name is Daisy. Daisy is very popular. Everyone wants to be her friend. One day, Daisy's mommy takes her to the park. Daisy is so excited! She loves to play. 2024-08-22T20:42:01.3378450Z Daisy sees a big slide. She wants to go on it. Daisy's mommy says, "Yes, you can go on the slide." Daisy runs to the slide. She climbs up the steps. She sits on the slide and slides down. She laughs and says, "Whee!" 2024-08-22T20:42:01.3380020Z Daisy goes on the slide again and again. She has so much fun. She sees her mommy and daddy. They are happy to see her. They say, "Good job, Daisy!" Daisy is happy too. She loves to play at the park. Once upon a time, there was a little girl named Lily. She loved to 2024-08-22T20:42:01.3381340Z Time for inference 1: 3.15 sec total, time to first token 0.46 sec with parallel prefill, 199 tokens, 63.20 tokens/sec, 15.82 ms/token 2024-08-22T20:42:01.3381890Z Bandwidth achieved: 3.09 GB/s 2024-08-22T20:42:01.3382310Z *** This first iteration will include cold start effects for dynamic import, hardware caches. *** 2024-08-22T20:42:01.3382680Z 2024-08-22T20:42:01.3382760Z ======================================== 2024-08-22T20:42:01.3382930Z 2024-08-22T20:42:01.3383000Z Average tokens/sec: 63.20 2024-08-22T20:42:01.3383210Z Memory used: 0.00 GB 2024-08-22T20:42:01.3383500Z + echo '************************************************************' 2024-08-22T20:42:01.3383810Z ************************************************************ 2024-08-22T20:42:01.3384090Z + echo '*** embedding' 2024-08-22T20:42:01.3384280Z *** embedding 2024-08-22T20:42:01.3384530Z + echo '************************************************************' 2024-08-22T20:42:01.3384850Z ************************************************************ 2024-08-22T20:42:01.3385610Z + python3 torchchat.py generate --device mps --quant '{"embedding" : {"bitwidth": 8, "groupsize": 0}}' --checkpoint-path checkpoints/stories15M/stories15M.pt --temperature 0 2024-08-22T20:42:01.3386270Z NumExpr defaulting to 8 threads. 2024-08-22T20:42:01.3386740Z PyTorch version 2.5.0.dev20240814 available. 2024-08-22T20:42:01.3387220Z Warning: compilation is not available with device MPS, ignoring option to engage compilation 2024-08-22T20:42:01.3387660Z Using device=mps 2024-08-22T20:42:01.3387840Z Loading model... 2024-08-22T20:42:01.3388030Z Time to load model: 0.15 seconds 2024-08-22T20:42:01.3388430Z Quantizing the model with: {'embedding': {'bitwidth': 8, 'groupsize': 0}} 2024-08-22T20:42:01.3388810Z Time to quantize model: 0.15 seconds 2024-08-22T20:42:01.3389110Z ----------------------------------------------------------- 2024-08-22T20:42:01.3389920Z Hello, my name is Daisy. Daisy is very popular. Everyone wants to be her friend. One day, Daisy's mommy takes her to the park. Daisy is so excited! She loves to play. 2024-08-22T20:42:01.3391120Z Daisy sees a big slide. She wants to go on it. She runs to the slide and climbs up the ladder. She sits on the top and slides down. She laughs and shouts. She feels the wind in her hair. 2024-08-22T20:42:01.3392640Z Daisy sees a boy. He is playing with a ball. He is throwing the ball to Daisy. Daisy runs to the ball and catches it. She throws it back to the boy. He catches it and throws it back. They play together. 2024-08-22T20:42:01.3393730Z Daisy and the boy have fun. They laugh and shout. They are happy. Daisy is popular. She is her friend. Once upon a time, there was 2024-08-22T20:42:01.3394570Z Time for inference 1: 2.70 sec total, time to first token 0.22 sec with parallel prefill, 199 tokens, 73.79 tokens/sec, 13.55 ms/token 2024-08-22T20:42:01.3395110Z Bandwidth achieved: 2.93 GB/s 2024-08-22T20:42:01.3395520Z *** This first iteration will include cold start effects for dynamic import, hardware caches. *** 2024-08-22T20:42:01.3395870Z 2024-08-22T20:42:01.3395940Z ======================================== 2024-08-22T20:42:01.3396110Z 2024-08-22T20:42:01.3396180Z Average tokens/sec: 73.79 2024-08-22T20:42:01.3396380Z Memory used: 0.00 GB 2024-08-22T20:42:01.3397050Z + python3 torchchat.py generate --device mps --quant '{"embedding" : {"bitwidth": 8, "groupsize": 8}}' --checkpoint-path checkpoints/stories15M/stories15M.pt --temperature 0 2024-08-22T20:42:01.3397710Z NumExpr defaulting to 8 threads. 2024-08-22T20:42:01.3397960Z PyTorch version 2.5.0.dev20240814 available. 2024-08-22T20:42:01.3398400Z Warning: compilation is not available with device MPS, ignoring option to engage compilation 2024-08-22T20:42:01.3398820Z Using device=mps 2024-08-22T20:42:01.3398990Z Loading model... 2024-08-22T20:42:01.3399170Z Time to load model: 0.15 seconds 2024-08-22T20:42:01.3399550Z Quantizing the model with: {'embedding': {'bitwidth': 8, 'groupsize': 8}} 2024-08-22T20:42:01.3399910Z Time to quantize model: 0.09 seconds 2024-08-22T20:42:01.3400210Z ----------------------------------------------------------- 2024-08-22T20:42:01.3400950Z Hello, my name is Daisy. Daisy is very popular. Everyone wants to be her friend. One day, Daisy's mommy takes her to the park. Daisy is so excited! She loves to play. 2024-08-22T20:42:01.3402230Z Daisy sees a big slide. She wants to go on it. Daisy's mommy says, "Yes, you can go on the slide." Daisy runs to the slide. She climbs up the steps. She sits on the slide and slides down. She laughs and says, "Whee!" 2024-08-22T20:42:01.3403720Z Daisy slides down the slide again and again. She has so much fun. She sees her mommy and daddy. They are happy to see her. They hug her and say, "We love you, Daisy!" Daisy hugs them back and says, "I love you too!" They all go home and have a nice dinner. Once 2024-08-22T20:42:01.3404950Z Time for inference 1: 2.60 sec total, time to first token 0.19 sec with parallel prefill, 199 tokens, 76.43 tokens/sec, 13.08 ms/token 2024-08-22T20:42:01.3405480Z Bandwidth achieved: 3.20 GB/s 2024-08-22T20:42:01.3405880Z *** This first iteration will include cold start effects for dynamic import, hardware caches. *** 2024-08-22T20:42:01.3406230Z 2024-08-22T20:42:01.3406300Z ======================================== 2024-08-22T20:42:01.3406470Z 2024-08-22T20:42:01.3406620Z Average tokens/sec: 76.43 2024-08-22T20:42:01.3406820Z Memory used: 0.00 GB 2024-08-22T20:42:01.3407090Z + echo '************************************************************' 2024-08-22T20:42:01.3407400Z ************************************************************ 2024-08-22T20:42:01.3407670Z + echo '*** linear int8' 2024-08-22T20:42:01.3407860Z *** linear int8 2024-08-22T20:42:01.3408110Z + echo '************************************************************' 2024-08-22T20:42:01.3408410Z ************************************************************ 2024-08-22T20:42:01.3409140Z + python3 torchchat.py generate --device mps --quant '{"linear:int8" : {"bitwidth": 8, "groupsize": 0}}' --checkpoint-path checkpoints/stories15M/stories15M.pt --temperature 0 2024-08-22T20:42:01.3409780Z NumExpr defaulting to 8 threads. 2024-08-22T20:42:01.3410030Z PyTorch version 2.5.0.dev20240814 available. 2024-08-22T20:42:01.3410470Z Warning: compilation is not available with device MPS, ignoring option to engage compilation 2024-08-22T20:42:01.3411000Z Using device=mps 2024-08-22T20:42:01.3411180Z Loading model... 2024-08-22T20:42:01.3415510Z Time to load model: 0.14 seconds 2024-08-22T20:42:01.3415910Z Quantizing the model with: {'linear:int8': {'bitwidth': 8, 'groupsize': 0}} 2024-08-22T20:42:01.3416280Z Time to quantize model: 0.18 seconds 2024-08-22T20:42:01.3416570Z ----------------------------------------------------------- 2024-08-22T20:42:01.3417310Z Hello, my name is Daisy. Daisy is very popular. Everyone wants to be her friend. One day, Daisy's mommy takes her to the park. Daisy is so excited! She loves to play. 2024-08-22T20:42:01.3418530Z Daisy sees a big slide. She wants to go on it. Daisy's mommy says, "Yes, you can go on the slide." Daisy runs to the slide. She climbs up the steps. She sits on the slide. She slides down. She laughs. 2024-08-22T20:42:01.3419900Z Daisy sees a boy. He is playing with a ball. He throws the ball to Daisy. Daisy runs to the ball. She picks it up. She throws it back to the boy. The boy catches the ball. He throws it back to Daisy. They play together. They have fun. 2024-08-22T20:42:01.3420810Z Daisy and the boy are friends. They like to play at 2024-08-22T20:42:01.3421400Z Time for inference 1: 2.43 sec total, time to first token 0.24 sec with parallel prefill, 199 tokens, 82.05 tokens/sec, 12.19 ms/token 2024-08-22T20:42:01.3421930Z Bandwidth achieved: 2.77 GB/s 2024-08-22T20:42:01.3422330Z *** This first iteration will include cold start effects for dynamic import, hardware caches. *** 2024-08-22T20:42:01.3422680Z 2024-08-22T20:42:01.3422750Z ======================================== 2024-08-22T20:42:01.3422920Z 2024-08-22T20:42:01.3422990Z Average tokens/sec: 82.05 2024-08-22T20:42:01.3423180Z Memory used: 0.00 GB 2024-08-22T20:42:01.3423840Z + python3 torchchat.py generate --device mps --quant '{"linear:int8" : {"bitwidth": 8, "groupsize": 8}}' --checkpoint-path checkpoints/stories15M/stories15M.pt --temperature 0 2024-08-22T20:42:01.3424470Z NumExpr defaulting to 8 threads. 2024-08-22T20:42:01.3424720Z PyTorch version 2.5.0.dev20240814 available. 2024-08-22T20:42:01.3425160Z Warning: compilation is not available with device MPS, ignoring option to engage compilation 2024-08-22T20:42:01.3425560Z Using device=mps 2024-08-22T20:42:01.3425730Z Loading model... 2024-08-22T20:42:01.3425910Z Time to load model: 0.14 seconds 2024-08-22T20:42:01.3426280Z Quantizing the model with: {'linear:int8': {'bitwidth': 8, 'groupsize': 8}} 2024-08-22T20:42:01.3426650Z Time to quantize model: 0.18 seconds 2024-08-22T20:42:01.3426940Z ----------------------------------------------------------- 2024-08-22T20:42:01.3427410Z Hello, my name is Daisy. Daisy is very popular. Everyone likes Daisy. She is very friendly and kind. 2024-08-22T20:42:01.3428610Z One day, Daisy's mommy says, "Daisy, it's time to go to the park." Daisy says, "No, I don't want to go. I want to stay here and play." Daisy's mommy says, "But Daisy, it's time to go. You can play later." Daisy says, "No, I don't want to go. I want to stay here." 2024-08-22T20:42:01.3430120Z Daisy's mommy says, "If you don't go, you will be in trouble. You will be punished." Daisy does not want to be punished, so she says, "Okay, I will go." Daisy's mommy takes her to the park. 2024-08-22T20:42:01.3430810Z At the park, D 2024-08-22T20:42:01.3431290Z Time for inference 1: 3.26 sec total, time to first token 0.19 sec with parallel prefill, 199 tokens, 60.98 tokens/sec, 16.40 ms/token 2024-08-22T20:42:01.3431820Z Bandwidth achieved: 2.28 GB/s 2024-08-22T20:42:01.3432220Z *** This first iteration will include cold start effects for dynamic import, hardware caches. *** 2024-08-22T20:42:01.3432570Z 2024-08-22T20:42:01.3432640Z ======================================== 2024-08-22T20:42:01.3432800Z 2024-08-22T20:42:01.3432870Z Average tokens/sec: 60.98 2024-08-22T20:42:01.3433060Z Memory used: 0.00 GB 2024-08-22T20:42:01.3433320Z + echo '************************************************************' 2024-08-22T20:42:01.3433750Z ************************************************************ 2024-08-22T20:42:01.3434040Z + echo '*** linear int4' 2024-08-22T20:42:01.3434220Z *** linear int4 2024-08-22T20:42:01.3434470Z + echo '************************************************************' 2024-08-22T20:42:01.3434770Z ************************************************************ 2024-08-22T20:42:01.3435030Z + PYTORCH_ENABLE_MPS_FALLBACK=1 2024-08-22T20:42:01.3435690Z + python3 torchchat.py generate --device mps --quant '{"linear:int4" : {"groupsize": 32}}' --checkpoint-path checkpoints/stories15M/stories15M.pt --temperature 0 2024-08-22T20:42:01.3436300Z NumExpr defaulting to 8 threads. 2024-08-22T20:42:01.3436550Z PyTorch version 2.5.0.dev20240814 available. 2024-08-22T20:42:01.3436840Z linear: layers.0.attention.wq, in=288, out=288 2024-08-22T20:42:01.3437230Z warning: layers.0.attention.wq is padded to satisfy in_features % 1024 == 0 2024-08-22T20:42:01.3437630Z linear: layers.0.attention.wk, in=288, out=288 2024-08-22T20:42:01.3438020Z warning: layers.0.attention.wk is padded to satisfy in_features % 1024 == 0 2024-08-22T20:42:01.3438410Z linear: layers.0.attention.wv, in=288, out=288 2024-08-22T20:42:01.3438800Z warning: layers.0.attention.wv is padded to satisfy in_features % 1024 == 0 2024-08-22T20:42:01.3439180Z linear: layers.0.attention.wo, in=288, out=288 2024-08-22T20:42:01.3439570Z warning: layers.0.attention.wo is padded to satisfy in_features % 1024 == 0 2024-08-22T20:42:01.3439960Z linear: layers.0.feed_forward.w1, in=288, out=768 2024-08-22T20:42:01.3440360Z warning: layers.0.feed_forward.w1 is padded to satisfy in_features % 1024 == 0 2024-08-22T20:42:01.3440760Z linear: layers.0.feed_forward.w2, in=768, out=288 2024-08-22T20:42:01.3441060Z linear: layers.0.feed_forward.w3, in=288, out=768 2024-08-22T20:42:01.3441450Z warning: layers.0.feed_forward.w3 is padded to satisfy in_features % 1024 == 0 2024-08-22T20:42:01.3441850Z linear: layers.1.attention.wq, in=288, out=288 2024-08-22T20:42:01.3442230Z warning: layers.1.attention.wq is padded to satisfy in_features % 1024 == 0 2024-08-22T20:42:01.3442620Z linear: layers.1.attention.wk, in=288, out=288 2024-08-22T20:42:01.3443000Z warning: layers.1.attention.wk is padded to satisfy in_features % 1024 == 0 2024-08-22T20:42:01.3443390Z linear: layers.1.attention.wv, in=288, out=288 2024-08-22T20:42:01.3443770Z warning: layers.1.attention.wv is padded to satisfy in_features % 1024 == 0 2024-08-22T20:42:01.3444150Z linear: layers.1.attention.wo, in=288, out=288 2024-08-22T20:42:01.3444530Z warning: layers.1.attention.wo is padded to satisfy in_features % 1024 == 0 2024-08-22T20:42:01.3444920Z linear: layers.1.feed_forward.w1, in=288, out=768 2024-08-22T20:42:01.3445310Z warning: layers.1.feed_forward.w1 is padded to satisfy in_features % 1024 == 0 2024-08-22T20:42:01.3445710Z linear: layers.1.feed_forward.w2, in=768, out=288 2024-08-22T20:42:01.3446010Z linear: layers.1.feed_forward.w3, in=288, out=768 2024-08-22T20:42:01.3446400Z warning: layers.1.feed_forward.w3 is padded to satisfy in_features % 1024 == 0 2024-08-22T20:42:01.3447390Z linear: layers.2.attention.wq, in=288, out=288 2024-08-22T20:42:01.3447770Z warning: layers.2.attention.wq is padded to satisfy in_features % 1024 == 0 2024-08-22T20:42:01.3448160Z linear: layers.2.attention.wk, in=288, out=288 2024-08-22T20:42:01.3448540Z warning: layers.2.attention.wk is padded to satisfy in_features % 1024 == 0 2024-08-22T20:42:01.3448920Z linear: layers.2.attention.wv, in=288, out=288 2024-08-22T20:42:01.3449300Z warning: layers.2.attention.wv is padded to satisfy in_features % 1024 == 0 2024-08-22T20:42:01.3449680Z linear: layers.2.attention.wo, in=288, out=288 2024-08-22T20:42:01.3450060Z warning: layers.2.attention.wo is padded to satisfy in_features % 1024 == 0 2024-08-22T20:42:01.3450450Z linear: layers.2.feed_forward.w1, in=288, out=768 2024-08-22T20:42:01.3450840Z warning: layers.2.feed_forward.w1 is padded to satisfy in_features % 1024 == 0 2024-08-22T20:42:01.3451240Z linear: layers.2.feed_forward.w2, in=768, out=288 2024-08-22T20:42:01.3451650Z linear: layers.2.feed_forward.w3, in=288, out=768 2024-08-22T20:42:01.3452050Z warning: layers.2.feed_forward.w3 is padded to satisfy in_features % 1024 == 0 2024-08-22T20:42:01.3452440Z linear: layers.3.attention.wq, in=288, out=288 2024-08-22T20:42:01.3452820Z warning: layers.3.attention.wq is padded to satisfy in_features % 1024 == 0 2024-08-22T20:42:01.3453200Z linear: layers.3.attention.wk, in=288, out=288 2024-08-22T20:42:01.3453580Z warning: layers.3.attention.wk is padded to satisfy in_features % 1024 == 0 2024-08-22T20:42:01.3459450Z linear: layers.3.attention.wv, in=288, out=288 2024-08-22T20:42:01.3459840Z warning: layers.3.attention.wv is padded to satisfy in_features % 1024 == 0 2024-08-22T20:42:01.3460220Z linear: layers.3.attention.wo, in=288, out=288 2024-08-22T20:42:01.3460600Z warning: layers.3.attention.wo is padded to satisfy in_features % 1024 == 0 2024-08-22T20:42:01.3460990Z linear: layers.3.feed_forward.w1, in=288, out=768 2024-08-22T20:42:01.3461390Z warning: layers.3.feed_forward.w1 is padded to satisfy in_features % 1024 == 0 2024-08-22T20:42:01.3461790Z linear: layers.3.feed_forward.w2, in=768, out=288 2024-08-22T20:42:01.3462090Z linear: layers.3.feed_forward.w3, in=288, out=768 2024-08-22T20:42:01.3462480Z warning: layers.3.feed_forward.w3 is padded to satisfy in_features % 1024 == 0 2024-08-22T20:42:01.3462870Z linear: layers.4.attention.wq, in=288, out=288 2024-08-22T20:42:01.3463250Z warning: layers.4.attention.wq is padded to satisfy in_features % 1024 == 0 2024-08-22T20:42:01.3463650Z linear: layers.4.attention.wk, in=288, out=288 2024-08-22T20:42:01.3464060Z warning: layers.4.attention.wk is padded to satisfy in_features % 1024 == 0 2024-08-22T20:42:01.3464450Z linear: layers.4.attention.wv, in=288, out=288 2024-08-22T20:42:01.3464830Z warning: layers.4.attention.wv is padded to satisfy in_features % 1024 == 0 2024-08-22T20:42:01.3465210Z linear: layers.4.attention.wo, in=288, out=288 2024-08-22T20:42:01.3465590Z warning: layers.4.attention.wo is padded to satisfy in_features % 1024 == 0 2024-08-22T20:42:01.3465980Z linear: layers.4.feed_forward.w1, in=288, out=768 2024-08-22T20:42:01.3466380Z warning: layers.4.feed_forward.w1 is padded to satisfy in_features % 1024 == 0 2024-08-22T20:42:01.3466770Z linear: layers.4.feed_forward.w2, in=768, out=288 2024-08-22T20:42:01.3467070Z linear: layers.4.feed_forward.w3, in=288, out=768 2024-08-22T20:42:01.3467480Z warning: layers.4.feed_forward.w3 is padded to satisfy in_features % 1024 == 0 2024-08-22T20:42:01.3467860Z linear: layers.5.attention.wq, in=288, out=288 2024-08-22T20:42:01.3468240Z warning: layers.5.attention.wq is padded to satisfy in_features % 1024 == 0 2024-08-22T20:42:01.3468620Z linear: layers.5.attention.wk, in=288, out=288 2024-08-22T20:42:01.3469000Z warning: layers.5.attention.wk is padded to satisfy in_features % 1024 == 0 2024-08-22T20:42:01.3469390Z linear: layers.5.attention.wv, in=288, out=288 2024-08-22T20:42:01.3469760Z warning: layers.5.attention.wv is padded to satisfy in_features % 1024 == 0 2024-08-22T20:42:01.3470150Z linear: layers.5.attention.wo, in=288, out=288 2024-08-22T20:42:01.3470590Z warning: layers.5.attention.wo is padded to satisfy in_features % 1024 == 0 2024-08-22T20:42:01.3470980Z linear: layers.5.feed_forward.w1, in=288, out=768 2024-08-22T20:42:01.3471370Z warning: layers.5.feed_forward.w1 is padded to satisfy in_features % 1024 == 0 2024-08-22T20:42:01.3471770Z linear: layers.5.feed_forward.w2, in=768, out=288 2024-08-22T20:42:01.3472070Z linear: layers.5.feed_forward.w3, in=288, out=768 2024-08-22T20:42:01.3472460Z warning: layers.5.feed_forward.w3 is padded to satisfy in_features % 1024 == 0 2024-08-22T20:42:01.3472820Z linear: output, in=288, out=32000 2024-08-22T20:42:01.3473120Z warning: output is padded to satisfy in_features % 1024 == 0 2024-08-22T20:42:01.3473610Z Warning: compilation is not available with device MPS, ignoring option to engage compilation 2024-08-22T20:42:01.3474020Z Using device=mps 2024-08-22T20:42:01.3474190Z Loading model... 2024-08-22T20:42:01.3474370Z Time to load model: 0.14 seconds 2024-08-22T20:42:01.3474980Z Quantizing the model with: {'linear:int4': {'groupsize': 32}} 2024-08-22T20:42:01.3475310Z Time to quantize model: 0.45 seconds 2024-08-22T20:42:01.3475610Z ----------------------------------------------------------- 2024-08-22T20:42:01.3476370Z Hello, my name is Gus. He has a big, red ball. Gus loves to play with his ball. One day, Gus's ball goes into the woods. He looks for it, but he cannot find it. He feels sad. 2024-08-22T20:42:01.3477500Z He sees a squirrel and says, "Have you seen my ball?" The squirrel says, "Yes, I saw it. It is in the tree." Gus climbs the tree and sees his ball. He is happy. He says, "Thank you, squirrel!" 2024-08-22T20:42:01.3478780Z Gus takes his ball and runs back to his house. He sees his mom in the kitchen. He says, "Mom, I found my ball in the kitchen. It is in the yard. Can I play with it?" Mom says, "Yes, but be careful. The yard is not safe." 2024-08-22T20:42:01.3479710Z Gus plays with his ball in the yard. He throws it high and catches it. He has fun 2024-08-22T20:42:01.3480400Z Time for inference 1: 2.60 sec total, time to first token 0.17 sec with parallel prefill, 199 tokens, 76.48 tokens/sec, 13.08 ms/token 2024-08-22T20:42:01.3480930Z Bandwidth achieved: 3.83 GB/s 2024-08-22T20:42:01.3481330Z *** This first iteration will include cold start effects for dynamic import, hardware caches. *** 2024-08-22T20:42:01.3481680Z 2024-08-22T20:42:01.3481750Z ======================================== 2024-08-22T20:42:01.3481920Z 2024-08-22T20:42:01.3481980Z Average tokens/sec: 76.48 2024-08-22T20:42:01.3482180Z Memory used: 0.00 GB 2024-08-22T20:42:01.3524480Z ##[group]Run pmeier/pytest-results-action@v0.3.0 2024-08-22T20:42:01.3524760Z with: 2024-08-22T20:42:01.3524970Z path: /Users/ec2-user/runner/_work/_temp/test-results 2024-08-22T20:42:01.3525250Z fail-on-empty: false 2024-08-22T20:42:01.3525430Z env: 2024-08-22T20:42:01.3525580Z REPOSITORY: pytorch/torchchat 2024-08-22T20:42:01.3532040Z SCRIPT: set -x # NS/MC: Remove previous installation of torch and torchao first # as this script does not install anything into conda env but rather as system dep pip3 uninstall -y torch || true set -eou pipefail pip3 uninstall -y torchao || true set -eou pipefail echo "::group::Print machine info" uname -a sysctl machdep.cpu.brand_string sysctl machdep.cpu.core_count echo "::endgroup::" echo "::group::Install requirements" # Install requirements ./install_requirements.sh ls -la pwd 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 curl -fsSL -O https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.pt curl -fsSL -O 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 python3 torchchat.py generate --device mps --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** embedding" echo "************************************************************" python3 torchchat.py generate --device mps --quant '{"embedding" : {"bitwidth": 8, "groupsize": 0}}' --checkpoint-path ${MODEL_PATH} --temperature 0 python3 torchchat.py generate --device mps --quant '{"embedding" : {"bitwidth": 8, "groupsize": 8}}' --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** linear int8" echo "************************************************************" python3 torchchat.py generate --device mps --quant '{"linear:int8" : {"bitwidth": 8, "groupsize": 0}}' --checkpoint-path ${MODEL_PATH} --temperature 0 python3 torchchat.py generate --device mps --quant '{"linear:int8" : {"bitwidth": 8, "groupsize": 8}}' --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** linear int4" echo "************************************************************" PYTORCH_ENABLE_MPS_FALLBACK=1 python3 torchchat.py generate --device mps --quant '{"linear:int4" : {"groupsize": 32}}' --checkpoint-path ${MODEL_PATH} --temperature 0 2024-08-22T20:42:01.3539340Z PATH: /Users/ec2-user/runner/_work/_temp/miniconda/bin:/opt/homebrew/Caskroom/miniconda/base/bin:/opt/homebrew/Caskroom/miniconda/base/condabin:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/bin:/bin:/usr/sbin:/sbin 2024-08-22T20:42:01.3540280Z CONDA_EXE: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2024-08-22T20:42:01.3540720Z CONDA_ENV: /Users/ec2-user/runner/_work/_temp/conda_environment_10515112133 2024-08-22T20:42:01.3541210Z CONDA_PREFIX: /Users/ec2-user/runner/_work/_temp/conda_environment_10515112133 2024-08-22T20:42:01.3541960Z CONDA_RUN: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda run -p /Users/ec2-user/runner/_work/_temp/conda_environment_10515112133 --no-capture-output 2024-08-22T20:42:01.3542980Z CONDA_INSTALL: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda install --yes --quiet -p /Users/ec2-user/runner/_work/_temp/conda_environment_10515112133 2024-08-22T20:42:01.3543680Z RUNNER_ARTIFACT_DIR: /Users/ec2-user/runner/_work/_temp/artifacts 2024-08-22T20:42:01.3544100Z RUNNER_TEST_RESULTS_DIR: /Users/ec2-user/runner/_work/_temp/test-results 2024-08-22T20:42:01.3544420Z ##[endgroup] 2024-08-22T20:42:01.4470700Z Prepare all required actions 2024-08-22T20:42:01.4519710Z ##[group]Run ./test-infra/.github/actions/check-disk-space 2024-08-22T20:42:01.4520020Z with: 2024-08-22T20:42:01.4520200Z minimum-available-space-in-gb: 6 2024-08-22T20:42:01.4520430Z env: 2024-08-22T20:42:01.4520590Z REPOSITORY: pytorch/torchchat 2024-08-22T20:42:01.4527050Z SCRIPT: set -x # NS/MC: Remove previous installation of torch and torchao first # as this script does not install anything into conda env but rather as system dep pip3 uninstall -y torch || true set -eou pipefail pip3 uninstall -y torchao || true set -eou pipefail echo "::group::Print machine info" uname -a sysctl machdep.cpu.brand_string sysctl machdep.cpu.core_count echo "::endgroup::" echo "::group::Install requirements" # Install requirements ./install_requirements.sh ls -la pwd 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 curl -fsSL -O https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.pt curl -fsSL -O 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 python3 torchchat.py generate --device mps --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** embedding" echo "************************************************************" python3 torchchat.py generate --device mps --quant '{"embedding" : {"bitwidth": 8, "groupsize": 0}}' --checkpoint-path ${MODEL_PATH} --temperature 0 python3 torchchat.py generate --device mps --quant '{"embedding" : {"bitwidth": 8, "groupsize": 8}}' --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** linear int8" echo "************************************************************" python3 torchchat.py generate --device mps --quant '{"linear:int8" : {"bitwidth": 8, "groupsize": 0}}' --checkpoint-path ${MODEL_PATH} --temperature 0 python3 torchchat.py generate --device mps --quant '{"linear:int8" : {"bitwidth": 8, "groupsize": 8}}' --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** linear int4" echo "************************************************************" PYTORCH_ENABLE_MPS_FALLBACK=1 python3 torchchat.py generate --device mps --quant '{"linear:int4" : {"groupsize": 32}}' --checkpoint-path ${MODEL_PATH} --temperature 0 2024-08-22T20:42:01.4534400Z PATH: /Users/ec2-user/runner/_work/_temp/miniconda/bin:/opt/homebrew/Caskroom/miniconda/base/bin:/opt/homebrew/Caskroom/miniconda/base/condabin:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/bin:/bin:/usr/sbin:/sbin 2024-08-22T20:42:01.4535350Z CONDA_EXE: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2024-08-22T20:42:01.4535800Z CONDA_ENV: /Users/ec2-user/runner/_work/_temp/conda_environment_10515112133 2024-08-22T20:42:01.4536290Z CONDA_PREFIX: /Users/ec2-user/runner/_work/_temp/conda_environment_10515112133 2024-08-22T20:42:01.4537050Z CONDA_RUN: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda run -p /Users/ec2-user/runner/_work/_temp/conda_environment_10515112133 --no-capture-output 2024-08-22T20:42:01.4538060Z CONDA_INSTALL: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda install --yes --quiet -p /Users/ec2-user/runner/_work/_temp/conda_environment_10515112133 2024-08-22T20:42:01.4538760Z RUNNER_ARTIFACT_DIR: /Users/ec2-user/runner/_work/_temp/artifacts 2024-08-22T20:42:01.4539190Z RUNNER_TEST_RESULTS_DIR: /Users/ec2-user/runner/_work/_temp/test-results 2024-08-22T20:42:01.4539520Z ##[endgroup] 2024-08-22T20:42:01.4559400Z ##[group]Run echo "Print the available disk space for manual inspection" 2024-08-22T20:42:01.4560230Z echo "Print the available disk space for manual inspection" 2024-08-22T20:42:01.4560570Z df -h 2024-08-22T20:42:01.4560730Z  2024-08-22T20:42:01.4560910Z function check_disk_space() { 2024-08-22T20:42:01.4561140Z  set +e 2024-08-22T20:42:01.4561310Z  2024-08-22T20:42:01.4561520Z  # Set the minimum requirement space to 6GB 2024-08-22T20:42:01.4561960Z  MINIMUM_AVAILABLE_SPACE_IN_KB=$(($MINIMUM_AVAILABLE_SPACE_IN_GB * 1024 * 1024)) 2024-08-22T20:42:01.4562340Z  2024-08-22T20:42:01.4562580Z  # Use KB to avoid floating point warning like 3.1GB 2024-08-22T20:42:01.4562990Z  df -k | tr -s ' ' | cut -d' ' -f 4,9 | while read -r LINE; 2024-08-22T20:42:01.4563300Z  do 2024-08-22T20:42:01.4563510Z  AVAIL=$(echo $LINE | cut -f1 -d' ') 2024-08-22T20:42:01.4563810Z  MOUNT=$(echo $LINE | cut -f2 -d' ') 2024-08-22T20:42:01.4564060Z  2024-08-22T20:42:01.4564240Z  if [ "${MOUNT}" = "/" ]; then 2024-08-22T20:42:01.4564590Z  if [ "${AVAIL}" -lt "${MINIMUM_AVAILABLE_SPACE_IN_KB}" ]; then 2024-08-22T20:42:01.4565380Z  echo "Failure: There is only ${AVAIL}KB free space left in ${MOUNT}, which is less than the minimum requirement of ${MINIMUM_AVAILABLE_SPACE_IN_KB}KB for ${RUNNER_OS}" 2024-08-22T20:42:01.4566050Z  else 2024-08-22T20:42:01.4566420Z  echo "Success: There is ${AVAIL}KB free space left in ${MOUNT} for ${RUNNER_OS}, continue" 2024-08-22T20:42:01.4566850Z  fi 2024-08-22T20:42:01.4567100Z  fi 2024-08-22T20:42:01.4567260Z  done 2024-08-22T20:42:01.4567420Z  2024-08-22T20:42:01.4567570Z  set -e 2024-08-22T20:42:01.4567730Z } 2024-08-22T20:42:01.4567910Z  2024-08-22T20:42:01.4568080Z RESULT=$(check_disk_space) 2024-08-22T20:42:01.4568330Z echo "${RESULT}" 2024-08-22T20:42:01.4568550Z  2024-08-22T20:42:01.4568810Z if [[ "${RESULT}" == *Failure* && "${RUNNER_OS}" == "macOS" ]]; then 2024-08-22T20:42:01.4569520Z  # We can clean up /System/Library/Caches/com.apple.coresymbolicationd on MacOS to free up the space and this should free up enough space 2024-08-22T20:42:01.4570190Z  # https://github.com/pytorch/pytorch/issues/85440 2024-08-22T20:42:01.4570660Z  sudo rm "/System/Library/Caches/com.apple.coresymbolicationd/data" || true 2024-08-22T20:42:01.4571370Z  # Stop the daemon and launchctl will automatically start it again, thus accomplish a restart and free up the above file 2024-08-22T20:42:01.4572020Z  sudo launchctl stop com.apple.coresymbolicationd || true 2024-08-22T20:42:01.4572350Z  2024-08-22T20:42:01.4572550Z  # Clean up crash reports on the runner 2024-08-22T20:42:01.4572990Z  sudo rm -rf "/System/Volumes/Data/Library/Logs/CrashReporter" || true 2024-08-22T20:42:01.4573370Z  2024-08-22T20:42:01.4573610Z  # Also try to clean up torch.hub caching directory 2024-08-22T20:42:01.4573970Z  rm -rf "${HOME}/.cache/torch/hub" || true 2024-08-22T20:42:01.4574230Z  2024-08-22T20:42:01.4574390Z  # Purge conda 2024-08-22T20:42:01.4574600Z  conda clean -p -t -y || true 2024-08-22T20:42:01.4574850Z  # and pip cache 2024-08-22T20:42:01.4575070Z  pip cache purge || true 2024-08-22T20:42:01.4575290Z  2024-08-22T20:42:01.4575570Z  echo "Re-run disk space check for ${RUNNER_OS} after cleaning up" 2024-08-22T20:42:01.4575940Z  # Re-run the check 2024-08-22T20:42:01.4576160Z  RESULT=$(check_disk_space) 2024-08-22T20:42:01.4576400Z  echo "${RESULT}" 2024-08-22T20:42:01.4576590Z fi 2024-08-22T20:42:01.4576740Z  2024-08-22T20:42:01.4576930Z if [[ "${RESULT}" == *Failure* ]]; then 2024-08-22T20:42:01.4577300Z  df -h 2024-08-22T20:42:01.4577460Z  2024-08-22T20:42:01.4578040Z  echo "Please help create an issue to PyTorch Release Engineering via https://github.com/pytorch/test-infra/issues and provide the link to the workflow run." 2024-08-22T20:42:01.4578690Z  exit 1 2024-08-22T20:42:01.4578850Z fi 2024-08-22T20:42:01.4791880Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2024-08-22T20:42:01.4801280Z env: 2024-08-22T20:42:01.4801470Z REPOSITORY: pytorch/torchchat 2024-08-22T20:42:01.4808310Z SCRIPT: set -x # NS/MC: Remove previous installation of torch and torchao first # as this script does not install anything into conda env but rather as system dep pip3 uninstall -y torch || true set -eou pipefail pip3 uninstall -y torchao || true set -eou pipefail echo "::group::Print machine info" uname -a sysctl machdep.cpu.brand_string sysctl machdep.cpu.core_count echo "::endgroup::" echo "::group::Install requirements" # Install requirements ./install_requirements.sh ls -la pwd 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 curl -fsSL -O https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.pt curl -fsSL -O 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 python3 torchchat.py generate --device mps --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** embedding" echo "************************************************************" python3 torchchat.py generate --device mps --quant '{"embedding" : {"bitwidth": 8, "groupsize": 0}}' --checkpoint-path ${MODEL_PATH} --temperature 0 python3 torchchat.py generate --device mps --quant '{"embedding" : {"bitwidth": 8, "groupsize": 8}}' --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** linear int8" echo "************************************************************" python3 torchchat.py generate --device mps --quant '{"linear:int8" : {"bitwidth": 8, "groupsize": 0}}' --checkpoint-path ${MODEL_PATH} --temperature 0 python3 torchchat.py generate --device mps --quant '{"linear:int8" : {"bitwidth": 8, "groupsize": 8}}' --checkpoint-path ${MODEL_PATH} --temperature 0 echo "************************************************************" echo "*** linear int4" echo "************************************************************" PYTORCH_ENABLE_MPS_FALLBACK=1 python3 torchchat.py generate --device mps --quant '{"linear:int4" : {"groupsize": 32}}' --checkpoint-path ${MODEL_PATH} --temperature 0 2024-08-22T20:42:01.4815680Z PATH: /Users/ec2-user/runner/_work/_temp/miniconda/bin:/opt/homebrew/Caskroom/miniconda/base/bin:/opt/homebrew/Caskroom/miniconda/base/condabin:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/bin:/bin:/usr/sbin:/sbin 2024-08-22T20:42:01.4816660Z CONDA_EXE: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2024-08-22T20:42:01.4817110Z CONDA_ENV: /Users/ec2-user/runner/_work/_temp/conda_environment_10515112133 2024-08-22T20:42:01.4817600Z CONDA_PREFIX: /Users/ec2-user/runner/_work/_temp/conda_environment_10515112133 2024-08-22T20:42:01.4818370Z CONDA_RUN: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda run -p /Users/ec2-user/runner/_work/_temp/conda_environment_10515112133 --no-capture-output 2024-08-22T20:42:01.4819390Z CONDA_INSTALL: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda install --yes --quiet -p /Users/ec2-user/runner/_work/_temp/conda_environment_10515112133 2024-08-22T20:42:01.4820110Z RUNNER_ARTIFACT_DIR: /Users/ec2-user/runner/_work/_temp/artifacts 2024-08-22T20:42:01.4820540Z RUNNER_TEST_RESULTS_DIR: /Users/ec2-user/runner/_work/_temp/test-results 2024-08-22T20:42:01.4821080Z MINIMUM_AVAILABLE_SPACE_IN_GB: 6 2024-08-22T20:42:01.4821310Z ##[endgroup] 2024-08-22T20:42:01.5207320Z Print the available disk space for manual inspection 2024-08-22T20:42:01.5223920Z Filesystem Size Used Avail Capacity iused ifree %iused Mounted on 2024-08-22T20:42:01.5224450Z /dev/disk5s2s1 256Gi 9.5Gi 184Gi 5% 404k 1.9G 0% / 2024-08-22T20:42:01.5224920Z devfs 217Ki 217Ki 0Bi 100% 752 0 100% /dev 2024-08-22T20:42:01.5225410Z /dev/disk5s5 256Gi 2.0Gi 184Gi 2% 2 1.9G 0% /System/Volumes/VM 2024-08-22T20:42:01.5226010Z /dev/disk5s3 256Gi 5.7Gi 184Gi 3% 997 1.9G 0% /System/Volumes/Preboot 2024-08-22T20:42:01.5226590Z /dev/disk1s2 500Mi 6.0Mi 387Mi 2% 1 4.0M 0% /System/Volumes/xarts 2024-08-22T20:42:01.5227150Z /dev/disk1s1 500Mi 54Mi 387Mi 13% 53 4.0M 0% /System/Volumes/iSCPreboot 2024-08-22T20:42:01.5227770Z /dev/disk1s3 500Mi 636Ki 387Mi 1% 51 4.0M 0% /System/Volumes/Hardware 2024-08-22T20:42:01.5228320Z /dev/disk5s1 256Gi 53Gi 184Gi 23% 4.2M 1.9G 0% /System/Volumes/Data 2024-08-22T20:42:01.5229170Z /dev/disk3s4 228Gi 108Ki 212Gi 1% 17 2.2G 0% /private/tmp/tmp-mount-56iMnP 2024-08-22T20:42:01.5229840Z map auto_home 0Bi 0Bi 0Bi 100% 0 0 - /System/Volumes/Data/home 2024-08-22T20:42:01.5610680Z Success: There is 193242536KB free space left in / for macOS, continue 2024-08-22T20:42:01.5668490Z Post job cleanup. 2024-08-22T20:42:01.6481250Z [command]/usr/bin/git version 2024-08-22T20:42:01.6546980Z git version 2.39.3 (Apple Git-146) 2024-08-22T20:42:01.6569640Z Temporarily overriding HOME='/Users/ec2-user/runner/_work/_temp/aa366563-202f-42c9-a505-3986d63abc49' before making global git config changes 2024-08-22T20:42:01.6570450Z Adding repository directory to the temporary git global config as a safe directory 2024-08-22T20:42:01.6572440Z [command]/usr/bin/git config --global --add safe.directory /Users/ec2-user/runner/_work/torchchat/torchchat/pytorch/torchchat 2024-08-22T20:42:01.6636290Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2024-08-22T20:42:01.6695730Z [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:42:01.7190530Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2024-08-22T20:42:01.7238930Z http.https://github.com/.extraheader 2024-08-22T20:42:01.7246100Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader 2024-08-22T20:42:01.7304880Z [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:42:01.7914310Z Post job cleanup. 2024-08-22T20:42:01.9375550Z Post job cleanup. 2024-08-22T20:42:02.0372310Z Cache hit occurred on the primary key miniconda-env-macOS-ARM64-3.9-20240822d--, not saving cache. 2024-08-22T20:42:02.0434320Z Post job cleanup. 2024-08-22T20:42:02.1425970Z Cache hit occurred on the primary key miniconda-macOS-ARM64-3.9-20240822d, not saving cache. 2024-08-22T20:42:02.1494060Z Post job cleanup. 2024-08-22T20:42:02.2300210Z [command]/usr/bin/git version 2024-08-22T20:42:02.2366220Z git version 2.39.3 (Apple Git-146) 2024-08-22T20:42:02.2392420Z Temporarily overriding HOME='/Users/ec2-user/runner/_work/_temp/4e42e6e6-9cae-40e4-9d74-3e4496cf3cd1' before making global git config changes 2024-08-22T20:42:02.2393280Z Adding repository directory to the temporary git global config as a safe directory 2024-08-22T20:42:02.2394110Z [command]/usr/bin/git config --global --add safe.directory /Users/ec2-user/runner/_work/torchchat/torchchat/test-infra 2024-08-22T20:42:02.2454950Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2024-08-22T20:42:02.2512330Z [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:42:02.2990400Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2024-08-22T20:42:02.3043710Z http.https://github.com/.extraheader 2024-08-22T20:42:02.3050820Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader 2024-08-22T20:42:02.3113440Z [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:42:02.3650050Z A job completed hook has been configured by the self-hosted runner administrator 2024-08-22T20:42:02.3677140Z ##[group]Run '/opt/runner_scripts/post-job.sh' 2024-08-22T20:42:02.3691470Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2024-08-22T20:42:02.3691760Z ##[endgroup] 2024-08-22T20:42:02.4111450Z + df -h 2024-08-22T20:42:02.4118830Z + Checking if runner needs to be terminated...ok 2024-08-22T20:42:02.4119190Z + Outputting disk space 2024-08-22T20:42:02.4123690Z Filesystem Size Used Avail Capacity iused ifree %iused Mounted on 2024-08-22T20:42:02.4124270Z /dev/disk5s2s1 256Gi 9.5Gi 184Gi 5% 404k 1.9G 0% / 2024-08-22T20:42:02.4124750Z devfs 217Ki 217Ki 0Bi 100% 752 0 100% /dev 2024-08-22T20:42:02.4125390Z /dev/disk5s5 256Gi 2.0Gi 184Gi 2% 2 1.9G 0% /System/Volumes/VM 2024-08-22T20:42:02.4126010Z /dev/disk5s3 256Gi 5.7Gi 184Gi 3% 997 1.9G 0% /System/Volumes/Preboot 2024-08-22T20:42:02.4126590Z /dev/disk1s2 500Mi 6.0Mi 387Mi 2% 1 4.0M 0% /System/Volumes/xarts 2024-08-22T20:42:02.4127180Z /dev/disk1s1 500Mi 54Mi 387Mi 13% 53 4.0M 0% /System/Volumes/iSCPreboot 2024-08-22T20:42:02.4127770Z /dev/disk1s3 500Mi 636Ki 387Mi 1% 51 4.0M 0% /System/Volumes/Hardware 2024-08-22T20:42:02.4128370Z /dev/disk5s1 256Gi 53Gi 184Gi 23% 4.2M 1.9G 0% /System/Volumes/Data 2024-08-22T20:42:02.4129100Z /dev/disk3s4 228Gi 108Ki 212Gi 1% 17 2.2G 0% /private/tmp/tmp-mount-56iMnP 2024-08-22T20:42:02.4129740Z map auto_home 0Bi 0Bi 0Bi 100% 0 0 - /System/Volumes/Data/home 2024-08-22T20:42:02.4130200Z + Cleaning up old logs (Keep the latest 100) 2024-08-22T20:42:02.4134230Z + ls -t /var/log/post_job 2024-08-22T20:42:02.4134580Z + awk 'NR>100' 2024-08-22T20:42:02.4135020Z + xargs rm -fv 2024-08-22T20:42:02.4201260Z + Restoring SSH key to be the skeleton key 2024-08-22T20:42:02.4342590Z Cleaning up orphan processes