From 68160243f773b1dfaae0acd34adb52046822cc93 Mon Sep 17 00:00:00 2001 From: aliPMPAINT <53617231+aliPMPAINT@users.noreply.github.com> Date: Sun, 3 Jan 2021 19:24:49 +0330 Subject: [PATCH] Small fixes --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 36eb0e2ee..64025b883 100644 --- a/README.md +++ b/README.md @@ -110,7 +110,7 @@ int main() { mgr.evalOpDefault({ tensorInA, tensorInB, tensorOut }); // Prints the output which is Output: { 2, 4, 6 } - std::cout<< "Output: { "; + std::cout << "Output: { "; for (const float& elem : tensorOut->data()) { std::cout << elem << " "; } @@ -171,7 +171,7 @@ int main() { sq->eval(); // Prints the output which is Output: { 2, 4, 6 } - std::cout<< "Output: { "; + std::cout << "Output: { "; for (const float& elem : tensorOut->data()) { std::cout << elem << " "; }