[Plugin] [ALPHA] Project Shoebill - Java for SA:MP Development Kit - Milestone 1 (20110701)
#15

- English translation by JoJLlmAn.


Running System

CPU: Intel Pentium Dual T2370
OS: Windows 7
SA:MP: v0.3c R2
Java: JDK6 Update 24 (Java HotSpot Server VM)


Timing Code

Java:
Код:
long lastTick = System.nanoTime();
// Put the code you want to count time
long time = System.nanoTime() - lastTick;
		
System.out.println( "Java: " + time/1000/1000 + " ms." );
Pawn:
Код:
new lastTick = GetTickCount();
// Put the code you want to count time
new Time = GetTickCount() - lastTick;
	
printf( "Pawn: %d ms.", Time );
Performance of calling Native function

Java: 28ms.
Код:
for( int i=0; i<1000000; i++ ) this.allowAdminTeleport(true);
Pawn: 70ms.
Код:
for( new i=0; i<1000000; i++ ) AllowAdminTeleport(1);
Performance of calling Native function (with strings)

Java: 291ms.
Код:
for( int i=0; i<100000; i++ ) this.setGameModeText( "Shoebill" );
Pawn: 116ms.
Код:
for( new i=0; i<100000; i++ ) SetGameModeText( "Shoebill" );
Performance of calculating primes

Java: 77ms.
Код:
boolean isPrime( int num )
{
	int divisor = 3, limit = num;
	if( num%2 == 0 ) return false;
	
	while( limit > divisor )
	{
		if( num%divisor == 0 ) return false;
		limit = num / divisor;
		divisor += 2;
	}
	
	return true;
}

for( int i=0; i<100; i++ ) isPrime(2147483647);
Pawn: 590ms.
Код:
isPrime( num )
{
	new divisor = 3, limit = num;
	if( num%2 == 0 ) return 0;

	while( limit > divisor )
	{
		if( num%divisor == 0 ) return 0;
		limit = num / divisor;
		divisor += 2;
	}

	return 1;
}

for( new i = 0; i < 100; i++ ) isPrime(2147483647);
Summary

In performance of calling native, java is 2.5 times faster than pawn.
The other one with strings, pawn is 2.5 times faster*
In calculating primes, java is 7.5 times faster**

*for reference only, maybe the Windows codepage conversion(UTF16->MBCS) slows it. more complicated the string is, more difference between them.
**for reference only, depends on what algorithm you use.
Reply


