Dataset card, metadata, and level1_small tier
Browse files- README.md +101 -0
- level1_small/Boeing_msc01440.bin +3 -0
- level1_small/Brunetiere_thermal.bin +3 -0
- level1_small/DIMACS10_delaunay_n11.bin +3 -0
- level1_small/FIDAP_ex3.bin +3 -0
- level1_small/Gset_G4.bin +3 -0
- level1_small/Pajek_SciMet.bin +3 -0
- level1_small/Sandia_adder_dcop_38.bin +3 -0
- level1_small/VDOL_reorientation_2.bin +3 -0
- manifest.json +702 -0
- summary.csv +101 -0
README.md
ADDED
|
@@ -0,0 +1,101 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- other
|
| 5 |
+
tags:
|
| 6 |
+
- sparse-matrix
|
| 7 |
+
- cuda
|
| 8 |
+
- gpu-kernels
|
| 9 |
+
- spmv
|
| 10 |
+
- spmm
|
| 11 |
+
- spgemm
|
| 12 |
+
- suitesparse
|
| 13 |
+
- benchmark
|
| 14 |
+
pretty_name: Dr.Sparse OTF Test Set
|
| 15 |
+
size_categories:
|
| 16 |
+
- n<1K
|
| 17 |
+
configs:
|
| 18 |
+
- config_name: summary
|
| 19 |
+
data_files: summary.csv
|
| 20 |
+
---
|
| 21 |
+
|
| 22 |
+
# Dr.Sparse OTF Test Set
|
| 23 |
+
|
| 24 |
+
100 sparse matrices from the [SuiteSparse Matrix Collection](https://sparse.tamu.edu/),
|
| 25 |
+
converted to the flat binary format the [Dr.Sparse](https://github.com/NKU-Yang/Dr.Sparse)
|
| 26 |
+
benchmark harness reads. This is the held-out evaluation set for LLM-generated
|
| 27 |
+
CUDA sparse kernels (SpMV / SpMM / SpGEMM), kept separate from the matrices the
|
| 28 |
+
models were developed against.
|
| 29 |
+
|
| 30 |
+
## Layout
|
| 31 |
+
|
| 32 |
+
Matrices are grouped into size tiers by row count, the convention Dr.Sparse task
|
| 33 |
+
discovery scans for:
|
| 34 |
+
|
| 35 |
+
| tier | rows | matrices | size |
|
| 36 |
+
|---|---|---:|---:|
|
| 37 |
+
| `level1_small` | < 3,500 | 8 | 2.6 MB |
|
| 38 |
+
| `level2_medium` | 3,500 – 34,000 | 35 | 155 MB |
|
| 39 |
+
| `level3_large` | 34,000 – 1,100,000 | 38 | 2.1 GB |
|
| 40 |
+
| `level4_huge` | > 1,100,000 | 19 | 8.6 GB |
|
| 41 |
+
|
| 42 |
+
`summary.csv` and `manifest.json` carry per-matrix `rows`, `cols`, `nnz`, `kind`,
|
| 43 |
+
`square`, `avg_row` and `density`. Row counts span 800 to 67.7M and nnz spans
|
| 44 |
+
10.4K to 138.8M.
|
| 45 |
+
|
| 46 |
+
## Binary format
|
| 47 |
+
|
| 48 |
+
Each `.bin` is CSR plus a dense vector, little-endian, no padding:
|
| 49 |
+
|
| 50 |
+
```
|
| 51 |
+
int32 num_rows
|
| 52 |
+
int32 num_cols
|
| 53 |
+
int32 nnz
|
| 54 |
+
int32 row_ptr[num_rows + 1]
|
| 55 |
+
int32 col_ind[nnz]
|
| 56 |
+
float32 values[nnz]
|
| 57 |
+
float32 x[num_cols] # dense RHS vector, for SpMV
|
| 58 |
+
```
|
| 59 |
+
|
| 60 |
+
Reading one in Python:
|
| 61 |
+
|
| 62 |
+
```python
|
| 63 |
+
import numpy as np
|
| 64 |
+
|
| 65 |
+
def read_bin(path):
|
| 66 |
+
with open(path, "rb") as f:
|
| 67 |
+
rows, cols, nnz = np.fromfile(f, dtype=np.int32, count=3)
|
| 68 |
+
row_ptr = np.fromfile(f, dtype=np.int32, count=rows + 1)
|
| 69 |
+
col_ind = np.fromfile(f, dtype=np.int32, count=nnz)
|
| 70 |
+
values = np.fromfile(f, dtype=np.float32, count=nnz)
|
| 71 |
+
x = np.fromfile(f, dtype=np.float32, count=cols)
|
| 72 |
+
return rows, cols, nnz, row_ptr, col_ind, values, x
|
| 73 |
+
```
|
| 74 |
+
|
| 75 |
+
The C++ side of the harness reads the same layout in `level_sparse/data_loader.h`.
|
| 76 |
+
|
| 77 |
+
## Use with Dr.Sparse
|
| 78 |
+
|
| 79 |
+
```bash
|
| 80 |
+
hf download KinGeorge/Dr.Sparse-OTF-test-set --repo-type dataset \
|
| 81 |
+
--local-dir /path/to/otf_test_set
|
| 82 |
+
|
| 83 |
+
# point the harness at it
|
| 84 |
+
python level_sparse/stage_otf_test_set.py --src /path/to/otf_test_set
|
| 85 |
+
./run_b200_eval_parallel.sh --model qwen3.8 --dry-run
|
| 86 |
+
```
|
| 87 |
+
|
| 88 |
+
The tiers here already match the layout discovery expects, so you can also
|
| 89 |
+
unpack straight into `level_sparse/otf_test_set/` and skip the staging step.
|
| 90 |
+
|
| 91 |
+
## Provenance and licence
|
| 92 |
+
|
| 93 |
+
Matrices are redistributed from the SuiteSparse Matrix Collection (Davis & Hu,
|
| 94 |
+
*The University of Florida Sparse Matrix Collection*, ACM TOMS 38(1), 2011),
|
| 95 |
+
whose entries are CC BY 4.0. Only the storage format was changed: the `.mtx`
|
| 96 |
+
sources were converted to CSR (single precision) and a dense `x` vector drawn
|
| 97 |
+
from a standard normal was appended so SpMV has a fixed right-hand side. That
|
| 98 |
+
vector is baked into each file, so results are reproducible across runs, but it
|
| 99 |
+
was not generated from a recorded seed and is not reproducible from the `.mtx`
|
| 100 |
+
source alone. Matrix values are otherwise unmodified. Please cite SuiteSparse if
|
| 101 |
+
you use this set.
|
level1_small/Boeing_msc01440.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:64a33135b92dab318d37d24a060b61ce83c328a4f9b95dac56b88a53b7b69784
|
| 3 |
+
size 381696
|
level1_small/Brunetiere_thermal.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d266720562c08591f1a3ebd5ecdc39f979f39a9e20de61b452d92e791d28fcad
|
| 3 |
+
size 559888
|
level1_small/DIMACS10_delaunay_n11.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:21767f11445b15b196977eced11f17ca666b912fce1e1af09298b2b78e08a575
|
| 3 |
+
size 114432
|
level1_small/FIDAP_ex3.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ec00644e18da48dc8a0d3799b7eca9a64156c9a644893de06205158096d9b685
|
| 3 |
+
size 436064
|
level1_small/Gset_G4.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2607bc4d9f7047a675bf2ff7cc8879dbb718c28a4e4d89697fb0c1f8bdcc0ac3
|
| 3 |
+
size 313232
|
level1_small/Pajek_SciMet.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c0bd356e6fd7d0e3ae48a1c73fae074d0265335af0d9c2d3099358b3f2afa89e
|
| 3 |
+
size 107992
|
level1_small/Sandia_adder_dcop_38.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e5b7e9e010a6ada68cee64c5c7d83ac3d5f428f8f73fdfa93f3ea1969aaea887
|
| 3 |
+
size 104488
|
level1_small/VDOL_reorientation_2.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dd614830c7c880c589f6aede5fe5c3eab9ca680f4862c2def89f8e1ff75d7db6
|
| 3 |
+
size 155648
|
manifest.json
ADDED
|
@@ -0,0 +1,702 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"Mittelmann_neos2": {
|
| 3 |
+
"rows": 132568,
|
| 4 |
+
"cols": 134128,
|
| 5 |
+
"nnz": 685087,
|
| 6 |
+
"kind": "linear programming problem",
|
| 7 |
+
"tier": "10000-1000000"
|
| 8 |
+
},
|
| 9 |
+
"JGD_Margulies_cat_ears_4_4": {
|
| 10 |
+
"rows": 19020,
|
| 11 |
+
"cols": 44448,
|
| 12 |
+
"nnz": 132888,
|
| 13 |
+
"kind": "combinatorial problem",
|
| 14 |
+
"tier": "10000-1000000"
|
| 15 |
+
},
|
| 16 |
+
"Boeing_msc01440": {
|
| 17 |
+
"rows": 1440,
|
| 18 |
+
"cols": 1440,
|
| 19 |
+
"nnz": 46270,
|
| 20 |
+
"kind": "structural problem",
|
| 21 |
+
"tier": "10000-1000000"
|
| 22 |
+
},
|
| 23 |
+
"GHS_indef_qpband": {
|
| 24 |
+
"rows": 20000,
|
| 25 |
+
"cols": 20000,
|
| 26 |
+
"nnz": 45000,
|
| 27 |
+
"kind": "optimization problem",
|
| 28 |
+
"tier": "10000-1000000"
|
| 29 |
+
},
|
| 30 |
+
"FIDAP_ex3": {
|
| 31 |
+
"rows": 1821,
|
| 32 |
+
"cols": 1821,
|
| 33 |
+
"nnz": 52685,
|
| 34 |
+
"kind": "computational fluid dynamics problem",
|
| 35 |
+
"tier": "10000-1000000"
|
| 36 |
+
},
|
| 37 |
+
"Sandia_adder_dcop_38": {
|
| 38 |
+
"rows": 1813,
|
| 39 |
+
"cols": 1813,
|
| 40 |
+
"nnz": 11246,
|
| 41 |
+
"kind": "subsequent circuit simulation problem",
|
| 42 |
+
"tier": "10000-1000000"
|
| 43 |
+
},
|
| 44 |
+
"ML_Graph_Fashion_MNIST_norm_10NN": {
|
| 45 |
+
"rows": 10000,
|
| 46 |
+
"cols": 10000,
|
| 47 |
+
"nnz": 158304,
|
| 48 |
+
"kind": "undirected weighted graph",
|
| 49 |
+
"tier": "10000-1000000"
|
| 50 |
+
},
|
| 51 |
+
"VDOL_reorientation_2": {
|
| 52 |
+
"rows": 1544,
|
| 53 |
+
"cols": 1544,
|
| 54 |
+
"nnz": 17910,
|
| 55 |
+
"kind": "optimal control problem",
|
| 56 |
+
"tier": "10000-1000000"
|
| 57 |
+
},
|
| 58 |
+
"Hollinger_mark3jac020sc": {
|
| 59 |
+
"rows": 9129,
|
| 60 |
+
"cols": 9129,
|
| 61 |
+
"nnz": 56175,
|
| 62 |
+
"kind": "economic problem",
|
| 63 |
+
"tier": "10000-1000000"
|
| 64 |
+
},
|
| 65 |
+
"GHS_indef_olesnik0": {
|
| 66 |
+
"rows": 88263,
|
| 67 |
+
"cols": 88263,
|
| 68 |
+
"nnz": 744216,
|
| 69 |
+
"kind": "2D/3D problem",
|
| 70 |
+
"tier": "10000-1000000"
|
| 71 |
+
},
|
| 72 |
+
"Rajat_rajat06": {
|
| 73 |
+
"rows": 10922,
|
| 74 |
+
"cols": 10922,
|
| 75 |
+
"nnz": 46983,
|
| 76 |
+
"kind": "circuit simulation problem",
|
| 77 |
+
"tier": "10000-1000000"
|
| 78 |
+
},
|
| 79 |
+
"DIMACS10_delaunay_n11": {
|
| 80 |
+
"rows": 2048,
|
| 81 |
+
"cols": 2048,
|
| 82 |
+
"nnz": 12254,
|
| 83 |
+
"kind": "undirected graph",
|
| 84 |
+
"tier": "10000-1000000"
|
| 85 |
+
},
|
| 86 |
+
"Mallya_lhr10c": {
|
| 87 |
+
"rows": 10672,
|
| 88 |
+
"cols": 10672,
|
| 89 |
+
"nnz": 232633,
|
| 90 |
+
"kind": "chemical process simulation problem",
|
| 91 |
+
"tier": "10000-1000000"
|
| 92 |
+
},
|
| 93 |
+
"LeGresley_LeGresley_4908": {
|
| 94 |
+
"rows": 4908,
|
| 95 |
+
"cols": 4908,
|
| 96 |
+
"nnz": 30482,
|
| 97 |
+
"kind": "power network problem",
|
| 98 |
+
"tier": "10000-1000000"
|
| 99 |
+
},
|
| 100 |
+
"SNAP_wiki-Vote": {
|
| 101 |
+
"rows": 8297,
|
| 102 |
+
"cols": 8297,
|
| 103 |
+
"nnz": 103689,
|
| 104 |
+
"kind": "directed graph",
|
| 105 |
+
"tier": "10000-1000000"
|
| 106 |
+
},
|
| 107 |
+
"Gset_G4": {
|
| 108 |
+
"rows": 800,
|
| 109 |
+
"cols": 800,
|
| 110 |
+
"nnz": 38352,
|
| 111 |
+
"kind": "undirected random graph",
|
| 112 |
+
"tier": "10000-1000000"
|
| 113 |
+
},
|
| 114 |
+
"Gset_G57": {
|
| 115 |
+
"rows": 5000,
|
| 116 |
+
"cols": 5000,
|
| 117 |
+
"nnz": 20000,
|
| 118 |
+
"kind": "undirected weighted random graph",
|
| 119 |
+
"tier": "10000-1000000"
|
| 120 |
+
},
|
| 121 |
+
"Meszaros_scagr7-2b": {
|
| 122 |
+
"rows": 9743,
|
| 123 |
+
"cols": 13847,
|
| 124 |
+
"nnz": 35885,
|
| 125 |
+
"kind": "linear programming problem sequence",
|
| 126 |
+
"tier": "10000-1000000"
|
| 127 |
+
},
|
| 128 |
+
"Rommes_descriptor_xingo6u": {
|
| 129 |
+
"rows": 20738,
|
| 130 |
+
"cols": 20738,
|
| 131 |
+
"nnz": 73916,
|
| 132 |
+
"kind": "eigenvalue/model reduction problem",
|
| 133 |
+
"tier": "10000-1000000"
|
| 134 |
+
},
|
| 135 |
+
"DRIVCAV_cavity19": {
|
| 136 |
+
"rows": 4562,
|
| 137 |
+
"cols": 4562,
|
| 138 |
+
"nnz": 138187,
|
| 139 |
+
"kind": "subsequent computational fluid dynamics problem",
|
| 140 |
+
"tier": "10000-1000000"
|
| 141 |
+
},
|
| 142 |
+
"Pajek_EAT_SR": {
|
| 143 |
+
"rows": 23219,
|
| 144 |
+
"cols": 23219,
|
| 145 |
+
"nnz": 325589,
|
| 146 |
+
"kind": "directed weighted graph",
|
| 147 |
+
"tier": "10000-1000000"
|
| 148 |
+
},
|
| 149 |
+
"Oberwolfach_rail_20209": {
|
| 150 |
+
"rows": 20209,
|
| 151 |
+
"cols": 20209,
|
| 152 |
+
"nnz": 139233,
|
| 153 |
+
"kind": "model reduction problem",
|
| 154 |
+
"tier": "10000-1000000"
|
| 155 |
+
},
|
| 156 |
+
"Brunetiere_thermal": {
|
| 157 |
+
"rows": 3456,
|
| 158 |
+
"cols": 3456,
|
| 159 |
+
"nnz": 66528,
|
| 160 |
+
"kind": "thermal problem",
|
| 161 |
+
"tier": "10000-1000000"
|
| 162 |
+
},
|
| 163 |
+
"Nemeth_nemeth13": {
|
| 164 |
+
"rows": 9506,
|
| 165 |
+
"cols": 9506,
|
| 166 |
+
"nnz": 474472,
|
| 167 |
+
"kind": "subsequent theoretical/quantum chemistry problem",
|
| 168 |
+
"tier": "10000-1000000"
|
| 169 |
+
},
|
| 170 |
+
"GHS_indef_bloweybq": {
|
| 171 |
+
"rows": 10001,
|
| 172 |
+
"cols": 10001,
|
| 173 |
+
"nnz": 69991,
|
| 174 |
+
"kind": "materials problem",
|
| 175 |
+
"tier": "10000-1000000"
|
| 176 |
+
},
|
| 177 |
+
"Bai_mhd4800b": {
|
| 178 |
+
"rows": 4800,
|
| 179 |
+
"cols": 4800,
|
| 180 |
+
"nnz": 27520,
|
| 181 |
+
"kind": "electromagnetics problem",
|
| 182 |
+
"tier": "10000-1000000"
|
| 183 |
+
},
|
| 184 |
+
"Nasa_barth4": {
|
| 185 |
+
"rows": 6019,
|
| 186 |
+
"cols": 6019,
|
| 187 |
+
"nnz": 23492,
|
| 188 |
+
"kind": "duplicate structural problem",
|
| 189 |
+
"tier": "10000-1000000"
|
| 190 |
+
},
|
| 191 |
+
"Schenk_IBMSDS_3D_28984_Tetra": {
|
| 192 |
+
"rows": 28984,
|
| 193 |
+
"cols": 28984,
|
| 194 |
+
"nnz": 599170,
|
| 195 |
+
"kind": "semiconductor device problem",
|
| 196 |
+
"tier": "10000-1000000"
|
| 197 |
+
},
|
| 198 |
+
"Lourakis_bundle1": {
|
| 199 |
+
"rows": 10581,
|
| 200 |
+
"cols": 10581,
|
| 201 |
+
"nnz": 770901,
|
| 202 |
+
"kind": "computer graphics/vision problem",
|
| 203 |
+
"tier": "10000-1000000"
|
| 204 |
+
},
|
| 205 |
+
"DIMACS10_vsp_mod2_pgp2_slptsk": {
|
| 206 |
+
"rows": 101364,
|
| 207 |
+
"cols": 101364,
|
| 208 |
+
"nnz": 778736,
|
| 209 |
+
"kind": "random unweighted graph",
|
| 210 |
+
"tier": "10000-1000000"
|
| 211 |
+
},
|
| 212 |
+
"Gset_G55": {
|
| 213 |
+
"rows": 5000,
|
| 214 |
+
"cols": 5000,
|
| 215 |
+
"nnz": 24996,
|
| 216 |
+
"kind": "duplicate undirected random graph",
|
| 217 |
+
"tier": "10000-1000000"
|
| 218 |
+
},
|
| 219 |
+
"PARSEC_SiNa": {
|
| 220 |
+
"rows": 5743,
|
| 221 |
+
"cols": 5743,
|
| 222 |
+
"nnz": 198787,
|
| 223 |
+
"kind": "theoretical/quantum chemistry problem",
|
| 224 |
+
"tier": "10000-1000000"
|
| 225 |
+
},
|
| 226 |
+
"AG-Monien_se": {
|
| 227 |
+
"rows": 32768,
|
| 228 |
+
"cols": 32768,
|
| 229 |
+
"nnz": 98300,
|
| 230 |
+
"kind": "undirected graph sequence",
|
| 231 |
+
"tier": "10000-1000000"
|
| 232 |
+
},
|
| 233 |
+
"Oberwolfach_t2dah_e": {
|
| 234 |
+
"rows": 11445,
|
| 235 |
+
"cols": 11445,
|
| 236 |
+
"nnz": 176117,
|
| 237 |
+
"kind": "duplicate model reduction problem",
|
| 238 |
+
"tier": "10000-1000000"
|
| 239 |
+
},
|
| 240 |
+
"Pajek_SciMet": {
|
| 241 |
+
"rows": 3084,
|
| 242 |
+
"cols": 3084,
|
| 243 |
+
"nnz": 10413,
|
| 244 |
+
"kind": "directed multigraph",
|
| 245 |
+
"tier": "10000-1000000"
|
| 246 |
+
},
|
| 247 |
+
"NYPA_Maragal_5": {
|
| 248 |
+
"rows": 4654,
|
| 249 |
+
"cols": 3320,
|
| 250 |
+
"nnz": 93091,
|
| 251 |
+
"kind": "least squares problem",
|
| 252 |
+
"tier": "10000-1000000"
|
| 253 |
+
},
|
| 254 |
+
"SNAP_sx-askubuntu": {
|
| 255 |
+
"rows": 159316,
|
| 256 |
+
"cols": 159316,
|
| 257 |
+
"nnz": 596933,
|
| 258 |
+
"kind": "directed temporal multigraph",
|
| 259 |
+
"tier": "10000-1000000"
|
| 260 |
+
},
|
| 261 |
+
"Goodwin_Goodwin_023": {
|
| 262 |
+
"rows": 6005,
|
| 263 |
+
"cols": 6005,
|
| 264 |
+
"nnz": 182168,
|
| 265 |
+
"kind": "computational fluid dynamics",
|
| 266 |
+
"tier": "10000-1000000"
|
| 267 |
+
},
|
| 268 |
+
"GHS_indef_spmsrtls": {
|
| 269 |
+
"rows": 29995,
|
| 270 |
+
"cols": 29995,
|
| 271 |
+
"nnz": 229947,
|
| 272 |
+
"kind": "statistical/mathematical problem",
|
| 273 |
+
"tier": "10000-1000000"
|
| 274 |
+
},
|
| 275 |
+
"DRIVCAV_cavity16": {
|
| 276 |
+
"rows": 4562,
|
| 277 |
+
"cols": 4562,
|
| 278 |
+
"nnz": 138187,
|
| 279 |
+
"kind": "computational fluid dynamics problem sequence",
|
| 280 |
+
"tier": "10000-1000000"
|
| 281 |
+
},
|
| 282 |
+
"DNVS_x104": {
|
| 283 |
+
"rows": 108384,
|
| 284 |
+
"cols": 108384,
|
| 285 |
+
"nnz": 10167624,
|
| 286 |
+
"kind": "structural problem",
|
| 287 |
+
"tier": "1000000-10000000"
|
| 288 |
+
},
|
| 289 |
+
"JGD_GL7d_GL7d14": {
|
| 290 |
+
"rows": 171375,
|
| 291 |
+
"cols": 47271,
|
| 292 |
+
"nnz": 1831183,
|
| 293 |
+
"kind": "combinatorial problem",
|
| 294 |
+
"tier": "1000000-10000000"
|
| 295 |
+
},
|
| 296 |
+
"DIMACS10_delaunay_n19": {
|
| 297 |
+
"rows": 524288,
|
| 298 |
+
"cols": 524288,
|
| 299 |
+
"nnz": 3145646,
|
| 300 |
+
"kind": "undirected graph",
|
| 301 |
+
"tier": "1000000-10000000"
|
| 302 |
+
},
|
| 303 |
+
"DIMACS10_mo2010": {
|
| 304 |
+
"rows": 343565,
|
| 305 |
+
"cols": 343565,
|
| 306 |
+
"nnz": 1656568,
|
| 307 |
+
"kind": "undirected weighted graph",
|
| 308 |
+
"tier": "1000000-10000000"
|
| 309 |
+
},
|
| 310 |
+
"Mittelmann_cont1_l": {
|
| 311 |
+
"rows": 1918399,
|
| 312 |
+
"cols": 1921596,
|
| 313 |
+
"nnz": 7031999,
|
| 314 |
+
"kind": "linear programming problem",
|
| 315 |
+
"tier": "1000000-10000000"
|
| 316 |
+
},
|
| 317 |
+
"FEMLAB_poisson3Db": {
|
| 318 |
+
"rows": 85623,
|
| 319 |
+
"cols": 85623,
|
| 320 |
+
"nnz": 2374949,
|
| 321 |
+
"kind": "computational fluid dynamics problem",
|
| 322 |
+
"tier": "1000000-10000000"
|
| 323 |
+
},
|
| 324 |
+
"GHS_indef_darcy003": {
|
| 325 |
+
"rows": 389874,
|
| 326 |
+
"cols": 389874,
|
| 327 |
+
"nnz": 2101242,
|
| 328 |
+
"kind": "2D/3D problem",
|
| 329 |
+
"tier": "1000000-10000000"
|
| 330 |
+
},
|
| 331 |
+
"Andrianov_net150": {
|
| 332 |
+
"rows": 43520,
|
| 333 |
+
"cols": 43520,
|
| 334 |
+
"nnz": 3121200,
|
| 335 |
+
"kind": "optimization problem",
|
| 336 |
+
"tier": "1000000-10000000"
|
| 337 |
+
},
|
| 338 |
+
"TSOPF_TSOPF_RS_b678_c1": {
|
| 339 |
+
"rows": 18696,
|
| 340 |
+
"cols": 18696,
|
| 341 |
+
"nnz": 4396289,
|
| 342 |
+
"kind": "power network problem",
|
| 343 |
+
"tier": "1000000-10000000"
|
| 344 |
+
},
|
| 345 |
+
"Gleich_flickr": {
|
| 346 |
+
"rows": 820878,
|
| 347 |
+
"cols": 820878,
|
| 348 |
+
"nnz": 9837214,
|
| 349 |
+
"kind": "directed graph",
|
| 350 |
+
"tier": "1000000-10000000"
|
| 351 |
+
},
|
| 352 |
+
"Freescale_nxp1": {
|
| 353 |
+
"rows": 414604,
|
| 354 |
+
"cols": 414604,
|
| 355 |
+
"nnz": 2656177,
|
| 356 |
+
"kind": "circuit simulation problem",
|
| 357 |
+
"tier": "1000000-10000000"
|
| 358 |
+
},
|
| 359 |
+
"Schenk_ISEI_barrier2-3": {
|
| 360 |
+
"rows": 113076,
|
| 361 |
+
"cols": 113076,
|
| 362 |
+
"nnz": 3805068,
|
| 363 |
+
"kind": "subsequent semiconductor device problem",
|
| 364 |
+
"tier": "1000000-10000000"
|
| 365 |
+
},
|
| 366 |
+
"PARSEC_GaAsH6": {
|
| 367 |
+
"rows": 61349,
|
| 368 |
+
"cols": 61349,
|
| 369 |
+
"nnz": 3381809,
|
| 370 |
+
"kind": "theoretical/quantum chemistry problem",
|
| 371 |
+
"tier": "1000000-10000000"
|
| 372 |
+
},
|
| 373 |
+
"Um_2cubes_sphere": {
|
| 374 |
+
"rows": 101492,
|
| 375 |
+
"cols": 101492,
|
| 376 |
+
"nnz": 1647264,
|
| 377 |
+
"kind": "electromagnetics problem",
|
| 378 |
+
"tier": "1000000-10000000"
|
| 379 |
+
},
|
| 380 |
+
"VLSI_mosfet2": {
|
| 381 |
+
"rows": 46994,
|
| 382 |
+
"cols": 46994,
|
| 383 |
+
"nnz": 1499460,
|
| 384 |
+
"kind": "semiconductor device problem",
|
| 385 |
+
"tier": "1000000-10000000"
|
| 386 |
+
},
|
| 387 |
+
"Bodendiek_CurlCurl_1": {
|
| 388 |
+
"rows": 226451,
|
| 389 |
+
"cols": 226451,
|
| 390 |
+
"nnz": 2472071,
|
| 391 |
+
"kind": "model reduction problem",
|
| 392 |
+
"tier": "1000000-10000000"
|
| 393 |
+
},
|
| 394 |
+
"ANSYS_Delor295K": {
|
| 395 |
+
"rows": 295734,
|
| 396 |
+
"cols": 1823928,
|
| 397 |
+
"nnz": 2401323,
|
| 398 |
+
"kind": "least squares problem",
|
| 399 |
+
"tier": "1000000-10000000"
|
| 400 |
+
},
|
| 401 |
+
"VanVelzen_std1_Jac3": {
|
| 402 |
+
"rows": 21982,
|
| 403 |
+
"cols": 21982,
|
| 404 |
+
"nnz": 1455848,
|
| 405 |
+
"kind": "chemical process simulation problem",
|
| 406 |
+
"tier": "1000000-10000000"
|
| 407 |
+
},
|
| 408 |
+
"Nemeth_nemeth23": {
|
| 409 |
+
"rows": 9506,
|
| 410 |
+
"cols": 9506,
|
| 411 |
+
"nnz": 1506810,
|
| 412 |
+
"kind": "subsequent theoretical/quantum chemistry problem",
|
| 413 |
+
"tier": "1000000-10000000"
|
| 414 |
+
},
|
| 415 |
+
"Goodwin_Goodwin_095": {
|
| 416 |
+
"rows": 100037,
|
| 417 |
+
"cols": 100037,
|
| 418 |
+
"nnz": 3226066,
|
| 419 |
+
"kind": "computational fluid dynamics",
|
| 420 |
+
"tier": "1000000-10000000"
|
| 421 |
+
},
|
| 422 |
+
"Ronis_xenon2": {
|
| 423 |
+
"rows": 157464,
|
| 424 |
+
"cols": 157464,
|
| 425 |
+
"nnz": 3866688,
|
| 426 |
+
"kind": "materials problem",
|
| 427 |
+
"tier": "1000000-10000000"
|
| 428 |
+
},
|
| 429 |
+
"Tromble_language": {
|
| 430 |
+
"rows": 399130,
|
| 431 |
+
"cols": 399130,
|
| 432 |
+
"nnz": 1216334,
|
| 433 |
+
"kind": "directed weighted graph",
|
| 434 |
+
"tier": "1000000-10000000"
|
| 435 |
+
},
|
| 436 |
+
"Botonakis_thermomech_dM": {
|
| 437 |
+
"rows": 204316,
|
| 438 |
+
"cols": 204316,
|
| 439 |
+
"nnz": 1423116,
|
| 440 |
+
"kind": "thermal problem",
|
| 441 |
+
"tier": "1000000-10000000"
|
| 442 |
+
},
|
| 443 |
+
"Schenk_ISEI_para-5": {
|
| 444 |
+
"rows": 155924,
|
| 445 |
+
"cols": 155924,
|
| 446 |
+
"nnz": 5416358,
|
| 447 |
+
"kind": "semiconductor device problem sequence",
|
| 448 |
+
"tier": "1000000-10000000"
|
| 449 |
+
},
|
| 450 |
+
"Oberwolfach_t3dh_e": {
|
| 451 |
+
"rows": 79171,
|
| 452 |
+
"cols": 79171,
|
| 453 |
+
"nnz": 4352105,
|
| 454 |
+
"kind": "duplicate model reduction problem",
|
| 455 |
+
"tier": "1000000-10000000"
|
| 456 |
+
},
|
| 457 |
+
"DIMACS10_rgg_n_2_19_s0": {
|
| 458 |
+
"rows": 524288,
|
| 459 |
+
"cols": 524288,
|
| 460 |
+
"nnz": 6539532,
|
| 461 |
+
"kind": "undirected random graph",
|
| 462 |
+
"tier": "1000000-10000000"
|
| 463 |
+
},
|
| 464 |
+
"DIMACS10_vsp_msc10848_300sep_100in_1Kout": {
|
| 465 |
+
"rows": 21996,
|
| 466 |
+
"cols": 21996,
|
| 467 |
+
"nnz": 2442056,
|
| 468 |
+
"kind": "random unweighted graph",
|
| 469 |
+
"tier": "1000000-10000000"
|
| 470 |
+
},
|
| 471 |
+
"SNAP_com-Youtube": {
|
| 472 |
+
"rows": 1134890,
|
| 473 |
+
"cols": 1134890,
|
| 474 |
+
"nnz": 5975248,
|
| 475 |
+
"kind": "undirected graph with communities",
|
| 476 |
+
"tier": "1000000-10000000"
|
| 477 |
+
},
|
| 478 |
+
"ATandT_twotone": {
|
| 479 |
+
"rows": 120750,
|
| 480 |
+
"cols": 120750,
|
| 481 |
+
"nnz": 1224224,
|
| 482 |
+
"kind": "frequency-domain circuit simulation problem",
|
| 483 |
+
"tier": "1000000-10000000"
|
| 484 |
+
},
|
| 485 |
+
"Simon_venkat50": {
|
| 486 |
+
"rows": 62424,
|
| 487 |
+
"cols": 62424,
|
| 488 |
+
"nnz": 1717792,
|
| 489 |
+
"kind": "subsequent computational fluid dynamics problem",
|
| 490 |
+
"tier": "1000000-10000000"
|
| 491 |
+
},
|
| 492 |
+
"Cunningham_qa8fm": {
|
| 493 |
+
"rows": 66127,
|
| 494 |
+
"cols": 66127,
|
| 495 |
+
"nnz": 1660579,
|
| 496 |
+
"kind": "acoustics problem",
|
| 497 |
+
"tier": "1000000-10000000"
|
| 498 |
+
},
|
| 499 |
+
"Boeing_pcrystk03": {
|
| 500 |
+
"rows": 24696,
|
| 501 |
+
"cols": 24696,
|
| 502 |
+
"nnz": 1751178,
|
| 503 |
+
"kind": "duplicate materials problem",
|
| 504 |
+
"tier": "1000000-10000000"
|
| 505 |
+
},
|
| 506 |
+
"Li_pli": {
|
| 507 |
+
"rows": 22695,
|
| 508 |
+
"cols": 22695,
|
| 509 |
+
"nnz": 1350309,
|
| 510 |
+
"kind": "duplicate electromagnetics problem",
|
| 511 |
+
"tier": "1000000-10000000"
|
| 512 |
+
},
|
| 513 |
+
"Simon_appu": {
|
| 514 |
+
"rows": 14000,
|
| 515 |
+
"cols": 14000,
|
| 516 |
+
"nnz": 1853104,
|
| 517 |
+
"kind": "directed weighted random graph",
|
| 518 |
+
"tier": "1000000-10000000"
|
| 519 |
+
},
|
| 520 |
+
"Simon_venkat01": {
|
| 521 |
+
"rows": 62424,
|
| 522 |
+
"cols": 62424,
|
| 523 |
+
"nnz": 1717792,
|
| 524 |
+
"kind": "computational fluid dynamics problem sequence",
|
| 525 |
+
"tier": "1000000-10000000"
|
| 526 |
+
},
|
| 527 |
+
"DIMACS10_333SP": {
|
| 528 |
+
"rows": 3712815,
|
| 529 |
+
"cols": 3712815,
|
| 530 |
+
"nnz": 22217266,
|
| 531 |
+
"kind": "undirected graph",
|
| 532 |
+
"tier": "10000000-60000000"
|
| 533 |
+
},
|
| 534 |
+
"Janna_Hook_1498": {
|
| 535 |
+
"rows": 1498023,
|
| 536 |
+
"cols": 1498023,
|
| 537 |
+
"nnz": 60917445,
|
| 538 |
+
"kind": "structural problem",
|
| 539 |
+
"tier": "10000000-60000000"
|
| 540 |
+
},
|
| 541 |
+
"Gleich_wikipedia-20061104": {
|
| 542 |
+
"rows": 3148440,
|
| 543 |
+
"cols": 3148440,
|
| 544 |
+
"nnz": 39383235,
|
| 545 |
+
"kind": "directed graph",
|
| 546 |
+
"tier": "10000000-60000000"
|
| 547 |
+
},
|
| 548 |
+
"Schenk_AFE_af_shell6": {
|
| 549 |
+
"rows": 504855,
|
| 550 |
+
"cols": 504855,
|
| 551 |
+
"nnz": 17588875,
|
| 552 |
+
"kind": "subsequent structural problem",
|
| 553 |
+
"tier": "10000000-60000000"
|
| 554 |
+
},
|
| 555 |
+
"JGD_GL7d_GL7d20": {
|
| 556 |
+
"rows": 1437547,
|
| 557 |
+
"cols": 1911130,
|
| 558 |
+
"nnz": 29893084,
|
| 559 |
+
"kind": "combinatorial problem",
|
| 560 |
+
"tier": "10000000-60000000"
|
| 561 |
+
},
|
| 562 |
+
"Freescale_FullChip": {
|
| 563 |
+
"rows": 2987012,
|
| 564 |
+
"cols": 2987012,
|
| 565 |
+
"nnz": 26621990,
|
| 566 |
+
"kind": "circuit simulation problem",
|
| 567 |
+
"tier": "10000000-60000000"
|
| 568 |
+
},
|
| 569 |
+
"BenElechi_BenElechi1": {
|
| 570 |
+
"rows": 245874,
|
| 571 |
+
"cols": 245874,
|
| 572 |
+
"nnz": 13150496,
|
| 573 |
+
"kind": "2D/3D problem",
|
| 574 |
+
"tier": "10000000-60000000"
|
| 575 |
+
},
|
| 576 |
+
"PARSEC_Si87H76": {
|
| 577 |
+
"rows": 240369,
|
| 578 |
+
"cols": 240369,
|
| 579 |
+
"nnz": 10661631,
|
| 580 |
+
"kind": "theoretical/quantum chemistry problem",
|
| 581 |
+
"tier": "10000000-60000000"
|
| 582 |
+
},
|
| 583 |
+
"Bodendiek_CurlCurl_3": {
|
| 584 |
+
"rows": 1219574,
|
| 585 |
+
"cols": 1219574,
|
| 586 |
+
"nnz": 13544618,
|
| 587 |
+
"kind": "model reduction problem",
|
| 588 |
+
"tier": "10000000-60000000"
|
| 589 |
+
},
|
| 590 |
+
"Fluorem_RM07R": {
|
| 591 |
+
"rows": 381689,
|
| 592 |
+
"cols": 381689,
|
| 593 |
+
"nnz": 37464962,
|
| 594 |
+
"kind": "computational fluid dynamics problem",
|
| 595 |
+
"tier": "10000000-60000000"
|
| 596 |
+
},
|
| 597 |
+
"Schenk_nlpkkt80": {
|
| 598 |
+
"rows": 1062400,
|
| 599 |
+
"cols": 1062400,
|
| 600 |
+
"nnz": 28704672,
|
| 601 |
+
"kind": "optimization problem",
|
| 602 |
+
"tier": "10000000-60000000"
|
| 603 |
+
},
|
| 604 |
+
"Meszaros_tp-6": {
|
| 605 |
+
"rows": 142752,
|
| 606 |
+
"cols": 1014301,
|
| 607 |
+
"nnz": 11537419,
|
| 608 |
+
"kind": "linear programming problem",
|
| 609 |
+
"tier": "10000000-60000000"
|
| 610 |
+
},
|
| 611 |
+
"TSOPF_TSOPF_RS_b2383_c1": {
|
| 612 |
+
"rows": 38120,
|
| 613 |
+
"cols": 38120,
|
| 614 |
+
"nnz": 16171169,
|
| 615 |
+
"kind": "power network problem",
|
| 616 |
+
"tier": "10000000-60000000"
|
| 617 |
+
},
|
| 618 |
+
"FlowIPM22_Spielman_k300": {
|
| 619 |
+
"rows": 9045202,
|
| 620 |
+
"cols": 9045202,
|
| 621 |
+
"nnz": 27226204,
|
| 622 |
+
"kind": "undirected weighted graph",
|
| 623 |
+
"tier": "10000000-60000000"
|
| 624 |
+
},
|
| 625 |
+
"DIMACS10_kron_g500-logn19": {
|
| 626 |
+
"rows": 524288,
|
| 627 |
+
"cols": 524288,
|
| 628 |
+
"nnz": 43562265,
|
| 629 |
+
"kind": "undirected multigraph",
|
| 630 |
+
"tier": "10000000-60000000"
|
| 631 |
+
},
|
| 632 |
+
"GAP_GAP-road": {
|
| 633 |
+
"rows": 23947347,
|
| 634 |
+
"cols": 23947347,
|
| 635 |
+
"nnz": 57708624,
|
| 636 |
+
"kind": "directed weighted graph",
|
| 637 |
+
"tier": "10000000-60000000"
|
| 638 |
+
},
|
| 639 |
+
"Dziekonski_dielFilterV2real": {
|
| 640 |
+
"rows": 1157456,
|
| 641 |
+
"cols": 1157456,
|
| 642 |
+
"nnz": 48538952,
|
| 643 |
+
"kind": "electromagnetics problem",
|
| 644 |
+
"tier": "10000000-60000000"
|
| 645 |
+
},
|
| 646 |
+
"DIMACS10_rgg_n_2_21_s0": {
|
| 647 |
+
"rows": 2097152,
|
| 648 |
+
"cols": 2097152,
|
| 649 |
+
"nnz": 28975990,
|
| 650 |
+
"kind": "undirected random graph",
|
| 651 |
+
"tier": "10000000-60000000"
|
| 652 |
+
},
|
| 653 |
+
"SNAP_sx-stackoverflow": {
|
| 654 |
+
"rows": 2601977,
|
| 655 |
+
"cols": 2601977,
|
| 656 |
+
"nnz": 36233450,
|
| 657 |
+
"kind": "directed temporal multigraph",
|
| 658 |
+
"tier": "10000000-60000000"
|
| 659 |
+
},
|
| 660 |
+
"Hardesty_Hardesty3": {
|
| 661 |
+
"rows": 8217820,
|
| 662 |
+
"cols": 7591564,
|
| 663 |
+
"nnz": 40451632,
|
| 664 |
+
"kind": "computer graphics/vision problem",
|
| 665 |
+
"tier": "10000000-60000000"
|
| 666 |
+
},
|
| 667 |
+
"Janna_Cube_Coup_dt0": {
|
| 668 |
+
"rows": 2164760,
|
| 669 |
+
"cols": 2164760,
|
| 670 |
+
"nnz": 127206144,
|
| 671 |
+
"kind": "structural problem",
|
| 672 |
+
"tier": "60000000-150000000"
|
| 673 |
+
},
|
| 674 |
+
"GenBank_kmer_U1a": {
|
| 675 |
+
"rows": 67716231,
|
| 676 |
+
"cols": 67716231,
|
| 677 |
+
"nnz": 138778562,
|
| 678 |
+
"kind": "undirected graph",
|
| 679 |
+
"tier": "60000000-150000000"
|
| 680 |
+
},
|
| 681 |
+
"FlowIPM22_Spielman_k400": {
|
| 682 |
+
"rows": 21413602,
|
| 683 |
+
"cols": 21413602,
|
| 684 |
+
"nnz": 64401604,
|
| 685 |
+
"kind": "undirected weighted graph",
|
| 686 |
+
"tier": "60000000-150000000"
|
| 687 |
+
},
|
| 688 |
+
"LAW_ljournal-2008": {
|
| 689 |
+
"rows": 5363260,
|
| 690 |
+
"cols": 5363260,
|
| 691 |
+
"nnz": 79023142,
|
| 692 |
+
"kind": "directed graph",
|
| 693 |
+
"tier": "60000000-150000000"
|
| 694 |
+
},
|
| 695 |
+
"DIMACS10_rgg_n_2_23_s0": {
|
| 696 |
+
"rows": 8388608,
|
| 697 |
+
"cols": 8388608,
|
| 698 |
+
"nnz": 127002786,
|
| 699 |
+
"kind": "undirected random graph",
|
| 700 |
+
"tier": "60000000-150000000"
|
| 701 |
+
}
|
| 702 |
+
}
|
summary.csv
ADDED
|
@@ -0,0 +1,101 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
matrix,rows,cols,nnz,kind,tier,square,avg_row,density
|
| 2 |
+
Pajek_SciMet,3084,3084,10413,directed multigraph,10000-1000000,True,3.4,0.0010948311102363397
|
| 3 |
+
Sandia_adder_dcop_38,1813,1813,11246,subsequent circuit simulation problem,10000-1000000,True,6.2,0.003421389127795242
|
| 4 |
+
DIMACS10_delaunay_n11,2048,2048,12254,undirected graph,10000-1000000,True,6.0,0.002921581268310547
|
| 5 |
+
VDOL_reorientation_2,1544,1544,17910,optimal control problem,10000-1000000,True,11.6,0.007512785578136325
|
| 6 |
+
Gset_G57,5000,5000,20000,undirected weighted random graph,10000-1000000,True,4.0,0.0008
|
| 7 |
+
Nasa_barth4,6019,6019,23492,duplicate structural problem,10000-1000000,True,3.9,0.0006484422521902108
|
| 8 |
+
Gset_G55,5000,5000,24996,duplicate undirected random graph,10000-1000000,True,5.0,0.00099984
|
| 9 |
+
Bai_mhd4800b,4800,4800,27520,electromagnetics problem,10000-1000000,True,5.7,0.0011944444444444444
|
| 10 |
+
LeGresley_LeGresley_4908,4908,4908,30482,power network problem,10000-1000000,True,6.2,0.0012654189989033755
|
| 11 |
+
Meszaros_scagr7-2b,9743,13847,35885,linear programming problem sequence,10000-1000000,False,3.7,0.00026598953841686866
|
| 12 |
+
Gset_G4,800,800,38352,undirected random graph,10000-1000000,True,47.9,0.059925
|
| 13 |
+
GHS_indef_qpband,20000,20000,45000,optimization problem,10000-1000000,True,2.2,0.0001125
|
| 14 |
+
Boeing_msc01440,1440,1440,46270,structural problem,10000-1000000,True,32.1,0.022313850308641976
|
| 15 |
+
Rajat_rajat06,10922,10922,46983,circuit simulation problem,10000-1000000,True,4.3,0.0003938550332481952
|
| 16 |
+
FIDAP_ex3,1821,1821,52685,computational fluid dynamics problem,10000-1000000,True,28.9,0.015887921771775438
|
| 17 |
+
Hollinger_mark3jac020sc,9129,9129,56175,economic problem,10000-1000000,True,6.2,0.0006740570679572277
|
| 18 |
+
Brunetiere_thermal,3456,3456,66528,thermal problem,10000-1000000,True,19.2,0.005570023148148148
|
| 19 |
+
GHS_indef_bloweybq,10001,10001,69991,materials problem,10000-1000000,True,7.0,0.0006997700389945007
|
| 20 |
+
Rommes_descriptor_xingo6u,20738,20738,73916,eigenvalue/model reduction problem,10000-1000000,True,3.6,0.00017187183608611173
|
| 21 |
+
NYPA_Maragal_5,4654,3320,93091,least squares problem,10000-1000000,False,20.0,0.00602480830067153
|
| 22 |
+
AG-Monien_se,32768,32768,98300,undirected graph sequence,10000-1000000,True,3.0,9.154900908470154e-05
|
| 23 |
+
SNAP_wiki-Vote,8297,8297,103689,directed graph,10000-1000000,True,12.5,0.0015062272690078557
|
| 24 |
+
JGD_Margulies_cat_ears_4_4,19020,44448,132888,combinatorial problem,10000-1000000,False,7.0,0.00015718931759907157
|
| 25 |
+
DRIVCAV_cavity19,4562,4562,138187,subsequent computational fluid dynamics problem,10000-1000000,True,30.3,0.006639824899706148
|
| 26 |
+
DRIVCAV_cavity16,4562,4562,138187,computational fluid dynamics problem sequence,10000-1000000,True,30.3,0.006639824899706148
|
| 27 |
+
Oberwolfach_rail_20209,20209,20209,139233,model reduction problem,10000-1000000,True,6.9,0.00034092004180540184
|
| 28 |
+
ML_Graph_Fashion_MNIST_norm_10NN,10000,10000,158304,undirected weighted graph,10000-1000000,True,15.8,0.00158304
|
| 29 |
+
Oberwolfach_t2dah_e,11445,11445,176117,duplicate model reduction problem,10000-1000000,True,15.4,0.0013445274863866372
|
| 30 |
+
Goodwin_Goodwin_023,6005,6005,182168,computational fluid dynamics,10000-1000000,True,30.3,0.0050517990489468605
|
| 31 |
+
PARSEC_SiNa,5743,5743,198787,theoretical/quantum chemistry problem,10000-1000000,True,34.6,0.006027127059328546
|
| 32 |
+
GHS_indef_spmsrtls,29995,29995,229947,statistical/mathematical problem,10000-1000000,True,7.7,0.0002555818535183435
|
| 33 |
+
Mallya_lhr10c,10672,10672,232633,chemical process simulation problem,10000-1000000,True,21.8,0.0020425828830337453
|
| 34 |
+
Pajek_EAT_SR,23219,23219,325589,directed weighted graph,10000-1000000,True,14.0,0.0006039245728296348
|
| 35 |
+
Nemeth_nemeth13,9506,9506,474472,subsequent theoretical/quantum chemistry problem,10000-1000000,True,49.9,0.005250672955776345
|
| 36 |
+
SNAP_sx-askubuntu,159316,159316,596933,directed temporal multigraph,10000-1000000,True,3.7,2.3518347370016487e-05
|
| 37 |
+
Schenk_IBMSDS_3D_28984_Tetra,28984,28984,599170,semiconductor device problem,10000-1000000,True,20.7,0.000713236267143192
|
| 38 |
+
Mittelmann_neos2,132568,134128,685087,linear programming problem,10000-1000000,False,5.2,3.8528985465202017e-05
|
| 39 |
+
GHS_indef_olesnik0,88263,88263,744216,2D/3D problem,10000-1000000,True,8.4,9.553040815143145e-05
|
| 40 |
+
Lourakis_bundle1,10581,10581,770901,computer graphics/vision problem,10000-1000000,True,72.9,0.006885653752317809
|
| 41 |
+
DIMACS10_vsp_mod2_pgp2_slptsk,101364,101364,778736,random unweighted graph,10000-1000000,True,7.7,7.579189602451269e-05
|
| 42 |
+
Tromble_language,399130,399130,1216334,directed weighted graph,1000000-10000000,True,3.0,7.635264782228233e-06
|
| 43 |
+
ATandT_twotone,120750,120750,1224224,frequency-domain circuit simulation problem,1000000-10000000,True,10.1,8.396274149231211e-05
|
| 44 |
+
Li_pli,22695,22695,1350309,duplicate electromagnetics problem,1000000-10000000,True,59.5,0.002621638390758102
|
| 45 |
+
Botonakis_thermomech_dM,204316,204316,1423116,thermal problem,1000000-10000000,True,7.0,3.40906707478806e-05
|
| 46 |
+
VanVelzen_std1_Jac3,21982,21982,1455848,chemical process simulation problem,1000000-10000000,True,66.2,0.0030128785612559108
|
| 47 |
+
VLSI_mosfet2,46994,46994,1499460,semiconductor device problem,1000000-10000000,True,31.9,0.0006789691779870956
|
| 48 |
+
Nemeth_nemeth23,9506,9506,1506810,subsequent theoretical/quantum chemistry problem,1000000-10000000,True,158.5,0.01667488601328077
|
| 49 |
+
Um_2cubes_sphere,101492,101492,1647264,electromagnetics problem,1000000-10000000,True,16.2,0.00015991882335745375
|
| 50 |
+
DIMACS10_mo2010,343565,343565,1656568,undirected weighted graph,1000000-10000000,True,4.8,1.4034322068212389e-05
|
| 51 |
+
Cunningham_qa8fm,66127,66127,1660579,acoustics problem,1000000-10000000,True,25.1,0.0003797536009156156
|
| 52 |
+
Simon_venkat50,62424,62424,1717792,subsequent computational fluid dynamics problem,1000000-10000000,True,27.5,0.00044082618946248277
|
| 53 |
+
Simon_venkat01,62424,62424,1717792,computational fluid dynamics problem sequence,1000000-10000000,True,27.5,0.00044082618946248277
|
| 54 |
+
Boeing_pcrystk03,24696,24696,1751178,duplicate materials problem,1000000-10000000,True,70.9,0.0028712900079741277
|
| 55 |
+
JGD_GL7d_GL7d14,171375,47271,1831183,combinatorial problem,1000000-10000000,False,10.7,0.0002260421816933049
|
| 56 |
+
Simon_appu,14000,14000,1853104,directed weighted random graph,1000000-10000000,True,132.4,0.009454612244897959
|
| 57 |
+
GHS_indef_darcy003,389874,389874,2101242,2D/3D problem,1000000-10000000,True,5.4,1.3823802655215408e-05
|
| 58 |
+
FEMLAB_poisson3Db,85623,85623,2374949,computational fluid dynamics problem,1000000-10000000,True,27.7,0.0003239465860221328
|
| 59 |
+
ANSYS_Delor295K,295734,1823928,2401323,least squares problem,1000000-10000000,False,8.1,4.4518613766851075e-06
|
| 60 |
+
DIMACS10_vsp_msc10848_300sep_100in_1Kout,21996,21996,2442056,random unweighted graph,1000000-10000000,True,111.0,0.005047405501259781
|
| 61 |
+
Bodendiek_CurlCurl_1,226451,226451,2472071,model reduction problem,1000000-10000000,True,10.9,4.820726071118466e-05
|
| 62 |
+
Freescale_nxp1,414604,414604,2656177,circuit simulation problem,1000000-10000000,True,6.4,1.545218988311903e-05
|
| 63 |
+
Andrianov_net150,43520,43520,3121200,optimization problem,1000000-10000000,True,71.7,0.00164794921875
|
| 64 |
+
DIMACS10_delaunay_n19,524288,524288,3145646,undirected graph,1000000-10000000,True,6.0,1.1443793482612818e-05
|
| 65 |
+
Goodwin_Goodwin_095,100037,100037,3226066,computational fluid dynamics,1000000-10000000,True,32.2,0.00032236800354519687
|
| 66 |
+
PARSEC_GaAsH6,61349,61349,3381809,theoretical/quantum chemistry problem,1000000-10000000,True,55.1,0.000898533139944229
|
| 67 |
+
Schenk_ISEI_barrier2-3,113076,113076,3805068,subsequent semiconductor device problem,1000000-10000000,True,33.7,0.00029759220279053226
|
| 68 |
+
Ronis_xenon2,157464,157464,3866688,materials problem,1000000-10000000,True,24.6,0.00015594683739093623
|
| 69 |
+
Oberwolfach_t3dh_e,79171,79171,4352105,duplicate model reduction problem,1000000-10000000,True,55.0,0.0006943318760478372
|
| 70 |
+
TSOPF_TSOPF_RS_b678_c1,18696,18696,4396289,power network problem,1000000-10000000,True,235.1,0.012577340984797592
|
| 71 |
+
Schenk_ISEI_para-5,155924,155924,5416358,semiconductor device problem sequence,1000000-10000000,True,34.7,0.00022278268146573585
|
| 72 |
+
SNAP_com-Youtube,1134890,1134890,5975248,undirected graph with communities,1000000-10000000,True,5.3,4.639256625391026e-06
|
| 73 |
+
DIMACS10_rgg_n_2_19_s0,524288,524288,6539532,undirected random graph,1000000-10000000,True,12.5,2.3790678824298084e-05
|
| 74 |
+
Mittelmann_cont1_l,1918399,1921596,7031999,linear programming problem,1000000-10000000,False,3.7,1.9075581018724525e-06
|
| 75 |
+
Gleich_flickr,820878,820878,9837214,directed graph,1000000-10000000,True,12.0,1.4598723604973644e-05
|
| 76 |
+
DNVS_x104,108384,108384,10167624,structural problem,1000000-10000000,True,93.8,0.0008655439551214812
|
| 77 |
+
PARSEC_Si87H76,240369,240369,10661631,theoretical/quantum chemistry problem,10000000-60000000,True,44.4,0.00018452989477885012
|
| 78 |
+
Meszaros_tp-6,142752,1014301,11537419,linear programming problem,10000000-60000000,False,80.8,7.968188689878705e-05
|
| 79 |
+
BenElechi_BenElechi1,245874,245874,13150496,2D/3D problem,10000000-60000000,True,53.5,0.00021752887825918059
|
| 80 |
+
Bodendiek_CurlCurl_3,1219574,1219574,13544618,model reduction problem,10000000-60000000,True,11.1,9.106478087191435e-06
|
| 81 |
+
TSOPF_TSOPF_RS_b2383_c1,38120,38120,16171169,power network problem,10000000-60000000,True,424.2,0.011128474420535361
|
| 82 |
+
Schenk_AFE_af_shell6,504855,504855,17588875,subsequent structural problem,10000000-60000000,True,34.8,6.900884185463665e-05
|
| 83 |
+
DIMACS10_333SP,3712815,3712815,22217266,undirected graph,10000000-60000000,True,6.0,1.611699216330274e-06
|
| 84 |
+
Freescale_FullChip,2987012,2987012,26621990,circuit simulation problem,10000000-60000000,True,8.9,2.9837785070487592e-06
|
| 85 |
+
FlowIPM22_Spielman_k300,9045202,9045202,27226204,undirected weighted graph,10000000-60000000,True,3.0,3.327748942415056e-07
|
| 86 |
+
Schenk_nlpkkt80,1062400,1062400,28704672,optimization problem,10000000-60000000,True,27.0,2.5431762819349687e-05
|
| 87 |
+
DIMACS10_rgg_n_2_21_s0,2097152,2097152,28975990,undirected random graph,10000000-60000000,True,13.8,6.588377345906338e-06
|
| 88 |
+
JGD_GL7d_GL7d20,1437547,1911130,29893084,combinatorial problem,10000000-60000000,False,20.8,1.088074017964895e-05
|
| 89 |
+
SNAP_sx-stackoverflow,2601977,2601977,36233450,directed temporal multigraph,10000000-60000000,True,13.9,5.351835809074397e-06
|
| 90 |
+
Fluorem_RM07R,381689,381689,37464962,computational fluid dynamics problem,10000000-60000000,True,98.2,0.00025716153433488217
|
| 91 |
+
Gleich_wikipedia-20061104,3148440,3148440,39383235,directed graph,10000000-60000000,True,12.5,3.97301810563924e-06
|
| 92 |
+
Hardesty_Hardesty3,8217820,7591564,40451632,computer graphics/vision problem,10000000-60000000,False,4.9,6.484077030699295e-07
|
| 93 |
+
DIMACS10_kron_g500-logn19,524288,524288,43562265,undirected multigraph,10000000-60000000,True,83.1,0.00015847859685891308
|
| 94 |
+
Dziekonski_dielFilterV2real,1157456,1157456,48538952,electromagnetics problem,10000000-60000000,True,41.9,3.623109119606349e-05
|
| 95 |
+
GAP_GAP-road,23947347,23947347,57708624,directed weighted graph,10000000-60000000,True,2.4,1.0062963668243868e-07
|
| 96 |
+
Janna_Hook_1498,1498023,1498023,60917445,structural problem,10000000-60000000,True,40.7,2.7145929514354177e-05
|
| 97 |
+
FlowIPM22_Spielman_k400,21413602,21413602,64401604,undirected weighted graph,60000000-150000000,True,3.0,1.4044854071539488e-07
|
| 98 |
+
LAW_ljournal-2008,5363260,5363260,79023142,directed graph,60000000-150000000,True,14.7,2.747239935813516e-06
|
| 99 |
+
DIMACS10_rgg_n_2_23_s0,8388608,8388608,127002786,undirected random graph,60000000-150000000,True,15.1,1.804818140271891e-06
|
| 100 |
+
Janna_Cube_Coup_dt0,2164760,2164760,127206144,structural problem,60000000-150000000,True,58.8,2.714492080882763e-05
|
| 101 |
+
GenBank_kmer_U1a,67716231,67716231,138778562,undirected graph,60000000-150000000,True,2.0,3.026473164694778e-08
|