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