Changeset 3059
- Timestamp:
- 02/19/10 15:40:24 (15 years ago)
- Location:
- issm/trunk/externalpackages/meshpart
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/externalpackages/meshpart/install.sh
r3012 r3059 14 14 tar -xvzf metismex-4.0.tar.gz -C meshpart/metis 15 15 #proto.h in metis library is not patched, at least for metismex, so create a local version 16 cp ../metis/install/Lib/proto.h meshpart/metis16 cp ${METIS_DIR}/Lib/proto.h meshpart/metis 17 17 18 18 # Move meshpart to src directory … … 30 30 #proto.h in metis library is not patched, at least for metismex, so link with local version 31 31 #mex -I../../../metis/install/Lib -L../../../metis/install -lmetis -largeArrayDims metismex.c 32 mex -I. -I../../../metis/install/Lib -L../../../metis/install -lmetis -largeArrayDims metismex.c 32 #mex -I. -I../../../metis/install/Lib -L../../../metis/install -lmetis -largeArrayDims metismex.c 33 ${MATLAB_DIR}/bin/mex -I. -I${METIS_DIR}/Lib -L${METIS_DIR} -lmetis -largeArrayDims metismex.c 33 34 mv metismex.mex* .. 34 35 cd ../.. -
issm/trunk/externalpackages/meshpart/meshpart.patch
r3012 r3059 1 Only in /home/jschierm/Libs/meshpart: adjacency_matrix.m 2 diff -rc src/chaco/Makefile /home/jschierm/Libs/meshpart/chaco/Makefile 1 diff -rc src/chaco/Makefile new/chaco/Makefile 3 2 *** src/chaco/Makefile 1998-07-06 13:08:26.000000000 -0700 4 --- /home/jschierm/Libs/meshpart/chaco/Makefile 2010-02-10 15:20:30.140413675-08003 --- new/chaco/Makefile 2010-02-19 15:09:04.165652259 -0800 5 4 *************** 6 5 *** 24,51 **** … … 33 32 CHFILES.c= ${CHACO}/main/interface.c \ 34 33 ${CHACO}/main/main.c \ 35 --- 24,5 8----34 --- 24,59 ---- 36 35 # See file ../copyright.m for complete copyright and licensing notice. 37 36 38 37 #MATLAB = /import/matlab 39 38 ! #MATLAB = /usr/local/libexec/matlab 40 ! MATLAB = /usr/local/pkgs/matlab-7.6 39 ! #MATLAB = /usr/local/pkgs/matlab-7.6 40 ! MATLAB = ${MATLAB_DIR} 41 41 42 42 #CHACO = /project/sparse/chaco/version2/code … … 71 71 *************** 72 72 *** 53,64 **** 73 --- 6 0,73----73 --- 61,74 ---- 74 74 ${CHACO}/submain/divide.c \ 75 75 ${CHACO}/submain/submain.c \ … … 111 111 ${CHACO}/connect/connected.c \ 112 112 ${CHACO}/connect/find_edges.c \ 113 --- 9 8,123----113 --- 99,124 ---- 114 114 ${CHACO}/klvspiff/coarsen_klv.c \ 115 115 ${CHACO}/klvspiff/countup_vtx_sep.c \ … … 140 140 *************** 141 141 *** 232,237 **** 142 --- 24 4,250----142 --- 245,251 ---- 143 143 ${CHACO}/util/normalize.c \ 144 144 ${CHACO}/util/mergesort.c \ … … 150 150 *************** 151 151 *** 243,248 **** 152 --- 25 6,263----152 --- 257,264 ---- 153 153 ${CHACO}/util/vecout.c \ 154 154 ${CHACO}/util/vecran.c \ … … 169 169 170 170 chaco.a: ${CHFILES.o} 171 --- 26 7,278----171 --- 268,279 ---- 172 172 # ${MATLAB}/bin/cmex CC='gcc -G' -lm ${OFLAGS} ${MLFILES.o} chaco.a; \ 173 173 # mv mlchaco.mex* ${DEST_DIR} … … 178 178 + 179 179 mlchaco: ${MLFILES.c} chaco.a Makefile 180 ! mex -output mlchaco -largeArrayDims -DMATLAB ${MLFILES.c} chaco.a -I${CHACO}/main180 ! ${MATLAB}/bin/mex -output mlchaco -largeArrayDims -DMATLAB ${MLFILES.c} chaco.a -I${CHACO}/main 181 181 mv mlchaco.mex* ${DEST_DIR} 182 182 183 183 chaco.a: ${CHFILES.o} 184 Only in /home/jschierm/Libs/meshpart/chaco: Makefile_old 185 Only in /home/jschierm/Libs/meshpart/chaco: Makefile_old2 186 diff -rc src/chaco/mlchaco.c /home/jschierm/Libs/meshpart/chaco/mlchaco.c 184 diff -rc src/chaco/mlchaco.c new/chaco/mlchaco.c 187 185 *** src/chaco/mlchaco.c 1999-07-23 12:19:09.000000000 -0700 188 --- /home/jschierm/Libs/meshpart/chaco/mlchaco.c 2009-07-29 15:22:23.507525662 -0700186 --- new/chaco/mlchaco.c 2010-02-10 15:31:43.903181816 -0800 189 187 *************** 190 188 *** 32,37 **** … … 335 333 if (ewgts != NULL) mxFree((char *) ewgts); 336 334 if (x != NULL) mxFree((char *) x); 337 Only in /home/jschierm/Libs/meshpart/chaco: mlchaco_jes_notes.txt 338 Only in /home/jschierm/Libs/meshpart/chaco: mlchaco_old.c 339 Only in /home/jschierm/Libs/meshpart/chaco: mlchaco_README.txt 340 diff -rc src/chaco.m /home/jschierm/Libs/meshpart/chaco.m 335 diff -rc src/chaco.m new/chaco.m 341 336 *** src/chaco.m 1999-07-23 12:13:26.000000000 -0700 342 --- /home/jschierm/Libs/meshpart/chaco.m 2009-07-29 14:58:33.872207593 -0700337 --- new/chaco.m 2010-02-10 15:31:43.909181823 -0800 343 338 *************** 344 339 *** 142,148 **** … … 359 354 else 360 355 vwgts = []; 361 Only in /home/jschierm/Libs/meshpart: chaco_old.m 362 diff -rc src/fiedler.m /home/jschierm/Libs/meshpart/fiedler.m 356 diff -rc src/fiedler.m new/fiedler.m 363 357 *** src/fiedler.m 1996-02-23 10:03:20.000000000 -0800 364 --- /home/jschierm/Libs/meshpart/fiedler.m 2009-07-13 14:25:59.000000000 -0700358 --- new/fiedler.m 2010-02-10 15:31:43.914181829 -0800 365 359 *************** 366 360 *** 58,64 **** … … 384 378 R = chol(L-shift*I); 385 379 Rt = R'; 386 Only in /home/jschierm/Libs/meshpart: fiedler_old.m 387 diff -rc src/meshdemo.m /home/jschierm/Libs/meshpart/meshdemo.m 380 diff -rc src/meshdemo.m new/meshdemo.m 388 381 *** src/meshdemo.m 2002-02-08 07:38:21.000000000 -0800 389 --- /home/jschierm/Libs/meshpart/meshdemo.m 2009-07-15 15:43:09.303210082 -0700382 --- new/meshdemo.m 2010-02-10 15:31:43.920181835 -0800 390 383 *************** 391 384 *** 97,103 **** … … 405 398 disp(' '); 406 399 disp(' Next is multilevel Kernighan-Lin partitioning, which first partitions'); 407 Only in /home/jschierm/Libs/meshpart: meshdemo_old.m 408 Only in /home/jschierm/Libs/meshpart: meshpart_notes_jes.txt 409 Only in /home/jschierm/Libs/meshpart: meshpart_README.txt 410 diff -rc src/metis/metismex.c /home/jschierm/Libs/meshpart/metis/metismex.c 400 diff -rc src/metis/metismex.c new/metis/metismex.c 411 401 *** src/metis/metismex.c 2009-07-13 14:37:08.000000000 -0700 412 --- /home/jschierm/Libs/meshpart/metis/metismex.c 2009-07-14 15:07:30.187491787 -0700402 --- new/metis/metismex.c 2010-02-10 15:31:43.926181842 -0800 413 403 *************** 414 404 *** 92,98 **** … … 430 420 431 421 /* Find MATLAB's matrix structure */ 432 diff -rc src/metis/proto.h /home/jschierm/Libs/meshpart/metis/proto.h 422 Only in new/metis: metismex.mexa64 423 diff -rc src/metis/proto.h new/metis/proto.h 433 424 *** src/metis/proto.h 2009-09-22 17:24:29.402085000 -0700 434 --- /home/jschierm/Libs/meshpart/metis/proto.h 2010-02-10 14:28:26.558752000-0800425 --- new/metis/proto.h 2010-02-10 15:31:43.932181849 -0800 435 426 *************** 436 427 *** 230,237 **** … … 472 463 473 464 474 Only in src: metismex.dll 475 Only in src: metismex.m 476 Only in /home/jschierm/Libs/meshpart: metismex.mexa64 477 Only in src: metismex.mexsol 478 Only in /home/jschierm/Libs/meshpart: metismex_notes_jes.txt 479 Only in /home/jschierm/Libs/meshpart: metismex_old.c 480 Only in /home/jschierm/Libs/meshpart: metismex_README.txt 481 Only in /home/jschierm/Libs/meshpart: mlchaco.mexa64 482 Only in /home/jschierm/Libs/meshpart: User_Params 465 Only in new: metismex.mexa64 466 Only in new: mlchaco.mexa64
Note:
See TracChangeset
for help on using the changeset viewer.