feat: attempt to benchmark another implementation from crates.io
This commit is contained in:
parent
1e45ef9314
commit
131d9f3cfe
4 changed files with 300 additions and 8 deletions
|
|
@ -9,6 +9,14 @@ rand = "0.8"
|
|||
log = "0.4"
|
||||
env_logger = "0.10"
|
||||
|
||||
# Target-specific dependencies
|
||||
[target.'cfg(target_arch = "x86_64")'.dependencies]
|
||||
# lseq is an implementation from 2018 that uses `rug` for arbitrary precision arithmetic
|
||||
# It is not a great implementation because it requires building libgmp. Also it requires GPL libraries
|
||||
# I learned that it might be desirable to change that crate to use https://github.com/cmpute/dashu/blob/HEAD/README.md
|
||||
# which is a pure rust port of GNU GMP + MPFR
|
||||
lseq = "0.1"
|
||||
|
||||
[dev-dependencies]
|
||||
criterion = "0.5"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue