From 6d457388d088393b27f4dbd96a1a6d4d622a15f1 Mon Sep 17 00:00:00 2001 From: Weiyuan Jiang Date: Tue, 11 Mar 2025 08:33:52 -0400 Subject: [PATCH] remove SLES12 from readme --- README.md | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0f31d7e7..78c9e28c 100644 --- a/README.md +++ b/README.md @@ -18,12 +18,11 @@ module use -a (path) module load GEOSenv ``` -where `(path)` depends on the computing system; at NCCS, `(path)` also depends on the operating system (SLES12 on Skylake and Cascade Lake nodes; SLES15 on Milan nodes, as of Jan. 2024): +where `(path)` depends on the computing system: | System | Path | | ------------- |---------------------------------------------------| -| NCCS Discover | `/discover/swdev/gmao_SIteam/modulefiles-SLES12` | -| | `/discover/swdev/gmao_SIteam/modulefiles-SLES15` | +| NCCS Discover | `/discover/swdev/gmao_SIteam/modulefiles-SLES15` | | NAS | `/nobackup/gmao_SIteam/modulefiles` | | GMAO desktops | `/ford1/share/gmao_SIteam/modulefiles` | @@ -46,15 +45,13 @@ git clone -b v17.9.1 --single-branch git@github.com:GEOS-ESM/GEOSldas.git To build the model in a single step, do the following from a head node: ``` cd ./GEOSldas -parallel_build.csh +./parallel_build.csh -mil ``` This checks out all the external repositories of the model (albeit only on the first run, [see subsection on mepo below](#mepo)!) and then builds and installs the model. -At **NCCS**, the default is to build GEOSldas on SLES12 (Skylake or Cascade Lake nodes); to build GEOSldas on SLES15 (Milan nodes), use `parallel_build.csh -mil`. +The resulting model build is found in `build-SLES15/`, and the installation is found in `install-SLES15/`, with setup scripts like `ldas_setup` in `install-SLES15/bin`. -The resulting model build is found in `build[-SLESxx]/`, and the installation is found in `install[-SLESxx]/`, with setup scripts like `ldas_setup` in `install[-SLESxx]/bin`. - -To obtain a build that is suitable for debugging, use `parallel_build.csh -debug`, which builds in `build-Debug[-SLESxx]/` and installs in `install-Debug[-SLESxx]/`. There is also an option for aggressive optimization. For details, see the [GEOSldas Wiki](https://github.com/GEOS-ESM/GEOSldas/wiki). +To obtain a build that is suitable for debugging, use `./parallel_build.csh -debug -mil`, which builds in `build-Debug-SLES15/` and installs in `install-Debug-SLES15/`. There is also an option for aggressive optimization. For details, see the [GEOSldas Wiki](https://github.com/GEOS-ESM/GEOSldas/wiki). Instructions for building the model in multiple steps are provided below. @@ -63,12 +60,12 @@ Instructions for building the model in multiple steps are provided below. ## How to Set Up (Configure) and Run GEOSldas -a) At **NCCS**, GEOSldas must be built, configured, and run on the same operating system. To run GEOSldas on Milan nodes (SLES15), start with `ssh discover-mil`. +a) To run GEOSldas on Milan nodes (SLES15), start with `ssh discover-mil`. b) Set up the job as follows: ``` -cd (build_path)/GEOSldas/install[-SLESxx]/bin +cd (build_path)/GEOSldas/install-SLES15/bin source g5_modules [for bash or zsh: source g5_modules.[z]sh] ./ldas_setup setup [-v] (exp_path) ("exe"_input_filename) ("bat"_input_filename) ```