Python numba.generated_jit() Examples
The following are 1
code examples of numba.generated_jit().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
numba
, or try the search function
.
Example #1
Source File: _numba_utils.py From clifford with BSD 3-Clause "New" or "Revised" License | 4 votes |
def generated_jit(f=None, **kwargs): if f is None: return _fake_generated_jit else: return _fake_generated_jit(f)