This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
""" | |
Created on Wed Jul 12 21:54:43 2017 | |
@author: rodolfo | |
""" | |
import numpy as np | |
import threading | |
num_of_threads = 4 | |
n= 16 | |
A = np.random.randint(0,9,size = (n,n)) | |
B = np.random.randint(0,9,size = (n,n)) | |
#C = np.matmul(A,B) | |
m = n | |
Cp = np.zeros([m,n]) | |
def matmul(tid): | |
global Cp | |
rows_per_thread = m/num_of_threads | |
start_index = tid*rows_per_thread | |
end_index = (tid+1)*rows_per_thread | |
for i in range(start_index,end_index): | |
for j in range(n): | |
Cp[i][j] = np.dot(A[i,0:m],B[0:m,j]) | |
#Creación de threads | |
threads = [] | |
for tid in range(num_of_threads): | |
t = threading.Thread(target = matmul, args=(tid,)) | |
threads.append(t) | |
t.start() | |
#Unión de threads | |
for th in threads: | |
th.join() | |
#print(" Resultado: ") | |
#print(Cp) |
time (python MatMulThreads.py)
Estos fueron los tiempos de ejecución en una Raspberry Pi 3 para matrices de 2000x2000:
Debe tomarse en cuenta que a pesar de que ambos programas son semanticamente iguales, su implementación no lo es. Es de notarse que en este caso no hay tanta mejoría entre 2 y 4 threads.
No hay comentarios:
Publicar un comentario