You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* changed to enable -NDEBUG in mmex for -O
* Updated license
* Added FGMRES solver for nullspace
* Set rank for backsolve
* Added PIPIT
* updated reference to hifir
* Removed unused codes
* Updated CPP source directory
* Added version and updated ijv2crs
* Updated C++ kernels in HIFIR4M with new HIFIR
* Updated examples using new APIs.
* Updated using field name for params
* Fixed authors
* Fixed checking before recompilation
* updated .gitignore
* updated pipitHifir
* Added download hifir script
* Updated building script to use downloaded hifir
* Removed submodule
* Added option to use local C++ hifir
* Updated building process
* Updated ignore list for user hifir source
* Changed to urlwrite
* Updated varaible name
* Fixed integer size for Octave
* Added update and refactor
* Fixed bugs in apply
* Fixed bugs in create
* Updated building script
* Updated cite bibtex in readme
* Fixed bug in hifir
* Added version file and build
* Added user HIF
* Updated control parameters
* Updated README
* Updated to addparam
* Updated installation
* Added user-provided HIF
* Added changelog
Co-authored-by: Xiangmin Jiao <[email protected]>
Use `git pull` to download any new changes that have been added since `git clone` or last `git pull`. Alternatively, use `git checkout v[GLOBAL].[MAJOR].[MINOR]` to download a specific version.
14
+
15
+
Then start MATLAB or GNU Octave under the directory that contains `hifir4m`, or run the command
8
16
9
17
```matlab
10
-
>> run('/path/to/hifir4m/load_hifir')
18
+
>> run('/path/to/hifir4m/startup_hifir')
11
19
```
12
20
13
21
(and replace `/path/to/hifir4m/` to the directory that contains `hifir4m`) bo build `hifir4m` and load its path. It will build the *mex* kernels if needed by linking to MATLAB and Octave's built-in BLAS/LAPACK libraries for the low-level QRCP.
14
22
23
+
Note that for the first time, `hifir4m` will download C++ package [HIFIR](https://github.com/hifirworks/hifir) while building *mex* kernels. If you don't have access to network during building *mex* kernels, then you can obtain HIFIR beforehand and put its source in `hifir4m/hifir-[hifir-version]` folder; for instance, you can run the following command to download the C++ HIFIR package
where `A` is a MATLAB's built-in sparse matrix or a `MATLAB``struct` containing the filds of `row_ptr`, `col_ind`, `vals` of a standard CRS storage format, and `b` is a right-hand-side vector (or RHS vectors with two columns).
22
38
23
39
To access the intermediate-level interfaces of `hifir4m`, please see `gmresHif.m` for the calling sequence of `hifCreate`, `hifApply`, and `hifDestroy`.
@@ -29,6 +45,7 @@ To access the intermediate-level interfaces of `hifir4m`, please see `gmresHif.m
29
45
The software suite is released under a dual-license model. For academic users, individual users, or open-source software developers, you can use HIFIR under the GPLv3+ license free of charge for research and evaluation purpose. For commercial users, separate commercial licenses are available through the Stony Brook University. For inqueries regarding commercial licenses, please contact Prof. Xiangmin Jiao <[email protected]>.
30
46
31
47
## How to Cite `HIFIR` ##
48
+
32
49
If you use `HIFIR`, `hifir4m`, or `hifir4py` in your research for nonsingular systems, please cite the `HILUCSI` paper:
33
50
34
51
```bibtex
@@ -38,7 +55,6 @@ If you use `HIFIR`, `hifir4m`, or `hifir4py` in your research for nonsingular s
38
55
large-scale saddle-point problems from {PDE}s},
39
56
journal = {Numer. Linear Algebra Appl.},
40
57
year = {2021},
41
-
note = {To appear},
42
58
doi = {10.1002/nla.2400},
43
59
```
44
60
@@ -47,20 +63,20 @@ If you use them to solve highly ill-conditioned of singular systems, please cite
47
63
```bibtex
48
64
@Article{jiao2020approximate,
49
65
author = {Xiangmin Jiao and Qiao Chen},
50
-
journal = {arxiv},
66
+
journal = {SIAM J. Matrix Anal. Appl.},
51
67
title = {Approximate Generalized Inverses with Iterative Refinement for
52
68
$\epsilon$-Accurate Preconditioning of Singular Systems},
53
-
year = {2020},
54
-
note = {arXiv:2009.01673},
69
+
year = {2021},
70
+
note = {To appear},
55
71
}
56
72
57
73
@Article{chen2021hifir,
58
-
author = {Jiao, Xiangmin and Chen, Qiao},
74
+
author = {Chen, Qiao and Jiao, Xiangmin},
59
75
title = {{HIFIR}: Hybrid Incomplete Factorization with Iterative Refinement
60
76
for Preconditioning Ill-conditioned and Singular Systems},
0 commit comments