Man page - gord(1)
Packages contains this manual
- mtst-int32(1)
- mord-int32(1)
- amk_p2(1)
- gtst-long(1)
- gmk_hy-int32(1)
- gotst-long(1)
- scotch_test_esmumps-long(1)
- gdump-int64(1)
- mord(1)
- gdump(1)
- amk_fft2-long(1)
- scotch_gbase-int32(1)
- mcv(1)
- gout-int32(1)
- gdump-long(1)
- atst-int64(1)
- scotch_binaries(1)
- mord-long(1)
- gotst(1)
- atst(1)
- scotch_esmumps(1)
- mtst-int64(1)
- gmk_m3-int32(1)
- gmk_m3-int64(1)
- scotch_gbase(1)
- gtst(1)
- acpl(1)
- gord-int64(1)
- gmk_m3(1)
- gscat-int64(1)
- gotst-int32(1)
- gout-long(1)
- gmk_hy-long(1)
- gmk_ub2(1)
- gmk_m2-int32(1)
- scotch_gpart-int32(1)
- amk_ccc-int32(1)
- gdump-int32(1)
- amk_ccc(1)
- amk_grf-long(1)
- amk_grf-int64(1)
- amk_p2-int32(1)
- amk_fft2-int32(1)
- gcv-long(1)
- gord-int32(1)
- mmk_m2-long(1)
- atst-int32(1)
- scotch_gmap-int64(1)
- amk_fft2(1)
- scotch_gmap(1)
- amk_hy(1)
- scotch_gbase-int64(1)
- amk_ccc-int64(1)
- amk_grf-int32(1)
- amk_fft2-int64(1)
- gcv-int64(1)
- gout-int64(1)
- acpl-int64(1)
- gord-long(1)
- gmk_hy-int64(1)
- gtst-int32(1)
- scotch_test_fax-int64(1)
- atst-long(1)
- mmk_m3-long(1)
- mmk_m2-int64(1)
- amk_m2-int32(1)
- mmk_m3-int64(1)
- gmtst-int32(1)
- mmk_m2-int32(1)
- acpl-long(1)
- gmk_ub2-int64(1)
- mord-int64(1)
- gmk_ub2-long(1)
- gmk_msh(1)
- mmk_m2(1)
- acpl-int32(1)
- amk_hy-int32(1)
- scotch_test_fax-long(1)
- gscat(1)
- scotch_test_fax-int32(1)
- gmk_m2-long(1)
- scotch_gbase-long(1)
- scotch_test_esmumps-int32(1)
- scotch_gmap-int32(1)
- gotst-int64(1)
- gmk_ub2-int32(1)
- mcv-int64(1)
- scotch_gpart-long(1)
- gcv(1)
- scotch_gpart(1)
- mtst-long(1)
- gmk_m3-long(1)
- gmk_m2(1)
- gscat-long(1)
- amk_m2-long(1)
- gmk_m2-int64(1)
- scotch_test_esmumps-int64(1)
- gscat-int32(1)
- amk_hy-long(1)
- gmk_msh-int64(1)
- amk_ccc-long(1)
- amk_hy-int64(1)
- amk_grf(1)
- gord(1)
- amk_m2-int64(1)
- mcv-long(1)
- mtst(1)
- scotch_gpart-int64(1)
- amk_p2-long(1)
- gout(1)
- gmk_msh-long(1)
- gmtst-long(1)
- mcv-int32(1)
- amk_p2-int64(1)
- gcv-int32(1)
- amk_m2(1)
- gtst-int64(1)
- scotch_gmap-long(1)
- gmtst(1)
- gmk_msh-int32(1)
- mmk_m3(1)
- mmk_m3-int32(1)
- gmk_hy(1)
- gmtst-int64(1)
apt-get install scotch
Manual
gord
NAMESYNOPSIS
DESCRIPTION
OPTIONS
EXAMPLE
SEE ALSO
AUTHOR
NAME
gord - compute sparse matrix orderings of graphs
SYNOPSIS
gord [ options ] [ gfile ] [ ofile ] [ lfile ]
DESCRIPTION
The gord program computes, in a sequential way, an ordering of a Scotch source graph representing the pattern of some symmetric sparse matrix.
Source graph file gfile can only be a centralized graph file. The resulting ordering is stored in file ofile . Eventual logging information (such as the one produced by option -v ) is sent to file lfile . When file names are not specified, data is read from standard input and written to standard output. Standard streams can also be explicitely represented by a dash โ-โ.
When the proper libraries have been included at compile time, gord can directly handle compressed graphs, both as input and output. A stream is treated as compressed whenever its name is postfixed with a compressed file extension, such as in โbrol.grf.bz2โ or โ-.gzโ. The compression formats which can be supported are the bzip2 format (โ.bz2โ), the gzip format (โ.gzโ), and the lzma format (โ.lzmaโ).
OPTIONS
|
-copt |
Choose default ordering strategy according to one or several options among: |
b
|
enforce load balance as much as possible. |
||||
|
q |
privilege quality over speed (default). |
|||
|
s |
privilege speed over quality. |
|||
|
t |
enforce safety. |
|||
|
-h |
Display some help.
-m mfile
Save column block mapping data to file mfile . Mapping data specifies, for each vertex, the index of the column block to which this vertex belongs.
-o strat
Use sequential graph ordering strategy strat (see Scotch userโs manual for more information).
-t tfile
Save partitioning tree data to file tfile . Partitioning tree data specifies, for each vertex, the index of the first vertex of the parent block of the block to which the vertex belongs. Altogether with the mapping data provided in file mfile , it allows one to rebuild the separator tree of the nested dissection process.
|
-V |
Display program version and copyright. |
||
|
-v verb |
Set verbose mode to verb . It is a set of one of more characters which can be: |
s
|
strategy information. |
||||
|
t |
timing information. |
EXAMPLE
Reorder matrix graph brol.grf and save the resulting ordering to file brol.ord using the default sequential graph ordering strategy:
$ gord brol.grf brol.ord
SEE ALSO
dgord (1), gmk_hy (1), gtst (1).
Scotch userโs manual.
AUTHOR
Francois Pellegrini <francois.pellegrini@labri.fr>