Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/compat/matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ toolchain:
- {compiler: gcc, version: 14}
- {compiler: gcc, version: 13}
- {compiler: gcc, version: 12}
- {compiler: intel, version: '2025.2'}
- {compiler: intel, version: '2025.0'}
- {compiler: intel, version: '2024.1'}
- {compiler: intel, version: '2024.0'}
Expand Down
10 changes: 10 additions & 0 deletions setup-fortran.sh
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,9 @@ intel_version_map_l()
2025.0 | 2025.0.1)
version=2025.0
;;
2025.2 | 2025.2.1)
version=2025.2
;;
2021.1)
version=2021.1.1
;;
Expand Down Expand Up @@ -344,6 +347,9 @@ intel_version_map_w()
esac
else
case $actual_version in
2025.2 | 2025.2.1)
version=2025.2.1
;;
2025.0 | 2025.0.1)
version=2025.0.1
;;
Expand Down Expand Up @@ -485,6 +491,10 @@ install_intel_win()
intel_version_map_w $version $classic

case $version in
2025.2.1)
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
WINDOWS_HPCKIT_COMPONENTS=intel.oneapi.win.ifort-compiler:intel.oneapi.win.cpp-dpcpp-common
;;
2025.0.1)
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
WINDOWS_HPCKIT_COMPONENTS=intel.oneapi.win.ifort-compiler:intel.oneapi.win.cpp-dpcpp-common
Expand Down
Loading