File: control

package info (click to toggle)
scotch 7.0.11-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 25,084 kB
  • sloc: ansic: 90,286; makefile: 4,735; fortran: 2,536; yacc: 642; sh: 269; lex: 259
file content (420 lines) | stat: -rw-r--r-- 18,281 bytes parent folder | download
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
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
Source: scotch
Section: math
Priority: optional
Maintainer: Debian Science Maintainers <debian-science-maintainers@lists.alioth.debian.org>
Uploaders: "Adam C. Powell, IV" <hazelsct@debian.org>,
 Andreas Tille <tille@debian.org>,
 Drew Parsons <dparsons@debian.org>
Build-Depends: debhelper-compat (= 13),
    cmake,
    gfortran | fortran-compiler,
    bison, flex,
    zlib1g-dev,
    libbz2-dev,
    liblzma-dev,
    chrpath,
    mpi-default-dev (>= 1.17), mpi-default-bin
Standards-Version: 4.7.3
Vcs-Git: https://salsa.debian.org/science-team/scotch.git
Vcs-Browser: https://salsa.debian.org/science-team/scotch
Homepage: http://www.labri.fr/perso/pelegrin/scotch/

Package: scotch
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: programs and libraries for graph, mesh and hypergraph partitioning
 Its purpose is to apply graph theory, with a divide and conquer
 approach, to scientific computing problems such as graph and mesh
 partitioning, static mapping, and sparse matrix ordering, in
 application domains ranging from structural mechanics to operating
 systems or bio-chemistry.
 .
 The SCOTCH distribution is a set of programs and libraries which
 implement the static mapping and sparse matrix reordering algorithms
 developed within the SCOTCH project.
 .
 SCOTCH has many interesting features:
 .
 o Its capabilities can be used through a set of stand-alone programs
 as well as through the libSCOTCH library, which offers both C and
 Fortran interfaces.
 .
 o It provides algorithms to partition graph structures, as well as
 mesh structures defined as node-element bipartite graphs and which
 can also represent hypergraphs.
 .
 o It can map any weighted source graph onto any weighted target
 graph. The source and target graphs may have any topology, and their
 vertices and edges may be weighted. Moreover, both source and target
 graphs may be disconnected. This feature allows for the mapping of
 programs onto disconnected subparts of a parallel architecture made
 up of heterogeneous processors and communication links.
 .
 o It computes amalgamated block orderings of sparse matrices, for
 efficient solving using BLAS routines.
 .
 o Its running time is linear in the number of edges of the source
 graph, and logarithmic in the number of vertices of the target graph
 for mapping computations.
 .
 o It can handle indifferently graph and mesh data structures created
 within C or Fortran programs, with array indices starting from 0 or
 1.
 .
 o It offers extended support for adaptive graphs and meshes through
 the handling of disjoint edge arrays.
 .
 o It is dynamically parametrizable thanks to strategy strings that
 are interpreted at run-time.
 .
 o It uses system memory efficiently, to process large graphs and
 meshes without incurring out-of-memory faults;
 .
 o It is highly modular and documented. Since it has been released
 under the CeCILL-C free/libre software license, it can be used as a
 testbed for the easy and quick development and testing of new
 partitioning and ordering methods.
 .
 o It can be easily interfaced to other programs. The programs
 comprising the SCOTCH project have been designed to run in
 command-line mode without any interactive prompting, so that they can
 be called easily from other programs by means of system() or popen()
 calls, or piped together on a single command line. Moreover, vertex
 labeling capabilities allow for easy renumbering of vertices.
 .
 o It provides many tools to build, check, and display graphs, meshes
 and matrix patterns.
 .
 o It is written in C and uses the POSIX interface, which makes it
 highly portable. PT-SCOTCH uses the MPI interface, and optionally the
 POSIX threads.

Package: ptscotch
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: MPI programs and libraries for graph, mesh and hypergraph partitioning
 PT-SCOTCH is the MPI version of scotch, which is a set of programs and
 libraries which implement the static mapping and sparse matrix reordering
 algorithms developed within the SCOTCH project.

Package: libscotch-dev
Section: libdevel
Architecture: any
Multi-Arch: same
Depends: libscotcherr-dev (= ${binary:Version}), libscotch-7.0c (= ${binary:Version}), mpi-default-dev, zlib1g-dev, ${shlibs:Depends}, ${misc:Depends}
Description: programs and libraries for graph, mesh and hypergraph partitioning
 Headers and libraries package for scotch, which is a set of programs and
 libraries which implement the static mapping and sparse matrix reordering
 algorithms developed within the SCOTCH project.

