Ignore:
Timestamp:
08/07/18 20:02:12 (7 years ago)
Author:
dmenemen
Message:

speeding up test by downloading and building MITgcm only if needed

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/test/NightlyRun/test4002.m

    r23068 r23074  
    44%Script control parameters
    55steps=[1 2 3 4 5 6 7 8 9 10 11 12];
     6steps=[1 2 3 4 5];
    67final_time=1/365;
    78
     
    136137
    137138    %specify computational grid in SIZE.h
    138     fidi=fopen('../MITgcm/code/SIZE.h.bak','r');
    139     fido=fopen('../MITgcm/code/SIZE.h','w');
    140     tline = fgetl(fidi);
    141     fprintf(fido,'%s\n',tline);
    142     while 1
     139    if ~exist('../MITgcm/code/SIZE.h')
     140        fidi=fopen('../MITgcm/code/SIZE.h.bak','r');
     141        fido=fopen('../MITgcm/code/SIZE.h','w');
    143142        tline = fgetl(fidi);
    144         if ~ischar(tline), break, end
    145         %do the change here:
    146         if strcmpi(tline,'     &           sNx =  20,'),
    147             fprintf(fido,'%s%i%s\n','     &           sNx =  ',round(Nx/nPx),',');
    148             continue;
    149         end
    150         if strcmpi(tline,'     &           sNy =  20,'),
    151             fprintf(fido,'%s%i%s\n','     &           sNy =  ',round(Ny/nPy),',');
    152             continue;
    153         end
    154         if strcmpi(tline,'     &           nPx =   1,'),
    155             fprintf(fido,'%s%i%s\n','     &           nPx = ',nPx,',');
    156             continue;
    157         end
    158         if strcmpi(tline,'     &           nPy =   2,'),
    159             fprintf(fido,'%s%i%s\n','     &           nPy = ',nPy,',');
    160             continue;
    161         end
    162143        fprintf(fido,'%s\n',tline);
     144        while 1
     145            tline = fgetl(fidi);
     146            if ~ischar(tline), break, end
     147            %do the change here:
     148            if strcmpi(tline,'     &           sNx =  20,'),
     149                fprintf(fido,'%s%i%s\n','     &           sNx =  ',round(Nx/nPx),',');
     150                continue;
     151            end
     152            if strcmpi(tline,'     &           sNy =  20,'),
     153                fprintf(fido,'%s%i%s\n','     &           sNy =  ',round(Ny/nPy),',');
     154                continue;
     155            end
     156            if strcmpi(tline,'     &           nPx =   1,'),
     157                fprintf(fido,'%s%i%s\n','     &           nPx = ',nPx,',');
     158                continue;
     159            end
     160            if strcmpi(tline,'     &           nPy =   2,'),
     161                fprintf(fido,'%s%i%s\n','     &           nPy = ',nPy,',');
     162                continue;
     163            end
     164            fprintf(fido,'%s\n',tline);
     165        end
     166        %close  files
     167        fclose(fidi);
     168        fclose(fido);
    163169    end
    164     %close  files
    165     fclose(fidi);
    166     fclose(fido);
    167 
    168          system(['../MITgcm/build.sh generic ' pwd '/../MITgcm']);
     170
     171    system(['../MITgcm/build.sh generic ' pwd '/../MITgcm']);
    169172end
    170173% }}}
Note: See TracChangeset for help on using the changeset viewer.