[Eng][help needed] Calculator benchmarks

I recently moved the data about "Calculator add loop" benchmark on a wiki page, here: http://www.wiki4hp.com/doku.php?id=benchmarks:addloop .
Since the benchmark, originally, was not updated after 2011, i searched for new results and i found that:
- no one has done it with a Nspire.
- Previous result with TI calculators (like ti89) are limited since the for loop was not used. For example ti89 has a score of 9400 while hp50g has a score of 31000 (using a for loop).
So, is anyone willing to do this benchmark and report the results?
The format is:
For further comparisons there is another benchmark (just designed): http://www.wiki4hp.com/doku.php?id=benc ... ddlesquare . Even for this any result will be appreciated.
Thanks a lot and sorry if the section is not the "right one", i don't know this forum but it appears the only one "alive" about Ti calculators.
edit: the community has just demanded a simpler benchmark (the middle square one seems not so clear). Do you mind to run also this: http://www.wiki4hp.com/doku.php?id=benchmarks:ultranaiveprimes ?
The code is:
The result format is:
The options are
Since the benchmark, originally, was not updated after 2011, i searched for new results and i found that:
- no one has done it with a Nspire.
- Previous result with TI calculators (like ti89) are limited since the for loop was not used. For example ti89 has a score of 9400 while hp50g has a score of 31000 (using a for loop).
So, is anyone willing to do this benchmark and report the results?
The format is:
- Code: Select all
- Calculator used and firmware/software
- The count after 60 seconds of execution
- The program code used.
For further comparisons there is another benchmark (just designed): http://www.wiki4hp.com/doku.php?id=benc ... ddlesquare . Even for this any result will be appreciated.
Thanks a lot and sorry if the section is not the "right one", i don't know this forum but it appears the only one "alive" about Ti calculators.
- Code: Select all
edit: the community has just demanded a simpler benchmark (the middle square one seems not so clear). Do you mind to run also this: http://www.wiki4hp.com/doku.php?id=benchmarks:ultranaiveprimes ?
The code is:
- Code: Select all
input: n
--
for k:=3 to n do {
for j:=2 to k-1 do {
if ( k mod j == 0 ) then {
j:= k-1 //so we exit from the inner for
}
}
}
The result format is:
- Code: Select all
A result is composed by the following list
- the device used plus the language used, eventual overclock, eventual custom firmware and so on.
- time elapsed for a given n in seconds (see below)
- the code used.
if the calculator is too slow, or limited, to compute a given n, then report "for n the computation
takes too much time". Conversely, if the calculator is too fast to compute a given n, then report
"for n the computation takes too little time, i skipped it"
The options are
- Code: Select all
n:= 100
n:= 1000
For very fast implementations:
n:= 10000
n:= 100000