| 528 | } |
| 529 | |
| 530 | void CastPyArg2AttrString(PyObject* obj, |
| 531 | paddle::framework::AttributeMap& attrs, // NOLINT |
| 532 | const std::string& key, |
| 533 | const std::string& op_type, |
| 534 | ssize_t arg_pos) { |
| 535 | attrs[key] = CastPyArg2String(obj, op_type, arg_pos); |
| 536 | } |
| 537 | |
| 538 | std::vector<bool> CastPyArg2Booleans(PyObject* obj, |
| 539 | const std::string& op_type, |
no test coverage detected