Package: libptscotch-dev
Section: libdevel
Architecture: any
Multi-Arch: same
Depends: libptscotcherr-dev (= ${binary:Version}), libptscotch-7.0c (= ${binary:Version}), libscotch-dev (= ${binary:Version}), mpi-default-dev, zlib1g-dev, ${misc:Depends}
Description: MPI programs and libraries for graph, mesh and hypergraph partitioning
 Headers and libraries package for PT-SCOTCH, the MPI version of scotch, which
 is a set of programs and libraries which implement the static mapping and
 sparse matrix reordering algorithms developed within the SCOTCH project.

Package: scotch-64
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: programs and libraries for 64-bit graph, mesh and hypergraph partitioning
 The SCOTCH distribution is a set of programs and libraries which
 implement the static mapping and sparse matrix reordering algorithms
 developed within the SCOTCH project.
 .
 This package provides scotch with 64-bit indexing (IDXSIZE=64) for
 SCOTCH_Idx but standard 32-bit integers for SCOTCH_Num.

Package: ptscotch-64
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: MPI programs and libraries for 64-bit graph, mesh and hypergraph partitioning
 PT-SCOTCH is the MPI version of scotch, which is a set of programs and
 libraries which implement the static mapping and sparse matrix reordering
 algorithms developed within the SCOTCH project.
 .
 This package provides scotch with 64-bit indexing (IDXSIZE=64) for
 SCOTCH_Idx but standard 32-bit integers for SCOTCH_Num.

Package: libscotch-64-dev
Section: libdevel
Architecture: any
Multi-Arch: same
Depends: libscotcherr-dev (= ${binary:Version}), libscotch-64-7.0 (= ${binary:Version}), mpi-default-dev, zlib1g-dev, ${shlibs:Depends}, ${misc:Depends}
Description: programs and libraries for 64-bit graph, mesh and hypergraph partitioning
 Headers and libraries package for scotch, which is a set of programs and
 libraries which implement the static mapping and sparse matrix reordering
 algorithms developed within the SCOTCH project.
 .
 This package provides scotch with 64-bit indexing (IDXSIZE=64) for
 SCOTCH_Idx but standard 32-bit integers for SCOTCH_Num.

Package: libptscotch-64-dev
Section: libdevel
Architecture: any
Multi-Arch: same
Depends: libptscotcherr-dev (= ${binary:Version}), libptscotch-64-7.0 (= ${binary:Version}), libscotch-64-dev (= ${binary:Version}), mpi-default-dev, zlib1g-dev, ${misc:Depends}
Description: MPI programs and libraries for graph, mesh and hypergraph partitioning
 Headers and libraries package for PT-SCOTCH, the MPI version of scotch, which
 is a set of programs and libraries which implement the static mapping and
 sparse matrix reordering algorithms developed within the SCOTCH project.
 .
 This package provides scotch with 64-bit indexing (IDXSIZE=64) for
 SCOTCH_Idx but standard 32-bit integers for SCOTCH_Num.

Package: scotch-64i
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: programs and libraries for 64-bit graph, mesh and hypergraph partitioning
 The SCOTCH distribution is a set of programs and libraries which
 implement the static mapping and sparse matrix reordering algorithms
 developed within the SCOTCH project.
 .
 This package provides scotch with both 64-bit indexing and integers
 (IDXSIZE=64 and INTSIZE=64).

Package: ptscotch-64i
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: MPI programs and libraries for 64-bit graph, mesh and hypergraph partitioning
 PT-SCOTCH is the MPI version of scotch, which is a set of programs and
 libraries which implement the static mapping and sparse matrix reordering
 algorithms developed within the SCOTCH project.
 .
 This package provides ptscotch with both 64-bit indexing and integers.
 (IDXSIZE=64 and INTSIZE=64).

Package: libscotch-64i-dev
Section: libdevel
Architecture: any
Multi-Arch: same
Depends: libscotcherr-dev (= ${binary:Version}), libscotch-64i-7.0 (= ${binary:Version}), mpi-default-dev, zlib1g-dev, ${shlibs:Depends}, ${misc:Depends}
Description: programs and libraries for 64-bit graph, mesh and hypergraph partitioning
 Headers and libraries package for scotch, which is a set of programs and
 libraries which implement the static mapping and sparse matrix reordering
 algorithms developed within the SCOTCH project.
 .
 This package provides libscotch with both 64-bit indexing and integers
 (IDXSIZE=64 and INTSIZE=64).

