metabench
metabench
What is the performance of [Symbol.iterator]()? Iteration is a good programming idiom, and theoretically can have good performance, but in practise I don't know when it comes the latest benchmarks....
That's really good to see. I'm not seeing any indication of API documents for it though, https://www.npmjs.com/package/llml_simd has the same or very similar readme. @mateogianolio Have you got any further...
@marook I did not implement it in a private fork, but in a private codebase which uses osm-read as a dependency. I'd be willing to license that specific code under...
@marook Any advice on what my next move should be? I feel like I could make a large comment here with the iterator. The problem with my current code is...
The new async iteration system I have recently developed would be able to enable this feature. It may be quite a substantial restructuring of existing code to use it in...
The earlier it's represented as BigInt the less time strings longer that 8 bytes need to be stored. It's not a big efficiency difference. Getting the data from osm-read in...
There would likely be less processing to do between the data that's stored in the protobuf and having usable output if it were parsed as BigInt. I don't know whether...
Looking at various TODOs such as https://github.com/marook/osm-read/blob/411aba24bc0e413d29d60e0249453c11ff1b8a52/lib/pbfParser.js#L335 There is no problem with integers of the size we get in OSM PBF files, such as for high node IDs. File positions...
That's a good idea. I wrote this code to map to and from the format you specify: ``` delta = delta.map(x => { const [i_op, value] = x; if (i_op...