Il sito funziona meglio con JavaScript.
Home
Esplora
Aiuto
Accedi
piumarta
/
minproto
Segui
1
Vota
0
Forka
1
Codice
Problemi
0
Pull Requests
0
Rilasci
0
Wiki
Attività
Sfoglia il codice sorgente
Include recent results as comments.
master
Ian Piumarta
1 anno fa
parent
956adf81e4
commit
ff3dda9f83
2 ha cambiato i file
con
9 aggiunte
e
2 eliminazioni
Visualizzazione separata
Opzioni Diff
Mostra statistiche
Scarica il file Patch
Scarica il file Diff
+6
-2
bench-sieve.txt
+3
-0
bench.txt
+ 6
- 2
bench-sieve.txt
Vedi File
@ -1,5 +1,9 @@
numbers = 8192; // 1028 primes
repeats = 50;
// M1 TYPECODES+DELOPT
// 178589010 nodes evaluated in 2.129754 seconds = 83854290 nodes/sec
// 178589010 nodes evaluated in 2.126711 seconds = 83974273 nodes/sec
numbers = 819200; // 1028 primes
repeats = 10;
count = 0;
+ 3
- 0
bench.txt
Vedi File
@ -1,3 +1,6 @@
// M1 TYPECODES+DELOPT
// 7049155 calls in 1.951509 seconds = 3612156 calls/sec -- pre binop functions
nfib = (n) { if (n < 2) 1; else nfib(n-1) + nfib(n-2) + 1; };
then = cputime();
Scrivi
Anteprima
Caricamento…
Annulla
Salva