forked from DrTimothyAldenDavis/SuiteSparse
-
Notifications
You must be signed in to change notification settings - Fork 1
/
SuiteSparse_install.m
404 lines (368 loc) · 12.5 KB
/
SuiteSparse_install.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
function SuiteSparse_install (do_demo)
%SuiteSparse_install: compiles and installs all of SuiteSparse
% A Suite of Sparse matrix packages, authored or co-authored by Tim Davis.
%
% Packages in SuiteSparse:
%
% GraphBLAS graph algorithms via sparse linear algebra (graphblas.org)
% Mongoose graph partitioner
% SPEX solve sparse Ax=b exactly
% UMFPACK sparse LU factorization (multifrontal)
% CHOLMOD sparse Cholesky factorization, and many other operations
% AMD sparse symmetric approximate minimum degree ordering
% COLAMD sparse column approximate minimum degree ordering
% CAMD constrained AMD
% CCOLAMD constrained COLAMD
% CSparse a Concise Sparse matrix package (32-bit or 64-bit, real only)
% CXSparse extended version of CSparse (32-bit/64-bit/real/complex)
% ssget interface to SuiteSparse Matrix Collection
% KLU sparse LU factorization (left-looking)
% BTF permutation to block triangular form (like dmperm)
% LDL sparse LDL' factorization
% SuiteSparseCollection tools for managing the SuiteSparse Matrix Collection
% RBio read/write Rutherford/Boeing files
% SSMULT sparse matrix times sparse matrix
% MESHND 2D and 3D regular mesh generation and nested dissection
% FACTORIZE an object-oriented solver for x=A\b
% SPARSEINV sparse inverse subset; computes entries of inv(sparse(A))
% MATLAB_Tools various simple m-files and demos
% SuiteSparseQR sparse QR factorization
% spqr_rank MATLAB toolbox for sparse rank deficient matrices
%
% Example:
% SuiteSparse_install % compile and prompt to run each package's demo
% SuiteSparse_install(0) % compile but do not run the demo
% SuiteSparse_install(1) % compile and run the demos with no prompts
% help SuiteSparse % for more details
%
% See also AMD, COLAMD, CAMD, CCOLAMD, CHOLMOD, UMFPACK, CSPARSE, CXSPARSE,
% ssget, RBio, SuiteSparseCollection, KLU, BTF, MESHND, SSMULT, LINFACTOR,
% SPOK, SPQR_RANK, SuiteSparse, SPQR, PATHTOOL, PATH, FACTORIZE,
% SPARSEINV, Mongoose, GraphBLAS, SPEX.
%
% This script installs the full-featured CXSparse rather than CSparse.
%
% If you get errors building or using METIS, just remove the
% CHOLMOD/SuiteSparse_metis folder. This often occurs on Windows.
%
% Before using SuiteSparse_install, you must compile the GraphBLAS library for
% use in MATLAB. In the system shell while in the SuiteSparse folder, type
% "make gbmatlab". You must then either install the libgraphblas_matlab.so
% library system-wide ( cd GraphBLAS/GraphBLAS ; make ; sudo make install), or
% install your own copy ( make local ; make install ) and then add the
% SuiteSparse/lib folder to your LD_LIBRARY_PATH. Restart MATLAB after
% compiling libgraphblas_matlab.so.
%
% Copyright (c) 1990-2023, Timothy A. Davis, http://suitesparse.com.
%
% In collaboration with (in alphabetical order): Patrick Amestoy, David
% Bateman, Jinhao Chen, Yanqing Chen, Iain Duff, Les Foster, John Gilbert,
% William Hager, Scott Kolodziej, Chris Lourenco, Stefan Larimore, Erick
% Moreno-Centeno, Esmond Ng, Ekanathan Palamadai, Sivasankaran Rajamanickam,
% Sanjay Ranka, Wissam Sid-Lakhdar, Nuri Yeralan.
%
% See each package for its license.
%-------------------------------------------------------------------------------
% initializations
%-------------------------------------------------------------------------------
paths = { } ;
SuiteSparse = pwd ;
% determine the MATLAB version (6.1, 6.5, 7.0, ...)
v = version ;
pc = ispc ;
% print the introduction
help SuiteSparse_install
fprintf ('\nInstalling SuiteSparse for MATLAB version %s\n\n', v) ;
failed = cell (1,0) ;
% add SuiteSparse to the path
paths = add_to_path (paths, SuiteSparse) ;
%-------------------------------------------------------------------------------
% compile and install the packages
%-------------------------------------------------------------------------------
% compile and install UMFPACK
try
paths = add_to_path (paths, [SuiteSparse '/UMFPACK/MATLAB']) ;
umfpack_make ;
catch me
disp (me.message) ;
fprintf ('UMFPACK not installed\n') ;
failed {end+1} = 'umfpack' ;
end
% compile and install CHOLMOD
try
paths = add_to_path (paths, [SuiteSparse '/CHOLMOD/MATLAB']) ;
cholmod_make ;
catch me
disp (me.message) ;
fprintf ('CHOLMOD not installed\n') ;
failed {end+1} = 'cholmod' ;
end
% compile and install AMD
try
paths = add_to_path (paths, [SuiteSparse '/AMD/MATLAB']) ;
amd_make ;
catch me
disp (me.message) ;
fprintf ('AMD not installed\n') ;
failed {end+1} = 'amd' ;
end
% compile and install COLAMD
try
paths = add_to_path (paths, [SuiteSparse '/COLAMD/MATLAB']) ;
colamd_make ;
catch me
disp (me.message) ;
fprintf ('COLAMD not installed\n') ;
failed {end+1} = 'colamd' ;
end
% compile and install CCOLAMD
try
paths = add_to_path (paths, [SuiteSparse '/CCOLAMD/MATLAB']) ;
ccolamd_make ;
catch me
disp (me.message) ;
fprintf ('CCOLAMD not installed\n') ;
failed {end+1} = 'ccolamd' ;
end
% compile and install CAMD
try
paths = add_to_path (paths, [SuiteSparse '/CAMD/MATLAB']) ;
camd_make ;
catch me
disp (me.message) ;
fprintf ('CAMD not installed\n') ;
failed {end+1} = 'camd' ;
end
% install ssget, unless it's already in the path
try
% if this fails, then ssget is not yet installed
index = ssget ;
fprintf ('ssget already installed:\n') ;
which ssget
catch
index = [ ] ;
end
if (isempty (index))
% ssget is not installed. Use SuiteSparse/ssget
fprintf ('Installing SuiteSparse/ssget\n') ;
try
paths = add_to_path (paths, [SuiteSparse '/ssget']) ;
catch me
disp (me.message) ;
fprintf ('ssget not installed\n') ;
failed {end+1} = 'ssget' ;
end
end
% compile and install CXSparse
try
paths = add_to_path (paths, [SuiteSparse '/CXSparse/MATLAB/Demo']) ;
paths = add_to_path (paths, [SuiteSparse '/CXSparse/MATLAB/CSparse']) ;
fprintf ('Compiling CXSparse:\n') ;
if (pc)
% Windows does not support ANSI C99 complex, which CXSparse requires
cs_make (1, 0) ;
else
cs_make (1) ;
end
catch me
disp (me.message) ;
fprintf ('CXSparse not installed\n') ;
failed {end+1} = 'cxsparse' ;
end
% compile and install LDL
try
paths = add_to_path (paths, [SuiteSparse '/LDL/MATLAB']) ;
ldl_make ;
catch me
disp (me.message) ;
fprintf ('LDL not installed\n') ;
failed {end+1} = 'ldl' ;
end
% compile and install BTF
try
paths = add_to_path (paths, [SuiteSparse '/BTF/MATLAB']) ;
btf_make ;
catch me
disp (me.message) ;
fprintf ('BTF not installed\n') ;
failed {end+1} = 'btf' ;
end
% compile and install KLU
try
paths = add_to_path (paths, [SuiteSparse '/KLU/MATLAB']) ;
klu_make ;
catch me
disp (me.message) ;
fprintf ('KLU not installed\n') ;
failed {end+1} = 'klu' ;
end
% compile and install SuiteSparseQR
try
if (pc)
fprintf ('Note that SuiteSparseQR will not compile with the lcc\n') ;
fprintf ('compiler provided with MATLAB on Windows\n') ;
end
paths = add_to_path (paths, [SuiteSparse '/SPQR/MATLAB']) ;
spqr_make ;
catch me
disp (me.message) ;
fprintf ('SuiteSparseQR not installed\n') ;
failed {end+1} = 'spqr' ;
end
% compile and install RBio
try
paths = add_to_path (paths, [SuiteSparse '/RBio/RBio']) ;
RBmake ;
catch me
disp (me.message) ;
fprintf ('RBio not installed.\n') ;
failed {end+1} = 'rbio' ;
end
% install MATLAB_Tools/*
try
paths = add_to_path (paths, [SuiteSparse '/MATLAB_Tools']) ;
paths = add_to_path (paths, [SuiteSparse '/MATLAB_Tools/Factorize']) ;
paths = add_to_path (paths, [SuiteSparse '/MATLAB_Tools/MESHND']) ;
paths = add_to_path (paths, [SuiteSparse '/MATLAB_Tools/LINFACTOR']) ;
paths = add_to_path (paths, [SuiteSparse '/MATLAB_Tools/find_components']) ;
paths = add_to_path (paths, [SuiteSparse '/MATLAB_Tools/GEE']) ;
paths = add_to_path (paths, [SuiteSparse '/MATLAB_Tools/shellgui']) ;
paths = add_to_path (paths, [SuiteSparse '/MATLAB_Tools/waitmex']) ;
paths = add_to_path (paths, [SuiteSparse '/MATLAB_Tools/spqr_rank']) ;
paths = add_to_path (paths, [SuiteSparse '/MATLAB_Tools/spqr_rank/SJget']) ;
fprintf ('MATLAB_Tools installed\n') ;
catch me
disp (me.message) ;
fprintf ('MATLAB_Tools not installed\n') ;
failed {end+1} = 'matlab_tools' ;
end
% compile and install SuiteSparseCollection
try
% do not try to compile with large-file I/O for MATLAB 6.5 or earlier
paths = add_to_path (paths, [SuiteSparse '/MATLAB_Tools/SuiteSparseCollection']) ;
ss_install (verLessThan ('matlab', '7.0')) ;
catch me
disp (me.message) ;
fprintf ('SuiteSparseCollection not installed\n') ;
failed {end+1} = 'SuiteSparseCollection' ;
end
% compile and install SSMULT
try
paths = add_to_path (paths, [SuiteSparse '/MATLAB_Tools/SSMULT']) ;
ssmult_install ;
catch me
disp (me.message) ;
fprintf ('SSMULT not installed\n') ;
failed {end+1} = 'ssmult' ;
end
% compile and install dimacs10
try
paths = add_to_path (paths, [SuiteSparse '/MATLAB_Tools/dimacs10']) ;
dimacs10_install (0) ;
catch me
disp (me.message) ;
fprintf ('MATLAB_Tools/dimacs10 not installed\n') ;
failed {end+1} = 'dimacs10' ;
end
% compile and install spok
try
paths = add_to_path (paths, [SuiteSparse '/MATLAB_Tools/spok']) ;
spok_install ;
catch me
disp (me.message) ;
fprintf ('MATLAB_Tools/spok not installed\n') ;
failed {end+1} = 'spok' ;
end
% compile and install sparsinv
try
paths = add_to_path (paths, [SuiteSparse '/MATLAB_Tools/sparseinv']) ;
sparseinv_install ;
catch me
disp (me.message) ;
fprintf ('MATLAB_Tools/sparseinv not installed\n') ;
failed {end+1} = 'sparseinv' ;
end
% compile and install Mongoose
try
fprintf ('\nCompiling Mongoose\n') ;
paths = add_to_path (paths, [SuiteSparse '/Mongoose/MATLAB']) ;
mongoose_make (0) ;
fprintf ('\n') ;
catch me
disp (me.message) ;
fprintf ('Mongoose not installed\n') ;
failed {end+1} = 'mongoose' ;
end
% compile and install GraphBLAS
try
fprintf ('\nCompiling GraphBLAS\n') ;
paths = add_to_path (paths, [SuiteSparse '/GraphBLAS/GraphBLAS/build']) ;
paths = add_to_path (paths, [SuiteSparse '/GraphBLAS/GraphBLAS/demo']) ;
paths = add_to_path (paths, [SuiteSparse '/GraphBLAS/GraphBLAS']) ;
cd ('@GrB/private') ;
gbmake ;
catch me
disp (me.message) ;
fprintf ('GraphBLAS not installed\n') ;
failed {end+1} = 'GraphBLAS' ;
end
try
fprintf ('try to install SPEX (requires GMP and MPFR)\n') ;
paths = add_to_path (paths, [SuiteSparse '/SPEX/SPEX_Left_LU/MATLAB']) ;
SPEX_Left_LU_install (0) ;
catch me
disp (me.message) ;
fprintf ('SPEX not installed\n') ;
failed {end+1} = 'SPEX' ;
end
%-------------------------------------------------------------------------------
% post-install wrapup
%-------------------------------------------------------------------------------
cd (SuiteSparse)
fprintf ('SuiteSparse is now installed.\n\n') ;
nfail = length (failed) ;
if (nfail > 0)
fprintf ('packages not installed: ') ;
for k = 1:nfail
fprintf ('%s ', failed {k}) ;
end
fprintf ('\n') ;
end
% run the demo, if requested
if (nargin < 1)
% ask if demo should be run
y = input ('Hit enter to run the SuiteSparse demo (or "n" to quit): ', 's');
if (isempty (y))
y = 'y' ;
end
do_demo = (y (1) ~= 'n') ;
do_pause = true ;
else
% run the demo without pausing
do_pause = false ;
end
if (do_demo)
try
SuiteSparse_demo ([ ], do_pause) ;
catch me
disp (me.message) ;
fprintf ('SuiteSparse demo failed\n') ;
end
end
% print the list of new directories added to the path
fprintf ('\nSuiteSparse installation is complete. The following paths\n') ;
fprintf ('have been added for this session. Use pathtool to add them\n') ;
fprintf ('permanently. If you cannot save the new path because of file\n');
fprintf ('permissions, then add these commands to your startup.m file.\n') ;
fprintf ('Type "doc startup" and "doc pathtool" for more information.\n\n') ;
for k = 1:length (paths)
fprintf ('addpath %s\n', paths {k}) ;
end
cd (SuiteSparse)
fprintf ('\nSuiteSparse for MATLAB %s installation complete\n', v) ;
%-------------------------------------------------------------------------------
function paths = add_to_path (paths, newpath)
% add a path
cd (newpath) ;
addpath (newpath) ;
paths = [paths { newpath } ] ;