Fix hang in config file generation (#101)

- Updated Timemory module.
- Fixes a crash when running rocprof-sys-avail -G without explicitly providing -F <format>. The default value of "txt" was not being used.
- Define "choices" before "default" when defining the "--config-format" argument in the parser.
Cette révision appartient à :
David Galiffi
2025-02-11 17:36:31 -05:00
révisé par GitHub
Parent 697d1ac02f
révision 3833c8d162
2 fichiers modifiés avec 2 ajouts et 2 suppressions
+1 -1
Sous-module external/timemory mis-à-jour : 8c2afd3b2e...0eb3c2e897
+1 -1
Voir le fichier
@@ -454,8 +454,8 @@ main(int argc, char** argv)
parser.add_argument({ "-F", "--config-format" }, "Configuration file format")
.min_count(1)
.max_count(3)
.set_default(std::set<std::string>{ "txt" })
.choices({ "txt", "json", "xml" })
.set_default(std::set<std::string>{ "txt" })
.dtype("filename")
.action([&_config_fmts](parser_t& _p) {
_config_fmts = _p.get<std::set<std::string>>("config-format");