Skip to content

Commit 4a1bd7c

Browse files
authored
feat: support intel 2025.2.1 (#154)
linux and windows only
1 parent 4429cbb commit 4a1bd7c

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

.github/compat/matrix.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ toolchain:
99
- {compiler: gcc, version: 14}
1010
- {compiler: gcc, version: 13}
1111
- {compiler: gcc, version: 12}
12+
- {compiler: intel, version: '2025.2'}
1213
- {compiler: intel, version: '2025.0'}
1314
- {compiler: intel, version: '2024.1'}
1415
- {compiler: intel, version: '2024.0'}

setup-fortran.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,9 @@ intel_version_map_l()
267267
2025.0 | 2025.0.1)
268268
version=2025.0
269269
;;
270+
2025.2 | 2025.2.1)
271+
version=2025.2
272+
;;
270273
2021.1)
271274
version=2021.1.1
272275
;;
@@ -344,6 +347,9 @@ intel_version_map_w()
344347
esac
345348
else
346349
case $actual_version in
350+
2025.2 | 2025.2.1)
351+
version=2025.2.1
352+
;;
347353
2025.0 | 2025.0.1)
348354
version=2025.0.1
349355
;;
@@ -485,6 +491,10 @@ install_intel_win()
485491
intel_version_map_w $version $classic
486492

487493
case $version in
494+
2025.2.1)
495+
WINDOWS_HPCKIT_URL=https://registrationcenter-download.intel.com/akdlm/IRC_NAS/e63ac2b4-8a9a-4768-979a-399a8b6299de/intel-oneapi-hpc-toolkit-2025.2.1.46_offline.exe
496+
WINDOWS_HPCKIT_COMPONENTS=intel.oneapi.win.ifort-compiler:intel.oneapi.win.cpp-dpcpp-common
497+
;;
488498
2025.0.1)
489499
WINDOWS_HPCKIT_URL=https://registrationcenter-download.intel.com/akdlm/IRC_NAS/a37c30c3-a846-4371-a85d-603e9a9eb94c/intel-oneapi-hpc-toolkit-2025.0.1.48_offline.exe
490500
WINDOWS_HPCKIT_COMPONENTS=intel.oneapi.win.ifort-compiler:intel.oneapi.win.cpp-dpcpp-common

0 commit comments

Comments
 (0)