Skip to content

Commit

Permalink
new default backend command for Molpro on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
pjknowles committed Feb 15, 2024
1 parent 13fdb14 commit e6de803
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/sjef/sjef-customization.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,8 @@ void sjef::Project::custom_run_preface() {
sjef::Backend sjef::Project::default_backend() {
if (m_project_suffix == "molpro") {
#ifdef WIN32
auto command = std::string{"'C:/Program Files/Molpro/bin/program_molpro'"};
// auto command = std::string{"'C:/Program Files/Molpro/bin/program_molpro'"};
auto command = std::string{"mpiexec {-n %n:1!MPI size} {-M %M!Total memory} {-m %m!Process memory} {-G %G!GA memory} program_molpro"};
#else
auto command = std::string{"molpro"};
#endif
Expand Down

0 comments on commit e6de803

Please sign in to comment.