Benchmark mtl code run via transformers and effectful#344
Merged
Conversation
Turns out that running unspecialized code written with mtl style effects in mind
via effectful's `Eff` is always faster than running via a transformer
stack. Crazy.
`countdown.1000`:
```
mtl (transformers)
shallow: OK
51.1 μs ± 2.9 μs, 477 KB allocated, 92 B copied, 6.0 MB peak memory
deep: OK
409 μs ± 33 μs, 3.0 MB allocated, 870 B copied, 6.0 MB peak memory
mtl (effectful)
shallow: OK
36.4 μs ± 2.9 μs, 260 KB allocated, 71 B copied, 6.0 MB peak memory
deep: OK
36.9 μs ± 2.9 μs, 267 KB allocated, 179 B copied, 6.0 MB peak memory
```
`filesize.1000`:
```
mtl (transformers)
shallow: OK
973 μs ± 87 μs, 7.2 MB allocated, 349 KB copied, 7.0 MB peak memory
deep: OK
2.20 ms ± 175 μs, 15 MB allocated, 854 KB copied, 8.0 MB peak memory
mtl (effectful)
shallow: OK
818 μs ± 44 μs, 6.5 MB allocated, 196 KB copied, 8.0 MB peak memory
deep: OK
883 μs ± 77 μs, 6.6 MB allocated, 210 KB copied, 8.0 MB peak memory
```
Member
|
@arybczak I'll have to write something about how the new MTL instances on |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Turns out that running unspecialized code written with mtl style effects in mind via effectful's
Effis always faster than running via a transformer stack. Crazy.countdown.1000:filesize.1000: