MCPcopy Create free account
hub / github.com/LBANN/lbann / build_string

Function build_string

include/lbann/utils/exception.hpp:160–166  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

158 */
159template <typename... Args>
160std::string build_string(Args&&... args)
161{
162 std::ostringstream oss;
163 int dummy[] = {(oss << args, 0)...};
164 (void)dummy; // silence compiler warnings
165 return oss.str();
166}
167
168} // namespace lbann
169

Callers 15

BadPointerMethod · 0.85
handle_errorMethod · 0.85
load_weights_from_filesFunction · 0.85
operator()Method · 0.85
operator()Method · 0.85
on_epoch_endMethod · 0.85
on_test_endMethod · 0.85
get_tagMethod · 0.85

Calls

no outgoing calls

Tested by 2

BadPointerMethod · 0.68
get_tmpdirFunction · 0.68