You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Orc Lists are simple cons lists, but cons lists perform extremely poorly in parallel execution because traversal is fundamentally sequential.
Conc-trees may be a decent option (10.1007/978-3-319-29778-1_16), but Conc-trees do not have an efficient head operation, so they would require that the standard library change.
It may be best to combine this improvement with replacing the current standard library collections with more parallel friendly APIs too.
The text was updated successfully, but these errors were encountered:
Orc Lists are simple cons lists, but cons lists perform extremely poorly in parallel execution because traversal is fundamentally sequential.
Conc-trees may be a decent option (10.1007/978-3-319-29778-1_16), but Conc-trees do not have an efficient head operation, so they would require that the standard library change.
It may be best to combine this improvement with replacing the current standard library collections with more parallel friendly APIs too.
The text was updated successfully, but these errors were encountered: