| 229 | // DType |
| 230 | bool PyDTypeCheck(PyObject* obj) { return detail::isinstance_fast<Symbol<DType>>(obj); } |
| 231 | Symbol<DType> PyUnpackDType(PyObject* obj) { return *detail::cast_fast<Symbol<DType>*>(obj); } |
| 232 | |
| 233 | // Layout |
| 234 | bool PyLayoutCheck(PyObject* obj) { return detail::isinstance_fast<Symbol<Layout>>(obj); } |
no outgoing calls
no test coverage detected