| 812 | } |
| 813 | |
| 814 | void TF_SetAttrString(TF_OperationDescription* desc, const char* attr_name, |
| 815 | const void* value, size_t length) { |
| 816 | tensorflow::StringPiece s(static_cast<const char*>(value), length); |
| 817 | desc->node_builder.Attr(attr_name, s); |
| 818 | } |
| 819 | |
| 820 | void TF_SetAttrStringList(TF_OperationDescription* desc, const char* attr_name, |
| 821 | const void* const* values, const size_t* lengths, |