From 422bacc3edcfd503e716600e970c5d4b1e1fe272 Mon Sep 17 00:00:00 2001 From: Thomas Viehmann Date: Mon, 22 Jul 2024 15:52:40 +0200 Subject: [PATCH 1/3] bump pytorch min ver to 2.3 --- requirements/base.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/base.txt b/requirements/base.txt index 1035d1938c..03dc3262fa 100644 --- a/requirements/base.txt +++ b/requirements/base.txt @@ -1,4 +1,4 @@ -torch >=2.2.0 +torch >=2.3.0 looseversion ==1.3.0 lightning-utilities >=0.7.0 numpy >=1.23.0,<2 # not yet ready for numpy 2 From 33ee4c8698a4d4ca634be9d7a4eb7efdbdffb16c Mon Sep 17 00:00:00 2001 From: Thomas Viehmann Date: Mon, 22 Jul 2024 16:02:55 +0200 Subject: [PATCH 2/3] also bump litgpt --- requirements/test.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/test.txt b/requirements/test.txt index dfe64916a3..71f9490a4d 100644 --- a/requirements/test.txt +++ b/requirements/test.txt @@ -12,7 +12,7 @@ expecttest ==0.2.1 # for test_ddp.py hypothesis ==6.104.2 # for test_ddp.py numpy >=1.23.0,<2 # for test_ops.py; not yet ready for numpy 2 einops # for test_einops.py -litgpt==0.3.1 # for the model definition in tests and benchmarks +litgpt==0.4.5 # for the model definition in tests and benchmarks absl-py # thunder/benchmarks/test_benchmark_litgpt.py pandas # thunder/benchmarks/test_benchmark_litgpt.py xlsxwriter # thunder/benchmarks/test_benchmark_litgpt.py From 24ba8892ea0662f1d1c5ef86af39a0234ae107f1 Mon Sep 17 00:00:00 2001 From: Thomas Viehmann Date: Mon, 22 Jul 2024 16:29:11 +0200 Subject: [PATCH 3/3] switch to macOS-14 --- .github/workflows/ci-testing.yml | 2 +- requirements/test.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-testing.yml b/.github/workflows/ci-testing.yml index 90fb669144..81929293ef 100644 --- a/.github/workflows/ci-testing.yml +++ b/.github/workflows/ci-testing.yml @@ -26,7 +26,7 @@ jobs: strategy: fail-fast: false matrix: - os: ["ubuntu-22.04", "macOS-12", "windows-2022"] + os: ["ubuntu-22.04", "macOS-14", "windows-2022"] python-version: ["3.10"] requires: ["latest", "nightly"] # , 'oldest' include: diff --git a/requirements/test.txt b/requirements/test.txt index 71f9490a4d..dfe64916a3 100644 --- a/requirements/test.txt +++ b/requirements/test.txt @@ -12,7 +12,7 @@ expecttest ==0.2.1 # for test_ddp.py hypothesis ==6.104.2 # for test_ddp.py numpy >=1.23.0,<2 # for test_ops.py; not yet ready for numpy 2 einops # for test_einops.py -litgpt==0.4.5 # for the model definition in tests and benchmarks +litgpt==0.3.1 # for the model definition in tests and benchmarks absl-py # thunder/benchmarks/test_benchmark_litgpt.py pandas # thunder/benchmarks/test_benchmark_litgpt.py xlsxwriter # thunder/benchmarks/test_benchmark_litgpt.py