File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -879,7 +879,7 @@ def submit(self):
879879 outfile = os .path .join (self .temp_dir , self .geom .basename + ".out" )
880880 logfile = os .path .join (self .temp_dir , self .geom .basename + ".log" )
881881
882- s = "mpirun -n {} nwchem {} > {} 2> {}" .format (
882+ s = "mpirun --bind-to none - n {} nwchem {} > {} 2> {}" .format (
883883 self ._processes , infile , outfile , logfile
884884 )
885885
@@ -908,7 +908,9 @@ def finish(self):
908908 outfiles = sorted ([x for x in outfiles if not x .endswith (".xyz" )])
909909
910910 if os .path .join (self .temp_dir , "cosmo.xyz" ) in geomfiles :
911- geomfiles = [i for i in geomfiles if i != os .path .join (self .temp_dir , "cosmo.xyz" )]
911+ geomfiles = [
912+ i for i in geomfiles if i != os .path .join (self .temp_dir , "cosmo.xyz" )
913+ ]
912914 cosmo = True
913915
914916 # Enumerate geometry files
You can’t perform that action at this time.
0 commit comments