| 320 | } |
| 321 | |
| 322 | void GraphFunction::renameExecInput(size_t idx, std::string name) { |
| 323 | // invalidate the cache |
| 324 | module().updateLastEditTime(); |
| 325 | |
| 326 | if (idx < mExecInputs.size()) { mExecInputs[idx] = std::move(name); } |
| 327 | updateEntries(); |
| 328 | } |
| 329 | |
| 330 | void GraphFunction::addExecOutput(std::string name, size_t addBefore) { |
| 331 | // invalidate the cache |
no test coverage detected