Hi , @raphlinus , I am reading this articleTowards GPGPU JSON parsing ,which I really got a lot of inspiration and very thanks for sharing;
But I got a confusion, about the step 'Generate the result' , the 'Also store alloc[i] into alloc[parent[i] + count[i]], which establishes the references to the children.' that means store alloc[i] into value[alloc[parent[i] + count[i]]] ? But I verified it wrong. It really looks
like store alloc[i] into value[alloc[parent[i]] + count[i]] , I'm not sure it's a mistake?