Java-Gaming.org
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
Featured games (78)
games approved by the League of Dukes
Games in Showcase (416)
games submitted by our members
Games in WIP (306)
games currently in development
News: Read the Java Gaming Resources, or peek at the official Java tutorials
 
    Home     Help   Search   Login   Register   
Pages: [1]
  ignore  |  Print  
  Writing to Buffers (nio) performance issue  (Read 1076 times)
0 Members and 1 Guest are viewing this topic.
Online Riven
« League of Dukes »

JGO Overlord


Medals: 463
Projects: 4


Hand over your head.


« Posted 2004-10-28 14:51:53 »

While programming an application with JOGL, I decided to use vertex-arrays to store some data in to send to the VRAM, forcing me to use nio-buffers.

Code was like:
1  
2  
3  
4  
5  
6  
7  
8  
9  
10  
FloatBuffer vertex;
FloatBuffer normal;
FloatBuffer texcoord;

for(every visible tree)
{
   vertex.put(float[]);
   normal.put(float[]);
   texcoord.put(float[]);
}


Dead-slow... Maybe not surprising for you, but for me it was. Frustrated I wondered what was so slow here, and tried the following:

1  
2  
3  
4  
5  
6  
7  
8  
9  
10  
11  
12  
13  
14  
15  
16  
17  
FloatBuffer vertex;
FloatBuffer normal;
FloatBuffer texcoord;
float[] vertexArray;
float[] normalArray;
float[] texcoordArray;

for(every visible tree)
{
   System.arraycopy(append float[] -> vertexArray);
   System.arraycopy(append float[] -> normalArray);
   System.arraycopy(append float[] -> texcoordArray);
}

vertex.put(vertexArray);
normal.put(normalArray);
texcoord.put(texcoordArray);


It was 15x faster! (and 15x is a LOT)

So I was wondering... what is causing directly putting data in (Float)Buffers to be *so* inefficient (6% of performance in code#2).
~~
Note that the FloatBuffers were native.

Hi, appreciate more people! Σ ♥ = ¾
Learn how to award medals... and work your way up the social rankings
Projects: Revenge of the Titans, Titan Attacks, Droid Assault, and Ultratron
Offline Mithrandir

Senior Member




Cut from being on the bleeding edge too long


« Reply #1 - Posted 2004-10-28 15:45:56 »

Going across JNI is the performance problem. Never use the single put/get methods if you want any form of performance. Stick to using the bulk methods and set the entire array at once.

The site for 3D Graphics information http://www.j3d.org/
Aviatrix3D JOGL Scenegraph http://aviatrix3d.j3d.org/
Programming is essentially a markup language surrounding mathematical formulae and thus, should not be patentable.
Offline rreyelts

Junior Member




There is nothing Nu under the sun


« Reply #2 - Posted 2004-10-28 19:35:26 »

Quote
Going across JNI is the performance problem.

I thought the buffer operations were supposed to be intrinsified. If you have to make a JNI call every time, then the overhead is absolutely ridiculous and makes direct byte buffers nearly useless.

God bless,
-Toby Reyelts

About me: http://jroller.com/page/rreyelts
Jace - Easier JNI: http://jace.reyelts.com/jace
Retroweaver - Compile on JDK1.5, and deploy on 1.4: http://retroweaver.sf.net.
Games published by our own members! Check 'em out!
Legends of Yore - The Casual Retro Roguelike
Offline princec
« League of Dukes »

JGO Kernel


Medals: 197
Projects: 3


Eh? Who? What? ... Me?


« Reply #3 - Posted 2004-10-28 22:00:21 »

The problem may be in the first place is actually that he's doing lots of weeny little copies from all over RAM, and mostly that won't be intrinsified as it's rather difficult to check the bounds etc. and it'll bugger the caches.

If you blat all the arrays into one big array and then copy the lot in one go to a buffer you're probably going to be kinder to the cache and avoid the checking overheads at the same time. Probably.

Cas Smiley

Pages: [1]
  ignore  |  Print  
 
 
You cannot reply to this message, because it is very, very old.

Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
 
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars and Titan!

Add your game by posting it in the WIP section,
or publish it in Showcase.

The first screenshot will be displayed as a thumbnail.

The invasion has landed! On Mars! And you're there to beat 'em!
mrbenebob (11 views)
2013-06-19 14:55:23

BrassApparatus (19 views)
2013-06-19 08:52:37

NegativeZero (23 views)
2013-06-19 03:31:52

NegativeZero (26 views)
2013-06-19 03:24:09

Jesse_Attard (29 views)
2013-06-18 22:03:02

HeroesGraveDev (65 views)
2013-06-15 23:35:23

Vermeer (65 views)
2013-06-14 20:08:06

davedes (66 views)
2013-06-14 16:03:55

alaslipknot (59 views)
2013-06-13 07:56:31

Roquen (82 views)
2013-06-12 04:12:32
Smoothing Algorithm Question
by UprightPath
2013-05-28 02:58:26

Smoothing Algorithm Question
by UprightPath
2013-05-28 02:57:33

Complex number cookbook
by Roquen
2013-04-24 12:47:31

2D Dynamic Lighting
by Oskuro
2013-04-17 16:46:12

2D Dynamic Lighting
by Oskuro
2013-04-17 16:45:57

2D Dynamic Lighting
by Oskuro
2013-04-17 16:23:20

Noise (bandpassed white)
by Roquen
2013-04-05 17:36:01

Noise (bandpassed white)
by Roquen
2013-04-03 16:17:38
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines | Managed by Enhanced Four Valid XHTML 1.0! Valid CSS!