From fe8eb971d52cb89ac0494aa47ecd60c5492299e0 Mon Sep 17 00:00:00 2001 From: Joe Fioti Date: Thu, 25 Jul 2024 15:32:54 -0500 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 897c7d2c..d89e50d9 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ use luminal::prelude::*; // Setup graph and tensors let mut cx = Graph::new(); let a = cx.tensor((3, 1)).set([[1.0], [2.0], [3.0]]); -let b = cx.tensor((1, 4).set([[1.0, 2.0, 3.0, 4.0]]); +let b = cx.tensor((1, 4)).set([[1.0, 2.0, 3.0, 4.0]]); // Do math... let mut c = a.matmul(b).retrieve();