Searched refs:compiled_fns (Results 1 – 3 of 3) sorted by relevance
110 def _set_jit_overload_cache(key, compiled_fns): argument111 _jit_function_overload_caching[key] = [fn.qualified_name for fn in compiled_fns]
1496 compiled_fns = []1498 compiled_fns.append(1503 compiled_fns = existing_compiled_fns + compiled_fns1506 _set_jit_overload_cache(obj, compiled_fns)1508 return compiled_fns
1363 auto compiled_fns = py::cast<std::vector<StrongFunctionPtr>>(overloads); in toSugaredValue() local1364 return std::make_shared<FunctionValue>(std::move(compiled_fns)); in toSugaredValue()