From 8d64260a0183b9d57d51e2b753fc737f7e8f3155 Mon Sep 17 00:00:00 2001 From: ricardoribeiro-2020 Date: Tue, 19 Jul 2022 12:53:02 +0100 Subject: [PATCH] dotproduct.py output corrected --- python/dotproduct.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/python/dotproduct.py b/python/dotproduct.py index fc4c327..94efc24 100644 --- a/python/dotproduct.py +++ b/python/dotproduct.py @@ -123,14 +123,14 @@ def _generate_pre_connection_args( dp = np.abs(dpc) # Save dot products to file - with open("dpc_pool.npy", "wb") as fich: + with open("dpc.npy", "wb") as fich: np.save(fich, dpc) - print(" Dot products saved to file dpc_pool.npy") + print(" Dot products saved to file dpc.npy") # Save dot products modulus to file - with open("dp_pool.npy", "wb") as fich: + with open("dp.npy", "wb") as fich: np.save(fich, dp) - print(" Dot products modulus saved to file dp_pool.npy") + print(" Dot products modulus saved to file dp.npy") ################################################################################### # Finished