source:
issm/oecreview/Archive/21724-22754/ISSM-21904-21905.diff@
22755
Last change on this file since 22755 was 22755, checked in by , 7 years ago | |
---|---|
File size: 2.7 KB |
-
TabularUnified ../trunk-jpl/etc/environment.sh
96 96 libpathappend "$PETSC_DIR/lib" 97 97 fi 98 98 99 SCOTCH_DIR="$ISSM_DIR/externalpackages/scotch/install" 100 libpathappend "$SCOTCH_DIR/lib" 101 99 102 SLEPC_DIR="$ISSM_DIR/externalpackages/slepc/install" 100 103 libpathappend "$SLEPC_DIR/lib" 101 104 -
TabularUnified ../trunk-jpl/m4/issm_options.m4
713 713 dnl scotch libraries 714 714 if test "x$HAVE_SCOTCH" = "xyes"; then 715 715 SCOTCHINCL="-DNOFILEIO -I$SCOTCH_ROOT/include -DSCOTCH_VERSION=\\\"UNKNOWN\\\"" 716 SCOTCHLIB="-L$SCOTCH_ROOT/lib -lnfioscotch -lnfioscotcherr -lnfioscotcherrexit -lscotchmetis"716 SCOTCHLIB="-L$SCOTCH_ROOT/lib -lnfioscotch -lnfioscotcherr -lnfioscotcherrexit " 717 717 AC_DEFINE([_HAVE_SCOTCH_],[1],[with Scotch in ISSM src]) 718 718 AC_SUBST([SCOTCHINCL]) 719 719 AC_SUBST([SCOTCHLIB]) -
TabularUnified ../trunk-jpl/externalpackages/scotch/scotch.patch
2226 2226 --- src/src/libscotch/parser_ll.l 2013-05-06 14:14:21.000000000 -0700 2227 2227 *************** 2228 2228 *** 192,197 **** 2229 --- 192,21 4----2229 --- 192,213 ---- 2230 2230 stratParserInit ( 2231 2231 const char * const string) /*+ Strategy string to parse +*/ 2232 2232 { 2233 2233 + /* reset static variables from previous runs (jes, 4/29/10) */ 2234 + yy_current_buffer = 0;2235 2234 + yy_hold_char = (char) 0; 2236 2235 + yy_n_chars=0; /* number of characters read into yy_ch_buf */ 2237 2236 + yy_c_buf_p = (char *) 0; -
TabularUnified ../trunk-jpl/src/m/partition/partitioner.m
40 40 md.mesh.numberofelements=md.mesh.numberofelements2d; 41 41 md.qmu.vertex_weight=[]; 42 42 md.mesh.vertexconnectivity=[]; 43 recomputeadjacency='on'; 43 44 end 44 45 45 46 %adjacency matrix if needed: … … 79 80 %are we using weights? 80 81 if strcmpi(getfieldvalue(options,'weighting'),'on'), 81 82 weights=floor(md.qmu.vertex_weight/min(md.qmu.vertex_weight)); 83 else 84 weights=[]; 82 85 end 83 86 maptab=Scotch(md.qmu.adjacency,[],weights,[],'cmplt',[npart]); 84 87 85 part=maptab(:,2) ;%index partitions from 1 up. like metis.88 part=maptab(:,2)+1;%index partitions from 1 up. like metis. 86 89 87 90 elseif strcmpi(package,'linear'), 88 91
Note:
See TracBrowser
for help on using the repository browser.