Spaces:
Running on Zero
Running on Zero
File size: 212 Bytes
96da58e | 1 2 3 4 5 6 7 8 9 10 11 12 13 | """
Numba utils.
"""
import numba
import robosuite.macros as macros
def jit_decorator(func):
if macros.ENABLE_NUMBA:
return numba.jit(nopython=True, cache=macros.CACHE_NUMBA)(func)
return func
|