| 767 | } |
| 768 | |
| 769 | void TFE_OpSetAttrFloatList(TFE_Op* op, const char* attr_name, |
| 770 | const float* values, int num_values) { |
| 771 | op->operation.MutableAttrs()->Set( |
| 772 | attr_name, tensorflow::gtl::ArraySlice<const float>(values, num_values)); |
| 773 | } |
| 774 | |
| 775 | void TFE_OpSetAttrIntList(TFE_Op* op, const char* attr_name, |
| 776 | const int64_t* values, int num_values) { |
no test coverage detected