Package: libptscotch-64i-dev
Section: libdevel
Architecture: any
Multi-Arch: same
Depends: libptscotcherr-dev (= ${binary:Version}), libptscotch-64i-7.0 (= ${binary:Version}), libscotch-64i-dev (= ${binary:Version}), mpi-default-dev, zlib1g-dev, ${misc:Depends}
Description: MPI programs and libraries for graph, mesh and hypergraph partitioning
 Headers and libraries package for PT-SCOTCH, the MPI version of scotch, which
 is a set of programs and libraries which implement the static mapping and
 sparse matrix reordering algorithms developed within the SCOTCH project.
 .
 This package provides libptscotch with both 64-bit indexing and integers
 (IDXSIZE=64 and INTSIZE=64).

Package: libscotcherr-dev
Section: libdevel
Architecture: any
Multi-Arch: same
Depends: libscotcherr-7.0 (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends}
Breaks: libscotch-dev (<< 7.0.8-1~)
Replaces: libscotch-dev (<< 7.0.8-1~)
Description: libraries for graph, mesh and hypergraph partitioning (error handling)
 Headers and libraries package for scotch, which is a set of programs and
 libraries which implement the static mapping and sparse matrix reordering
 algorithms developed within the SCOTCH project.
 .
 This package provides development files for the common libscotcherr
 and libscotcherrexit libraries used for error handling by scotch.

Package: libptscotcherr-dev
Section: libdevel
Architecture: any
Multi-Arch: same
Depends: libptscotcherr-7.0 (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends}
Breaks: libptscotch-dev (<< 7.0.8-1~)
Replaces: libptscotch-dev (<< 7.0.8-1~)
Description: libraries for graph, mesh and hypergraph partitioning (error handling)
 Headers and libraries package for scotch, which is a set of programs and
 libraries which implement the static mapping and sparse matrix reordering
 algorithms developed within the SCOTCH project.
 .
 This package provides development files for the common libptscotcherr
 and libptscotcherrexit libraries used for error handling by ptscotch.

Package: libscotchmetis-dev
Section: libdevel
Architecture: any
Multi-Arch: same
Depends: libscotch-dev (= ${binary:Version}), libscotch-7.0c (= ${binary:Version}),
 ${misc:Depends}
Conflicts: libmetis-dev, libparmetis-dev
Replaces: libmetis-dev
Description: programs and libraries for graph, mesh and hypergraph partitioning
 Scotch/Metis compatility interface, providing a free implementation of the
 Metis system for graph partitioning and sparse matrix reordering.

Package: libscotchparmetis-dev
Section: libdevel
Architecture: any
Multi-Arch: same
Depends: libptscotch-dev (= ${binary:Version}), libptscotch-7.0c (= ${binary:Version}),
 ${misc:Depends}
Conflicts: libparmetis-dev
Replaces: libparmetis-dev
Description: programs and libraries for graph, mesh and hypergraph partitioning
 Scotch/ParMetis compatility interface, providing a free implementation of the
 ParMetis system for parallel graph partitioning and sparse matrix reordering.

Package: libscotchmetis-64-dev
Section: libdevel
Architecture: any
Multi-Arch: same
Depends: libscotch-64-dev (= ${binary:Version}), libscotch-64-7.0 (= ${binary:Version}),
 ${misc:Depends}
Description: programs and libraries for 64-bit graph, mesh and hypergraph partitioning
 Scotch/Metis compatility interface, providing a free implementation of the
 Metis system for graph partitioning and sparse matrix reordering.
 .
 This package provides metis emulation with scotch supporting
 64-bit indexing (IDXSIZE=64) for SCOTCH_Idx but standard 32-bit
 integers for SCOTCH_Num.

Package: libscotchparmetis-64-dev
Section: libdevel
Architecture: any
Multi-Arch: same
Depends: libptscotch-64-dev (= ${binary:Version}), libptscotch-64-7.0 (= ${binary:Version}),
 ${misc:Depends}
Description: programs and libraries for graph, mesh and hypergraph partitioning
 Scotch/ParMetis compatility interface, providing a free implementation of the
 ParMetis system for parallel graph partitioning and sparse matrix reordering.
 .
 This package provides parmetis emulation with scotch supporting
 64-bit indexing (IDXSIZE=64) for SCOTCH_Idx but standard 32-bit
 integers for SCOTCH_Num.

Package: libscotchmetis-64i-dev
Section: libdevel
Architecture: any
Multi-Arch: same
Depends: libscotch-64i-dev (= ${binary:Version}), libscotch-64i-7.0 (= ${binary:Version}),
 ${misc:Depends}
