Skip to content

Instantly share code, notes, and snippets.

View sojiadeshina's full-sized avatar

Soji Adeshina sojiadeshina

View GitHub Profile
@sojiadeshina
sojiadeshina / gluon-nlp-demo-na-summit.ipynb
Created August 12, 2019 07:09
Gluon NLP demo NA Tech Summit
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
import numpy as np
from time import time
size = 4096
N = 20
def timed_matrix_multiply(A, B):
t = time()
for i in range(N):
np.dot(A, B)
elapsed = time() - t