From e57224d6e4f2eb8894837319c9ff626a2a9ea5f5 Mon Sep 17 00:00:00 2001 From: gingerBill Date: Sun, 28 Jan 2024 21:30:08 +0000 Subject: [PATCH] Fix demo --- examples/demo/demo.odin | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/demo/demo.odin b/examples/demo/demo.odin index bc6a4d9ea..239e28ee0 100644 --- a/examples/demo/demo.odin +++ b/examples/demo/demo.odin @@ -2438,7 +2438,7 @@ matrix_type :: proc() { // component-wise multiplication // since a * b would be a standard matrix multiplication - c6 := hadamard_product(a, b) + c6 := intrinsics.hadamard_product(a, b) fmt.println("a + b", c0) @@ -2480,7 +2480,7 @@ matrix_type :: proc() { 5, 0, 6, 0, 0, 7, 0, 8, } - fmt.println("b4", matrix_flatten(b4)) + fmt.println("b4", intrinsics.matrix_flatten(b4)) } { // Casting non-square matrices