Open janahaddad opened 5 months ago
I am trying 4 tests:
icc
"remarks" that you've surely seen. I can copy here if useful, about ICC being deprecated and recommendation to move to ICX sorc/ufs-weather-model/ufs_model
directory/file present, but it still somehow prints the "Moving executables to final locations ...\n" line. # ww3 test
elif [ "${APPLICATION}" == "CSTLW" ]; then
CMAKE_SETTINGS="${CMAKE_SETTINGS} -DPDLIB=ON"
fi
./build.sh --app=CSTLW --compiler=intel --build-dir=$PWD/build --install-dir=$PWD/install --platform=hercules
/build/bin
present @uturuncoglu I'll keep working on this and add my findings here. Next step will be to test your UWtools installation and workflow steps from the slides.
Ok I see now, it's just moving everything to /install/bin/ including ufs_model.exe and schism tools. It's throwing error at L264 because there's no build/bin in this case.
Will test on Hera next and then try your UWtools workflow. Is there a reason not to add the CTSLW option at this point @uturuncoglu ?
./build.sh --app=CSTLS --compiler=intel --build-dir=$PWD/build --install-dir=$PWD/install --platform=hera
build.sh
:
# ww3 test
elif [ "${APPLICATION}" == "CSTLW" ]; then
CMAKE_SETTINGS="${CMAKE_SETTINGS} -DPDLIB=ON"
./build.sh --app=CSTLW --compiler=intel --build-dir=$PWD/build --install-dir=$PWD/install --platform=hera
$ cd /work/noaa/nosofs/janahadd/ufs-coastal-app-20240920-cstls/sorc/uwtools
# create conda environment:
$ module load miniconda3/24.3.0
$ conda create --prefix ../python/envs/uw-env
$ conda activate ../python/envs/uw-env
/work/noaa/nosofs/janahadd/ufs-coastal-app-20240920-cstls/sorc/python/envs/uw-env
. # install conda build and verify tools
$ conda install -c conda-forge --override-channels conda-build conda-verify
# build and install uwtools
$ conda build recipe -c conda-forge --override-channels
$ conda install -c ../../python/envs/uw-env/conda-bld uwtools
All steps until final step seem to be fine. At final step conda install -c ../../python/envs/mybase/conda-bld uwtools
failed with error: UnavailableInvalidChannel: HTTP 404 UNAVAILABLE OR INVALID for channel conda-bld
.
Solved: path is just slightly wrong on the slide, should be ../python/envs/mybase/conda-bld uwtools
conda install -c ../python/envs/mybase/conda-bld uwtools
Originally posted by @uturuncoglu in #71