Messages In This Thread
[ALPHA] Project Shoebill - SA:MP Gamemode Development Kit for Java - Milestone 1 (20110703) - by mk124 - 01.07.2011, 15:55
Re: [ALPHA] Java for SA:MP Development Kit - Milestone 1 - by mk124 - 01.07.2011, 15:57
Re: [ALPHA] Project Shoebill - Java for SA:MP Development Kit - Milestone 1 - by Mauzen - 01.07.2011, 16:04
Re: [ALPHA] Project Shoebill - Java for SA:MP Development Kit - Milestone 1 (20110701) - by JernejL - 01.07.2011, 17:17
Re: [ALPHA] Project Shoebill - Java for SA:MP Development Kit - Milestone 1 (20110701) - by langricr - 01.07.2011, 17:23
Re: [ALPHA] Project Shoebill - Java for SA:MP Development Kit - Milestone 1 (20110701) - by Toni - 01.07.2011, 17:46
AW: [ALPHA] Project Shoebill - Java for SA:MP Development Kit - Milestone 1 (20110701) - by Gomma - 01.07.2011, 18:13
Re: [ALPHA] Project Shoebill - Java for SA:MP Development Kit - Milestone 1 - by Steven82 - 01.07.2011, 18:47
Re: [ALPHA] Project Shoebill - Java for SA:MP Development Kit - Milestone 1 (20110701) - by Rock_Ro - 01.07.2011, 23:05
Re: [ALPHA] Project Shoebill - Java for SA:MP Development Kit - Milestone 1 (20110701) - by jojllman - 02.07.2011, 02:04
Re: [ALPHA] Project Shoebill - Java for SA:MP Development Kit - Milestone 1 (20110701) - by Steamator - 02.07.2011, 12:51
Re: [ALPHA] Project Shoebill - Java for SA:MP Development Kit - Milestone 1 (20110701) - by VivianKris - 03.07.2011, 04:18
Re: [ALPHA] Project Shoebill - Java for SA:MP Development Kit - Milestone 1 (20110701) - by Scenario - 03.07.2011, 04:20
Re: [ALPHA] Project Shoebill - Java for SA:MP Development Kit - Milestone 1 (20110701) - by maij - 03.07.2011, 10:18
[Test] Project Shoebill Milestone1 (20110703) - Simple performance test - by mk124 - 03.07.2011, 17:30
Re: [Test] Project Shoebill Milestone1 (20110703) - Simple performance test - by Andregood - 03.07.2011, 18:05
Re: [Test] Project Shoebill Milestone1 (20110703) - Simple performance test - by maij - 03.07.2011, 18:26
Re: [ALPHA] Project Shoebill - Java for SA:MP Development Kit - Milestone 1 (20110701) - by jojllman - 03.07.2011, 18:28
Re: [ALPHA] Project Shoebill - Java for SA:MP Development Kit - Milestone 1 (20110701) - by maij - 03.07.2011, 18:42
Re: [Test] Project Shoebill Milestone1 (20110703) - Simple performance test - by ToToRo - 07.07.2011, 06:55
Re: [Test] Project Shoebill Milestone1 (20110703) - Simple performance test - by Mauzen - 07.07.2011, 08:44
Re: [Test] Project Shoebill Milestone1 (20110703) - Simple performance test - by QuaTTrO - 07.07.2011, 08:52
Re: [Test] Project Shoebill Milestone1 (20110703) - Simple performance test - by Lorenc_ - 07.07.2011, 09:39
Re: [ALPHA] Project Shoebill - Java for SA:MP Development Kit - Milestone 1 (20110701) - by Calgon - 07.07.2011, 16:32
Re: [Test] Project Shoebill Milestone1 (20110703) - Simple performance test - by jojllman - 08.07.2011, 06:11
Re: [Test] Project Shoebill Milestone1 (20110703) - Simple performance test - by leong124 - 08.07.2011, 09:00
Re: [ALPHA] Project Shoebill - Java for SA:MP Development Kit - Milestone 1 (20110701) - by samiras - 08.07.2011, 10:55
Re: [ALPHA] Project Shoebill - Java for SA:MP Development Kit - Milestone 1 (20110701) - by BLAbla93 - 09.07.2011, 20:43
Re: [Test] Project Shoebill Milestone1 (20110703) - Simple performance test - by 1337connor - 11.07.2011, 02:02
Re: [ALPHA] Project Shoebill - Java for SA:MP Development Kit - Milestone 1 (20110701) - by jojllman - 14.07.2011, 11:21
Re: [ALPHA] Project Shoebill - Java for SA:MP Development Kit - Milestone 1 (20110701) - by samiras - 16.07.2011, 14:17
Re: [ALPHA] Project Shoebill - Java for SA:MP Development Kit - Milestone 1 (20110701) - by TheArcher - 16.07.2011, 16:37
Re: [ALPHA] Project Shoebill - Java for SA:MP Development Kit - Milestone 1 (20110701) - by HP - 16.07.2011, 18:25
Re: [ALPHA] Project Shoebill - Java for SA:MP Development Kit - Milestone 1 (20110701) - by langricr - 17.07.2011, 03:41
Re: [ALPHA] Project Shoebill - Java for SA:MP Development Kit - Milestone 1 (20110701) - by Ricop522 - 17.07.2011, 04:20
Re: [ALPHA] Project Shoebill - Java for SA:MP Development Kit - Milestone 1 (20110701) - by jojllman - 17.07.2011, 15:30
Re: [ALPHA] Project Shoebill - Java for SA:MP Development Kit - Milestone 1 (20110701) - by Kaperstone - 17.07.2011, 16:49
Re: [ALPHA] Project Shoebill - Java for SA:MP Development Kit - Milestone 1 (20110701) - by samiras - 17.07.2011, 20:17
Re: [ALPHA] Project Shoebill - Java for SA:MP Development Kit - Milestone 1 (20110701) - by langricr - 18.07.2011, 03:34
Re: [ALPHA] Project Shoebill - Java for SA:MP Development Kit - Milestone 1 (20110701) - by jojllman - 18.07.2011, 11:30
Re: [ALPHA] Project Shoebill - Java for SA:MP Development Kit - Milestone 1 (20110701) - by langricr - 18.07.2011, 20:59
Re: [ALPHA] Project Shoebill - Java for SA:MP Development Kit - Milestone 1 (20110701) - by jojllman - 19.07.2011, 10:55
Re: [ALPHA] Project Shoebill - Java for SA:MP Development Kit - Milestone 1 (20110701) - by langricr - 20.07.2011, 00:24
Re: [ALPHA] Project Shoebill - Java for SA:MP Development Kit - Milestone 1 (20110701) - by jojllman - 20.07.2011, 17:10
Re: [ALPHA] Project Shoebill - Java for SA:MP Development Kit - Milestone 1 (20110701) - by Joe Staff - 21.07.2011, 07:25
Re: [ALPHA] Project Shoebill - Java for SA:MP Development Kit - Milestone 1 (20110701) - by ZHZY Zae - 22.07.2011, 09:49
Re: [ALPHA] Project Shoebill - Java for SA:MP Development Kit - Milestone 1 (20110701) - by langricr - 22.07.2011, 22:39
Re: [ALPHA] Project Shoebill - Java for SA:MP Development Kit - Milestone 1 (20110701) - by jojllman - 24.07.2011, 03:04
Re: [ALPHA] Project Shoebill - Java for SA:MP Development Kit - Milestone 1 (20110701) - by langricr - 03.08.2011, 12:49
Re: [ALPHA] Project Shoebill - Java for SA:MP Development Kit - Milestone 1 (20110701) - by jojllman - 07.08.2011, 16:05
Re: [ALPHA] Project Shoebill - Java for SA:MP Development Kit - Milestone 1 (20110701) - by langricr - 05.09.2011, 06:00
Re: [ALPHA] Project Shoebill - Java for SA:MP Development Kit - Milestone 1 (20110701) - by acuworld - 17.04.2012, 13:42
Re: [ALPHA] Project Shoebill - Java for SA:MP Development Kit - Milestone 1 (20110701) - by mk124 - 29.04.2012, 11:02
Re: [ALPHA] Project Shoebill - Java for SA:MP Development Kit - Milestone 1 (20110701) - by simply_immense - 30.07.2012, 12:44
Re: [ALPHA] Project Shoebill - Java for SA:MP Development Kit - Milestone 1 (20110701) - by Edvin - 30.07.2012, 13:29
Re: [ALPHA] Project Shoebill - Java for SA:MP Development Kit - Milestone 1 (20110701) - by samiras - 30.07.2012, 16:31
Re: [ALPHA] Project Shoebill - Java for SA:MP Development Kit - Milestone 1 (20110701) - by kumasro - 05.04.2016, 20:23

Forum Jump:


Users browsing this thread: 16 Guest(s)