Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/melvin0008/factorialcomparer
Comparing time on my machine for factorial of 50000 for each language
https://github.com/melvin0008/factorialcomparer
Last synced: 7 days ago
JSON representation
Comparing time on my machine for factorial of 50000 for each language
- Host: GitHub
- URL: https://github.com/melvin0008/factorialcomparer
- Owner: melvin0008
- License: bsd-3-clause
- Created: 2014-12-16T01:05:41.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-01-25T12:16:47.000Z (almost 10 years ago)
- Last Synced: 2024-11-14T05:36:43.805Z (2 months ago)
- Language: Julia
- Homepage:
- Size: 707 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
FactorialComaprer
=================Comparing time on my machine for factorial of 50000 for each language
Machine Spec :
6GB Ram
2.1GHzSML : 1min 22s consuming 25% of Ram for fact 50000
3min 45s consuming 25% of Ram for fact 75000
Sml tail recursion optimization
Python interpreter crashed at 26186 stating Segmentation fault core
dumpedJulia 3.8s for fact 50000!!!!! Wow
1min 0.1s fact 60000
Ubuntu crash at 75000 Memory issueHaskell
Factorial By recursion
fact 2,00,000 => 33.389s
fact 1,00,000=> 7.78s
fact 50,000=>1.559sFactorial using in-built product
fact 2,00,000=>30.49s