PDA

View Full Version : SCAR Mark



solarwind
01-21-2007, 11:23 PM
..::[ Solarwind's SCAR Mark v0.8 ]::..

--> Instant Download: v0.8 <-- (http://www.mediafire.com/?dnfzuoncgmw)


http://img219.imageshack.us/img219/2016/togetherpz1.jpg


Description:

This script will test the time needed by SCAR to generate a random array and perform a bubble sort on your computer. Please post the progress report.


Script Information:

This script is designed to use SRL v3.6 and will always be up to date with the latest SRL release.
This script is under the GNU General Public License.


Features:

- Generates a random array and performs a bubble sort and prints the time taken to sort.

solarwind
01-21-2007, 11:24 PM
http://img179.imageshack.us/img179/4030/downarrow9fz.png

solarwind
01-21-2007, 11:24 PM
The format for progress reports:

ArrayLength = 1000;
MaxRandom = 100;

Generating random array
Done generating random array. Took 16 milliseconds.

Sorting array
Done sorting array. Took 8453 milliseconds.

NinjaTerrorist
01-21-2007, 11:39 PM
Progress Report: :wink:


ArrayLength = 2000;
MaxRandom = 500;

Generating random array
Done generating random array. Took 16 milliseconds.

Sorting array
Done sorting array. Took 49141 milliseconds.
Successfully executed

stevenadrien
01-21-2007, 11:56 PM
SOLAR!!!
Once again you amaze us
BTW:How come oyu don't get on MSN anymore? Don't you remember that project I thought we were going to work on?

Progress Report:

ArrayLength = 2000;
MaxRandom = 550;

Generating random array
Done generating random array. Took 78 milliseconds.

Sorting array
Done sorting array. Took 81625 milliseconds.
Successfully executed

itSchRis917
01-22-2007, 12:11 AM
Progress Report ;)


Generating random array
Done generating random array. Took 0 milliseconds.

Sorting array
Done sorting array. Took 12703 milliseconds.
Successfully executed


not quite sure what it does tho. :duh:

solarwind
01-22-2007, 12:14 AM
SOLAR!!!
Once again you amaze us
BTW:How come oyu don't get on MSN anymore? Don't you remember that project I thought we were going to work on?

Progress Report:

ArrayLength = 2000;
MaxRandom = 550;

Generating random array
Done generating random array. Took 78 milliseconds.

Sorting array
Done sorting array. Took 81625 milliseconds.
Successfully executed

I am on MSN, but not lately because of exams. And people, try to keep the variables at
ArrayLength = 1000;
MaxRandom = 100;

This is because we want the results to be for the same thing. If everyone puts different values, the results will be meaningless. Keep ArrayLength at 1000 and MaxRandom at 100.

NinjaTerrorist
01-22-2007, 12:58 AM
I am on MSN, but not lately because of exams. And people, try to keep the variables at
ArrayLength = 1000;
MaxRandom = 100;

This is because we want the results to be for the same thing. If everyone puts different values, the results will be meaningless. Keep ArrayLength at 1000 and MaxRandom at 100.

Opps, here a proper progress report: ;)


ArrayLength = 1000;
MaxRandom = 100;

Generating random array
Done generating random array. Took 15 milliseconds.

Sorting array
Done sorting array. Took 11485 milliseconds.

solarwind
01-22-2007, 01:03 AM
Cool thanks. I'll make a bubblesort benchark in C/Java and show just how slow SCAR is. I bet C/Java could do it over 20 times as fast. I'm not even joking.

Buckleyindahouse
01-22-2007, 02:22 AM
w00t i think i have the best results

Generating random array
Done generating random array. Took 0 milliseconds.

Sorting array
Done sorting array. Took 11766 milliseconds.
Successfully executed

stevenadrien
01-22-2007, 05:59 AM
O.O My bad
Heere you go

Progress Report:

ArrayLength = 1000;
MaxRandom = 100;

Generating random array
Done generating random array. Took 15 milliseconds.

Sorting array
Done sorting array. Took 16860 milliseconds.
Successfully executed

syberium
01-22-2007, 06:09 AM
nah i got best results =] i think..? lol

enerating random array
Done generating random array. Took 0 milliseconds.

Sorting array
Done sorting array. Took 9922 milliseconds.
Successfully executed

the scar noob
01-22-2007, 06:29 AM
and now, this is my proggy:


[BGenerating random array
Done generating random array. Took 16 milliseconds.

Sorting array
Done sorting array. Took 11625 milliseconds.
Successfully executed[/B]
:) Somekinda like the same as BuckleyInDaHouse :)
You see you're not the only one

solarwind
01-22-2007, 08:47 PM
The format for progress reports:

ArrayLength = 1000;
MaxRandom = 100;

Generating random array
Done generating random array. Took 16 milliseconds.

Sorting array
Done sorting array. Took 8453 milliseconds.


I think I've got the best results lol. The sorting of the array is the most important part. I got 8453 milliseconds on my AMD Athlon 4200+ Dual Core computer.

XcanadamanX
01-22-2007, 10:28 PM
i think i got the worst one with my old hunk of junk:

Generating random array
Done generating random array. Took 20 milliseconds.

Sorting array
Done sorting array. Took 24715 milliseconds.
Successfully executed

petrock6
01-22-2007, 11:36 PM
Progress report:
Generating random array
Done generating random array. Took 16 milliseconds.

Sorting array
Done sorting array. Took 12719 milliseconds.
Successfully executed


That any good?

