Changeset 27488


Ignore:
Timestamp:
01/01/23 07:29:35 (2 years ago)
Author:
Mathieu Morlighem
Message:

CHG: minor

Location:
issm/trunk-jpl/src/m/classes
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/classes/clusters/generic.m

    r27262 r27488  
    122122                                        if ismac,
    123123                                                if IssmConfig('_HAVE_MPI_'),
    124                                                         fprintf(fid,'mpiexec -np %i %s --leak-check=full --error-limit=no --dsymutil=yes --suppressions=%s %s/%s %s %s %s 2> %s.errlog > %s.outlog ',...
     124                                                        fprintf(fid,'mpiexec -np %i %s --leak-check=full --leak-check=full --show-leak-kinds=all --error-limit=no --dsymutil=yes --suppressions=%s %s/%s %s %s %s 2> %s.errlog > %s.outlog ',...
    125125                                                        cluster.np,cluster.valgrind,cluster.valgrindsup,cluster.codepath,executable,solution,[cluster.executionpath '/' dirname], modelname,modelname,modelname);
    126126                                                else
    127                                                         fprintf(fid,'%s --leak-check=full --dsymutil=yes --error-limit=no --suppressions=%s %s/%s %s %s %s 2> %s.errlog > %s.outlog',...
     127                                                        fprintf(fid,'%s --leak-check=full --dsymutil=yes --error-limit=no --leak-check=full --show-leak-kinds=all --suppressions=%s %s/%s %s %s %s 2> %s.errlog > %s.outlog',...
    128128                                                        cluster.valgrind,cluster.valgrindsup,cluster.codepath,executable,solution,[cluster.executionpath '/' dirname], modelname,modelname,modelname);
    129129                                                end
  • issm/trunk-jpl/src/m/classes/hydrologyshakti.m

    r23936 r27488  
    2121        methods
    2222                function self = extrude(self,md) % {{{
     23                        self.head = project3d(md, 'vector', self.head , 'type', 'node');
     24                        self.gap_height = project3d(md, 'vector', self.gap_height, 'type', 'element');
     25                        self.bump_spacing = project3d(md, 'vector', self.bump_spacing, 'type', 'element');
     26                        self.bump_height = project3d(md, 'vector', self.bump_height, 'type', 'element');
     27                        self.englacial_input = project3d(md, 'vector', self.englacial_input, 'type', 'node');
     28                        self.moulin_input = project3d(md, 'vector', self.moulin_input, 'type', 'node');
     29                        self.reynolds = project3d(md, 'vector', self.reynolds, 'type', 'element');
     30                        self.neumannflux = project3d(md, 'vector', self.neumannflux, 'type', 'element');
     31                        self.spchead = project3d(md, 'vector', self.spchead, 'type', 'node');
    2332                end % }}}
    2433                function self = hydrologyshakti(varargin) % {{{
Note: See TracChangeset for help on using the changeset viewer.