Skip to content
Snippets Groups Projects
Select Git revision
  • e94ca34e70a4c054e97a562b3e87d0ac208c4187
  • master default
  • nlf-fixes
  • newton-quadratic-equation-solver
  • nlf-fixes-r
  • nls-fixes
  • sep-fixes
  • sep
  • use-dprior
  • ep-sparse
  • rebase-1
  • parfor
  • reset-seed-in-unit-tests
  • remove-persistent-variables
  • nonlinear-filter-fixes
  • pac-mce-with-composite-target
  • 6.x
  • dprior
  • covariance-quadratic-approximation
  • benchmark-ec
  • kalman_mex
  • 5.5
  • 5.4
  • 5.3
  • 5.2
  • 5.1
  • 5.0
  • 5.0-rc1
  • 4.7-beta3
  • 4.7-beta2
  • 4.7-beta1
  • 4.6.4
  • 4.6.3
  • 4.6.2
  • 4.6.1
  • 4.6.0
  • 4.6.0-rc2
  • 4.6.0-rc1
  • 4.6-beta1
  • 4.5.7
  • 4.5.6
41 results

fParallel.m

Blame
  • Forked from Dynare / dynare
    Source project has a limited visibility.
    fParallel.m 3.20 KiB
    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-2011 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,
        disp(['fParallel ',int2str(whoiam),' crashed.'])
        fOutputVar.error = lasterror;
        save([ fname,'_output_',int2str(whoiam),'.mat'],'fOutputVar' )
        waitbarString = fOutputVar.error.message;
        %       waitbarTitle=['Metropolis-Hastings ',options_.parallel(ThisMatlab).ComputerName];
        if Parallel(ThisMatlab).Local,
            waitbarTitle='Local ';
        else
            waitbarTitle=[Parallel(ThisMatlab).ComputerName];
        end
        fMessageStatus(NaN,whoiam,waitbarString, waitbarTitle, Parallel(ThisMatlab));
        
    end
    diary off;
    delete(['P_',fname,'_',int2str(whoiam),'End.txt']);
    
    
    exit;