Description: programs and libraries for 64-bit graph, mesh and hypergraph partitioning
 Scotch/Metis compatility interface, providing a free implementation of the
 Metis system for graph partitioning and sparse matrix reordering.
 .
 This package provides metis emulation with scotch supporting
 both 64-bit indexing and integers (IDXSIZE=64 and INTSIZE=64).

Package: libscotchparmetis-64i-dev
Section: libdevel
Architecture: any
Multi-Arch: same
Depends: libptscotch-64i-dev (= ${binary:Version}), libptscotch-64i-7.0 (= ${binary:Version}),
 ${misc:Depends}
Description: programs and libraries for graph, mesh and hypergraph partitioning
 Scotch/ParMetis compatility interface, providing a free implementation of the
 ParMetis system for parallel graph partitioning and sparse matrix reordering.
 .
 This package provides parmetis emulation with ptscotch supporting
 both 64-bit indexing and integers (IDXSIZE=64 and INTSIZE=64).

Package: libscotch-7.0c
Section: libs
Architecture: any
Multi-Arch: same
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: programs and libraries for graph, mesh and hypergraph partitioning
 Shared libraries package for scotch, which is a set of programs and
 libraries which implement the static mapping and sparse matrix reordering
 algorithms developed within the SCOTCH project.

Package: libptscotch-7.0c
Section: libs
Architecture: any
Multi-Arch: same
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: MPI programs and libraries for graph, mesh and hypergraph partitioning
 Shared libraries package for PT-SCOTCH, the MPI version of scotch, which
 is a set of programs and libraries which implement the static mapping and
 sparse matrix reordering algorithms developed within the SCOTCH project.

Package: libscotch-64-7.0
Section: libs
Architecture: any
Multi-Arch: same
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: programs and libraries for 64-bit graph, mesh and hypergraph partitioning
 Shared libraries package for scotch, which is a set of programs and
 libraries which implement the static mapping and sparse matrix reordering
 algorithms developed within the SCOTCH project.
 .
 This package provides libscotch with 64-bit indexing (IDXSIZE=64) for
 SCOTCH_Idx but standard 32-bit integers for SCOTCH_Num.

Package: libptscotch-64-7.0
Section: libs
Architecture: any
Multi-Arch: same
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: MPI programs and libraries for 64-bit graph, mesh and hypergraph partitioning
 Shared libraries package for PT-SCOTCH, the MPI version of scotch, which
 is a set of programs and libraries which implement the static mapping and
 sparse matrix reordering algorithms developed within the SCOTCH project.
 .
 This package provides libptscotch with 64-bit indexing (IDXSIZE=64)
 for SCOTCH_Idx but standard 32-bit integers for SCOTCH_Num.

Package: libscotch-64i-7.0
Section: libs
Architecture: any
Multi-Arch: same
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: programs and libraries for 64-bit graph, mesh and hypergraph partitioning
 Shared libraries package for scotch, which is a set of programs and
 libraries which implement the static mapping and sparse matrix reordering
 algorithms developed within the SCOTCH project.
 .
 This package provides libscotch with both 64-bit indexing and integers
 (IDXSIZE=64 and INTSIZE=64).

Package: libptscotch-64i-7.0
Section: libs
Architecture: any
Multi-Arch: same
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: MPI programs and libraries for 64-bit graph, mesh and hypergraph partitioning
 Shared libraries package for PT-SCOTCH, the MPI version of scotch, which
 is a set of programs and libraries which implement the static mapping and
 sparse matrix reordering algorithms developed within the SCOTCH project.
 .
 This package provides libptscotch with both 64-bit indexing and integers
 (IDXSIZE=64 and INTSIZE=64).

Package: libscotcherr-7.0
Section: libs
Architecture: any
Multi-Arch: same
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: libraries for graph, mesh and hypergraph partitioning (error handling)
 Headers and libraries package for scotch, which is a set of programs and
 libraries which implement the static mapping and sparse matrix reordering
 algorithms developed within the SCOTCH project.
 .
 This package provides shared libraries, libscotcherr and
 libscotcherrexit, used for error handling by scotch.

Package: libptscotcherr-7.0
Section: libs
Architecture: any
Multi-Arch: same
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: libraries for graph, mesh and hypergraph partitioning (error handling)
 Headers and libraries package for scotch, which is a set of programs and
 libraries which implement the static mapping and sparse matrix reordering
 algorithms developed within the SCOTCH project.
 .
 This package provides shared libraries, libptscotcherr and
 libptscotcherrexit, used for error handling by ptscotch.