Skip to content

Commit 2c6cfbd

Browse files
committed
Small fixes.
1 parent a9f3922 commit 2c6cfbd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

PySCF.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@ def set_options(self, d):
5555
"Make sure all of 'ncore','nelec','ncas','tol','method' are set."
5656
#-----------------------------------------------
5757
def is_consistent(self,other):
58-
skipkeys = ['completed','chkfile']
58+
# dm_generator currently gets printed differently because of the dictionaries.
59+
skipkeys = ['completed','chkfile','dm_generator']
5960
for otherkey in other.__dict__.keys():
6061
if otherkey not in self.__dict__.keys():
6162
print('other is missing a key.')

QWalkRunner.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ def run(self,qwinps,qwouts,jobname=None):
134134
"#PBS -o %s \n"%jobout +\
135135
self.prefix+"\n" +\
136136
"cd ${PBS_O_WORKDIR}\n" +\
137-
"module load openmpi/1.4-gcc+ifort" +\
137+
"module load openmpi/1.4-gcc+ifort\n" +\
138138
"mpirun -np %i %s %s > %s \n"%(np_tot,self.exe,qwinp,qwinp+'.out') +\
139139
self.postfix
140140
qsubfile=qwinp+".qsub"

submitter.py

-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ def check_PBS_stati(queueid):
6464
).decode()
6565
except sub.CalledProcessError:
6666
return "unknown"
67-
print(qstat)
6867
qstat=qstat.split('\n')
6968
for qid in queueid:
7069
for line in qstat:

0 commit comments

Comments
 (0)