From 6b76daeacf97230553c25de8dbdd4d2f5c30b958 Mon Sep 17 00:00:00 2001 From: houkensjtu Date: Wed, 10 May 2023 15:27:25 +0800 Subject: [PATCH] Fix CI failure. --- docs/lang/articles/math/linear_solver.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/lang/articles/math/linear_solver.md b/docs/lang/articles/math/linear_solver.md index 37150c167abbb..bc98328cfe868 100644 --- a/docs/lang/articles/math/linear_solver.md +++ b/docs/lang/articles/math/linear_solver.md @@ -144,7 +144,7 @@ def compute_matrix_vector(v:ti.template(), mv:ti.template()): mv[i] = 2 * v[i] ``` In this case, `compute_matrix_vector` kernel accepts an input vector `v` and calculates the corresponding matrix-vector product `mv`. It is mathematically equal to a matrice whose diagonal elements are all 2. In the case of `n=4`, the equivalent matrice `A` is: -```python +```python cont # >>>> Matrix A: # [2, 0, 0, 0] # [0, 2, 0, 0]