source: ThirdParty/mpqc_open/src/bin/mpqc/mpqc_extract_dummy.cc

Candidate_v1.6.1
Last change on this file was fbf005, checked in by Frederik Heber <heber@…>, 8 years ago

HUGE: Extracted libmolecuilder_mpqc that is now linked to poolworker.

  • This stops the problems with MemDebug and mpqc when linking against libLinearAlgebra in debug mode: static global variables in libLinAlg are allocated using MemDebug (prefixed with a checksum) but are deallocated using normal libc's free() on exit. This causes an invalid free() as the ptr given to free points inside the block and not at its start. The problem comes from mpqc's use of own new and delete implementation. I'm guessing its reference counting is the culprit. Hence, we need to separate these two compilations from another in different units/libraries. Therefore, we have split off libmolecuilder_mpqc, .._mpqc_extract and additionally place the MPQCJob::Work() implementation inside libMolecuilderJobs_Work.
  • libmolecuilder_mpqc contains all MPQC's code in mpqc.cc (and linked libraries) that is not the main() function.
  • libmolecuilder_mpqc_extract contains functions that extract results such as energies, forces, charge grids from the obtained mpqc solution. These were added by myself to the mpqc code before.
  • molecuilder_mpqc is then linked against a NoOp .._extract library version. Thereby, it does not use any of the Molecuilder or related libraries and does not come in contact with MemDebug.
  • molecuilder_poolworker however is linked with the full .._extract library and hence performs these extractions.
  • poolworker now executes MPQCJob, MPQCCommandJob, and VMGJob and therefore needs to enforce binding to all of them.
  • TESTS: renamed molecuilder_mpqc.in to molecuilder_poolworker.in.
  • Property mode set to 100644
File size: 1.2 KB
Line 
1/* Project: MoleCuilder
2 * Description: creates and alters molecular systems
3 * Copyright (C) 2017 Frederik Heber. All rights reserved.
4 *
5 *
6 * This file is part of MoleCuilder.
7 *
8 * MoleCuilder is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation, either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * MoleCuilder is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with MoleCuilder. If not, see <http://www.gnu.org/licenses/>.
20 */
21
22/** \file mpqc_extract_dummy.cc
23 *
24 * Function implementations for the class vector.
25 *
26 */
27
28#ifdef HAVE_CONFIG_H
29#include <scconfig.h>
30#endif
31
32#include "mpqc_extract.h"
33
34using namespace sc;
35
36// dummy implementations of extractor functions
37
38void extractResults(
39 Ref<MolecularEnergy> &mole,
40 void *_data) {}
41
42void extractTimings(
43 Ref<RegionTimer> &tim,
44 void *_data) {}
Note: See TracBrowser for help on using the repository browser.