Skip to content
Snippets Groups Projects
Commit 9820a367 authored by gruczela's avatar gruczela
Browse files

Upload New File

parent 34b033b9
No related branches found
No related tags found
No related merge requests found
from numba import jit
import timeit
def square(x):
return x ** 2
@jit
def fast_square(x):
return x ** 2
%timeit square(100)
%timeit fast_square(100)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment