Skip to content
Snippets Groups Projects
Commit 300e9ec8 authored by Bentriou Mahmoud's avatar Bentriou Mahmoud
Browse files

small fix of cosmos result parser for memory used value

parent dfcc663d
No related branches found
No related tags found
No related merge requests found
......@@ -11,11 +11,12 @@ function cosmos_get_values(name_file::String)
while !eof(output_file)
line = readline(output_file)
splitted_line = split(line, ':')
if (length(splitted_line) > 1) && tryparse(Float64, splitted_line[2]) !== nothing
str_val = split(splitted_line[2], ' ')[1]
if (length(splitted_line) > 1) && tryparse(Float64, str_val) !== nothing
if !haskey(dict_values, splitted_line[1])
dict_values[splitted_line[1]] = zeros(0)
end
push!(dict_values[splitted_line[1]], parse(Float64, splitted_line[2]))
push!(dict_values[splitted_line[1]], parse(Float64, str_val))
end
end
close(output_file)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment