File size: 1,481 Bytes
79f9b39 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
define({
'name' : 'numba',
'sub-menu' : [
{
'name' : 'Setup',
'snippet' : [
'from __future__ import print_function, division',
'import sys',
'if sys.version_info[0] >= 3:',
' xrange = range # Must always iterate with xrange in njit functions',
'import numba',
],
},
{
'name' : 'Documentation',
'external-link' : 'http://numba.pydata.org/numba-doc/dev/index.html',
},
'---',
{
'name' : 'Jit function',
'snippet' : [
'@numba.njit',
'def bp_func(x):',
' r"""Some function',
' ',
' Does some stuff.',
' ',
' """',
' return x**2',
],
},
{
'name' : 'Jit function with specified signature',
'snippet' : [
'@numba.njit(f8, f8[:])',
'def bp_func(x, y):',
' r"""Some function',
' ',
' Parameters',
' ----------',
' x : float',
' y : float array',
' ',
' """',
' for j in xrange(y.size):',
' y[j] *= x',
],
},
],
});
|