| 686 | } |
| 687 | |
| 688 | void TFE_OpSetAttrString(TFE_Op* op, const char* attr_name, const void* value, |
| 689 | size_t length) { |
| 690 | op->operation.MutableAttrs()->Set( |
| 691 | attr_name, |
| 692 | tensorflow::StringPiece(static_cast<const char*>(value), length)); |
| 693 | } |
| 694 | |
| 695 | void TFE_OpSetAttrInt(TFE_Op* op, const char* attr_name, int64_t value) { |
| 696 | op->operation.MutableAttrs()->Set(attr_name, static_cast<int64>(value)); |