Where can I find the DAT file after a calculation is done?
The steps I have followed are in:
https://www.nvidia.com/en-us/data-center/gpu-accelerated-applications/gamess/
The command line that I am using to do personal calculations is:
docker run -v (pwd):/mnt/workspace -v (pwd)/output:/results -v $(pwd)/scratch/restart:/restart --rm -it nvcr.io/hpc/gamess:17.09-r2-libcchem -c “cd /mnt/workspace && rungms H_mp2_sp.inp”
After the calculation had finished, the only output file ad visible is the LOG file. But not the DAT file. On the opposite situation, when I ran an example with:
nvidia-docker run -v $(pwd):/results --rm nvcr.io/hpc/gamess:17.09-r2-libcchem -c “cd /workspace/examples && rungms cc-h2co.inp”
That DAT file is in the restar folder.
What am I doing wrong?