| 50 | } |
| 51 | |
| 52 | void SetRequestedDevice(TF_Graph* graph, TF_Operation* op, const char* device) { |
| 53 | mutex_lock l(graph->mu); |
| 54 | op->node.set_requested_device(device); |
| 55 | RecordMutation(graph, *op, "setting device"); |
| 56 | } |
| 57 | |
| 58 | void UpdateEdge(TF_Graph* graph, TF_Output new_src, TF_Input dst, |
| 59 | TF_Status* status) { |
nothing calls this directly
no test coverage detected