| 123 | } |
| 124 | |
| 125 | bool valid_parameter(const std::string & s) { |
| 126 | auto it = std::find_if(s.begin(), s.end(), [] (char ch) { return ch == '/' || ch == '_'; }); |
| 127 | return it == s.end(); |
| 128 | } |
| 129 | |
| 130 | LookupParameterStorage::LookupParameterStorage(unsigned n, const Dim& d, const ParameterInit & init, |
| 131 | const std::string & name, Device *dev) |
no outgoing calls
no test coverage detected