| 281 | } |
| 282 | |
| 283 | bool IsEmptyList(const AttrValue::ListValue& list) { |
| 284 | return list.s_size() == 0 && list.i_size() == 0 && list.f_size() == 0 && |
| 285 | list.b_size() == 0 && list.type_size() == 0 && |
| 286 | list.shape_size() == 0 && list.tensor_size() == 0; |
| 287 | } |
| 288 | |
| 289 | string ToCamelCase(const string& str) { |
| 290 | string result; |
no test coverage detected