I use the pixie lib to parse an svg file (https://commons.wikimedia.org/wiki/File:1_42_polytope_7-cube.svg)
let svgFile = readFile("1_42_polytope_7-cube.svg")
let svg = parseSvg(svgFile)
On the Nim side what could I do, are there any functions that could help me decrease getTotalMem() ?
Note : I had to modify this line viewBox='0 0 800 800' in the svg to make it work.
This one?
Yes, I would like to understand, with this example file, if it is possible to decrease this value.
Maybe with -d:useMalloc but then the memory reporting doesn't work properly and you need some OS tool to determine the memory usage.
But I think either way this requires a patch to pixie so that it frees some intermediate data structures earlier or avoid its creation.
-d:useMalloc
It solves my massive memory problem, but impressively, I didn't want so much ! From ~2.5 GB, I'm down to about ~230 MB after parsing my Svg file.
I don't have the impression of a reduction in performance, but I'll read the documention about -d:useMalloc
Thanks.