-
Notifications
You must be signed in to change notification settings - Fork 203
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4135 from boegel/oneapi_auto_enable
auto-enable use of oneAPI C/C++ compilers for intel-compilers >= 2022.2.0
- Loading branch information
Showing
4 changed files
with
135 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
#%Module | ||
proc ModulesHelp { } { | ||
puts stderr { | ||
|
||
Description | ||
=========== | ||
Intel C, C++ & Fortran compilers (classic and oneAPI) | ||
|
||
|
||
More information | ||
================ | ||
- Homepage: https://software.intel.com/content/www/us/en/develop/tools/oneapi/hpc-toolkit.html | ||
} | ||
} | ||
|
||
module-whatis {Description: Intel C, C++ & Fortran compilers (classic and oneAPI)} | ||
module-whatis {Homepage: https://software.intel.com/content/www/us/en/develop/tools/oneapi/hpc-toolkit.html} | ||
module-whatis {URL: https://software.intel.com/content/www/us/en/develop/tools/oneapi/hpc-toolkit.html} | ||
|
||
set root /tmp/intel-compilers/2022.2.0 | ||
|
||
conflict intel-compilers | ||
|
||
prepend-path CPATH $root/tbb/2022.2.0/include | ||
prepend-path LD_LIBRARY_PATH $root/compiler/2022.2.0/linux/lib | ||
prepend-path LD_LIBRARY_PATH $root/compiler/2022.2.0/linux/lib/x64 | ||
prepend-path LD_LIBRARY_PATH $root/compiler/2022.2.0/linux/compiler/lib/intel64_lin | ||
prepend-path LD_LIBRARY_PATH $root/tbb/2022.2.0/lib/intel64/gcc4.8 | ||
prepend-path LIBRARY_PATH $root/compiler/2022.2.0/linux/lib | ||
prepend-path LIBRARY_PATH $root/compiler/2022.2.0/linux/lib/x64 | ||
prepend-path LIBRARY_PATH $root/compiler/2022.2.0/linux/compiler/lib/intel64_lin | ||
prepend-path LIBRARY_PATH $root/tbb/2022.2.0/lib/intel64/gcc4.8 | ||
prepend-path OCL_ICD_FILENAMES $root/compiler/2022.2.0/linux/lib/x64/libintelocl.so | ||
prepend-path PATH $root/compiler/2022.2.0/linux/bin | ||
prepend-path PATH $root/compiler/2022.2.0/linux/bin/intel64 | ||
prepend-path TBBROOT $root/tbb/2022.2.0 | ||
setenv EBROOTINTELMINCOMPILERS "$root" | ||
setenv EBVERSIONINTELMINCOMPILERS "2022.2.0" | ||
setenv EBDEVELINTELMINCOMPILERS "$root/easybuild/Core-intel-compilers-2022.2.0-easybuild-devel" | ||
|
||
# Built with EasyBuild version 4.5.0dev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters