From 95ead7ace51312814e14cbbf6f6bfe5573b31334 Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Wed, 6 Jan 2021 01:14:30 -0500 Subject: [PATCH] Small tweak to some examples --- docs/src/getting-started.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/src/getting-started.md b/docs/src/getting-started.md index b43a3e1..d153ab1 100644 --- a/docs/src/getting-started.md +++ b/docs/src/getting-started.md @@ -17,6 +17,8 @@ C = Matrix{Int}(undef, 2, 4) Octavian.matmul!(C, A, B) # (multi-threaded) multiply A×B and store the result in C (overwriting the contents of C) +C + C == A * B ``` @@ -29,5 +31,7 @@ B = [7 8 9 10; 11 12 13 14; 15 16 17 18] C = Octavian.matmul(A, B) # (multi-threaded) multiply A×B and return the result +C + C == A * B ```