CPU Estimate ============ ``` import numpy as np N = 2^^13 a = np.random.rand(N,N) b = np.random.rand(N,N) #multiply two matrices c = a @ b print("Multiplying matrices of size ", N) ```