Scheduled Downtime
On Friday 21 April 2023 @ 5pm MT, this website will be down for maintenance and expected to return online the morning of 24 April 2023 at the latest

ungrib compiling error

Just to clarify from my previous post, it's up to you to find a working C pre-processor on your system. Only after you have done this will we be able to assist with the compilation of the ungrib program.
 
So I don't know, I downloaded the compiler available from the Intel site. Too bad, because wrf netcdf, mpi and wrf compile without problems...
 
In your original post, you mentioned that you had just upgraded your system. Were you able to successfully able to install the WPS before the upgrade?
 
Previously, on other PCs + a notebook, I had Linux Fedora 36 and as Intel compiler I downloaded:
Code:
wget https://registrationcenter-download.intel.com/akdlm/irc_nas/17764/l_HPCKit_p_2021.2.0.2997_offline.sh
Then,
Code:
sudo bash l_HPCKit_p_2021.2.0.2997_offline.sh
and followed the instructions.

Changing notebook (always an hp) I installed Linux Fedora 37 SO and as a compiler I followed a different approach now available, namely (once the appropriate repositories were defined):
Code:
dnf install intel-basekit
and then
Code:
dnf install intel-hpckit
Following the instructions given here:
Code:
https://www.intel.com/content/www/us/en/developer/tools/oneapi/hpc-toolkit-download.html
At that point I compiled netcdf, mpi and wrf --> all ok.
Then wps with geogrid and metgrid compiled without problems.
So all good, except ungrib...

PS: in order to use the intel compilers, first you have to run:
Code:
source /opt/intel/oneapi/setvars.sh
and I get the following:
Code:
:: initializing oneAPI environment ...
   bash: BASH_VERSION = 5.2.15(1)-release
   args: Using "$@" for setvars.sh arguments: --force
:: advisor -- latest
:: ccl -- latest
:: clck -- latest
:: compiler -- latest
:: dal -- latest
:: debugger -- latest
:: dev-utilities -- latest
:: dnnl -- latest
:: dpcpp-ct -- latest
:: dpl -- latest
:: inspector -- latest
:: ipp -- latest
:: ippcp -- latest
:: ipp -- latest
:: itac -- latest
:: mkl -- latest
:: mpi -- latest
:: vpl -- latest
:: vtune -- latest
:: oneAPI environment initialized ::
 
Last edited:
Top