Cheesehunk
01-22-2007, 11:50 PM
Not sure why you have the array 1000000 long, when it should be 1000.. It's taking so long because it has to create an entire array it doesn't even use, then sort the array's that are all equal to 0.

Although the results are still high, it shortens it a bit.. I would like to see the results from java, or another language.


Generating random array
Done generating random array. Took 0 milliseconds.

Sorting array
Done sorting array. Took 9234 milliseconds.

solarwind
01-23-2007, 02:08 AM
Not sure why you have the array 1000000 long, when it should be 1000.. It's taking so long because it has to create an entire array it doesn't even use, then sort the array's that are all equal to 0.

Although the results are still high, it shortens it a bit.. I would like to see the results from java, or another language.


Generating random array
Done generating random array. Took 0 milliseconds.

Sorting array
Done sorting array. Took 9234 milliseconds.

1) It won't sort the part of the array that it does not use.
2) Will do. I'm going to do something in C and Java and show results side by side.

botmaster
02-08-2007, 08:25 PM
Dude... Here's my results:


Generating random array
Done generating random array. Took 15 milliseconds.

Sorting array
Done sorting array. Took 12078 milliseconds.


Not that good, but I'm on a laptop with only Centrino 1.6 gHz, so thats my excuse :P

Oh, and yes, I completely agree with you Solarwind, SCAR is slow as hell. The algorithm it uses is probably at fault, but I dunno too much about how SCAR is made so i dunno :).

ryan123
02-08-2007, 08:34 PM
can you tell me wut it does?...lol

twobac
02-08-2007, 09:28 PM
Here is my result.


Generating random array
Done generating random array. Took 10 milliseconds.

Sorting array
Done sorting array. Took 10996 milliseconds.
Successfully executed

Not to bad for a laptop :)

Smartzkid
02-08-2007, 09:44 PM
I think my computer just PWNED everyone elses -


Generating random array
Done generating random array. Took 0 milliseconds.

Sorting array
Done sorting array. Took 6375 milliseconds.
:f:
Two more-

Generating random array
Done generating random array. Took 0 milliseconds.

Sorting array
Done sorting array. Took 6344 milliseconds.


Generating random array
Done generating random array. Took 16 milliseconds.

Sorting array
Done sorting array. Took 6234 milliseconds.

JuKKa
02-09-2007, 11:01 AM
Generating random array
Done generating random array. Took 15 milliseconds.

Sorting array
Done sorting array. Took 5953 milliseconds.
Successfully executed


that was on my dads comp this is on mine -->



Generating random array
Done generating random array. Took 15 milliseconds.

Sorting array
Done sorting array. Took 13360 milliseconds.
Successfully executed

dunno if thats good..

GokuDude
02-10-2007, 08:08 PM
Generating random array
Done generating random array. Took 0 milliseconds.

Sorting array
Done sorting array. Took 10953 milliseconds.
Successfully executed

Smartzkid
02-11-2007, 12:15 AM
Generating random array
Done generating random array. Took 15 milliseconds.

Sorting array
Done sorting array. Took 5953 milliseconds.
Successfully executed


that was on my dads comp this is on mine -->



Wow, what kind of pc does your dad have?

Unforgived
02-13-2007, 03:12 AM
Generating random array
Done generating random array. Took 15 milliseconds.

Sorting array
Done sorting array. Took 8063 milliseconds.
Successfully executed



IM THE JUGGERNAUT BITCH

Zorlin
02-18-2007, 07:32 AM
Cool. What would this be useful for?
Just wondering.

miko
02-18-2007, 08:25 AM
Generating random array
Done generating random array. Took 10 milliseconds.

Sorting array
Done sorting array. Took 19348 milliseconds.
Successfully executed

My computer is slow ;E

savormix
02-18-2007, 04:27 PM
Generating random array
Done generating random array. Took 16 milliseconds.

Sorting array
Done sorting array. Took 8922 milliseconds.
Successfully executed

(with rs, skype, mysql and apache on)

robeike
02-18-2007, 09:17 PM
Generating random array
Done generating random array. Took 16 milliseconds.

Sorting array
Done sorting array. Took 10781 milliseconds.
Successfully executed

danrox2004
02-19-2007, 09:23 AM
Generating random array
Done generating random array. Took 0 milliseconds.

Sorting array
Done sorting array. Took 6203 milliseconds.
Successfully executed

Generating random array
Done generating random array. Took 1 milliseconds.

Sorting array
Done sorting array. Took 6541 milliseconds.
Successfully executed

Generating random array
Done generating random array. Took 0 milliseconds.

Sorting array
Done sorting array. Took 5914 milliseconds.
Successfully executed

Meanage
02-19-2007, 09:45 AM
Sorting array
Done sorting array. Took 5914 milliseconds.
Successfully executed
woot high score lmao
Generating random array
Done generating random array. Took 10 milliseconds.

Sorting array
Done sorting array. Took 31135 milliseconds.
Successfully executed

Generating random array
Done generating random array. Took 20 milliseconds.

Sorting array
Done sorting array. Took 25157 milliseconds.
Successfully executed

Generating random array
Done generating random array. Took 20 milliseconds.

Sorting array
Done sorting array. Took 25546 milliseconds.
Successfully executed

I hate my comp :(

neG
02-19-2007, 10:01 AM
Heres mine.

Generating random array
Done generating random array. Took 16 milliseconds.

Sorting array
Done sorting array. Took 12797 milliseconds.
Successfully executed

Im guessing thats pretty average?