Move py 3.8->3.9 pull, trunk, inductor, prerioric CI tests (#133624)

Part of Deprecation of python 3.8 and moving to 3.9. Related to: https://github.com/pytorch/pytorch/issues/120718
Except XPU and ROCM jobs

Pull Request resolved: https://github.com/pytorch/pytorch/pull/133624
Approved by: https://github.com/Skylion007, https://github.com/malfet, https://github.com/ZainRizvi
This commit is contained in:
atalman
2024-08-29 19:15:59 +00:00
committed by PyTorch MergeBot
parent 202e5cc87d
commit 6180574771
14 changed files with 134 additions and 134 deletions

View File

@ -8,10 +8,10 @@ import requests
CONFIGS = {
"dynamo38": {
"linux-focal-py3.8-clang10 / test (dynamo, 1, 3, linux.2xlarge)",
"linux-focal-py3.8-clang10 / test (dynamo, 2, 3, linux.2xlarge)",
"linux-focal-py3.8-clang10 / test (dynamo, 3, 3, linux.2xlarge)",
"dynamo39": {
"linux-focal-py3.9-clang10 / test (dynamo, 1, 3, linux.2xlarge)",
"linux-focal-py3.9-clang10 / test (dynamo, 2, 3, linux.2xlarge)",
"linux-focal-py3.9-clang10 / test (dynamo, 3, 3, linux.2xlarge)",
},
"dynamo311": {
"linux-focal-py3.11-clang10 / test (dynamo, 1, 3, linux.2xlarge)",
@ -26,7 +26,7 @@ CONFIGS = {
}
def download_reports(commit_sha, configs=("dynamo38", "dynamo311", "eager311")):
def download_reports(commit_sha, configs=("dynamo39", "dynamo311", "eager311")):
log_dir = "tmp_test_reports_" + commit_sha
def subdir_path(config):

View File

@ -221,5 +221,5 @@ if __name__ == "__main__":
args = parser.parse_args()
assert Path(args.filename).exists(), args.filename
assert Path(args.test_dir).exists(), args.test_dir
dynamo38, dynamo311 = download_reports(args.commit, ("dynamo38", "dynamo311"))
update(args.filename, args.test_dir, dynamo38, dynamo311, args.also_remove_skips)
dynamo39, dynamo311 = download_reports(args.commit, ("dynamo39", "dynamo311"))
update(args.filename, args.test_dir, dynamo39, dynamo311, args.also_remove_skips)