| 146 | } |
| 147 | } |
| 148 | void Module::clearCache() { |
| 149 | for (auto c : mChildren) { |
| 150 | c->clearCache(); |
| 151 | } |
| 152 | this->onClearCache(); |
| 153 | } |
| 154 | |
| 155 | Module* Module::load(const std::vector<std::string>& inputs, const std::vector<std::string>& outputs, const char* fileName, const Module::Config* config) { |
| 156 | return load(inputs, outputs, fileName, nullptr, config); |
no test coverage detected