Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GitHub Issue NOAA-EMC/GSI#413. Correct incorrect variables in LUA modulefiles. #414

Conversation

MichaelLueken
Copy link
Contributor

  • gsi_hera.gnu.lua - replaced:
local hpc_intel_ver=os.getenv("hpc_gnu_ver") or "9.2.0"
local impi_ver=os.getenv("hpc_mpich_ver") or "3.3.2"

with:

local hpc_gnu_ver=os.getenv("hpc_gnu_ver") or "9.2.0"
local hpc_mpich_ver=os.getenv("hpc_mpich_ver") or "3.3.2"
  • gsi_hera.intel.lua - replaced:

local impi_ver=os.getenv("hpc_impi_ver") or "2018.0.4"
with:
local hpc_impi_ver=os.getenv("hpc_impi_ver") or "2018.0.4"

  • gsi_orion.lua - replaced:

local impi_ver=os.getenv("hpc_impi_ver") or "2018.4"
with:
local hpc_impi_ver=os.getenv("hpc_impi_ver") or "2018.4"

  • gsi_s4.lua - replaced:

local impi_ver=os.getenv("hpc_impi_ver") or "18.0.4"
with:
local hpc_impi_ver=os.getenv("hpc_impi_ver") or "18.0.4"

  • gsi_wcoss_dell_p3.lua - replaced:
local hpc_intel_ver=os.getenv("hpc_ips_ver") or "18.0.1.163"
local impi_ver=os.getenv("hpc_impi_ver") or "18.0.1"

with:

local hpc_ips_ver=os.getenv("hpc_ips_ver") or "18.0.1.163"
local hpc_impi_ver=os.getenv("hpc_impi_ver") or "18.0.1"

Fixes #413

Copy link
Contributor

@aerorahul aerorahul left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for a thorough review and update at the modulefiles.
I certainly copy/pasted from one that was checked.

@MichaelLueken
Copy link
Contributor Author

These changes have been tested on WCOSS and Hera and were approved. I will now merge this work to the authoritative develop branch.

@MichaelLueken MichaelLueken merged commit dd1bac5 into NOAA-EMC:develop Jun 21, 2022
@MichaelLueken MichaelLueken deleted the feature/correct-hera-gnu-modulefile branch August 31, 2022 15:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Most LUA-format modulefiles have incorrect variables (compiler and MPI).
2 participants