From 0dc856c47fbd14c9a644ab830c081e21b1b327d3 Mon Sep 17 00:00:00 2001 From: Alejandro Saucedo Date: Tue, 18 Jan 2022 18:36:49 +0000 Subject: [PATCH] Updating array_mutiplication example to work correctly Signed-off-by: Alejandro Saucedo --- examples/array_multiplication/src/Main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/array_multiplication/src/Main.cpp b/examples/array_multiplication/src/Main.cpp index a97fdbf24..1b02f316b 100755 --- a/examples/array_multiplication/src/Main.cpp +++ b/examples/array_multiplication/src/Main.cpp @@ -51,7 +51,7 @@ int main() std::vector> params = { tensorInA, tensorInB, tensorOut }; - std::shared_ptr algo = mgr.algorithm(params, kp_test_utils::compileSource(shader)); + std::shared_ptr algo = mgr.algorithm(params, compileSource(shader)); mgr.sequence() ->record(params)