Last active
August 20, 2024 16:07
-
-
Save AndrasKovacs/0e1bc2532e071cef5974ca582f8090ad to your computer and use it in GitHub Desktop.
NbE with implicit sharing in quotation
@hirrolot yes, but to be more precise "implicit" means more like "it's difficult to make it explicit". In Haskell we could use ghc-heap-view to observe sharing, or if that's not fast enough, write custom foreign CMM code to do it efficiently (in CMM code we can guarantee that no GC occurs so we can index hashtables by pointers).
The formulation for the NbE that I cited in this gist has explicit sharing, for example.
Thanks, but why the gist notes that the paper uses implicit sharing?
The idea of the paper/talk is to also have implicit sharing when we compute terms.
Bad wording, edited.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If I understand it correctly, "implicit" means that sharing is performed by a metalanguage (Haskell), because if we decide to serialize the quoted term, we will lose sharing? If so, are there formulations of NbE with explicit sharing?