| 48 | } |
| 49 | |
| 50 | bool NodeExecutor::DevSetGraphAttr(void* graph_handle, const char* name, const void* val, int size) |
| 51 | { |
| 52 | return backend_dev_->SetGraphAttr(graph_handle, name, val, size); |
| 53 | } |
| 54 | |
| 55 | bool NodeExecutor::DevGetGraphAttr(void* graph_handle, const char* name, void* val, int size) |
| 56 | { |
nothing calls this directly
no test coverage detected