Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions talk.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# State machine based lookup tables

https://github.com/haskell-works/hw-json-simd/blob/6e891a588d82500e49fa5981dd8429665e1c533f/cbits/simd-phi-table-32.c#L5-L38

https://github.com/haskell-works/hw-json-simd/blob/6e891a588d82500e49fa5981dd8429665e1c533f/cbits/simd-transition-table-32.c#L5-L38

# Dealing with incompatible architectures

## Allow the code to query how the package was compiled

https://github.com/haskell-works/hw-json-simd/blob/6e891a588d82500e49fa5981dd8429665e1c533f/src/HaskellWorks/Data/Json/Simd/Capabilities.hs#L6-L16

https://github.com/haskell-works/hw-json-simd/blob/6e891a588d82500e49fa5981dd8429665e1c533f/src/HaskellWorks/Data/Json/Simd/Internal/Foreign.chs#L15-L28

https://github.com/haskell-works/hw-json-simd/blob/6e891a588d82500e49fa5981dd8429665e1c533f/cbits/simd.c#L3-L25