mirror of
https://github.com/nwchemgit/nwchem.git
synced 2026-07-29 06:35:39 -04:00
fix for non deterministic output [ci skip]
This commit is contained in:
parent
7a252634e4
commit
d93ddd0f57
1 changed files with 7 additions and 0 deletions
|
|
@ -431,6 +431,13 @@ sync
|
|||
set overall_status = 1
|
||||
continue
|
||||
fi
|
||||
#check if output is from EOMCCSD, since EOMCCSD output is non-deterministic
|
||||
if [[ `grep -c EOMCCSD ${STUB}.out.nwparse` > 0 ]] ; then
|
||||
rm -f sort.new
|
||||
sort -n ${STUB}.ok.out.nwparse > sort.new && mv sort.new ${STUB}.ok.out.nwparse
|
||||
rm -f sort.new
|
||||
sort -n ${STUB}.out.nwparse > sort.new && mv sort.new ${STUB}.out.nwparse
|
||||
fi
|
||||
|
||||
diff -w ${STUB}.ok.out.nwparse ${STUB}.out.nwparse >& /dev/null
|
||||
diff1status=$?
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue