Skip to content
Snippets Groups Projects
Select Git revision
  • 5ee346e4fdb5605ab3f561fc8dc7b105774df274
  • master default protected
  • 6.x protected
  • madysson
  • 5.x protected
  • asm
  • time-varying-information-set
  • 4.6 protected
  • dynare_minreal
  • dragonfly
  • various_fixes
  • 4.5 protected
  • clang+openmp
  • exo_steady_state
  • declare_vars_in_model_block
  • julia
  • error_msg_undeclared_model_vars
  • static_aux_vars
  • slice
  • aux_func
  • penalty
  • 6.4 protected
  • 6.3 protected
  • 6.2 protected
  • 6.1 protected
  • 6.0 protected
  • 6-beta2 protected
  • 6-beta1 protected
  • 5.5 protected
  • 5.4 protected
  • 5.3 protected
  • 5.2 protected
  • 5.1 protected
  • 5.0 protected
  • 5.0-rc1 protected
  • 4.7-beta3 protected
  • 4.7-beta2 protected
  • 4.7-beta1 protected
  • 4.6.4 protected
  • 4.6.3 protected
  • 4.6.2 protected
41 results

SymbolTable.cc

Blame
  • fParallel.m NaN GiB
    function fParallel(fblck,nblck,whoiam,ThisMatlab,fname)
    % PARALLEL CONTEXT
    % In a parallel context, this function is launched on slave
    % machines, and acts as a wrapper around the function containing the
    % computing task itself.
    %
    % INPUTS
    %  o fblck [int]        index number of the first thread to run in this
    %                       MATLAB instance
    %  o nblck [int]        number of threads to run in this
    %                       MATLAB instance
    %  o whoiam [int]       index number of this CPU among all CPUs in the
    %                       cluster
    %  o ThisMatlab [int]   index number of this slave machine in the cluster
    %                       (entry in options_.parallel)
    %  o fname [string]     function to be run, containing the computing task
    %
    % OUTPUTS 
    %   None 
    %
    % Copyright (C) 2006-2008,2010 Dynare Team
    %
    % This file is part of Dynare.
    %
    % Dynare is free software: you can redistribute it and/or modify
    % it under the terms of the GNU General Public License as published by
    % the Free Software Foundation, either version 3 of the License, or
    % (at your option) any later version.
    %
    % Dynare is distributed in the hope that it will be useful,
    % but WITHOUT ANY WARRANTY; without even the implied warranty of
    % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    % GNU General Public License for more details.
    %
    % You should have received a copy of the GNU General Public License
    % along with Dynare.  If not, see <http://www.gnu.org/licenses/>.
    
    global funcName
    
    funcName=fname;
    
    warning off;
    diary off;
    
    delete( [fname,'_',int2str(whoiam),'.log']);
    
    diary( [fname,'_',int2str(whoiam),'.log']);
    
    % Configure dynare environment.
    dynareroot = dynare_config();
    
    % Load input data.
    load( [fname,'_input']) 
    
    if exist('fGlobalVar') && ~isempty (fGlobalVar)
        globalVars = fieldnames(fGlobalVar);
        for j=1:length(globalVars),
            eval(['global ',globalVars{j},';'])
            evalin('base',['global ',globalVars{j},';'])
        end
        struct2local(fGlobalVar);
        % Create global variables in the base workspace as well.
        evalin('base',['load( [''',fname,'_input''],''fGlobalVar'')'])
        evalin('base','struct2local(fGlobalVar)');
    end
    
    
    fInputVar.Parallel = Parallel;
    
    
    % Launch the routine to be run in parallel.
    
    try,
        tic,
     
        fOutputVar = feval(fname, fInputVar ,fblck, nblck, whoiam, ThisMatlab);
        toc,
        if isfield(fOutputVar,'OutputFileName'),
            OutputFileName = fOutputVar.OutputFileName;
        else
            OutputFileName = '';
        end
        if(whoiam)
            
            % Save the output result.
            
            save([ fname,'_output_',int2str(whoiam),'.mat'],'fOutputVar' )
           
        end
        
        disp(['fParallel ',int2str(whoiam),' completed.'])
    catch ME
        disp(['fParallel ',int2str(whoiam),' crashed.'])
        fOutputVar.error = ME;
        save([ fname,'_output_',int2str(whoiam),'.mat'],'fOutputVar' )
        waitbarString = fOutputVar.error.message;
        %       waitbarTitle=['Metropolis-Hastings ',options_.parallel(ThisMatlab).PcName];
        if Parallel(ThisMatlab).Local,
            waitbarTitle='Local ';
        else
            waitbarTitle=[Parallel(ThisMatlab).PcName];
        end
        fMessageStatus(NaN,whoiam,waitbarString, waitbarTitle, Parallel(ThisMatlab));
        
    end
    diary off;
    delete(['P_',fname,'_',int2str(whoiam),'End.txt']);
    
    
    exit;