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.
[ROCm/rocprofiler-systems commit: 3833c8d162]
Tento commit je obsažen v:
vendorováno
+1
-1
Submodul projects/rocprofiler-systems/external/timemory aktualizován: 8c2afd3b2e...0eb3c2e897
@@ -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");
|
||||
|
||||
Odkázat v novém úkolu
Zablokovat Uživatele