Monday, October 20, 2008

XNA Performance Profiling

Finally having all the main bits working in XNA NFS, I was looking at the performance, which wasn't great, even on my fairly decent PC.

I first went through my normal optimization - limiting the number of DrawPrimitive() calls. After bringing it down to only the minimum of calls (by only drawing a small part of the track), I still had an annoying camera 'jump' every second or so. This is at a pretty even 50-60 fps windowed (ie, maxed for my refresh rate).

After going through my camera classes and not finding anything wrong, I figured I'd try profiling it - although given the framerate I didnt expect to find anything unusual.

A quick google of XNA performance profiling turned up a link to nProf - a freeware & open source .NET profiler.


Here is a screenshot of the nProf window after running for a couple of minutes.


Notice the selected line - the BasicEffect constructor. The total amount of time spent in the BasicEffect.ctor() was almost as much as the total amount of time spent rendering the track!

This immediately didn't look right, and having a look at where I was calling new BasicEffect() revealed the problem. I was creating about 5 new BasicEffects per frame

The ease of creating a BasicEffect, and even the name itself implies you can create them whenever you need one - but the reality is they are SLOW to create, so you better not be creating them per frame!

I changed my code to create them once then update properties on them per frame.
In fact, all but 2 were identical, so I was able to get down to 2 BasicEffect.ctor() calls for the whole lifetime of the game. The framerate is now always 59-60fps, and the annoying pause/jump (which I now assume was the GarbageCollector doing its thing) is gone. And without using nProf I would never have guessed the problem.

So the lesson is (as I've been told and forgotten many times) is to profile then optimize, not the other way around.

Life is good again :)

And heres the latest screenshot, showing the corrected gamma and track barriers:

3 comments:

Handkor said...

I'm getting the same performance jerk every second. I've reduced the amount of times I've switched technique and the problem has greatly improved. thanks.

Unknown said...

I was checking on profilers for XNA and this article popped up. Tried nProf, and wouldn't you know, the biggest culprit is... BasicEffect.ctor! I laughed quite a bit at this only because that was your exact problem.

Promit's Ventspace said...

I stumbled on this post and wanted to mention that I've been working on an open source profiling tool:
http://code.google.com/p/slimtune/

I always thought NProf was kind of junky, and I thought maybe you'd be interested to take a look. If you could post a review (positive or negative -- be honest obviously), that would be doubly amazing.