[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [ANN] An Org parser for Julia
From: |
Ihor Radchenko |
Subject: |
Re: [ANN] An Org parser for Julia |
Date: |
Thu, 02 Dec 2021 20:07:31 +0800 |
Timothy <tecosaur@gmail.com> writes:
> │ julia> @benchmark parse(Org, config)
> │ BenchmarkTools.Trial: 139 samples with 1 evaluation.
> │ Range (min … max): 34.042 ms … 43.269 ms ┊ GC (min … max): 0.00% … 16.10%
> │ Time (median): 34.857 ms ┊ GC (median): 0.00%
> │ Time (mean ± σ): 35.999 ms ± 2.490 ms ┊ GC (mean ± σ): 2.63% ± 5.30%
> │
> │ █▁
> │ ▃▇██▄▆▄▃▂▃▅▅▅▄▄▂▂▂▂▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▂▂▃▁▃▂▂▃▂▃▁▁▂▃▁▂▂▁▂ ▂
> │ 34 ms Histogram: frequency by time 43 ms <
> │
> │ Memory estimate: 7.17 MiB, allocs estimate: 142185.
> └────
>
> It’s worth noting that the first time `parse(Org, config)' is called, it will
> trigger JIT compilation (which for me takes ~15s).
>
> `org-element-parse-buffer' seems to tend to take ~200ms.
Just FYI that I am getting similar results on your config.org:
M-: (let ((gc-cons-threshold #x40000000)) (benchmark-run
(org-element-parse-buffer)))
(0.133567423 0 0.0), which is 133ms
and
@benchmark parse(Org, textorgfile)
BenchmarkTools.Trial: 196 samples with 1 evaluation.
Range (min … max): 22.235 ms … 81.101 ms ┊ GC (min … max): 0.00% … 0.00%
Time (median): 23.652 ms ┊ GC (median): 0.00%
Time (mean ± σ): 25.535 ms ± 5.921 ms ┊ GC (mean ± σ): 2.56% ± 5.36%
█▃ ▂▂
▆▅███▇▅▅▁▅██▆▄▄▁▁▁▁▁▁▁▁▁▁▁▁▁▄▁▁▅▁▅▁▁▄▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▄▁▄ ▄
22.2 ms Histogram: log(frequency) by time 51.3 ms <
Memory estimate: 7.07 MiB, allocs estimate: 139566.
Best,
Ihor