Home
last modified time | relevance | path

Searched refs:FastModuleType (Results 1 – 3 of 3) sorted by relevance

/external/tensorflow/tensorflow/python/util/
Dfast_module_type_test.py19 FastModuleType = fast_module_type.get_fast_module_type_class() variable
22 class ChildFastModule(FastModuleType):
45 FastModuleType.set_getattribute_callback(module,
52 FastModuleType.set_getattribute_callback(module,
54 FastModuleType.set_getattr_callback(module, ChildFastModule._getattr)
Dfast_module_type.cc228 static PyTypeObject FastModuleType = []() { in __anona71ec8820102() variable
258 DCHECK(IsAnyBaseSameType(obj, &FastModuleType)); in UncheckedCast()
263 FastModuleType.tp_base = &PyModule_Type; in PYBIND11_MODULE()
264 FastModuleType.tp_setattro = [](PyObject *module, PyObject *name, in PYBIND11_MODULE()
289 reinterpret_cast<PyObject *>(&FastModuleType)); in PYBIND11_MODULE()
Dmodule_wrapper.py30 FastModuleType = fast_module_type.get_fast_module_type_class() variable
81 class TFModuleWrapper(FastModuleType):
92 FastModuleType.set_getattr_callback(self, TFModuleWrapper._getattr)
93 FastModuleType.set_getattribute_callback(self,