Skip to content

Commit

Permalink
Setup: bump torch version for LLM tests (#1154)
Browse files Browse the repository at this point in the history
  • Loading branch information
Giuseppe5 authored Jan 14, 2025
1 parent c44566d commit 0f3877f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/examples_llm_pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

matrix:
python_version: ['3.9', '3.10']
pytorch_version: ['2.2.2', '2.3.1', '2.4.0']
pytorch_version: ['2.2.2', '2.3.1', '2.4.1']
platform: ['windows-latest', 'ubuntu-latest', 'macos-latest']
jit_status: ['jit_disabled', 'jit_enabled']

Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/gen_github_actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
'2.1.0': '0.16.0',
'2.2.2': '0.17.2',
'2.3.1': '0.18.1',
'2.4.0': '0.19.0'}
'2.4.0': '0.19.0',
'2.4.1': '0.19.1'}

BASE_YML_TEMPLATE = 'base.yml.template'
BASE_YML_REDUCED_TEMPLATE = 'base_reduced.yml.template'
Expand All @@ -38,7 +39,7 @@

EXAMPLES_LLM_PYTEST_MATRIX_REDUCED = od([('python_version', list(PYTHON_VERSIONS_REDUCED)),
('pytorch_version', list(
('2.4.0',))), ('platform', PLATFORM_LIST_REDUCED)])
('2.4.1',))), ('platform', PLATFORM_LIST_REDUCED)])

FINN_MATRIX_REDUCED = od([('python_version', list(PYTHON_VERSIONS_REDUCED)),
('pytorch_version', list(PYTORCH_LIST_REDUCED)),
Expand Down Expand Up @@ -72,7 +73,7 @@
MATRIX = od([('python_version', list(PYTHON_VERSIONS)), ('pytorch_version', list(PYTORCH_VERSIONS)),
('platform', PLATFORM_LIST)])

EXAMPLES_LLM_PYTEST_PYTORCH_VERSIONS = ('2.2.2', '2.3.1', '2.4.0')
EXAMPLES_LLM_PYTEST_PYTORCH_VERSIONS = ('2.2.2', '2.3.1', '2.4.1')
EXAMPLES_LLM_PYTEST_MATRIX = od([('python_version', list(PYTHON_VERSIONS)),
('pytorch_version', list(EXAMPLES_LLM_PYTEST_PYTORCH_VERSIONS)),
('platform', PLATFORM_LIST)])
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reduced_examples_llm_pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

matrix:
python_version: ['3.9']
pytorch_version: ['2.4.0']
pytorch_version: ['2.4.1']
platform: ['ubuntu-latest']
jit_status: ['jit_disabled']

Expand Down

0 comments on commit 0f3877f

Please sign in to comment.