export LD_LIBRARY_PATH=/glade/u/home/wrfhelp/UNGRIB_LIBRARIES/lib:$LD_LIBRARY_PATH
Thanks! I'm able to run wps based on the derecho pre-compiled code.Hi,
From what directory did you copy the pre-compiled code? The new "derecho"-specific compiled code is in /glade/u/home/wrfhelp/derecho_pre_compiled_code. If that is where you got it from, but you were getting an error with ungrib, can you set the following environment variable. For e.g., if you have a bash environment, set
and then try to re-run ungrib to see if that helps. If it does, you may want to put that in your .bashrc file (or whichever file you use in your home directory).Code:export LD_LIBRARY_PATH=/glade/u/home/wrfhelp/UNGRIB_LIBRARIES/lib:$LD_LIBRARY_PATH
If you're still having issues, can you be specific about what the problem is? Thanks!
Did you mean to show the command you type that gives that error?But now the problem is that when I type the following command, the system reports that No host list provided.
I used the Derecho HPC, and am able to run WPS.Did you mean to show the command you type that gives that error?
I used the Derecho HPC, and am able to run WPS.
But now the problem is that when I type "mpirun -np 4 ./real.exe" to run my case with 4 processors, the system reports that "No host list provided".
I also encountered an error when trying to use PBS script, as follows:
“qsub: Invalid account for CPU usage, available accounts:
Project, Status, Active
XXXXXX, Normal, True“
The PBS script I used is as follows:
#!/bin/csh
### Project name
#PBS -A Proj#XXXXXX
### Job name
#PBS -N geogrid
### Wallclock time
#PBS -l walltime=00:30:00
### Queue
#PBS -q economy
### Merge output and error files
#PBS -j oe
### Select 2 nodes with 36 CPUs, for 72 MPI processes
#PBS -l select=2:ncpus=36:mpiprocs=36
mpiexec_mpt ./geogrid.exe
I want to know what problem caused this?
Is it because I am only a sub-account of the project and do not have permission to call mpirun?