REVIEW 4 major objections 5 minor 56 references
Higher order Jacobi method for solving system of linear equations
T0 review · 4 major / 5 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read This paper claims that recursively squaring the Jacobi update produces a finite product identity for the inverse of the normalized system matrix, turning linear solves into GPU-friendly matrix chains.
desk verdict Repeated-squaring Jacobi is a known identity; the GPU scaling exponents are physically implausible and the empirical methodology is ad hoc, but the induced-source proposal is worth a footnote. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The central object is the recursively squared iteration matrix $\alpha^{(k)} = (\alpha^{(k-1)})^2$ with the companion bias $\beta^{(k)} = (\alpha^{(k-1)} + I)\beta^{(k-1)}$, seeded by $\alpha^{(0)} = -(A_n - I)$ and $\beta^{(0)} = b_n$. The carrying identity is Eq. (25), $A_n^{-1} = \prod_{i=0}^{k-1}(\alpha^{(i)} + I)$, which packages $2^k$ Jacobi sweeps into one matrix-product chain and is what turns the iterative method into a direct inverse formula. The induced-source update, Eqs. (27)-(30), is the companion mechanism that reuses the precomputed inverse by iterating only the source term when the coefficient matrix changes slowly.
What would settle it
Measure HOJM-GPU runtime over at least a factor of 16 in matrix size, fit the log-log exponent over all points, and compare with the cost of the matrix-matrix multiplications the method performs; the near-constant scaling claim is false if the fitted exponent rises toward the matrix-multiplication exponent rather than staying near zero.
Extended reading notes
Core claim
On its own terms, the central discovery is that the Jacobi recurrence $x^{(k+1)} = \alpha x^{(k)} + \beta$ can be exponentiated: defining $\alpha^{(k)} = (\alpha^{(k-1)})^2$ and $\beta^{(k)} = (\alpha^{(k-1)} + I)\beta^{(k-1)}$ makes one order-$k$ update equivalent to $2^k$ classical sweeps, and the expanded bias term gives the closed form $A_n^{-1} = \prod_{i=0}^{k-1}(\alpha^{(i)} + I)$ for the inverse of the normalized matrix. The paper treats this equation as an explicit finite construction of the inverse, so that direct and iterative methods are unified rather than opposed. It also reads the coefficient hierarchy as a deep linear network with weights and biases fixed by the physics, bypassing the training step of a physics-informed neural network. For slowly changing systems, the proposed induced-source scheme (Eqs. (27)-(30)) keeps the precomputed inverse and iterates only on the source vector. The empirical section then reports GPU timings whose fitted exponents are $n^{0.19}$/$n^{0.79}$ for solving and $n^{0.24}$/$n^{-0.07}$ for inversion, which the authors attribute to the parallel nature of matrix-matrix multiplication.
Load-bearing premise
The empirical result stands on taking the slope of GPU wall-clock time over a small set of matrix sizes as the asymptotic complexity of the method, even though the reported exponents are far below the cost of reading the matrix once.
Editorial extensions
If this is right
- One application of an order-$k$ coefficient pair advances the solution as far as $2^k$ ordinary Jacobi steps, so the paper's choice of $k=20$ corresponds to about one million classical iterations.
- The product identity $A_n^{-1} = \prod_{i=0}^{k-1}(\alpha^{(i)} + I)$ gives an explicit finite expression for the inverse of the normalized system matrix, so the method can be used as a direct solver whenever the Jacobi convergence conditions hold.
- The recurrence defines all network weights $\alpha^{(i)}$ and biases $\beta^{(i)}$ analytically, meaning the linear solve needs no training phase, unlike a physics-informed neural network.
- With a slowly varying coefficient matrix, the induced-source scheme (Eqs. (27)-(30)) performs only matrix-vector multiplications after the initial inverse is computed, so re-solving a nearby system avoids recomputing higher-order coefficients.
- The reported GPU runtime exponents for the higher-order method are $n^{0.19}$ and $n^{0.79}$ for solving and $n^{0.24}$ and $n^{-0.07}$ for inversion, which the authors attribute to the parallelism of matrix-matrix multiplication.
Reading between the lines
- Beyond the paper: the same recursive squaring idea should apply to any stationary iteration whose iteration matrix is contractive, yielding analogous product formulas for Gauss-Seidel or successive over-relaxation.
- Beyond the paper: the induced-source scheme could be combined with time stepping or Newton linearization so one precomputed inverse serves many successive linear systems in nonlinear or time-dependent problems, an extension the paper only gestures at.
- Beyond the paper: because the higher-order products densify as they are squared, a concrete test would be to truncate each $\alpha^{(i)}$ sparsely and measure how the residual of Eq. (25) degrades, quantifying the pruning-versus-accuracy trade-off in the same terms as runtime.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes a 'higher order Jacobi method' (HOJM) for solving linear systems and computing matrix inverses. The method recursively squares the Jacobi iteration matrix and accumulates a bias term, so that k higher-order steps are equivalent to 2^k ordinary Jacobi iterations. The resulting product formula is interpreted as a closed-form expression for the inverse of the normalized matrix, and the structure is likened to a deep linear network. The paper also proposes an 'induced source' iterative scheme for reusing a known inverse when the coefficient matrix changes slowly. The main empirical claim, based on GPU timing measurements, is that HOJM achieves a dramatically lower order of complexity than standard solvers, with fitted exponents as low as n^0.19 for solving and n^(-0.07) for inversion. The paper includes code on GitHub.
Significance. If the near-constant scaling claim were valid, it would indeed be a transformative result, as no algorithm that reads a matrix of size n can run in time sublinear in the matrix size. The paper's algebraic derivation of the higher-order iteration and the product formula for the inverse is elementary and is presented as a connection between iterative methods and deep linear networks. The availability of code and reproducibility scripts is a strength. However, the load-bearing empirical claim rests on exponent fitting from two data points, and the reported exponents are physically impossible for any algorithm that must read the input matrix. The paper's own Discussion section also acknowledges that HOJM has the same computational complexity as matrix-matrix multiplication, which contradicts the claimed 'significant enhancement in the order of complexity.' Without support for the central performance claim, the contribution reduces to an interesting but straightforward algebraic reformulation of Jacobi iteration.
major comments (4)
- [2.1, Eq. (18)] Equation (18) states x(2k) = α(k)·x(2k−1) + β(k), claiming that the k-th order iterate can be obtained from the previous higher-order guess x(2k−1). This is not correct. Equation (15) gives x(2k) in terms of x(0) and the k-th order coefficients; applying the k-th order operator to x(2k−1) does not reproduce x(2k) because the k-th order operator advances by 2^k Jacobi steps, not by one step. The correct recurrence is x(m + 2^k) = α(k)·x(m) + β(k) for general m, or in the paper's indexing x(2k) = α(1)·x(2k−2) + β(1) for the second-order case. As written, Eq. (18) is mathematically inconsistent with Eq. (15) and would produce incorrect iterates if implemented. Since this equation is used to motivate the 'faster convergence' claim and the deep recurrent network analogy, it is a load-bearing error that must be corrected.
- [Section 3, Table 2] The empirical complexity exponents are computed using only the last two data points, with an ad hoc rule that drops the middle of the last three points if a 'sudden jump' is observed. As stated in Section 3: 'The runtime empirical computational complexity for each curve is calculated using the last two data points. If a sudden jump is observed in the last 3 data points, the middle point is excluded for the calculation.' This procedure can produce arbitrarily small exponents. The reported exponents n^0.19 for solving and n^(-0.07) for inversion are below the O(n^2) cost of even reading a dense n×n matrix, and a negative exponent for matrix inversion is impossible for any algorithm that must output an n×n result. These exponents therefore reflect fixed kernel-launch overhead and memory-bound effects over a narrow size range, not algorithmic complexity. The absence of error bars, repeated runs, or any discussion of measurement variability further undermines the claim. This is the central load-bearing evidence for the 'significant enhancement in the order of complexity' stated in the abstract.
- [Section 4 (Discussion) vs. Abstract] The Discussion states that 'The proposed higher-order method has the same computational complexity as matrix-matrix multiplication' (naively O(n^3) for dense matrices and O(n^3) for the product of n×n matrices). This directly contradicts the abstract's claim of 'significant enhancement in the order of complexity.' The GPU timings in Table 2 indicate only that, over the measured size range, the wall-clock time grows slowly; they do not establish a lower order of complexity. The paper conflates measured wall-clock time on a specific GPU implementation with asymptotic algorithmic complexity. At minimum, the paper must clearly separate the algorithmic complexity of HOJM from the observed speedup due to GPU parallelization and must temper the 'order of complexity' language accordingly.
- [2.4, Eqs. (27)–(30)] The induced source iterative scheme is asserted to converge for slowly varying coefficient matrices, but no convergence proof or numerical demonstration is provided. The scheme involves the free relaxation parameter ω, and the iteration (27)–(30) is a fixed-point iteration whose convergence depends on properties of the unknown function 𭟋 and the matrix difference A − A_d. No conditions on ω, on the rate of variation of A_d, or on the spectral radius of the iteration operator are given. Since this section is the basis for the claimed ability to 'efficiently resolve system variations without recomputing the coefficients,' the absence of any analysis or experiment makes this claim unsupported.
minor comments (5)
- [Throughout] The paper uses two different acronyms for the proposed method: HOJM in the abstract and Section 1, and 'HOM' in the second paragraph of Section 1. Use one consistently.
- [2.2, Eq. (22)] The product notation 0∏i=k−1 is nonstandard and the order of matrix multiplication matters. It should be written as ∏_{i=k−1}^{0} (α(i) + I) with the convention that the product is taken in reverse order, or as an explicit descending product.
- [Table 2] The table contains two rows labeled 'after' (after System 1 and after System 2) whose meaning is unclear. These rows appear to belong to the HOJM columns but are not explained in the text. Clarify or remove.
- [Section 3] There are typographical errors: 'single presision' should be 'single precision,' and 'coeffecient' should be 'coefficient.' Also, 'The best order in each row has be highlighted' should be 'has been highlighted.'
- [Figure 1] The text states that the vertical range is capped to 20 seconds, but for log-log plots the cap is a horizontal truncation of large-size behavior. The paper should justify this cap and show whether the truncated points would change the fitted exponents.
Circularity Check
Empirical complexity exponents are fitted from the same timing data they are used to substantiate; the mathematical HOJM derivation is otherwise self-contained.
-
fitted input called prediction
[Section 3, Table 2 and Abstract]
"The runtime empirical computational complexity for each curve is calculated using the last two data points. If a sudden jump is observed in the last 3 data points, the middle point is excluded for the calculation."
The paper's central scaling claims, such as HOJM GPU exponents n^0.19 for solving and n^-0.07 for inversion, are not independent measurements of asymptotic complexity: they are the very exponents fitted from the last two timing points of the same curves. The Abstract then treats these self-derived exponents as evidence of 'significant enhancement in the order of complexity' and a 'transformative direction' in algorithmic efficiency. Because the reported complexity law is the fit itself rather than a quantity validated on held-out matrix sizes or against operation counts, the conclusion reduces to a restatement of the fitting procedure. This is a mild, partial circularity in the empirical claim, while the mathematical derivation of HOJM remains self-contained.
full rationale
The mathematical core of the paper, Eqs. (3)-(25), is a self-contained algebraic rearrangement of the Jacobi iteration: normalizing by D, defining alpha = -(A_n - I), and telescoping the iterates gives the product formula for the truncated Neumann series. This derivation does not assume its conclusion, and the self-citations [33,34] for the distributed/induced source scheme are not load-bearing for the main result. The inverse-product identity is a known convergence-limit statement, though the paper presents it as an exact finite-k inverse without taking the limit, which is a correctness concern rather than a circularity. The only circularity-adjacent element is the empirical complexity analysis: the exponents in Table 2 are computed from the same last two data points that the Abstract uses to claim a 'significant enhancement in the order of complexity.' That makes the headline empirical claim partly forced by construction, but it does not invalidate the algebraic derivation, so the overall circularity score is mild.
Assumptions & free parameters
free parameters (2)
- number of HOJM coefficients k =
20
- relaxation factor omega =
not specified
assumptions (3)
- domain assumption The system matrix A is such that the Jacobi iteration converges (spectral radius of alpha = I - A_n^{-1} A is below 1).
- ad hoc to paper The induced source fixed-point iteration (27)-(30) converges for slowly varying coefficient matrices.
- standard math The infinite product in Eq. (25) converges to A_n^{-1}.
invented entities (1)
-
induced source matrix b_i
Cite this review
Pith. "Pith review of Higher order Jacobi method for solving system of linear equations." pith.science (2026). https://pith.science/paper/46Q3XY6S
@misc{pith2026250516906,
author = {Pith},
title = {Pith review of: Higher order Jacobi method for solving system of linear equations},
year = {2026},
howpublished = {\url{https://pith.science/paper/46Q3XY6S}},
note = {Machine review of arXiv:2505.16906}
}
read the original abstract
This work proposes a higher-order iterative framework for solving matrix equations, inspired by the structure and functionality of neural networks. A modification of the classical Jacobi iterative method is introduced to compute higher-order coefficient matrices through matrix-matrix multiplications. The resulting method, termed the higher order Jacobi method (HOJM), structurally resembles a shallow linear network and allows direct computation of the inverse of the coefficient matrix. Building on this, an iterative scheme is developed that allows efficient resolution of system variations without recomputing the coefficients, once the network parameters are trained for a known system. This iterative process naturally assumes the form of a deep recurrent neural network. The proposed approach goes beyond conventional physics-informed neural networks (PINNs) by providing an explicit, training-free definition of network parameters rooted in physical and mathematical formulations. Computational analysis on GPU reveals significant enhancement in the order of complexity, highlighting a compelling and transformative direction for advancing algorithmic efficiency in solving linear systems. This methodology opens avenues for interpretable and scalable solutions to physically motivated problems in computational science.
Figures
Reference graph
Works this paper leans on
-
[1]
Numerical solution of partial differential equations: finite difference methods
Gordon D Smith. Numerical solution of partial differential equations: finite difference methods . Oxford university press, 1985
work page 1985
-
[2]
Numerical methods for partial differential equations
William F Ames. Numerical methods for partial differential equations . Academic press, 2014
work page 2014
-
[3]
Numerical solution of partial differential equations by the finite element method
Claes Johnson. Numerical solution of partial differential equations by the finite element method . Courier Corporation, 2009
work page 2009
-
[4]
On best approximate solutions of linear matrix equations
Roger Penrose. On best approximate solutions of linear matrix equations. In Mathematical Proceedings of the Cambridge Philosophical Society , volume 52, pages 17–19. Cambridge University Press, 1956
work page 1956
-
[5]
VVS Prakash and Raj Mittra. Characteristic basis function method: A new technique for efficient solution of method of moments matrix equations. Microwave and optical technology letters , 36(2):95–100, 2003
work page 2003
-
[6]
Simulation modeling and analysis , volume 3
Averill M Law, W David Kelton, and W David Kelton. Simulation modeling and analysis , volume 3. Mcgraw-hill New York, 2000
work page 2000
-
[7]
Paul Bratley, Bennet L Fox, and Linus E Schrage. A guide to simulation . Springer Science & Business Media, 2011
work page 2011
-
[8]
Beyond-classical com- putation in quantum simulation
Andrew D King, Alberto Nocera, Marek M Rams, Jacek Dziarmaga, Roeland Wiersema, William Bernoudy, Jack Raymond, Nitin Kaushal, Niclas Heinsdorf, Richard Harris, et al. Beyond-classical com- putation in quantum simulation. Science, 388(6743):199–204, 2025
work page 2025
Show all 56 references
-
[9]
Numerical methods for unconstrained optimization and nonlinear equations
John E Dennis Jr and Robert B Schnabel. Numerical methods for unconstrained optimization and nonlinear equations. SIAM, 1996
1996
-
[10]
Modelling, simulation, and optimisation of agrivoltaic systems: a comprehensive review
Sebastian Zainali, Silvia Ma Lu, ´Alvaro Fern´ andez-Solas, Alejandro Cruz-Escabias, Eduardo F Fern´ andez, Tekai Eddine Khalil Zidane, Erlend Hustad Honningdalsnes, Magnus Moe Nyg ˚ ard, Jonathan Leloux, Matthew Berwind, et al. Modelling, simulation, and optimisation of agriv...
2025
-
[11]
Direct Methods for Space Matrices
Ole Østerby and Zahari Zlatev. Direct Methods for Space Matrices . Springer, 1983
1983
-
[12]
Error analysis of direct methods of matrix inversion
James Hardy Wilkinson. Error analysis of direct methods of matrix inversion. Journal of the ACM (JACM), 8(3):281–330, 1961
1961
-
[13]
Recent advances in direct methods for solving unsymmetric sparse systems of linear equations
Anshul Gupta. Recent advances in direct methods for solving unsymmetric sparse systems of linear equations. ACM Transactions on Mathematical Software (TOMS) , 28(3):301–324, 2002
2002
-
[14]
Mathematicians of gaussian elimination
Joseph F Grcar. Mathematicians of gaussian elimination. Notices of the AMS , 58(6):782–792, 2011
2011
-
[15]
The simplex method of linear programming using lu decomposition
Richard H Bartels and Gene H Golub. The simplex method of linear programming using lu decomposition. Communications of the ACM , 12(5):266–268, 1969. 8
1969
-
[16]
Iterative analysis
Richard S Varga. Iterative analysis. New Jersey , 322:24, 1962
1962
-
[17]
Applied iterative methods
Louis A Hageman. Applied iterative methods. Elsevier, 2014
2014
-
[18]
Iterative methods for solving matrix equations
RS Varga. Iterative methods for solving matrix equations. The American Mathematical Monthly , 72(sup2):67–74, 1965
1965
-
[19]
The jacobi and gauss–seidel-type iteration methods for the matrix equation axb= c
Zhaolu Tian, Maoyi Tian, Zhongyun Liu, and Tongyang Xu. The jacobi and gauss–seidel-type iteration methods for the matrix equation axb= c. Applied Mathematics and Computation , 292:63–75, 2017
2017
-
[20]
A generalized conjugate gradient method for the numerical solution of elliptic partial differential equations
Paul Concus, Gene H Golub, and Dianne P O’Leary. A generalized conjugate gradient method for the numerical solution of elliptic partial differential equations. In Sparse matrix computations, pages 309–332. Elsevier, 1976
1976
-
[21]
Conjugate gradient methods
Jorge Nocedal and Stephen J Wright. Conjugate gradient methods. Numerical optimization, pages 101–134, 2006
2006
-
[22]
Conjugate gradient method
John L Nazareth. Conjugate gradient method. Wiley Interdisciplinary Reviews: Computational Statistics , 1(3):348–353, 2009
2009
-
[23]
Physics-informed neural networks: A deep learning framework for solving forward and inverse problems involving nonlinear partial differential equa- tions
Maziar Raissi, Paris Perdikaris, and George E Karniadakis. Physics-informed neural networks: A deep learning framework for solving forward and inverse problems involving nonlinear partial differential equa- tions. Journal of Computational physics , 378:686–707, 2019
2019
-
[24]
Scientific machine learning through physics–informed neural networks: Where we are and what’s next
Salvatore Cuomo, Vincenzo Schiano Di Cola, Fabio Giampaolo, Gianluigi Rozza, Maziar Raissi, and Francesco Piccialli. Scientific machine learning through physics–informed neural networks: Where we are and what’s next. Journal of Scientific Computing , 92(3):88, 2022
2022
-
[25]
Physics-informed neural networks (pinns) for fluid mechanics: A review
Shengze Cai, Zhiping Mao, Zhicheng Wang, Minglang Yin, and George Em Karniadakis. Physics-informed neural networks (pinns) for fluid mechanics: A review. Acta Mechanica Sinica, 37(12):1727–1738, 2021
2021
-
[26]
Physics-informed machine learning
George Em Karniadakis, Ioannis G Kevrekidis, Lu Lu, Paris Perdikaris, Sifan Wang, and Liu Yang. Physics-informed machine learning. Nature Reviews Physics , 3(6):422–440, 2021
2021
-
[27]
Efficient training of physics- informed neural networks via importance sampling
Mohammad Amin Nabian, Rini Jasmine Gladstone, and Hadi Meidani. Efficient training of physics- informed neural networks via importance sampling. Computer-Aided Civil and Infrastructure Engineering, 36(8):962–977, 2021
2021
-
[28]
Convergence of matrix iterations subject to diagonal dominance
Ken R James. Convergence of matrix iterations subject to diagonal dominance. SIAM Journal on Numer- ical Analysis, 10(3):478–484, 1973
1973
-
[29]
On the convergence of the iterative methods.Numerical Heat Transfer, Part B: Fundamentals, 81(1-6):1–13, 2022
V AF Costa. On the convergence of the iterative methods.Numerical Heat Transfer, Part B: Fundamentals, 81(1-6):1–13, 2022
2022
-
[30]
Verified cor- rectness, accuracy, and convergence of a stationary iterative linear solver: Jacobi method
Mohit Tekriwal, Andrew W Appel, Ariel E Kellison, David Bindel, and Jean-Baptiste Jeannin. Verified cor- rectness, accuracy, and convergence of a stationary iterative linear solver: Jacobi method. In International Conference on Intelligent Computer Mathematics , pages 206–221....
2023
-
[31]
Numerical solutions to poisson equations using the finite-difference method [education column]
James R Nagel. Numerical solutions to poisson equations using the finite-difference method [education column]. IEEE Antennas and Propagation Magazine , 56(4):209–224, 2014
2014
-
[32]
A new adaptive mesh refinement data structure with an application to detonation
Hua Ji, Fue-Sang Lien, and Eugene Yee. A new adaptive mesh refinement data structure with an application to detonation. Journal of Computational Physics , 229(23):8981–8993, 2010
2010
-
[33]
Distributed source scheme to solve the classical form of poisson equation using 3-d finite-difference method for improved accuracy and unrestricted source position
Nithin Kumar Goona, Saidi Reddy Parne, and S Sashidhar. Distributed source scheme to solve the classical form of poisson equation using 3-d finite-difference method for improved accuracy and unrestricted source position. Mathematics and Computers in Simulation , 190:965–975, 2021
2021
-
[34]
Distributed source scheme for poisson equation using finite element method
Nithin Kumar Goona and Saidi Reddy Parne. Distributed source scheme for poisson equation using finite element method. Journal of Computational Science , 72:102103, 2023
2023
-
[35]
The computational complexity of some problems of linear algebra
Jonathan F Buss, Gudmund S Frandsen, and Jeffrey O Shallit. The computational complexity of some problems of linear algebra. Journal of Computer and System Sciences , 58(3):572–596, 1999
1999
-
[36]
Matrix computations
Gene H Golub and Charles F Van Loan. Matrix computations. JHU press, 2013
2013
-
[37]
Papadimitriou
Christos H. Papadimitriou. Computational complexity , page 260–265. John Wiley and Sons Ltd., GBR, 2003. 9
2003
-
[38]
Joint conjugate gradient and jacobi iteration based low complexity precoding for massive mimo systems
Wei Song, Xiang Chen, Liangliang Wang, and Xuming Lu. Joint conjugate gradient and jacobi iteration based low complexity precoding for massive mimo systems. In 2016 IEEE/CIC International Conference on Communications in China (ICCC) , pages 1–5. IEEE, 2016
2016
-
[39]
Conjugate gradient methods for partial differential equations
Rati Chandra. Conjugate gradient methods for partial differential equations. Yale University, 1978
1978
-
[40]
Multigrid methods
Ulrich Trottenberg, Cornelius W Oosterlee, and Anton Schuller. Multigrid methods. Academic press, 2001
2001
-
[41]
Im- plementation of strassen’s algorithm for matrix multiplication
Steven Huss-Lederman, Elaine M Jacobson, Anna Tsao, Thomas Turnbull, and Jeremy R Johnson. Im- plementation of strassen’s algorithm for matrix multiplication. In Proceedings of the 1996 ACM/IEEE Conference on Supercomputing, pages 32–es, 1996
1996
-
[42]
Alphaevolve: A coding agent for scientific and algorithmic discovery
Alexander Novikov, Ngˆ an Vu, Marvin Eisenberger, Emilien Dupont, Po-Sen Huang, Adam Zsolt Wagner, Sergey Shirobokov, Borislav Kozlovskii, Francisco JR Ruiz, Abbas Mehrabian, et al. Alphaevolve: A coding agent for scientific and algorithmic discovery. Technical report, Technic...
2025
-
[43]
On the asymptotic complexity of matrix multiplication
Don Coppersmith and Shmuel Winograd. On the asymptotic complexity of matrix multiplication. SIAM Journal on Computing , 11(3):472–492, 1982
1982
-
[44]
Multiplying matrices faster than coppersmith-winograd
Virginia Vassilevska Williams. Multiplying matrices faster than coppersmith-winograd. In Proceedings of the forty-fourth annual ACM symposium on Theory of computing , pages 887–898, 2012
2012
-
[45]
A high-performance matrix-multiplication algorithm on a distributed-memory parallel computer, using overlapped communication
Ramesh C Agarwal, Fred G Gustavson, and Mohammad Zubair. A high-performance matrix-multiplication algorithm on a distributed-memory parallel computer, using overlapped communication. IBM Journal of Research and Development, 38(6):673–681, 1994
1994
-
[46]
A new parallel matrix multiplication algorithm on distributed-memory concurrent com- puters
Jaeyoung Choi. A new parallel matrix multiplication algorithm on distributed-memory concurrent com- puters. Concurrency: practice and experience , 10(8):655–670, 1998
1998
-
[47]
Muhammad Osama, Duane Merrill, Cris Cecka, Michael Garland, and John D. Owens. Stream-k: Work- centric parallel decomposition for dense matrix-matrix multiplication on the gpu. In Proceedings of the 28th ACM SIGPLAN Annual Symposium on Principles and Practice of Parallel Progr...
2023
-
[48]
Optimization of matrix-matrix multiplication algorithm for matrix-panel multiplication on intel knl
Muhammad Rizwan, Enoch Jung, Yoosang Park, Jaeyoung Choi, and Yoonhee Kim. Optimization of matrix-matrix multiplication algorithm for matrix-panel multiplication on intel knl. In 2022 IEEE/ACS 19th International Conference on Computer Systems and Applications (AICCSA) , pages ...
2022
-
[49]
Consequences of the moosbauer-poole algorithms
Manuel Kauers and Isaac Wood. Consequences of the moosbauer-poole algorithms. arXiv preprint arXiv:2505.05896, 2025
2025 arXiv
-
[50]
Sparsity in deep learning: Pruning and growth for efficient inference and training in neural networks
Torsten Hoefler, Dan Alistarh, Tal Ben-Nun, Nikoli Dryden, and Alexandra Peste. Sparsity in deep learning: Pruning and growth for efficient inference and training in neural networks. Journal of Machine Learning Research, 22(241):1–124, 2021
2021
-
[51]
A survey on deep neural network pruning: Taxon- omy, comparison, analysis, and recommendations
Hongrong Cheng, Miao Zhang, and Javen Qinfeng Shi. A survey on deep neural network pruning: Taxon- omy, comparison, analysis, and recommendations. IEEE Transactions on Pattern Analysis and Machine Intelligence, 46(12):10558–10578, 2024
2024
-
[52]
Tilespgemm: a tiled algorithm for parallel sparse general matrix-matrix multiplication on gpus
Yuyao Niu, Zhengyang Lu, Haonan Ji, Shuhui Song, Zhou Jin, and Weifeng Liu. Tilespgemm: a tiled algorithm for parallel sparse general matrix-matrix multiplication on gpus. In Proceedings of the 27th ACM SIGPLAN Symposium on Principles and Practice of Parallel Programming , PPo...
2022
-
[53]
Howie Huang
Seth David Kay and H. Howie Huang. Towards just-in-time instruction generation for accelerated sparse matrix-matrix multiplication on gpus. In 2024 IEEE High Performance Extreme Computing Conference (HPEC), pages 1–7, 2024
2024
-
[54]
Parallel photonic acceleration processor for matrix–matrix multiplication
Ying Huang, Hengsong Yue, Wei Ma, Yiyuan Zhang, Yao Xiao, Yong Tang, He Tang, and Tao Chu. Parallel photonic acceleration processor for matrix–matrix multiplication. Opt. Lett. , 48(12):3231–3234, Jun 2023
2023
-
[55]
Inter- pretable machine learning: Fundamental principles and 10 grand challenges
Cynthia Rudin, Chaofan Chen, Zhi Chen, Haiyang Huang, Lesia Semenova, and Chudi Zhong. Inter- pretable machine learning: Fundamental principles and 10 grand challenges. Statistic Surveys , 16:1–85, 2022
2022
-
[56]
Interpretable machine learning for knowledge generation in heterogeneous catalysis
Jacques A Esterhuizen, Bryan R Goldsmith, and Suljo Linic. Interpretable machine learning for knowledge generation in heterogeneous catalysis. Nature catalysis, 5(3):175–184, 2022. 10
2022
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.