Branch data Line data Source code
1 : : // ***************************************************************************** 2 : : /*! 3 : : \file src/Main/LBSwitch.cpp 4 : : \copyright 2012-2015 J. Bakosi, 5 : : 2016-2018 Los Alamos National Security, LLC., 6 : : 2019-2021 Triad National Security, LLC. 7 : : All rights reserved. See the LICENSE file for details. 8 : : \brief Charm++ chare group for switching on/off load balancing 9 : : \details Charm++ chare group for switching on/off load balancing. 10 : : */ 11 : : // ***************************************************************************** 12 : : 13 : : #include <iostream> 14 : : 15 : : #include "LBSwitch.hpp" 16 : : #include "Print.hpp" 17 : : 18 : : using tk::LBSwitch; 19 : : 20 : 567 : LBSwitch::LBSwitch() 21 : : // ***************************************************************************** 22 : : // Constructor: turn on automatic load balancing 23 : : // ***************************************************************************** 24 : : { 25 [ + - ]: 567 : TurnManualLBOff(); 26 : 567 : } 27 : : 28 : : void 29 : 572 : LBSwitch::off() 30 : : // ***************************************************************************** 31 : : // Turn off automatic load balancing 32 : : //! \details Since this is a [procinit] routine, the runtime system executes the 33 : : //! routine exactly once on every PE early on in the Charm++ init 34 : : //! sequence. Must be static as it is called without an object. See also: 35 : : //! Section "Initializations at Program Startup" at in the Charm++ manual 36 : : //! http://charm.cs.illinois.edu/manuals/html/charm++/manual.html. 37 : : // ***************************************************************************** 38 : : { 39 : 572 : TurnManualLBOn(); 40 : : 41 [ + + ][ + - ]: 572 : if (CkMyPe() == 0) Print( "", std::cout ).diag( "Load balancing off" ); [ + - ][ + - ] [ + - ] 42 : 572 : } 43 : : 44 : : #include "NoWarning/lbswitch.def.h"