| 56 | using egr::ConvertAllInputsToDistTensor; |
| 57 | using egr::InputsContainDistTensor; |
| 58 | |
| 59 | namespace paddle::pybind { |
| 60 | |
| 61 | static bool PyCheckInteger(PyObject* obj) { |
| 62 | return PyLong_Check(obj) && !PyBool_Check(obj); |
| 63 | } |
no outgoing calls
no test coverage detected