| 1 | //
|
|---|
| 2 | // mpqc.cc
|
|---|
| 3 | //
|
|---|
| 4 | // Copyright (C) 1996 Limit Point Systems, Inc.
|
|---|
| 5 | //
|
|---|
| 6 | // Author: Edward Seidl <seidl@janed.com>
|
|---|
| 7 | // Maintainer: LPS
|
|---|
| 8 | //
|
|---|
| 9 | // This file is part of MPQC.
|
|---|
| 10 | //
|
|---|
| 11 | // MPQC is free software; you can redistribute it and/or modify
|
|---|
| 12 | // it under the terms of the GNU General Public License as published by
|
|---|
| 13 | // the Free Software Foundation; either version 2, or (at your option)
|
|---|
| 14 | // any later version.
|
|---|
| 15 | //
|
|---|
| 16 | // MPQC is distributed in the hope that it will be useful,
|
|---|
| 17 | // but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|---|
| 18 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|---|
| 19 | // GNU General Public License for more details.
|
|---|
| 20 | //
|
|---|
| 21 | // You should have received a copy of the GNU General Public License
|
|---|
| 22 | // along with the MPQC; see the file COPYING. If not, write to
|
|---|
| 23 | // the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
|---|
| 24 | //
|
|---|
| 25 | // The U.S. Government is granted a limited license as per AL 91-7.
|
|---|
| 26 | //
|
|---|
| 27 |
|
|---|
| 28 | // This is needed to make GNU extensions available, such as
|
|---|
| 29 | // feenableexcept and fedisableexcept.
|
|---|
| 30 | #ifndef _GNU_SOURCE
|
|---|
| 31 | # define _GNU_SOURCE
|
|---|
| 32 | #endif
|
|---|
| 33 |
|
|---|
| 34 | #ifdef HAVE_CONFIG_H
|
|---|
| 35 | #include <scconfig.h>
|
|---|
| 36 | #endif
|
|---|
| 37 |
|
|---|
| 38 | #ifdef HAVE_TIME_H
|
|---|
| 39 | #include <time.h>
|
|---|
| 40 | #endif
|
|---|
| 41 |
|
|---|
| 42 | #include <scdirlist.h>
|
|---|
| 43 |
|
|---|
| 44 | #include <new>
|
|---|
| 45 | #include <stdexcept>
|
|---|
| 46 | #include <string.h>
|
|---|
| 47 | #include <unistd.h>
|
|---|
| 48 | #include <sys/stat.h>
|
|---|
| 49 | #include <fstream>
|
|---|
| 50 |
|
|---|
| 51 | #include <boost/bind.hpp>
|
|---|
| 52 | #include <boost/function.hpp>
|
|---|
| 53 |
|
|---|
| 54 | #include <scconfig.h>
|
|---|
| 55 | #ifdef HAVE_SSTREAM
|
|---|
| 56 | # include <sstream>
|
|---|
| 57 | #else
|
|---|
| 58 | # include <strstream.h>
|
|---|
| 59 | #endif
|
|---|
| 60 |
|
|---|
| 61 | #ifdef HAVE_SYS_RESOURCE_H
|
|---|
| 62 | # include <sys/resource.h>
|
|---|
| 63 | #endif
|
|---|
| 64 | #ifdef HAVE_SYS_TIME_H
|
|---|
| 65 | # include <sys/time.h>
|
|---|
| 66 | #endif
|
|---|
| 67 |
|
|---|
| 68 | #include <util/options/GetLongOpt.h>
|
|---|
| 69 | #include <util/class/scexception.h>
|
|---|
| 70 | #include <util/misc/newstring.h>
|
|---|
| 71 | #include <util/keyval/keyval.h>
|
|---|
| 72 | #include <util/state/state_bin.h>
|
|---|
| 73 | #include <util/group/message.h>
|
|---|
| 74 | #include <util/group/memory.h>
|
|---|
| 75 | #include <util/group/mstate.h>
|
|---|
| 76 | #include <util/group/thread.h>
|
|---|
| 77 | #include <util/group/pregtime.h>
|
|---|
| 78 | #include <util/misc/bug.h>
|
|---|
| 79 | #include <util/misc/formio.h>
|
|---|
| 80 | #include <util/misc/exenv.h>
|
|---|
| 81 | #ifdef HAVE_CHEMISTRY_CCA
|
|---|
| 82 | #include <util/misc/ccaenv.h>
|
|---|
| 83 | #endif
|
|---|
| 84 | #include <util/render/render.h>
|
|---|
| 85 |
|
|---|
| 86 | #include <math/optimize/opt.h>
|
|---|
| 87 |
|
|---|
| 88 | #include <chemistry/molecule/coor.h>
|
|---|
| 89 | #include <chemistry/molecule/energy.h>
|
|---|
| 90 | #include <chemistry/molecule/molfreq.h>
|
|---|
| 91 | #include <chemistry/molecule/fdhess.h>
|
|---|
| 92 | #include <chemistry/molecule/formula.h>
|
|---|
| 93 | #include <chemistry/qc/wfn/wfn.h>
|
|---|
| 94 |
|
|---|
| 95 | // Force linkages:
|
|---|
| 96 | #include <util/group/linkage.h>
|
|---|
| 97 | #include <chemistry/qc/wfn/linkage.h>
|
|---|
| 98 | #include <chemistry/qc/scf/linkage.h>
|
|---|
| 99 | #include <chemistry/qc/dft/linkage.h>
|
|---|
| 100 | #include <chemistry/qc/mbpt/linkage.h>
|
|---|
| 101 | #ifdef HAVE_SC_SRC_LIB_CHEMISTRY_QC_MBPTR12
|
|---|
| 102 | # include <chemistry/qc/mbptr12/linkage.h>
|
|---|
| 103 | #endif
|
|---|
| 104 | #ifdef HAVE_SC_SRC_LIB_CHEMISTRY_QC_CINTS
|
|---|
| 105 | # include <chemistry/qc/cints/linkage.h>
|
|---|
| 106 | #endif
|
|---|
| 107 | //#include <chemistry/qc/psi/linkage.h>
|
|---|
| 108 | #include <util/state/linkage.h>
|
|---|
| 109 | #ifdef HAVE_SC_SRC_LIB_CHEMISTRY_QC_CC
|
|---|
| 110 | # include <chemistry/qc/cc/linkage.h>
|
|---|
| 111 | #endif
|
|---|
| 112 | #ifdef HAVE_SC_SRC_LIB_CHEMISTRY_QC_PSI
|
|---|
| 113 | # include <chemistry/qc/psi/linkage.h>
|
|---|
| 114 | #endif
|
|---|
| 115 | #ifdef HAVE_SC_SRC_LIB_CHEMISTRY_QC_INTCCA
|
|---|
| 116 | # include <chemistry/qc/intcca/linkage.h>
|
|---|
| 117 | #endif
|
|---|
| 118 |
|
|---|
| 119 | #ifdef HAVE_MPI
|
|---|
| 120 | #define MPICH_SKIP_MPICXX
|
|---|
| 121 | #include <mpi.h>
|
|---|
| 122 | #include <util/group/messmpi.h>
|
|---|
| 123 | #endif
|
|---|
| 124 |
|
|---|
| 125 | using namespace std;
|
|---|
| 126 | using namespace sc;
|
|---|
| 127 |
|
|---|
| 128 | #include "mpqcin.h"
|
|---|
| 129 |
|
|---|
| 130 | //////////////////////////////////////////////////////////////////////////
|
|---|
| 131 |
|
|---|
| 132 | const KeyValValueboolean truevalue(1), falsevalue(0);
|
|---|
| 133 |
|
|---|
| 134 |
|
|---|
| 135 | static void
|
|---|
| 136 | trash_stack_b(int &i, char *&ichar)
|
|---|
| 137 | {
|
|---|
| 138 | char stack;
|
|---|
| 139 | ichar = &stack;
|
|---|
| 140 | ichar -= 10;
|
|---|
| 141 | for (i=0; i<1000; i++) {
|
|---|
| 142 | *ichar-- = 0xfe;
|
|---|
| 143 | }
|
|---|
| 144 | }
|
|---|
| 145 |
|
|---|
| 146 | static void
|
|---|
| 147 | trash_stack()
|
|---|
| 148 | {
|
|---|
| 149 | int i;
|
|---|
| 150 | char *ichar;
|
|---|
| 151 | trash_stack_b(i,ichar);
|
|---|
| 152 | }
|
|---|
| 153 |
|
|---|
| 154 | static void
|
|---|
| 155 | clean_up(void)
|
|---|
| 156 | {
|
|---|
| 157 | MemoryGrp::set_default_memorygrp(0);
|
|---|
| 158 | MessageGrp::set_default_messagegrp(0);
|
|---|
| 159 | ThreadGrp::set_default_threadgrp(0);
|
|---|
| 160 | SCMatrixKit::set_default_matrixkit(0);
|
|---|
| 161 | Integral::set_default_integral(0);
|
|---|
| 162 | RegionTimer::set_default_regiontimer(0);
|
|---|
| 163 | }
|
|---|
| 164 |
|
|---|
| 165 | #include <signal.h>
|
|---|
| 166 |
|
|---|
| 167 | #ifdef HAVE_FENV_H
|
|---|
| 168 | # include <fenv.h>
|
|---|
| 169 | #endif
|
|---|
| 170 |
|
|---|
| 171 | static void
|
|---|
| 172 | print_unseen(const Ref<ParsedKeyVal> &parsedkv,
|
|---|
| 173 | const char *input)
|
|---|
| 174 | {
|
|---|
| 175 | if (parsedkv->have_unseen()) {
|
|---|
| 176 | ExEnv::out0() << endl;
|
|---|
| 177 | ExEnv::out0() << indent
|
|---|
| 178 | << "The following keywords in \"" << input << "\" were ignored:"
|
|---|
| 179 | << endl;
|
|---|
| 180 | ExEnv::out0() << incindent;
|
|---|
| 181 | parsedkv->print_unseen(ExEnv::out0());
|
|---|
| 182 | ExEnv::out0() << decindent;
|
|---|
| 183 | }
|
|---|
| 184 | }
|
|---|
| 185 |
|
|---|
| 186 | double EvaluateDensity(
|
|---|
| 187 | SCVector3 &r,
|
|---|
| 188 | Ref<Integral> &intgrl,
|
|---|
| 189 | GaussianBasisSet::ValueData &vdat,
|
|---|
| 190 | Ref<Wavefunction> &wfn);
|
|---|
| 191 |
|
|---|
| 192 | /** Places all known options into \a options and parses them from argc,argv.
|
|---|
| 193 | *
|
|---|
| 194 | * \param options options structure
|
|---|
| 195 | * \param argc argument count
|
|---|
| 196 | * \param argv argument array
|
|---|
| 197 | * \return return value by GetLongOpt::parse() function
|
|---|
| 198 | */
|
|---|
| 199 | int ParseOptions(
|
|---|
| 200 | GetLongOpt &options,
|
|---|
| 201 | int argc,
|
|---|
| 202 | char **argv)
|
|---|
| 203 | {
|
|---|
| 204 | options.usage("[options] [filename]");
|
|---|
| 205 | options.enroll("f", GetLongOpt::MandatoryValue,
|
|---|
| 206 | "the name of an object format input file", 0);
|
|---|
| 207 | options.enroll("o", GetLongOpt::MandatoryValue,
|
|---|
| 208 | "the name of the output file", 0);
|
|---|
| 209 | options.enroll("n", GetLongOpt::NoValue,
|
|---|
| 210 | "listen for incoming object format input files", 0);
|
|---|
| 211 | options.enroll("messagegrp", GetLongOpt::MandatoryValue,
|
|---|
| 212 | "which message group to use", 0);
|
|---|
| 213 | options.enroll("threadgrp", GetLongOpt::MandatoryValue,
|
|---|
| 214 | "which thread group to use", 0);
|
|---|
| 215 | options.enroll("memorygrp", GetLongOpt::MandatoryValue,
|
|---|
| 216 | "which memory group to use", 0);
|
|---|
| 217 | options.enroll("integral", GetLongOpt::MandatoryValue,
|
|---|
| 218 | "which integral evaluator to use", 0);
|
|---|
| 219 | options.enroll("l", GetLongOpt::MandatoryValue, "basis set limit", "0");
|
|---|
| 220 | options.enroll("W", GetLongOpt::MandatoryValue,
|
|---|
| 221 | "set the working directory", ".");
|
|---|
| 222 | options.enroll("c", GetLongOpt::NoValue, "check input then exit", 0);
|
|---|
| 223 | options.enroll("v", GetLongOpt::NoValue, "print the version number", 0);
|
|---|
| 224 | options.enroll("w", GetLongOpt::NoValue, "print the warranty", 0);
|
|---|
| 225 | options.enroll("L", GetLongOpt::NoValue, "print the license", 0);
|
|---|
| 226 | options.enroll("k", GetLongOpt::NoValue, "print key/value assignments", 0);
|
|---|
| 227 | options.enroll("i", GetLongOpt::NoValue, "convert simple to OO input", 0);
|
|---|
| 228 | options.enroll("d", GetLongOpt::NoValue, "debug", 0);
|
|---|
| 229 | options.enroll("h", GetLongOpt::NoValue, "print this message", 0);
|
|---|
| 230 | options.enroll("cca-path", GetLongOpt::OptionalValue,
|
|---|
| 231 | "cca component path", "");
|
|---|
| 232 | options.enroll("cca-load", GetLongOpt::OptionalValue,
|
|---|
| 233 | "cca components to load", "");
|
|---|
| 234 |
|
|---|
| 235 | int optind = options.parse(argc, argv);
|
|---|
| 236 |
|
|---|
| 237 | return optind;
|
|---|
| 238 | }
|
|---|
| 239 |
|
|---|
| 240 | /** Checks for each known option and acts accordingly.
|
|---|
| 241 | *
|
|---|
| 242 | * \param options option structure
|
|---|
| 243 | * \param *output name of outputfile on return
|
|---|
| 244 | * \param *outstream open output stream on return
|
|---|
| 245 | */
|
|---|
| 246 | void ComputeOptions(
|
|---|
| 247 | GetLongOpt &options,
|
|---|
| 248 | const char *&output,
|
|---|
| 249 | ostream *&outstream)
|
|---|
| 250 | {
|
|---|
| 251 | output = options.retrieve("o");
|
|---|
| 252 | outstream = 0;
|
|---|
| 253 | if (output != 0) {
|
|---|
| 254 | outstream = new ofstream(output);
|
|---|
| 255 | ExEnv::set_out(outstream);
|
|---|
| 256 | }
|
|---|
| 257 |
|
|---|
| 258 | if (options.retrieve("h")) {
|
|---|
| 259 | ExEnv::out0()
|
|---|
| 260 | << indent << "MPQC version " << SC_VERSION << endl
|
|---|
| 261 | << indent << "compiled for " << TARGET_ARCH << endl
|
|---|
| 262 | << SCFormIO::copyright << endl;
|
|---|
| 263 | options.usage(ExEnv::out0());
|
|---|
| 264 | exit(0);
|
|---|
| 265 | }
|
|---|
| 266 |
|
|---|
| 267 | if (options.retrieve("v")) {
|
|---|
| 268 | ExEnv::out0()
|
|---|
| 269 | << indent << "MPQC version " << SC_VERSION << endl
|
|---|
| 270 | << indent << "compiled for " << TARGET_ARCH << endl
|
|---|
| 271 | << SCFormIO::copyright;
|
|---|
| 272 | exit(0);
|
|---|
| 273 | }
|
|---|
| 274 |
|
|---|
| 275 | if (options.retrieve("w")) {
|
|---|
| 276 | ExEnv::out0()
|
|---|
| 277 | << indent << "MPQC version " << SC_VERSION << endl
|
|---|
| 278 | << indent << "compiled for " << TARGET_ARCH << endl
|
|---|
| 279 | << SCFormIO::copyright << endl
|
|---|
| 280 | << SCFormIO::warranty;
|
|---|
| 281 | exit(0);
|
|---|
| 282 | }
|
|---|
| 283 |
|
|---|
| 284 | if (options.retrieve("L")) {
|
|---|
| 285 | ExEnv::out0()
|
|---|
| 286 | << indent << "MPQC version " << SC_VERSION << endl
|
|---|
| 287 | << indent << "compiled for " << TARGET_ARCH << endl
|
|---|
| 288 | << SCFormIO::copyright << endl
|
|---|
| 289 | << SCFormIO::license;
|
|---|
| 290 | exit(0);
|
|---|
| 291 | }
|
|---|
| 292 |
|
|---|
| 293 | if (options.retrieve("d"))
|
|---|
| 294 | SCFormIO::set_debug(1);
|
|---|
| 295 |
|
|---|
| 296 | // set the working dir
|
|---|
| 297 | if (strcmp(options.retrieve("W"),"."))
|
|---|
| 298 | int retval = chdir(options.retrieve("W"));
|
|---|
| 299 |
|
|---|
| 300 | // check that n and f/o are not given at the same time
|
|---|
| 301 | if ((options.retrieve("n")) && ((options.retrieve("f")) || (options.retrieve("o")))) {
|
|---|
| 302 | throw invalid_argument("-n must not be given with -f or -o");
|
|---|
| 303 | }
|
|---|
| 304 | }
|
|---|
| 305 |
|
|---|
| 306 | /** Sets object and generic input file names.
|
|---|
| 307 | *
|
|---|
| 308 | * \param object_input filename of object-oriented input
|
|---|
| 309 | * \param generic_input filename of generic input
|
|---|
| 310 | * \param options option structure
|
|---|
| 311 | * \param argc argument count
|
|---|
| 312 | * \param argv argument array
|
|---|
| 313 | */
|
|---|
| 314 | void getInputFileNames(
|
|---|
| 315 | const char *&object_input,
|
|---|
| 316 | const char *&generic_input,
|
|---|
| 317 | GetLongOpt &options,
|
|---|
| 318 | int argc,
|
|---|
| 319 | char **argv)
|
|---|
| 320 | {
|
|---|
| 321 | // initialize keyval input
|
|---|
| 322 | object_input = options.retrieve("f");
|
|---|
| 323 | generic_input = 0;
|
|---|
| 324 | if (argc - optind == 0) {
|
|---|
| 325 | generic_input = 0;
|
|---|
| 326 | }
|
|---|
| 327 | else if (argc - optind == 1) {
|
|---|
| 328 | generic_input = argv[optind];
|
|---|
| 329 | }
|
|---|
| 330 | else {
|
|---|
| 331 | options.usage();
|
|---|
| 332 | throw invalid_argument("extra arguments given");
|
|---|
| 333 | }
|
|---|
| 334 |
|
|---|
| 335 | if (object_input == 0 && generic_input == 0) {
|
|---|
| 336 | generic_input = "mpqc.in";
|
|---|
| 337 | }
|
|---|
| 338 | else if (object_input && generic_input) {
|
|---|
| 339 | options.usage();
|
|---|
| 340 | throw invalid_argument("only one of -f and a file argument can be given");
|
|---|
| 341 | }
|
|---|
| 342 | }
|
|---|
| 343 |
|
|---|
| 344 | /** Gets the MPI Message group.
|
|---|
| 345 | *
|
|---|
| 346 | * \param grp reference to obtained group
|
|---|
| 347 | * \param argc argument count
|
|---|
| 348 | * \param argv argument array
|
|---|
| 349 | */
|
|---|
| 350 | void getMessageGroup(
|
|---|
| 351 | Ref<MessageGrp> &grp,
|
|---|
| 352 | int argc,
|
|---|
| 353 | char **argv)
|
|---|
| 354 | {
|
|---|
| 355 | #if defined(HAVE_MPI) && defined(ALWAYS_USE_MPI)
|
|---|
| 356 | grp = new MPIMessageGrp(&argc, &argv);
|
|---|
| 357 | #endif
|
|---|
| 358 | if (grp.null()) grp = MessageGrp::initial_messagegrp(argc, argv);
|
|---|
| 359 | if (grp.nonnull())
|
|---|
| 360 | MessageGrp::set_default_messagegrp(grp);
|
|---|
| 361 | else
|
|---|
| 362 | grp = MessageGrp::get_default_messagegrp();
|
|---|
| 363 | }
|
|---|
| 364 |
|
|---|
| 365 | /** Sets the base name of output files.
|
|---|
| 366 | *
|
|---|
| 367 | * \param input input file name
|
|---|
| 368 | * \param output output file name
|
|---|
| 369 | */
|
|---|
| 370 | void setOutputBaseName(const char *input, const char *output)
|
|---|
| 371 | {
|
|---|
| 372 | const char *basename_source;
|
|---|
| 373 | if (output) basename_source = output;
|
|---|
| 374 | else basename_source = input;
|
|---|
| 375 | int nfilebase = (int) (::strrchr(basename_source, '.') - basename_source);
|
|---|
| 376 | char *basename = new char[nfilebase + 1];
|
|---|
| 377 | strncpy(basename, basename_source, nfilebase);
|
|---|
| 378 | basename[nfilebase] = '\0';
|
|---|
| 379 | SCFormIO::set_default_basename(basename);
|
|---|
| 380 | delete[] basename;
|
|---|
| 381 | }
|
|---|
| 382 |
|
|---|
| 383 | /** Prints current key values.
|
|---|
| 384 | *
|
|---|
| 385 | * \param keyval key value structure
|
|---|
| 386 | * \param opt optimization structure
|
|---|
| 387 | * \param molname name of molecule
|
|---|
| 388 | * \param restartfile name of restartfile
|
|---|
| 389 | */
|
|---|
| 390 | void printOptions(
|
|---|
| 391 | Ref<KeyVal> &keyval,
|
|---|
| 392 | Ref<Optimize> &opt,
|
|---|
| 393 | const char *molname,
|
|---|
| 394 | const char *restartfile)
|
|---|
| 395 | {
|
|---|
| 396 | int restart = keyval->booleanvalue("restart",truevalue);
|
|---|
| 397 |
|
|---|
| 398 | int checkpoint = keyval->booleanvalue("checkpoint",truevalue);
|
|---|
| 399 |
|
|---|
| 400 | int savestate = keyval->booleanvalue("savestate",truevalue);
|
|---|
| 401 |
|
|---|
| 402 | int do_energy = keyval->booleanvalue("do_energy",truevalue);
|
|---|
| 403 |
|
|---|
| 404 | int do_grad = keyval->booleanvalue("do_gradient",falsevalue);
|
|---|
| 405 |
|
|---|
| 406 | int do_opt = keyval->booleanvalue("optimize",truevalue);
|
|---|
| 407 |
|
|---|
| 408 | int do_pdb = keyval->booleanvalue("write_pdb",falsevalue);
|
|---|
| 409 |
|
|---|
| 410 | int print_mole = keyval->booleanvalue("print_mole",truevalue);
|
|---|
| 411 |
|
|---|
| 412 | int print_timings = keyval->booleanvalue("print_timings",truevalue);
|
|---|
| 413 |
|
|---|
| 414 | // sanity checks for the benefit of reasonable looking output
|
|---|
| 415 | if (opt.null()) do_opt=0;
|
|---|
| 416 |
|
|---|
| 417 | ExEnv::out0() << endl << indent
|
|---|
| 418 | << "MPQC options:" << endl << incindent
|
|---|
| 419 | << indent << "matrixkit = <"
|
|---|
| 420 | << SCMatrixKit::default_matrixkit()->class_name() << ">" << endl
|
|---|
| 421 | << indent << "filename = " << molname << endl
|
|---|
| 422 | << indent << "restart_file = " << restartfile << endl
|
|---|
| 423 | << indent << "restart = " << (restart ? "yes" : "no") << endl
|
|---|
| 424 | << indent << "checkpoint = " << (checkpoint ? "yes" : "no") << endl
|
|---|
| 425 | << indent << "savestate = " << (savestate ? "yes" : "no") << endl
|
|---|
| 426 | << indent << "do_energy = " << (do_energy ? "yes" : "no") << endl
|
|---|
| 427 | << indent << "do_gradient = " << (do_grad ? "yes" : "no") << endl
|
|---|
| 428 | << indent << "optimize = " << (do_opt ? "yes" : "no") << endl
|
|---|
| 429 | << indent << "write_pdb = " << (do_pdb ? "yes" : "no") << endl
|
|---|
| 430 | << indent << "print_mole = " << (print_mole ? "yes" : "no") << endl
|
|---|
| 431 | << indent << "print_timings = " << (print_timings ? "yes" : "no")
|
|---|
| 432 | << endl << decindent;
|
|---|
| 433 |
|
|---|
| 434 | }
|
|---|
| 435 |
|
|---|
| 436 | /** Saves the current state to checkpoint file.
|
|---|
| 437 | *
|
|---|
| 438 | * \param keyval key value structure
|
|---|
| 439 | * \param opt optimization structure
|
|---|
| 440 | * \param grp message group
|
|---|
| 441 | * \param mole MolecularEnergy object
|
|---|
| 442 | * \param molname name of molecule
|
|---|
| 443 | * \param ckptfile name of check point file
|
|---|
| 444 | */
|
|---|
| 445 | void saveState(
|
|---|
| 446 | char *wfn_file,
|
|---|
| 447 | int savestate,
|
|---|
| 448 | Ref<Optimize> &opt,
|
|---|
| 449 | Ref<MessageGrp> &grp,
|
|---|
| 450 | Ref<MolecularEnergy> &mole,
|
|---|
| 451 | char *&molname,
|
|---|
| 452 | char *&ckptfile)
|
|---|
| 453 | {
|
|---|
| 454 | const char *devnull = "/dev/null";
|
|---|
| 455 |
|
|---|
| 456 | // function stuff
|
|---|
| 457 | if (savestate) {
|
|---|
| 458 | if (opt.nonnull()) {
|
|---|
| 459 | if (grp->me() == 0) {
|
|---|
| 460 | ckptfile = new char[strlen(molname)+6];
|
|---|
| 461 | sprintf(ckptfile,"%s.ckpt",molname);
|
|---|
| 462 | }
|
|---|
| 463 | else {
|
|---|
| 464 | ckptfile = new char[strlen(devnull)+1];
|
|---|
| 465 | strcpy(ckptfile, devnull);
|
|---|
| 466 | }
|
|---|
| 467 |
|
|---|
| 468 | StateOutBin so(ckptfile);
|
|---|
| 469 | SavableState::save_state(opt.pointer(),so);
|
|---|
| 470 | so.close();
|
|---|
| 471 |
|
|---|
| 472 | delete[] ckptfile;
|
|---|
| 473 | }
|
|---|
| 474 |
|
|---|
| 475 | if (mole.nonnull()) {
|
|---|
| 476 | if (grp->me() == 0) {
|
|---|
| 477 | if (wfn_file == 0) {
|
|---|
| 478 | wfn_file = new char[strlen(molname)+6];
|
|---|
| 479 | sprintf(wfn_file,"%s.wfn",molname);
|
|---|
| 480 | }
|
|---|
| 481 | }
|
|---|
| 482 | else {
|
|---|
| 483 | delete[] wfn_file;
|
|---|
| 484 | wfn_file = new char[strlen(devnull)+1];
|
|---|
| 485 | strcpy(wfn_file, devnull);
|
|---|
| 486 | }
|
|---|
| 487 |
|
|---|
| 488 | StateOutBin so(wfn_file);
|
|---|
| 489 | SavableState::save_state(mole.pointer(),so);
|
|---|
| 490 | so.close();
|
|---|
| 491 |
|
|---|
| 492 | }
|
|---|
| 493 | }
|
|---|
| 494 | delete[] wfn_file;
|
|---|
| 495 | }
|
|---|
| 496 |
|
|---|
| 497 | /** Sets up indentation and output modes.
|
|---|
| 498 | *
|
|---|
| 499 | * \param grp message group
|
|---|
| 500 | */
|
|---|
| 501 | void setupSCFormIO(
|
|---|
| 502 | Ref<MessageGrp> &grp
|
|---|
| 503 | )
|
|---|
| 504 | {
|
|---|
| 505 | SCFormIO::setindent(ExEnv::outn(), 2);
|
|---|
| 506 | SCFormIO::setindent(ExEnv::errn(), 2);
|
|---|
| 507 | SCFormIO::setindent(cout, 2);
|
|---|
| 508 | SCFormIO::setindent(cerr, 2);
|
|---|
| 509 |
|
|---|
| 510 | SCFormIO::set_printnode(0);
|
|---|
| 511 | if (grp->n() > 1)
|
|---|
| 512 | SCFormIO::init_mp(grp->me());
|
|---|
| 513 | }
|
|---|
| 514 |
|
|---|
| 515 | /** Initialises the timer.
|
|---|
| 516 | *
|
|---|
| 517 | * \param grp message group
|
|---|
| 518 | * \param keyval key value structure
|
|---|
| 519 | * \param tim timing structure
|
|---|
| 520 | */
|
|---|
| 521 | void initTimings(
|
|---|
| 522 | Ref<MessageGrp> &grp,
|
|---|
| 523 | Ref<KeyVal> &keyval,
|
|---|
| 524 | Ref<RegionTimer> &tim
|
|---|
| 525 | )
|
|---|
| 526 | {
|
|---|
| 527 | grp->sync(); // make sure nodes are sync'ed before starting timings
|
|---|
| 528 | if (keyval->exists("timer")) tim << keyval->describedclassvalue("timer");
|
|---|
| 529 | else tim = new ParallelRegionTimer(grp,"mpqc",1,1);
|
|---|
| 530 | RegionTimer::set_default_regiontimer(tim);
|
|---|
| 531 |
|
|---|
| 532 | if (tim.nonnull()) tim->enter("input");
|
|---|
| 533 | }
|
|---|
| 534 |
|
|---|
| 535 | int
|
|---|
| 536 | try_main(int argc, char *argv[])
|
|---|
| 537 | {
|
|---|
| 538 | //trash_stack();
|
|---|
| 539 |
|
|---|
| 540 | int i;
|
|---|
| 541 | const char *devnull = "/dev/null";
|
|---|
| 542 | atexit(clean_up);
|
|---|
| 543 |
|
|---|
| 544 | #ifdef HAVE_FEENABLEEXCEPT
|
|---|
| 545 | // this uses a glibc extension to trap on individual exceptions
|
|---|
| 546 | # ifdef FE_DIVBYZERO
|
|---|
| 547 | feenableexcept(FE_DIVBYZERO);
|
|---|
| 548 | # endif
|
|---|
| 549 | # ifdef FE_INVALID
|
|---|
| 550 | feenableexcept(FE_INVALID);
|
|---|
| 551 | # endif
|
|---|
| 552 | # ifdef FE_OVERFLOW
|
|---|
| 553 | feenableexcept(FE_OVERFLOW);
|
|---|
| 554 | # endif
|
|---|
| 555 | #endif
|
|---|
| 556 |
|
|---|
| 557 | #ifdef HAVE_FEDISABLEEXCEPT
|
|---|
| 558 | // this uses a glibc extension to not trap on individual exceptions
|
|---|
| 559 | # ifdef FE_UNDERFLOW
|
|---|
| 560 | fedisableexcept(FE_UNDERFLOW);
|
|---|
| 561 | # endif
|
|---|
| 562 | # ifdef FE_INEXACT
|
|---|
| 563 | fedisableexcept(FE_INEXACT);
|
|---|
| 564 | # endif
|
|---|
| 565 | #endif
|
|---|
| 566 |
|
|---|
| 567 | #if defined(HAVE_SETRLIMIT)
|
|---|
| 568 | struct rlimit rlim;
|
|---|
| 569 | rlim.rlim_cur = 0;
|
|---|
| 570 | rlim.rlim_max = 0;
|
|---|
| 571 | setrlimit(RLIMIT_CORE,&rlim);
|
|---|
| 572 | #endif
|
|---|
| 573 |
|
|---|
| 574 | ExEnv::init(argc, argv);
|
|---|
| 575 |
|
|---|
| 576 | // parse commandline options
|
|---|
| 577 | GetLongOpt options;
|
|---|
| 578 | int optind = ParseOptions(options, argc, argv);
|
|---|
| 579 | const char *output = 0;
|
|---|
| 580 | ostream *outstream = 0;
|
|---|
| 581 | ComputeOptions(options, output, outstream);
|
|---|
| 582 |
|
|---|
| 583 | // get the message group. first try the commandline and environment
|
|---|
| 584 | Ref<MessageGrp> grp;
|
|---|
| 585 | getMessageGroup(grp, argc, argv);
|
|---|
| 586 |
|
|---|
| 587 | // get input file names, either object-oriented or generic
|
|---|
| 588 | const char *object_input = 0;
|
|---|
| 589 | const char *generic_input = 0;
|
|---|
| 590 | getInputFileNames(object_input, generic_input, options, argc, argv);
|
|---|
| 591 | const char *input;
|
|---|
| 592 | if (object_input) input = object_input;
|
|---|
| 593 | if (generic_input) input = generic_input;
|
|---|
| 594 |
|
|---|
| 595 | Ref<ParsedKeyVal> parsedkv;
|
|---|
| 596 | // read the input file on only node 0
|
|---|
| 597 | char *in_char_array;
|
|---|
| 598 | if (grp->me() == 0) {
|
|---|
| 599 | ifstream is(input);
|
|---|
| 600 | #ifdef HAVE_SSTREAM
|
|---|
| 601 | ostringstream ostrs;
|
|---|
| 602 | is >> ostrs.rdbuf();
|
|---|
| 603 | int n = 1 + strlen(ostrs.str().c_str());
|
|---|
| 604 | in_char_array = strcpy(new char[n],ostrs.str().c_str());
|
|---|
| 605 | #else
|
|---|
| 606 | ostrstream ostrs;
|
|---|
| 607 | is >> ostrs.rdbuf();
|
|---|
| 608 | ostrs << ends;
|
|---|
| 609 | in_char_array = ostrs.str();
|
|---|
| 610 | int n = ostrs.pcount();
|
|---|
| 611 | #endif
|
|---|
| 612 | grp->bcast(n);
|
|---|
| 613 | grp->bcast(in_char_array, n);
|
|---|
| 614 | }
|
|---|
| 615 | else {
|
|---|
| 616 | int n;
|
|---|
| 617 | grp->bcast(n);
|
|---|
| 618 | in_char_array = new char[n];
|
|---|
| 619 | grp->bcast(in_char_array, n);
|
|---|
| 620 | }
|
|---|
| 621 |
|
|---|
| 622 | int use_simple_input;
|
|---|
| 623 | if (generic_input && grp->me() == 0) {
|
|---|
| 624 | MPQCIn mpqcin;
|
|---|
| 625 | use_simple_input = mpqcin.check_string(in_char_array);
|
|---|
| 626 | }
|
|---|
| 627 | else {
|
|---|
| 628 | use_simple_input = 0;
|
|---|
| 629 | }
|
|---|
| 630 | grp->bcast(use_simple_input);
|
|---|
| 631 |
|
|---|
| 632 | if (use_simple_input) {
|
|---|
| 633 | MPQCIn mpqcin;
|
|---|
| 634 | char *simple_input_text = mpqcin.parse_string(in_char_array);
|
|---|
| 635 | if (options.retrieve("i")) {
|
|---|
| 636 | ExEnv::out0() << "Generated object-oriented input file:" << endl
|
|---|
| 637 | << simple_input_text
|
|---|
| 638 | << endl;
|
|---|
| 639 | exit(0);
|
|---|
| 640 | }
|
|---|
| 641 | parsedkv = new ParsedKeyVal();
|
|---|
| 642 | parsedkv->parse_string(simple_input_text);
|
|---|
| 643 | delete[] simple_input_text;
|
|---|
| 644 | }
|
|---|
| 645 | else {
|
|---|
| 646 | parsedkv = new ParsedKeyVal();
|
|---|
| 647 | parsedkv->parse_string(in_char_array);
|
|---|
| 648 | }
|
|---|
| 649 | delete[] in_char_array;
|
|---|
| 650 |
|
|---|
| 651 | if (options.retrieve("k")) parsedkv->verbose(1);
|
|---|
| 652 | Ref<KeyVal> keyval = new PrefixKeyVal(parsedkv.pointer(),"mpqc");
|
|---|
| 653 |
|
|---|
| 654 | // get the basename for output files
|
|---|
| 655 | setOutputBaseName(input, output);
|
|---|
| 656 |
|
|---|
| 657 | // set up output classes
|
|---|
| 658 | setupSCFormIO(grp);
|
|---|
| 659 |
|
|---|
| 660 | // initialize timing for mpqc
|
|---|
| 661 | Ref<RegionTimer> tim;
|
|---|
| 662 | initTimings(grp, keyval, tim);
|
|---|
| 663 |
|
|---|
| 664 | // announce ourselves
|
|---|
| 665 | const char title1[] = "MPQC: Massively Parallel Quantum Chemistry";
|
|---|
| 666 | int ntitle1 = sizeof(title1);
|
|---|
| 667 | const char title2[] = "Version " SC_VERSION;
|
|---|
| 668 | int ntitle2 = sizeof(title2);
|
|---|
| 669 | ExEnv::out0() << endl;
|
|---|
| 670 | ExEnv::out0() << indent;
|
|---|
| 671 | for (i=0; i<(80-ntitle1)/2; i++) ExEnv::out0() << ' ';
|
|---|
| 672 | ExEnv::out0() << title1 << endl;
|
|---|
| 673 | ExEnv::out0() << indent;
|
|---|
| 674 | for (i=0; i<(80-ntitle2)/2; i++) ExEnv::out0() << ' ';
|
|---|
| 675 | ExEnv::out0() << title2 << endl << endl;
|
|---|
| 676 |
|
|---|
| 677 | const char *tstr = 0;
|
|---|
| 678 | #if defined(HAVE_TIME) && defined(HAVE_CTIME)
|
|---|
| 679 | time_t t;
|
|---|
| 680 | time(&t);
|
|---|
| 681 | tstr = ctime(&t);
|
|---|
| 682 | #endif
|
|---|
| 683 | if (!tstr) {
|
|---|
| 684 | tstr = "UNKNOWN";
|
|---|
| 685 | }
|
|---|
| 686 |
|
|---|
| 687 | ExEnv::out0()
|
|---|
| 688 | << indent << scprintf("Machine: %s", TARGET_ARCH) << endl
|
|---|
| 689 | << indent << scprintf("User: %s@%s",
|
|---|
| 690 | ExEnv::username(), ExEnv::hostname()) << endl
|
|---|
| 691 | << indent << scprintf("Start Time: %s", tstr) << endl;
|
|---|
| 692 |
|
|---|
| 693 | // get the thread group. first try the commandline and environment
|
|---|
| 694 | Ref<ThreadGrp> thread = ThreadGrp::initial_threadgrp(argc, argv);
|
|---|
| 695 |
|
|---|
| 696 | // if we still don't have a group, try reading the thread group
|
|---|
| 697 | // from the input
|
|---|
| 698 | if (thread.null()) {
|
|---|
| 699 | thread << keyval->describedclassvalue("thread");
|
|---|
| 700 | }
|
|---|
| 701 |
|
|---|
| 702 | if (thread.nonnull())
|
|---|
| 703 | ThreadGrp::set_default_threadgrp(thread);
|
|---|
| 704 | else
|
|---|
| 705 | thread = ThreadGrp::get_default_threadgrp();
|
|---|
| 706 |
|
|---|
| 707 | // get the memory group. first try the commandline and environment
|
|---|
| 708 | Ref<MemoryGrp> memory = MemoryGrp::initial_memorygrp(argc, argv);
|
|---|
| 709 |
|
|---|
| 710 | // if we still don't have a group, try reading the memory group
|
|---|
| 711 | // from the input
|
|---|
| 712 | if (memory.null()) {
|
|---|
| 713 | memory << keyval->describedclassvalue("memory");
|
|---|
| 714 | }
|
|---|
| 715 |
|
|---|
| 716 | if (memory.nonnull())
|
|---|
| 717 | MemoryGrp::set_default_memorygrp(memory);
|
|---|
| 718 | else
|
|---|
| 719 | memory = MemoryGrp::get_default_memorygrp();
|
|---|
| 720 |
|
|---|
| 721 | ExEnv::out0() << indent
|
|---|
| 722 | << "Using " << grp->class_name()
|
|---|
| 723 | << " for message passing (number of nodes = " << grp->n() << ")." << endl
|
|---|
| 724 | << indent
|
|---|
| 725 | << "Using " << thread->class_name()
|
|---|
| 726 | << " for threading (number of threads = " << thread->nthread() << ")." << endl
|
|---|
| 727 | << indent
|
|---|
| 728 | << "Using " << memory->class_name()
|
|---|
| 729 | << " for distributed shared memory." << endl
|
|---|
| 730 | << indent
|
|---|
| 731 | << "Total number of processors = " << grp->n() * thread->nthread() << endl;
|
|---|
| 732 |
|
|---|
| 733 | #ifdef HAVE_CHEMISTRY_CCA
|
|---|
| 734 | // initialize cca framework
|
|---|
| 735 | KeyValValuestring emptystring("");
|
|---|
| 736 | bool do_cca = keyval->booleanvalue("do_cca",falsevalue);
|
|---|
| 737 |
|
|---|
| 738 | string cca_path(options.retrieve("cca-path"));
|
|---|
| 739 | string cca_load(options.retrieve("cca-load"));
|
|---|
| 740 | if(cca_path.size()==0)
|
|---|
| 741 | cca_path = keyval->stringvalue("cca_path",emptystring);
|
|---|
| 742 | if(cca_load.size()==0)
|
|---|
| 743 | cca_load = keyval->stringvalue("cca_load",emptystring);
|
|---|
| 744 |
|
|---|
| 745 | if( !do_cca && (cca_load.size() > 0 || cca_path.size() > 0) )
|
|---|
| 746 | do_cca = true;
|
|---|
| 747 |
|
|---|
| 748 | if(cca_path.size()==0) {
|
|---|
| 749 | #ifdef CCA_PATH
|
|---|
| 750 | cca_path = CCA_PATH;
|
|---|
| 751 | #endif
|
|---|
| 752 | }
|
|---|
| 753 | if(cca_load.size()==0) {
|
|---|
| 754 | cca_load += "MPQC.IntegralEvaluatorFactory";
|
|---|
| 755 | }
|
|---|
| 756 |
|
|---|
| 757 | if( cca_load.size() > 0 && cca_path.size() > 0 && do_cca ) {
|
|---|
| 758 | string cca_args = "--path " + cca_path + " --load " + cca_load;
|
|---|
| 759 | ExEnv::out0() << endl << indent << "Initializing CCA framework with args: "
|
|---|
| 760 | << endl << indent << cca_args << endl;
|
|---|
| 761 | CCAEnv::init( cca_args );
|
|---|
| 762 | }
|
|---|
| 763 | #endif
|
|---|
| 764 |
|
|---|
| 765 | // now set up the debugger
|
|---|
| 766 | Ref<Debugger> debugger; debugger << keyval->describedclassvalue("debug");
|
|---|
| 767 | if (debugger.nonnull()) {
|
|---|
| 768 | Debugger::set_default_debugger(debugger);
|
|---|
| 769 | debugger->set_exec(argv[0]);
|
|---|
| 770 | debugger->set_prefix(grp->me());
|
|---|
| 771 | if (options.retrieve("d"))
|
|---|
| 772 | debugger->debug("Starting debugger because -d given on command line.");
|
|---|
| 773 | }
|
|---|
| 774 |
|
|---|
| 775 | // now check to see what matrix kit to use
|
|---|
| 776 | if (keyval->exists("matrixkit"))
|
|---|
| 777 | SCMatrixKit::set_default_matrixkit(
|
|---|
| 778 | dynamic_cast<SCMatrixKit*>(
|
|---|
| 779 | keyval->describedclassvalue("matrixkit").pointer()));
|
|---|
| 780 |
|
|---|
| 781 | // get the integral factory. first try commandline and environment
|
|---|
| 782 | Ref<Integral> integral = Integral::initial_integral(argc, argv);
|
|---|
| 783 |
|
|---|
| 784 | // if we still don't have a integral, try reading the integral
|
|---|
| 785 | // from the input
|
|---|
| 786 | if (integral.null()) {
|
|---|
| 787 | integral << keyval->describedclassvalue("integrals");
|
|---|
| 788 | }
|
|---|
| 789 |
|
|---|
| 790 | if (integral.nonnull())
|
|---|
| 791 | Integral::set_default_integral(integral);
|
|---|
| 792 | else
|
|---|
| 793 | integral = Integral::get_default_integral();
|
|---|
| 794 |
|
|---|
| 795 | ExEnv::out0() << endl << indent
|
|---|
| 796 | << "Using " << integral->class_name()
|
|---|
| 797 | << " by default for molecular integrals evaluation" << endl << endl;
|
|---|
| 798 |
|
|---|
| 799 | // check for a molecular energy and optimizer
|
|---|
| 800 | const char *basename = SCFormIO::default_basename();
|
|---|
| 801 | KeyValValueString molnamedef(basename);
|
|---|
| 802 | char * molname = keyval->pcharvalue("filename", molnamedef);
|
|---|
| 803 | if (strcmp(molname, basename))
|
|---|
| 804 | SCFormIO::set_default_basename(molname);
|
|---|
| 805 |
|
|---|
| 806 | char * ckptfile = new char[strlen(molname)+6];
|
|---|
| 807 | sprintf(ckptfile,"%s.ckpt",molname);
|
|---|
| 808 |
|
|---|
| 809 | KeyValValueString restartfiledef(ckptfile);
|
|---|
| 810 | char * restartfile = keyval->pcharvalue("restart_file", restartfiledef);
|
|---|
| 811 |
|
|---|
| 812 | char * wfn_file = keyval->pcharvalue("wfn_file");
|
|---|
| 813 | if (wfn_file == 0) {
|
|---|
| 814 | wfn_file = new char[strlen(molname)+6];
|
|---|
| 815 | sprintf(wfn_file,"%s.wfn",molname);
|
|---|
| 816 | }
|
|---|
| 817 | char *mole_ckpt_file = new char[strlen(wfn_file)+1];
|
|---|
| 818 | sprintf(mole_ckpt_file,"%s",wfn_file);
|
|---|
| 819 |
|
|---|
| 820 | int restart = keyval->booleanvalue("restart",truevalue);
|
|---|
| 821 |
|
|---|
| 822 | int checkpoint = keyval->booleanvalue("checkpoint",truevalue);
|
|---|
| 823 | int checkpoint_freq = keyval->intvalue("checkpoint_freq",KeyValValueint(1));
|
|---|
| 824 |
|
|---|
| 825 | int savestate = keyval->booleanvalue("savestate",truevalue);
|
|---|
| 826 |
|
|---|
| 827 | struct stat sb;
|
|---|
| 828 | Ref<MolecularEnergy> mole;
|
|---|
| 829 | Ref<Optimize> opt;
|
|---|
| 830 |
|
|---|
| 831 | int statresult, statsize;
|
|---|
| 832 | if (restart) {
|
|---|
| 833 | if (grp->me() == 0) {
|
|---|
| 834 | statresult = stat(restartfile,&sb);
|
|---|
| 835 | statsize = (statresult==0) ? sb.st_size : 0;
|
|---|
| 836 | }
|
|---|
| 837 | grp->bcast(statresult);
|
|---|
| 838 | grp->bcast(statsize);
|
|---|
| 839 | }
|
|---|
| 840 | if (restart && statresult==0 && statsize) {
|
|---|
| 841 | BcastStateInBin si(grp,restartfile);
|
|---|
| 842 | if (keyval->exists("override")) {
|
|---|
| 843 | si.set_override(new PrefixKeyVal(keyval,"override"));
|
|---|
| 844 | }
|
|---|
| 845 | char *suf = strrchr(restartfile,'.');
|
|---|
| 846 | if (!strcmp(suf,".wfn")) {
|
|---|
| 847 | mole << SavableState::key_restore_state(si,"mole");
|
|---|
| 848 | ExEnv::out0() << endl
|
|---|
| 849 | << indent << "Restored <" << mole->class_name()
|
|---|
| 850 | << "> from " << restartfile << endl;
|
|---|
| 851 |
|
|---|
| 852 | opt << keyval->describedclassvalue("opt");
|
|---|
| 853 | if (opt.nonnull())
|
|---|
| 854 | opt->set_function(mole.pointer());
|
|---|
| 855 | }
|
|---|
| 856 | else {
|
|---|
| 857 | opt << SavableState::key_restore_state(si,"opt");
|
|---|
| 858 | if (opt.nonnull()) {
|
|---|
| 859 | mole << opt->function();
|
|---|
| 860 | ExEnv::out0() << endl << indent
|
|---|
| 861 | << "Restored <Optimize> from " << restartfile << endl;
|
|---|
| 862 | }
|
|---|
| 863 | }
|
|---|
| 864 | } else {
|
|---|
| 865 | mole << keyval->describedclassvalue("mole");
|
|---|
| 866 | opt << keyval->describedclassvalue("opt");
|
|---|
| 867 | }
|
|---|
| 868 |
|
|---|
| 869 | if (mole.nonnull()) {
|
|---|
| 870 | MolecularFormula mf(mole->molecule());
|
|---|
| 871 | ExEnv::out0() << endl << indent
|
|---|
| 872 | << "Molecular formula " << mf.formula() << endl;
|
|---|
| 873 | if (checkpoint) {
|
|---|
| 874 | mole->set_checkpoint();
|
|---|
| 875 | if (grp->me() == 0) mole->set_checkpoint_file(mole_ckpt_file);
|
|---|
| 876 | else mole->set_checkpoint_file(devnull);
|
|---|
| 877 | mole->set_checkpoint_freq(checkpoint_freq);
|
|---|
| 878 | }
|
|---|
| 879 | }
|
|---|
| 880 | delete[] mole_ckpt_file;
|
|---|
| 881 |
|
|---|
| 882 | if (checkpoint && opt.nonnull()) {
|
|---|
| 883 | opt->set_checkpoint();
|
|---|
| 884 | if (grp->me() == 0) opt->set_checkpoint_file(ckptfile);
|
|---|
| 885 | else opt->set_checkpoint_file(devnull);
|
|---|
| 886 | }
|
|---|
| 887 |
|
|---|
| 888 | // see if frequencies are wanted
|
|---|
| 889 |
|
|---|
| 890 | Ref<MolecularHessian> molhess;
|
|---|
| 891 | molhess << keyval->describedclassvalue("hess");
|
|---|
| 892 | Ref<MolecularFrequencies> molfreq;
|
|---|
| 893 | molfreq << keyval->describedclassvalue("freq");
|
|---|
| 894 |
|
|---|
| 895 | int check = (options.retrieve("c") != 0);
|
|---|
| 896 | int limit = atoi(options.retrieve("l"));
|
|---|
| 897 | if (limit) {
|
|---|
| 898 | Ref<Wavefunction> wfn; wfn << mole;
|
|---|
| 899 | if (wfn.nonnull() && wfn->ao_dimension()->n() > limit) {
|
|---|
| 900 | ExEnv::out0() << endl << indent
|
|---|
| 901 | << "The limit of " << limit << " basis functions has been exceeded."
|
|---|
| 902 | << endl;
|
|---|
| 903 | check = 1;
|
|---|
| 904 | }
|
|---|
| 905 | }
|
|---|
| 906 |
|
|---|
| 907 | if (check) {
|
|---|
| 908 | ExEnv::out0() << endl << indent
|
|---|
| 909 | << "Exiting since the check option is on." << endl;
|
|---|
| 910 | exit(0);
|
|---|
| 911 | }
|
|---|
| 912 |
|
|---|
| 913 | if (tim.nonnull()) tim->change("calc");
|
|---|
| 914 |
|
|---|
| 915 | int do_energy = keyval->booleanvalue("do_energy",truevalue);
|
|---|
| 916 |
|
|---|
| 917 | int do_grad = keyval->booleanvalue("do_gradient",falsevalue);
|
|---|
| 918 |
|
|---|
| 919 | int do_opt = keyval->booleanvalue("optimize",truevalue);
|
|---|
| 920 |
|
|---|
| 921 | int do_pdb = keyval->booleanvalue("write_pdb",falsevalue);
|
|---|
| 922 |
|
|---|
| 923 | int print_mole = keyval->booleanvalue("print_mole",truevalue);
|
|---|
| 924 |
|
|---|
| 925 | int print_timings = keyval->booleanvalue("print_timings",truevalue);
|
|---|
| 926 |
|
|---|
| 927 | // print all current options (keyvalues)
|
|---|
| 928 | printOptions(keyval, opt, molname, restartfile);
|
|---|
| 929 |
|
|---|
| 930 | // see if any pictures are desired
|
|---|
| 931 | Ref<Render> renderer;
|
|---|
| 932 | renderer << keyval->describedclassvalue("renderer");
|
|---|
| 933 |
|
|---|
| 934 | // If we have a renderer, then we will read in some more info
|
|---|
| 935 | // below. Otherwise we can get rid of the keyval's, to eliminate
|
|---|
| 936 | // superfluous references to objects that we might otherwise be
|
|---|
| 937 | // able to delete. We cannot read in the remaining rendering
|
|---|
| 938 | // objects now, since some of their KeyVal CTOR's are heavyweight,
|
|---|
| 939 | // requiring optimized geometries, etc.
|
|---|
| 940 | if (renderer.null()) {
|
|---|
| 941 | if (parsedkv.nonnull()) print_unseen(parsedkv, input);
|
|---|
| 942 | keyval = 0;
|
|---|
| 943 | parsedkv = 0;
|
|---|
| 944 | }
|
|---|
| 945 |
|
|---|
| 946 | delete[] restartfile;
|
|---|
| 947 | delete[] ckptfile;
|
|---|
| 948 |
|
|---|
| 949 | int ready_for_freq = 1;
|
|---|
| 950 | if (mole.nonnull()) {
|
|---|
| 951 | if (((do_opt && opt.nonnull()) || do_grad)
|
|---|
| 952 | && !mole->gradient_implemented()) {
|
|---|
| 953 | ExEnv::out0() << indent
|
|---|
| 954 | << "WARNING: optimization or gradient requested but the given"
|
|---|
| 955 | << endl
|
|---|
| 956 | << " MolecularEnergy object cannot do gradients."
|
|---|
| 957 | << endl;
|
|---|
| 958 | }
|
|---|
| 959 |
|
|---|
| 960 | if (do_opt && opt.nonnull() && mole->gradient_implemented()) {
|
|---|
| 961 | int result = opt->optimize();
|
|---|
| 962 | if (result) {
|
|---|
| 963 | ExEnv::out0() << indent
|
|---|
| 964 | << "The optimization has converged." << endl << endl;
|
|---|
| 965 | ExEnv::out0() << indent
|
|---|
| 966 | << scprintf("Value of the MolecularEnergy: %15.10f",
|
|---|
| 967 | mole->energy())
|
|---|
| 968 | << endl << endl;
|
|---|
| 969 | } else {
|
|---|
| 970 | ExEnv::out0() << indent
|
|---|
| 971 | << "The optimization has NOT converged." << endl << endl;
|
|---|
| 972 | ready_for_freq = 0;
|
|---|
| 973 | }
|
|---|
| 974 | } else if (do_grad && mole->gradient_implemented()) {
|
|---|
| 975 | mole->do_gradient(1);
|
|---|
| 976 | ExEnv::out0() << endl << indent
|
|---|
| 977 | << scprintf("Value of the MolecularEnergy: %15.10f",
|
|---|
| 978 | mole->energy())
|
|---|
| 979 | << endl;
|
|---|
| 980 | if (mole->value_result().actual_accuracy()
|
|---|
| 981 | > mole->value_result().desired_accuracy()) {
|
|---|
| 982 | ExEnv::out0() << indent
|
|---|
| 983 | << "WARNING: desired accuracy not achieved in energy" << endl;
|
|---|
| 984 | }
|
|---|
| 985 | ExEnv::out0() << endl;
|
|---|
| 986 | // Use result_noupdate since the energy might not have converged
|
|---|
| 987 | // to the desired accuracy in which case grabbing the result will
|
|---|
| 988 | // start up the calculation again. However the gradient might
|
|---|
| 989 | // not have been computed (if we are restarting and the gradient
|
|---|
| 990 | // isn't in the save file for example).
|
|---|
| 991 | RefSCVector grad;
|
|---|
| 992 | if (mole->gradient_result().computed()) {
|
|---|
| 993 | grad = mole->gradient_result().result_noupdate();
|
|---|
| 994 | }
|
|---|
| 995 | else {
|
|---|
| 996 | grad = mole->gradient();
|
|---|
| 997 | }
|
|---|
| 998 | if (grad.nonnull()) {
|
|---|
| 999 | grad.print("Gradient of the MolecularEnergy:");
|
|---|
| 1000 | if (mole->gradient_result().actual_accuracy()
|
|---|
| 1001 | > mole->gradient_result().desired_accuracy()) {
|
|---|
| 1002 | ExEnv::out0() << indent
|
|---|
| 1003 | << "WARNING: desired accuracy not achieved in gradient" << endl;
|
|---|
| 1004 | }
|
|---|
| 1005 | }
|
|---|
| 1006 | } else if (do_energy && mole->value_implemented()) {
|
|---|
| 1007 | ExEnv::out0() << endl << indent
|
|---|
| 1008 | << scprintf("Value of the MolecularEnergy: %15.10f",
|
|---|
| 1009 | mole->energy())
|
|---|
| 1010 | << endl << endl;
|
|---|
| 1011 | }
|
|---|
| 1012 | }
|
|---|
| 1013 |
|
|---|
| 1014 | if (tim.nonnull()) tim->exit("calc");
|
|---|
| 1015 |
|
|---|
| 1016 | // save this before doing the frequency stuff since that obsoletes the
|
|---|
| 1017 | saveState(wfn_file, savestate, opt, grp, mole, molname, ckptfile);
|
|---|
| 1018 |
|
|---|
| 1019 | // Frequency calculation.
|
|---|
| 1020 | if (ready_for_freq && molfreq.nonnull()) {
|
|---|
| 1021 | RefSymmSCMatrix xhessian;
|
|---|
| 1022 | if (molhess.nonnull()) {
|
|---|
| 1023 | // if "hess" input was given, use it to compute the hessian
|
|---|
| 1024 | xhessian = molhess->cartesian_hessian();
|
|---|
| 1025 | }
|
|---|
| 1026 | else if (mole->hessian_implemented()) {
|
|---|
| 1027 | // if mole can compute the hessian, use that hessian
|
|---|
| 1028 | xhessian = mole->get_cartesian_hessian();
|
|---|
| 1029 | }
|
|---|
| 1030 | else if (mole->gradient_implemented()) {
|
|---|
| 1031 | // if mole can compute gradients, use gradients at finite
|
|---|
| 1032 | // displacements to compute the hessian
|
|---|
| 1033 | molhess = new FinDispMolecularHessian(mole);
|
|---|
| 1034 | xhessian = molhess->cartesian_hessian();
|
|---|
| 1035 | }
|
|---|
| 1036 | else {
|
|---|
| 1037 | ExEnv::out0() << "mpqc: WARNING: Frequencies cannot be computed" << endl;
|
|---|
| 1038 | }
|
|---|
| 1039 |
|
|---|
| 1040 | if (xhessian.nonnull()) {
|
|---|
| 1041 | char *hessfile = SCFormIO::fileext_to_filename(".hess");
|
|---|
| 1042 | MolecularHessian::write_cartesian_hessian(hessfile,
|
|---|
| 1043 | mole->molecule(), xhessian);
|
|---|
| 1044 | delete[] hessfile;
|
|---|
| 1045 |
|
|---|
| 1046 | molfreq->compute_frequencies(xhessian);
|
|---|
| 1047 | // DEGENERACY IS NOT CORRECT FOR NON-SINGLET CASES:
|
|---|
| 1048 | molfreq->thermochemistry(1);
|
|---|
| 1049 | }
|
|---|
| 1050 | }
|
|---|
| 1051 |
|
|---|
| 1052 | if (renderer.nonnull()) {
|
|---|
| 1053 | Ref<RenderedObject> rendered;
|
|---|
| 1054 | rendered << keyval->describedclassvalue("rendered");
|
|---|
| 1055 | Ref<AnimatedObject> animated;
|
|---|
| 1056 | animated << keyval->describedclassvalue("rendered");
|
|---|
| 1057 | if (rendered.nonnull()) {
|
|---|
| 1058 | if (tim.nonnull()) tim->enter("render");
|
|---|
| 1059 | if (grp->me() == 0) renderer->render(rendered);
|
|---|
| 1060 | if (tim.nonnull()) tim->exit("render");
|
|---|
| 1061 | }
|
|---|
| 1062 | else if (animated.nonnull()) {
|
|---|
| 1063 | if (tim.nonnull()) tim->enter("render");
|
|---|
| 1064 | if (grp->me() == 0) renderer->animate(animated);
|
|---|
| 1065 | if (tim.nonnull()) tim->exit("render");
|
|---|
| 1066 | }
|
|---|
| 1067 | else {
|
|---|
| 1068 | if (tim.nonnull()) tim->enter("render");
|
|---|
| 1069 | int n = keyval->count("rendered");
|
|---|
| 1070 | for (i=0; i<n; i++) {
|
|---|
| 1071 | rendered << keyval->describedclassvalue("rendered",i);
|
|---|
| 1072 | animated << keyval->describedclassvalue("rendered",i);
|
|---|
| 1073 | if (rendered.nonnull()) {
|
|---|
| 1074 | // make sure the object has a name so we don't overwrite its file
|
|---|
| 1075 | if (rendered->name() == 0) {
|
|---|
| 1076 | char ic[64];
|
|---|
| 1077 | sprintf(ic,"%02d",i);
|
|---|
| 1078 | rendered->set_name(ic);
|
|---|
| 1079 | }
|
|---|
| 1080 | if (grp->me() == 0) renderer->render(rendered);
|
|---|
| 1081 | }
|
|---|
| 1082 | else if (animated.nonnull()) {
|
|---|
| 1083 | // make sure the object has a name so we don't overwrite its file
|
|---|
| 1084 | if (animated->name() == 0) {
|
|---|
| 1085 | char ic[64];
|
|---|
| 1086 | sprintf(ic,"%02d",i);
|
|---|
| 1087 | animated->set_name(ic);
|
|---|
| 1088 | }
|
|---|
| 1089 | if (grp->me() == 0) renderer->animate(animated);
|
|---|
| 1090 | }
|
|---|
| 1091 | }
|
|---|
| 1092 | if (tim.nonnull()) tim->exit("render");
|
|---|
| 1093 | }
|
|---|
| 1094 | Ref<MolFreqAnimate> molfreqanim;
|
|---|
| 1095 | molfreqanim << keyval->describedclassvalue("animate_modes");
|
|---|
| 1096 | if (ready_for_freq && molfreq.nonnull()
|
|---|
| 1097 | && molfreqanim.nonnull()) {
|
|---|
| 1098 | if (tim.nonnull()) tim->enter("render");
|
|---|
| 1099 | molfreq->animate(renderer, molfreqanim);
|
|---|
| 1100 | if (tim.nonnull()) tim->exit("render");
|
|---|
| 1101 | }
|
|---|
| 1102 | }
|
|---|
| 1103 |
|
|---|
| 1104 | if (mole.nonnull()) {
|
|---|
| 1105 | if (print_mole)
|
|---|
| 1106 | mole->print(ExEnv::out0());
|
|---|
| 1107 |
|
|---|
| 1108 | if (do_pdb && grp->me() == 0) {
|
|---|
| 1109 | ckptfile = new char[strlen(molname)+5];
|
|---|
| 1110 | sprintf(ckptfile, "%s.pdb", molname);
|
|---|
| 1111 | ofstream pdbfile(ckptfile);
|
|---|
| 1112 | mole->molecule()->print_pdb(pdbfile);
|
|---|
| 1113 | delete[] ckptfile;
|
|---|
| 1114 | }
|
|---|
| 1115 |
|
|---|
| 1116 | }
|
|---|
| 1117 | else {
|
|---|
| 1118 | ExEnv::out0() << "mpqc: The molecular energy object is null" << endl
|
|---|
| 1119 | << " make sure \"mole\" specifies a MolecularEnergy derivative"
|
|---|
| 1120 | << endl;
|
|---|
| 1121 | }
|
|---|
| 1122 | if (parsedkv.nonnull()) print_unseen(parsedkv, input);
|
|---|
| 1123 |
|
|---|
| 1124 | if (print_timings)
|
|---|
| 1125 | if (tim.nonnull()) tim->print(ExEnv::out0());
|
|---|
| 1126 |
|
|---|
| 1127 | // here, we may gather the results
|
|---|
| 1128 | // we start to construct the MPQC_Data object
|
|---|
| 1129 | {
|
|---|
| 1130 | Ref<Wavefunction> wfn;
|
|---|
| 1131 | wfn << mole;
|
|---|
| 1132 | ExEnv::out0() << "The number of atomic orbitals: " << wfn->ao_dimension()->n() << endl;
|
|---|
| 1133 | ExEnv::out0() << "The AO density matrix is ";
|
|---|
| 1134 | wfn->ao_density()->print(ExEnv::out0());
|
|---|
| 1135 | ExEnv::out0() << "The natural density matrix is ";
|
|---|
| 1136 | wfn->natural_density()->print(ExEnv::out0());
|
|---|
| 1137 | ExEnv::out0() << "The Gaussian basis is " << wfn->basis()->name() << endl;
|
|---|
| 1138 | ExEnv::out0() << "The Gaussians sit at the following centers: " << endl;
|
|---|
| 1139 | for (int nr = 0; nr< wfn->basis()->ncenter(); ++nr) {
|
|---|
| 1140 | ExEnv::out0() << nr << " basis function has its center at ";
|
|---|
| 1141 | for (int i=0; i < 3; ++i)
|
|---|
| 1142 | ExEnv::out0() << wfn->basis()->r(nr,i) << "\t";
|
|---|
| 1143 | ExEnv::out0() << endl;
|
|---|
| 1144 | }
|
|---|
| 1145 | // GaussianShell is the actual orbital functions it seems ...
|
|---|
| 1146 | //ExEnv::out0() << "There are the following Gaussian Shells: " << endl;
|
|---|
| 1147 | SCVector3 r;
|
|---|
| 1148 | r.x() = r.y() = r.z() = 10;
|
|---|
| 1149 | ExEnv::out0() << "We get the following value at " << r << "." << endl;
|
|---|
| 1150 | Ref<Integral> intgrl = Integral::get_default_integral();
|
|---|
| 1151 | GaussianBasisSet::ValueData vdat(wfn->basis(), integral);
|
|---|
| 1152 | ExEnv::out0() << "Value at (10,10,10) is " << EvaluateDensity(r, intgrl, vdat, wfn) << endl;
|
|---|
| 1153 | boost::function<double (SCVector3 &r)> evaluator =
|
|---|
| 1154 | boost::bind(&EvaluateDensity, _1, boost::ref(intgrl), boost::ref(vdat), boost::ref(wfn));
|
|---|
| 1155 | ExEnv::out0() << "Check against values at " << r << "." << endl;
|
|---|
| 1156 | int nbasis = wfn->basis()->nbasis();
|
|---|
| 1157 | double *b_val = new double[nbasis];
|
|---|
| 1158 | wfn->basis()->values(r, &vdat, b_val);
|
|---|
| 1159 | for (int i=0; i<nbasis; i++) {
|
|---|
| 1160 | //ExEnv::out0() << "Shell nr. " << nr << ": ";
|
|---|
| 1161 | ExEnv::out0() << "Value at (10,10,10) is " << b_val[i] << endl;
|
|---|
| 1162 | }
|
|---|
| 1163 | // perform test integration of density
|
|---|
| 1164 | double delta = 1.;
|
|---|
| 1165 | double sum = 0.;
|
|---|
| 1166 | for (r.x() = -10. ; r.x() < 10.; r.x() += delta)
|
|---|
| 1167 | for (r.y() = -10. ; r.y() < 10.; r.y() += delta)
|
|---|
| 1168 | for (r.z() = -10. ; r.z() < 10.; r.z() += delta) {
|
|---|
| 1169 | wfn->basis()->values(r, &vdat, b_val);
|
|---|
| 1170 | for (int i=0; i<nbasis; i++)
|
|---|
| 1171 | sum += wfn->ao_density()->get_element(i,i)*b_val[i];
|
|---|
| 1172 | }
|
|---|
| 1173 | sum /= pow(20/delta,3);
|
|---|
| 1174 | ExEnv::out0() << "Sum over domain [0:20]^3 with " << delta << " delta is " << sum << "." << endl;
|
|---|
| 1175 | delete[] b_val;
|
|---|
| 1176 | }
|
|---|
| 1177 |
|
|---|
| 1178 | delete[] molname;
|
|---|
| 1179 | SCFormIO::set_default_basename(0);
|
|---|
| 1180 |
|
|---|
| 1181 | renderer = 0;
|
|---|
| 1182 | molfreq = 0;
|
|---|
| 1183 | molhess = 0;
|
|---|
| 1184 | opt = 0;
|
|---|
| 1185 | mole = 0;
|
|---|
| 1186 | integral = 0;
|
|---|
| 1187 | debugger = 0;
|
|---|
| 1188 | thread = 0;
|
|---|
| 1189 | tim = 0;
|
|---|
| 1190 | keyval = 0;
|
|---|
| 1191 | parsedkv = 0;
|
|---|
| 1192 | grp = 0;
|
|---|
| 1193 | memory = 0;
|
|---|
| 1194 | clean_up();
|
|---|
| 1195 |
|
|---|
| 1196 | #if defined(HAVE_TIME) && defined(HAVE_CTIME)
|
|---|
| 1197 | time(&t);
|
|---|
| 1198 | tstr = ctime(&t);
|
|---|
| 1199 | #endif
|
|---|
| 1200 | if (!tstr) {
|
|---|
| 1201 | tstr = "UNKNOWN";
|
|---|
| 1202 | }
|
|---|
| 1203 | ExEnv::out0() << endl
|
|---|
| 1204 | << indent << scprintf("End Time: %s", tstr) << endl;
|
|---|
| 1205 |
|
|---|
| 1206 | if (output != 0) {
|
|---|
| 1207 | ExEnv::set_out(&cout);
|
|---|
| 1208 | delete outstream;
|
|---|
| 1209 | }
|
|---|
| 1210 |
|
|---|
| 1211 | return 0;
|
|---|
| 1212 | }
|
|---|
| 1213 |
|
|---|
| 1214 | double EvaluateDensity(SCVector3 &r, Ref<Integral> &intgrl, GaussianBasisSet::ValueData &vdat, Ref<Wavefunction> &wfn)
|
|---|
| 1215 | {
|
|---|
| 1216 | ExEnv::out0() << "We get the following values at " << r << "." << endl;
|
|---|
| 1217 | int nbasis = wfn->basis()->nbasis();
|
|---|
| 1218 | double *b_val = new double[nbasis];
|
|---|
| 1219 | wfn->basis()->values(r, &vdat, b_val);
|
|---|
| 1220 | double sum=0.;
|
|---|
| 1221 | for (int i=0; i<nbasis; i++)
|
|---|
| 1222 | sum += b_val[i];
|
|---|
| 1223 | delete[] b_val;
|
|---|
| 1224 | return sum;
|
|---|
| 1225 | }
|
|---|
| 1226 |
|
|---|
| 1227 | int
|
|---|
| 1228 | main(int argc, char *argv[])
|
|---|
| 1229 | {
|
|---|
| 1230 | try {
|
|---|
| 1231 | try_main(argc, argv);
|
|---|
| 1232 | }
|
|---|
| 1233 | catch (SCException &e) {
|
|---|
| 1234 | cout << argv[0] << ": ERROR: SC EXCEPTION RAISED:" << endl
|
|---|
| 1235 | << e.what()
|
|---|
| 1236 | << endl;
|
|---|
| 1237 | clean_up();
|
|---|
| 1238 | throw;
|
|---|
| 1239 | }
|
|---|
| 1240 | catch (bad_alloc &e) {
|
|---|
| 1241 | cout << argv[0] << ": ERROR: MEMORY ALLOCATION FAILED:" << endl
|
|---|
| 1242 | << e.what()
|
|---|
| 1243 | << endl;
|
|---|
| 1244 | clean_up();
|
|---|
| 1245 | throw;
|
|---|
| 1246 | }
|
|---|
| 1247 | catch (exception &e) {
|
|---|
| 1248 | cout << argv[0] << ": ERROR: EXCEPTION RAISED:" << endl
|
|---|
| 1249 | << e.what()
|
|---|
| 1250 | << endl;
|
|---|
| 1251 | clean_up();
|
|---|
| 1252 | throw;
|
|---|
| 1253 | }
|
|---|
| 1254 | catch (...) {
|
|---|
| 1255 | cout << argv[0] << ": ERROR: UNKNOWN EXCEPTION RAISED" << endl;
|
|---|
| 1256 | clean_up();
|
|---|
| 1257 | throw;
|
|---|
| 1258 | }
|
|---|
| 1259 | return 0;
|
|---|
| 1260 | }
|
|---|
| 1261 |
|
|---|
| 1262 | /////////////////////////////////////////////////////////////////////////////
|
|---|
| 1263 |
|
|---|
| 1264 | // Local Variables:
|
|---|
| 1265 | // mode: c++
|
|---|
| 1266 | // c-file-style: "ETS"
|
|---|
| 1267 | // End:
|
|---|