Changeset 25685


Ignore:
Timestamp:
10/14/20 00:19:52 (4 years ago)
Author:
jdquinn
Message:

CHG: MATLAB -> Python; calling external package install scripts with value of NUMCPUS_INSTALL in jenkins.sh; clean up

Location:
issm/trunk-jpl
Files:
1 added
12 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified issm/trunk-jpl/jenkins/jenkins.sh

    r25301 r25685  
    5858
    5959#Install ISSM
    60 #Determinig Installation type depending on svn changes{{{
     60#Determining installation type depending on svn changes{{{
    6161echo "======================================================";
    6262echo "             Determining Installation type            "
     
    153153NUMPACKAGES=$(($(echo ${EXTERNALPACKAGES} | wc -w ) / 2))
    154154
    155 #Jenkins xml files for individual packages
     155#Jenkins XML files for individual packages
    156156EXTERNAL_TEST_FILE="$ISSM_DIR/nightlylog/results/external.xml"
    157157mkdir -p $ISSM_DIR/nightlylog/results
     
    183183                echo "======================================================";
    184184
    185                 ./$PACKAGEINST &> compil.log
     185                ./$PACKAGEINST $NUMCPUS_INSTALL &> compil.log
    186186                if [ $? -ne 0 ] && [ "$PACKAGENAME" != "boost" ]; then
    187187                        cat compil.log
  • TabularUnified issm/trunk-jpl/src/m/classes/issmsettings.py

    r25637 r25685  
     1from checkfield import checkfield
    12from fielddisplay import fielddisplay
    2 from checkfield import checkfield
    33from WriteData import WriteData
    44
    55
    66class issmsettings(object):
    7     """
    8     ISSMSETTINGS class definition
     7    """ISSMSETTINGS class definition
    98
    10        Usage:
    11           issmsettings = issmsettings()
     9    Usage:
     10        issmsettings = issmsettings()
    1211    """
    1312
     
    8887        else:
    8988            WriteData(fid, prefix, 'name', 'md.settings.waitonlock', 'data', False, 'format', 'Boolean')
     89
    9090        WriteData(fid, prefix, 'object', self, 'fieldname', 'solver_residue_threshold', 'format', 'Double')
    9191    # }}}
  • TabularUnified issm/trunk-jpl/src/m/classes/qmu.py

    r25649 r25685  
    206206            WriteData(fid, prefix, 'data', False, 'name', 'md.qmu.mass_flux_segments_present', 'format', 'Boolean')
    207207            return
     208        WriteData(fid, prefix, 'data', self.method.params.samples, 'name', 'md.qmu.method.params.samples', 'format', 'Integer')
    208209        WriteData(fid, prefix, 'object', self, 'fieldname', 'numberofresponses', 'format', 'Integer')
    209210        WriteData(fid, prefix, 'object', self, 'fieldname', 'variabledescriptors', 'format', 'StringArray')
  • TabularUnified issm/trunk-jpl/src/m/classes/qmustatistics.py

    r25649 r25685  
    1 # NOTE: Uncomment
    2 
    31import numpy as np
    42
     
    5351
    5452        if self.method[0]['name'] == 'None':
    55             return
     53            return s
    5654
    5755        s += '{}\n'.format(fielddisplay(self, 'nfiles_per_directory', 'number of files per output directory'))
  • TabularUnified issm/trunk-jpl/src/m/exp/contourlevelzero.m

    r25636 r25685  
    11function contours=contourlevelzero(md,mask,level)
    2 %CONTOURLEVELZERO - figure out the zero level (or offset thereof, specified by the level value)
    3 %                   of a vectorial mask, and vectorialize it into an exp or shp compatible
    4 %structure.
     2%CONTOURLEVELZERO - figure out the zero level (or offset thereof, specified by
     3%the level value) of a vectorial mask, and vectorialize it into an exp or shp
     4%compatible structure.
    55%
    66%   Usage:
  • TabularUnified issm/trunk-jpl/src/m/geometry/polyarea.py

    r25455 r25685  
    55
    66def polyarea(x, y): #{{{
    7     """
    8     POLYAREA - returns the area of the 2-D polygon defined by the vertices in
     7    """POLYAREA - returns the area of the 2-D polygon defined by the vertices in
    98    lists x and y
    109   
  • TabularUnified issm/trunk-jpl/src/m/mesh/meshintersect3d.m

    r24779 r25685  
    11function indices=meshintersect3d(x,y,z,xs,ys,zs,varargin)
    2 %MESHINTERSECT - return indices (into x,y and z) of common values between (x,y,z) and (xs,ys,zs).
    3 %  i.e: x(index)=xs; y(index)=ys;
     2%MESHINTERSECT - return indices (into x,y and z) of common values between
     3%(x,y,z) and (xs,ys,zs).
     4%   i.e: x(index)=xs; y(index)=ys;
    45%
    56
  • TabularUnified issm/trunk-jpl/src/m/plot/plot_coastlines.m

    r25627 r25685  
    33%define coastline: {{{
    44coast=[-90 -180; ...
    5         -83.83 -180 ;...
     5-83.83 -180 ;...
    66-84.33 -178 ;...
    77-84.5 -174 ;...
  • TabularUnified issm/trunk-jpl/src/m/plot/processdata.py

    r24261 r25685  
    33
    44def processdata(md, data, options):
    5     """
    6     PROCESSDATA - process data to be plotted
     5    """PROCESSDATA - process data to be plotted
    76
    87    datatype = 1 -> elements
     
    1615    See also: PLOTMODEL, PROCESSMESH
    1716    """
    18     # {{{ Initialisation and grabbing auxiliaries
     17    # {{{ Initialization and grabbing auxiliaries
    1918    # check format
    2019    if (len(data) == 0 or (len(data) == 1 and not isinstance(data, dict) and np.isnan(data).all())):
  • TabularUnified issm/trunk-jpl/src/m/qmu/postqmu.py

    r25632 r25685  
    4545        dakotaresults.dresp_dat = dresp_dat
    4646
    47     if md.qmu.output:
    48         if md.qmu.method.method == 'nond_sampling' and md.qmu.statistics.method[0].name == 'None':
     47    if md.qmu.output and md.qmu.statistics.method[0]['name'] == 'None':
     48        if md.qmu.method.method == 'nond_sampling':
    4949            dakotaresults.modelresults = []
    5050            md2 = copy.deepcopy(md)
     
    5555                dakotaresults.modelresults.append(md2.results)
    5656
    57     # TODO: Uncomment the following once qmustatistics class is translated
    58     # if md.qmu.statistics.method[0].name != 'None':
    59     #     md.qmu.isdakota = 0
    60     #     md = loadresultsfromdisk(md, [md.miscellaneous.name,'.stats'])
    61     #     md.qmu.isdakota = 1
     57    if md.qmu.statistics.method[0]['name'] != 'None':
     58        md.qmu.isdakota = 0
     59        md = loadresultsfromdisk(md, [md.miscellaneous.name,'.stats'])
     60        md.qmu.isdakota = 1
    6261
    6362    # put dakotaresults in their right location.
  • TabularUnified issm/trunk-jpl/src/m/solve/loadresultsfromcluster.py

    r25300 r25685  
    55from helpers import *
    66from loadresultsfromdisk import loadresultsfromdisk
     7from MatlabFuncs import ispc
     8from pairoptions import pairoptions
    79
    810
    9 def loadresultsfromcluster(md, runtimename=False):
    10     '''
    11     LOADRESULTSFROMCLUSTER - load results of solution sequence from cluster
     11def remove(filename):
     12    try:
     13        os.remove(filename)
     14    except OSError:
     15        print(('WARNING: ' + filename + ' does not exist'))
    1216
    13        Usage:
    14           md = loadresultsfromcluster(md, runtimename)
    15     '''
     17def loadresultsfromcluster(md, *args):
     18    """LOADRESULTSFROMCLUSTER - load results of solution sequence from cluster
    1619
    17     #retrieve cluster, to be able to call its methods
     20    Usage:
     21        md = loadresultsfromcluster(md, runtimename)
     22    """
     23
     24    # Process options
     25    options = pairoptions(*args)
     26    nolog = options.getfieldvalue('nolog', 0)
     27    md.private.runtimename = options.getfieldvalue('runtimename', md.private.runtimename)
     28
     29    # Retrieve cluster, to be able to call its methods
    1830    cluster = md.cluster
    1931
    20     if runtimename:
    21         md.private.runtimename = runtimename
    22 
    23     #Download outputs from the cluster
    24     filelist = [md.miscellaneous.name + '.outlog', md.miscellaneous.name + '.errlog']
     32    # Download outputs from the cluster
     33    if not nolog:
     34        filelist = [md.miscellaneous.name + '.outlog', md.miscellaneous.name + '.errlog']
     35    else:
     36        filelist = []
    2537    if md.qmu.isdakota:
    2638        filelist.append(md.miscellaneous.name + '.qmu.err')
     
    2941            if md.qmu.params.tabular_graphics_data:
    3042                filelist.append('dakota_tabular.dat')
     43        if md.qmu.output and md.qmu.statistics.method[0]['name'] == 'None':
     44            if md.qmu.method.method == 'nond_sampling':
     45                for i in range(len(md.qmu.method.params.samples)):
     46                    filelist.append(md.miscellaneous.name + '.outbin' + str(i))
     47        if md.qmu.statistics.method[0]['name'] != 'None':
     48            filelist.append(md.miscellaneous.name + '.stats')
    3149    else:
    3250        filelist.append(md.miscellaneous.name + '.outbin')
    3351    cluster.Download(md.private.runtimename, filelist)
    3452
    35     #If we are here, no errors in the solution sequence, call loadresultsfromdisk.
    36     if os.path.exists(md.miscellaneous.name + '.outbin'):
    37         if os.path.getsize(md.miscellaneous.name + '.outbin') > 0:
    38             md = loadresultsfromdisk(md, md.miscellaneous.name + '.outbin')
    39         else:
    40             print(('WARNING, outbin file is empty for run ' + md.miscellaneous.name))
    41     elif not md.qmu.isdakota:
    42         print(('WARNING, outbin file does not exist ' + md.miscellaneous.name))
     53    # If we are here, no errors in the solution sequence, call loadresultsfromdisk
     54    md = loadresultsfromdisk(md, md.miscellaneous.name + '.outbin')
    4355
    44     #erase the log and output files
    45     if md.qmu.isdakota:
    46         #filename = os.path.join('qmu' + str(os.getpid()), md.miscellaneous.name)
    47         filename = md.miscellaneous.name
     56    # Erase the log and output files
     57    for i in range(len(filelist)):
     58        filename = filelist[i]
     59        remove(filename)
     60    if not ispc():
     61        remove(md.private.runtimename + '.tar.gz')
    4862
    49         # this will not work like normal as dakota doesn't generate outbin files,
    50         #   instead calls postqmu to store results directly in the model
    51         #   at md.results.dakota via dakota_out_parse
    52         md = loadresultsfromdisk(md, md.miscellaneous.name + '.outbin')
    53     else:
    54         filename = md.miscellaneous.name
    55         TryRem('.outbin', filename)
    56         if not platform.system() == 'Windows':
    57             TryRem('.tar.gz', md.private.runtimename)
    58 
    59     TryRem('.errlog', filename)
    60     TryRem('.outlog', filename)
    61 
    62     #erase input file if run was carried out on same platform.
     63    # Erase input file if run was carried out on same platform
    6364    hostname = socket.gethostname()
    6465    if hostname == cluster.name:
     66        remove(md.miscellaneous.name + '.bin')
     67        remove(md.miscellaneous.name + '.toolkits')
    6568        if md.qmu.isdakota:
    66             #filename = os.path.join('qmu' + str(os.getpid()), md.miscellaneous.name)
    67             filename = md.miscellaneous.name
    68             TryRem('.queue', filename)
     69            remove(md.miscellaneous.name + '.qmu.in')
     70        if not ispc():
     71            remove(md.miscellaneous.name + '.queue')
    6972        else:
    70             filename = md.miscellaneous.name
    71             TryRem('.toolkits', filename)
    72             if not platform.system() == 'Windows':
    73                 TryRem('.queue', filename)
    74             else:
    75                 TryRem('.bat', filename)
    76 
    77         # remove this for bin file debugging
    78         TryRem('.bin', filename)
     73            remove(md.miscellaneous.name + '.bat')
    7974
    8075    return md
    81 
    82 def TryRem(extension, filename):
    83     try:
    84         os.remove(filename + extension)
    85     except OSError:
    86         print(('WARNING, no ' + extension + '  is present for run ' + filename))
  • TabularUnified issm/trunk-jpl/src/m/solve/loadresultsfromdisk.py

    r25168 r25685  
    11import os
    2 from results import results
     2
     3from helpers import fieldnames
    34from parseresultsfromdisk import parseresultsfromdisk
    45from postqmu import postqmu
     6from results import results
    57
    68
    79def loadresultsfromdisk(md, filename):
    8     '''
    9     LOADRESULTSFROMDISK - load results of solution sequence from disk file "filename"
     10    """LOADRESULTSFROMDISK - load results of solution sequence from disk file
     11    "filename"
    1012
    11        Usage:
    12           md = loadresultsfromdisk(md=False,filename=False);
    13     '''
    14     #check number of inputs/outputs
     13    Usage:
     14        md = loadresultsfromdisk(md=False, filename=False)
     15    """
     16
     17    # Check number of inputs/outputs
    1518    if not md or not filename:
    1619        raise ValueError("loadresultsfromdisk: error message.")
     
    1821    if not md.qmu.isdakota:
    1922
    20         #Check that file exists
     23        # Check that file exists
    2124        if not os.path.exists(filename):
    22             raise OSError("binary file '{}' not found.".format(filename))
     25            err_msg  = '============================================================\n'
     26            err_msg += '   Binary file {} not found                                 \n'.format(filename)
     27            err_msg += '                                                            \n'
     28            err_msg += '   This typically happens when the run crashed.             \n'
     29            err_msg += '   Please check for error messages above or in the outlog   \n'
     30            err_msg += '============================================================\n'
    2331
    24         #initialize md.results if not a structure yet
     32            raise OSError(err_msg)
     33
     34        # Initialize md.results if not a structure yet
    2535        if not isinstance(md.results, results):
    2636            md.results = results()
    2737
    28         #load results onto model
     38        # Load results onto model
    2939        structure = parseresultsfromdisk(md, filename, not md.settings.io_gather)
    30         if not len(structure):
     40        if not structure:
    3141            raise RuntimeError("No result found in binary file '{}'. Check for solution crash.".format(filename))
    32 
     42        if not structure[0].SolutionType:
     43            if structure[-1].SolutionType:
     44                structure[0].SolutionType = structure[-1].SolutionType
     45            else:
     46                print('Cannot find a solution type in the results! Ascribing one: \'NoneSolution\'.')
     47                structure[0].SolutionType = 'NoneSolution'
    3348        setattr(md.results, structure[0].SolutionType, structure)
    3449
    35         #recover solution_type from results
     50        # Recover solution_type from results
    3651        md.private.solution = structure[0].SolutionType
    3752
    38         #read log files onto fields
     53        # Read log files onto fields
    3954        if os.path.exists(md.miscellaneous.name + '.errlog'):
    4055            with open(md.miscellaneous.name + '.errlog', 'r') as f:
    4156                setattr(getattr(md.results, structure[0].SolutionType)[0], 'errlog', [line[:-1] for line in f])
    4257        else:
    43             setattr(getattr(md.results, structure[0].SolutionType)[0], 'errlog', [])
     58            setattr(getattr(md.results, structure[0].SolutionType)[0], 'errlog', '')
    4459
    4560        if os.path.exists(md.miscellaneous.name + '.outlog'):
     
    4762                setattr(getattr(md.results, structure[0].SolutionType)[0], 'outlog', [line[:-1] for line in f])
    4863        else:
    49             setattr(getattr(md.results, structure[0].SolutionType)[0], 'outlog', [])
     64            setattr(getattr(md.results, structure[0].SolutionType)[0], 'outlog', '')
    5065
    51         if len(getattr(md.results, structure[0].SolutionType)[0].errlog):
     66        if getattr(md.results, structure[0].SolutionType)[0].errlog:
    5267            print("loadresultsfromcluster info message: error during solution. Check your errlog and outlog model fields.")
    5368
    54         #if only one solution, extract it from list for user friendliness
     69        # If only one solution, extract it from list for user friendliness
    5570        if len(structure) == 1 and structure[0].SolutionType != 'TransientSolution':
    5671            setattr(md.results, structure[0].SolutionType, structure[0])
    5772
    58     #post processes qmu results if necessary
     73    # Post processes QMU results if necessary
    5974    else:
    6075        md = postqmu(md)
Note: See TracChangeset for help on using the changeset viewer.