Skip to content

Commit 25f30bc

Browse files
committed
minor: minor docstring edits
1 parent 186af3a commit 25f30bc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/plot_matrixmult.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040

4141
###############################################################################
4242
# We are now ready to create the input matrices :math:`\mathbf{A}` of size
43-
# :math:`M \times k` and :math:`\mathbf{A}` of size :math:`K \times N`.
43+
# :math:`M \times k` and :math:`\mathbf{X}` of size :math:`K \times N`.
4444
N, K, M = 4, 4, 4
4545
A = np.random.rand(N * K).astype(dtype=np.float32).reshape(N, K)
4646
X = np.random.rand(K * M).astype(dtype=np.float32).reshape(K, M)

examples/plot_summamatrixmult.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
###############################################################################
3434
# We set the seed such that all processes can create the input matrices filled
35-
# with the same random number. In practical application, such matrices will be
35+
# with the same random number. In practical applications, such matrices will be
3636
# filled with data that is appropriate to the use-case.
3737
np.random.seed(42)
3838

0 commit comments

Comments
 (0)