The Cg Tutorial

The Cg Tutorial is now available, right here, online. You can purchase a beautifully printed version of this book, and others in the series, at a 30% discount courtesy of InformIT and Addison-Wesley.

Please visit our Recent Documents page to see all the latest whitepapers and conference presentations that can help you with your projects.







Chapter 10. Profiles and Performance

Chapter 10. Profiles and Performance

This chapter provides additional information about the profiles supported by your Cg compiler and offers advice on how to write high-performance Cg programs. This chapter has the following two sections:

10.1 Profile Descriptions

This section describes the profiles that are available in Cg at the time of writing, along with brief summaries of their capabilities and limitations. More detailed information is available in the Cg Toolkit User's Manual: A Developer's Guide to Programmable Graphics, which is available online at NVIDIA's Developer Web site, developer.nvidia.com.

10.1.1 The Vertex Shader Profile for DirectX 8

The DirectX 8 vertex shader profile compiles Cg source code to DirectX 8 vertex shaders. The profile's identifier is vs_1_1 . The profile restricts Cg to matching the capabilities of DirectX 8 vertex shaders. To understand the capabilities of DirectX 8 vertex shaders and the code produced by the compiler, refer to the "Vertex Shader Reference" section of the DirectX 8.1 SDK documentation.

The following list describes some important details about the vs_1_1 profile:

10.1.2 The Basic NVIDIA Vertex Program Profile for OpenGL

The NVIDIA vertex program profile compiles Cg source code to vertex programs that are compatible with the NV_vertex_program OpenGL extension supported by NVIDIA and Mesa. The profile's identifier is vp20 . The profile restricts Cg to matching the capabilities of the NV_vertex_program OpenGL extension. To understand the capabilities of NVIDIA vertex programs, refer to the extension's specification online.

This profile is functionally comparable to the vs_1_1 profile discussed previously. The details pertaining to the vs_1_1 profile apply to the vp20 profile as well.

For vp20 programs to operate correctly, constants in a vp20 profile must be loaded into the appropriate program parameter registers. Be sure to use the Cg runtime to ensure that the proper constants are loaded.

This profile, unlike the vs_1_1 profile, provides output semantics for both a front-facing and a back-facing primary and secondary color to support two-sided lighting.

10.1.3 The ARB Vertex Program Profile for OpenGL

The OpenGL Architecture Review Board (ARB) vertex program profile compiles Cg source code to vertex programs that are compatible with the ARB_vertex_program multivendor OpenGL extension. The profile's identifier is arbvp1 . The profile restricts Cg to matching the capabilities of the ARB_vertex_program OpenGL extension. To understand the capabilities of ARB vertex programs, refer to the extension's specification online.

Like the vp20 profile, this profile is functionally comparable to the vs_1_1 profile discussed previously. The details pertaining to the vs_1_1 profile apply to the arbvp1 profile as well. Like vp20 , the arbvp1 supports outputting front-facing and back-facing colors.

Unlike the vp20 profile, the arbvp1 profile allows Cg programs to refer to the OpenGL state directly. However, if you want to write Cg programs that are compatible with vp20 and vs_1_1 profiles, you should use the alternate mechanism of setting uniform variables with the necessary state using the Cg runtime. Additionally, referring to OpenGL state directly results in a slight driver validation penalty when binding to arbvp1 programs.

10.1.4 The Vertex Shader Profiles for DirectX 9

The DirectX 9 vertex shader profiles compile Cg source code to DirectX 9 vertex shaders. The profile identifiers are either vs_2_0 or vs_2_x . These profiles restrict Cg to matching the capabilities of DirectX 9 vertex shaders. The vs_2_x profile is an extended version of the vs_2_0 profile; the main enhancement is support for dynamic branching. To understand the capabilities of DirectX 9 vertex shaders and the code produced by the compiler, refer to the "Vertex Shader Reference" section of the DirectX 9 SDK documentation.

These profiles support more instructions and temporaries than the vs_1_1 profile does. The vs_2_x profile also supports generalized looping and conditionals.

10.1.5 The Advanced NVIDIA Vertex Program Profile for OpenGL

The advanced NVIDIA vertex program profile compiles Cg source code to vertex programs compatible with the NV_vertex_program2 OpenGL extension supported by NVIDIA's CineFX architecture. The profile identifier is vp30 . This profile restricts Cg to matching the capabilities of the NV_vertex_program2 OpenGL extension.

This profile is a superset of the vp20 profile. Any program that compiles for the vp20 profile should also compile for the vp30 profile. Like the vs_2_x profile, the vp30 profile supports more instructions and temporaries than the vp20 profile does. The vp30 profile also supports generalized looping and conditionals.

10.1.6 The Pixel Shader Profiles for DirectX 8

The DirectX 8 pixel shader profiles compile Cg source code to DirectX 8.1 pixel shaders. Cg provides profiles for pixel shader versions 1.1, 1.2, and 1.3. The profile identifiers are ps_1_1 , ps_1_2 , and ps_1_3 , respectively. Each profile restricts Cg to matching the capabilities of the respective version of DirectX 8 pixel shaders. To understand the capabilities of DirectX 8 pixel shaders and the code produced by the compiler, refer to the "Pixel Shader Reference" section of the DirectX 8.1 SDK documentation.

The following list describes some important details about the ps_1_1 , ps_1_2 , and ps_1_3 profiles:

10.1.7 The Basic NVIDIA Fragment Program Profile for OpenGL

The basic NVIDIA fragment program profile for OpenGL compiles Cg source code into textual register combiners and texture shader configurations supported by the NV_register_combiners2 and NV_texture_shader OpenGL extensions. The profile's identifier is fp20 . To understand the capabilities of this profile, refer to the NV_register_combiners , NV_register_combiners2 , NV_texture_shader , NV_texture_shader2 , and NV_texture_shader3 OpenGL extension specifications. The code generated by the compiler for this profile conforms to NVIDIA's nvparse format.

The capabilities of this profile are slightly superior to those of the ps_1_3 profile.

This profile supports the samplerRECT data type to access non-power-of-two dimensioned textures exposed by the multivendor NV_texture_rectangle OpenGL extension.

10.1.8 The DirectX 9 Pixel Shader Profiles

The DirectX 9 pixel shader profiles compile Cg source code to DirectX 9 pixel shaders. The profile identifiers are either ps_2_0 and ps_2_x . These profiles restrict Cg to matching the capabilities of DirectX 9 vertex shaders. The ps_2_x profile is an extended version of the ps_2_0 profile; the main enhancement is support for many more instructions and texture accesses. To understand the capabilities of DirectX 9 vertex shaders and the code produced by the compiler, refer to the "Pixel Shader Reference" section of the DirectX 9 SDK documentation.

The key capabilities and limitations of the ps_2_0 or ps_2_x profiles are as follows:

10.1.9 The ARB Fragment Program Profile for OpenGL

The ARB fragment program profile compiles Cg source code to vertex programs compatible with the ARB_fragment_program multivendor OpenGL extension. The profile's identifier is arbfp1 . The profile restricts Cg to matching the capabilities of the ARB_fragment_program OpenGL extension. To understand the capabilities of ARB fragment programs, refer to the extension's specification online.

This profile is functionally comparable to the ps_2_x profile discussed previously. The details pertaining to the ps_2_x profile apply to the arbfp1 profile as well.

10.1.10 The Advanced NVIDIA Fragment Program Profile for OpenGL

The advanced NVIDIA fragment program profile compiles Cg source code to vertex programs that are compatible with the NV_fragment_program OpenGL extension supported by NVIDIA's CineFX architecture. The profile identifier is fp30 . This profile restricts Cg to matching the capabilities of the NV_fragment_program OpenGL extension.

This profile is the most functional fragment-level profile at the time of this book's writing. It is a superset of the ps_2_x profile.

In addition to all the functionality mentioned in the section describing the ps_2_x profile, the fp30 profile also provides:

10.2 Performance

The flexibility offered by modern and future GPUs, combined with the ease-of-use that Cg provides, makes it easy to write lengthy fragment programs. A practical problem arises, though: as your programs get longer, they execute more slowly. In the majority of cases, the Cg compiler will take care of optimizations for you. But it cannot choose high-level algorithms for you. Therefore, this section presents some concepts and techniques that will help you obtain optimal performance from your programs. A few of these have already been presented in some form or another earlier in the book, but we've put them all together here with additional explanation, for easier reference.

10.2.1 Use the Cg Standard Library

As you've worked through the examples in this book, you've probably found Cg's Standard Library functions quite convenient. But the Standard Library is about more than convenience—it's also about performance. The Standard Library functions are defined to allow the Cg compiler to convert them into highly optimized assembly code. In many cases, Standard Library functions compile to single assembly instructions that run in just one GPU clock cycle! Examples of such functions are sin , cos , lit , dot , and exp . In addition, using the Standard Library provides some amount of future-proofing. New versions of the Standard Library will be available with future versions of Cg, and these versions will be optimized for future GPUs.

Despite all these advantages, there may be occasions when you won't want to use the Standard Library functions. If you require a simpler version of a function, or if you can write an especially fast but simplified version of a function that suits your particular needs, you may be better off not using the Standard Library. One example of this, from Chapter 8, is using normalization cube maps rather than the Standard Library's normalize routine for normalizing vectors in fragment programs.

10.2.2 Take Advantage of Uniform Parameters

Always be wary of what you're passing to your vertex and fragment programs as uniform parameters. For example, if you're passing a time variable to the fragment program, and the program ends up using sin(time) instead, you're better off computing sin(time) once in your application, and passing that as the uniform parameter to your fragment program. This is far more efficient than computing sin(time) needlessly for each fragment that's generated! Even if your program needed time and sin(time) , it's more efficient to pass in these values as two uniform parameters than to pass just time and to compute sin(time) in your program.

10.2.3 Using Vertex Programs vs. Fragment Programs

Earlier in this book, you saw how fragment programs often can produce more accurate images than vertex programs can. If your scene is poorly tessellated, vertex programs often produce faceted and coarse images. But per-fragment shading doesn't come for free. A fragment program executes for each fragment that is generated, so fragment programs typically run several million times per frame. On the other hand, vertex programs normally run only tens of thousands of times per frame (assuming that your models are not heavily tessellated). In addition, fragment programs have more limited looping and branching capabilities than do vertex programs, though their capabilities will improve over time. In particular, fragment programs for third-generation and earlier GPUs are rather limited.

Each time you write a Cg program, you have to decide how you're going to distribute the program's workload between the vertex and fragment programs. A simple rule of thumb is to use the vertex program to perform basic transformations and texture coordinate manipulations, and rely on the fragment program for the remaining calculations. In general, this approach is a good one, because it lets you move the more expensive mathematical operations to the vertex program. By balancing the workload between the GPU's vertex and fragment processors, you prevent either one from becoming an overwhelming bottleneck.

In some situations, you might want to trade image quality for performance. For these circumstances, it might make sense to move more of your computations to the vertex program, if doing so balances the program workload by reducing the fragment program's length. The drop in image quality might be smaller than you'd expect, because interpolated values often work quite well. If the quantity that you're interpolating varies linearly, you won't see any drop in image quality at all when using a vertex program instead of a fragment program.

Another way to decide when to use a vertex program or a fragment program is to think about how often your program parameters vary. If the parameters vary slowly (for example, in diffuse lighting), it is probably adequate to make your calculations in the vertex program. However, if rapidly changing parameters are involved (for example, in specular lighting), you'll want a fragment program to get accurate results.

10.2.4 Data Types and Their Impact on Performance

A number of Cg's profiles support a variety of data types. To achieve optimal performance, you should use the smallest data type that is appropriate for any particular computation.

The fixed type is useful for low-precision computations, such as color calculations. In the fp30 and ps_2_x fragment program profiles, fixed values range from -2 to +2 and provide 12 bits of fixed-point precision. What fixed gives up in precision it gets back in performance: calculations using the fixed data type often run at several times the speed of their half or float counterparts on the CineFX architecture.

The half type is helpful when you want high precision and more range, and you don't require the highest possible precision. In the fp30 profile, half provides 16 bits of floating-point precision (1 bit of sign, 10 bits of mantissa, and 5 bits of exponent), which is well suited for many graphics-related quantities such as colors and normals. Particularly when you are dealing with color calculations, the half type is usually sufficient. On the CineFX architecture, programs that minimize their temporary storage by using half for intermediate values run faster than if all values were stored as float values.

Use the float type when you need the highest possible range and precision. For example, at the fragment level, you should use float when dealing with extreme texture coordinates and derivatives.

10.2.5 Take Advantage of Vectorization

It's a lot more efficient to perform computations with vector types than with individual scalars. For most operations, it takes the same amount of time to apply them to a vector as it takes to apply them to a scalar! This means that you can speed up some sequences of instructions by up to four times by using vectors prudently. Cg's swizzling and write-masking features make it easy to insert and extract scalars from vectors, so it makes good sense to pack your computations into vectors whenever possible.

For example, recall the particle system from Chapter 6. In the vertex program, you calculated the particle positions using the following vectorized code:

float4 pFinal = pInitial +

                   vInitial * t +

                   0.5 * acceleration * t * t;

This terse approach could be four times faster than calculating each component of the position individually:

float4 pFinal;

   pFinal.x = pInitial.x + vInitial.x*t + 0.5*acceleration.x*t*t;

   pFinal.y = pInitial.y + vInitial.y*t + 0.5*acceleration.y*t*t;

   pFinal.z = pInitial.z + vInitial.z*t + 0.5*acceleration.z*t*t;

   pFinal.w = pInitial.w + vInitial.w*t + 0.5*acceleration.w*t*t;

In a simple case like this, the compiler might actually be able to vectorize the code for you, but in general, it's more natural to think in terms of vectors rather than individual component calculations. Take advantage of the convenient vector types that Cg offers. In addition to being more efficient, vectorized code is often clearer and more concise than nonvectorized code.

10.2.6 Use Textures to Encode Functions

One way to speed up your fragment programs is to evaluate functions by looking up textures instead of performing arithmetic operations. Consider a function that takes one floating-point value as input and returns a floating-point value as its result. If the input value ranges from 0 to 1, you can use the input value as the texture coordinate for a 1D texture. The result of the query is a texel color, which is the function's result.

This technique isn't limited to just 1D textures. You can use a 2D texture to encode a function of two variables, or you can use a cube map or 3D texture to look up a 3D function. A good example is the normalization cube map you used in Chapter 8. Also, don't forget that RGBA textures allow you to encode values in each of the four components! Keep this in mind and you'll often find opportunities to make your programs more efficient by encoding useful information (that may have nothing to do with color) in each channel.

Using textures to encode functions has many advantages. First, no arithmetic operations are required, which means that valuable GPU cycles are saved. Second, texture lookups take advantage of the GPU's specialized texture-filtering hardware, which can automatically smooth out your function (if you want it to). That is, you can represent your function using a small texture, and allow the hardware to interpolate between the texels. Third, textures give you the flexibility to encode any arbitrary function, because they don't necessarily have to be created using a specific formula or pattern. You could even have an artist paint a function into a texture, giving the artist a higher level of aesthetic control.

10.2.7 Use Swizzling and Negation Freely

Vertex programs on NVIDIA GPUs provide swizzling and negation of variables without any performance penalty. Use this capability to your advantage.

10.2.8 Shade Only the Pixels That You Must

For complex programs, the fragment program tends to be the bottleneck in your application. In these cases, it's judicious to make sure you don't waste valuable GPU cycles on parts of the scene that aren't visible. A good way to ensure this is to draw the scene once without shading, but with depth testing enabled. We call this "laying down z first." After this first pass, each pixel of the frame buffer contains only the closest surface that is visible at that pixel. For subsequent passes, configure the depth test to draw only those fragments whose depths match the depth values in the frame buffer. In this way, the fragment program executes only for visible fragments, instead of for all potentially visible fragments.

If you're familiar with OpenGL or Direct3D, you're probably wondering how this helps, since depth testing conventionally takes place at the end of the pipeline, after the fragment program has already executed. Fortunately, most modern graphics processors have special hardware that performs depth testing before the fragment program runs, making it possible to avoid running the fragment program when it's not necessary.

10.2.9 Shorter Assembly Is Not Necessarily Faster

When the Cg compiler creates assembly code from your Cg source code, it tries to produce code that will run most efficiently on the specified target profile or GPU. Modern GPUs are complex, and may require instructions to be scheduled in specific ways to achieve optimal performance. In some cases, the compiler may generate extra instructions that make its assembly code output longer than the assembly code generated by DirectX 9's fxc compiler, for example. In these situations, the extra assembly instructions run faster because they can be executed in parallel, or because they don't have dependencies that would cause the GPU's shader pipeline to stall.

The lesson to take from this discussion is that you shouldn't judge the performance of a compiler by the length of the assembly code that it outputs. However, it still is often true that the shorter the compiled code, the faster the program runs. In the end, the best way to evaluate a program's performance is to measure the frame rate that you get using the program. This lets you put all theory aside and quantify concrete, real-world performance.

10.3 Exercises

  1. Try this yourself: Rewrite earlier fragment program examples in this book to take advantage of the fixed data type when compiled for the fp30 and ps_2_x profiles.

  2. Answer this: As graphics hardware continues to advance, you can expect more powerful and general profiles. Research the latest available Cg profiles supported by your compiler.

10.4 Further Reading

Specifications for the OpenGL extensions mentioned in this chapter can be found online at http://oss.sgi.com/projects/ogl-sample/registry . NVIDIA also publishes NVIDIA OpenGL Extension Specifications, which collects all the OpenGL specifications implemented by NVIDIA OpenGL drivers. Documentation found on the NVIDIA Developer Web site ( developer.nvidia.com ) explains the nvparse textural representation output by the fp20 profile.

Microsoft documents DirectX 8 and DirectX 9 vertex and pixel shaders at http://msdn.microsoft.com/library , under "Graphics and Multimedia" in its DirectX SDK documentation.


Copyright

Many of the designations used by manufacturers and sellers to distinguish their products are claimed as trademarks. Where those designations appear in this book, and Addison-Wesley was aware of a trademark claim, the designations have been printed with initial capital letters or in all capitals.

The authors and publisher have taken care in the preparation of this book, but make no expressed or implied warranty of any kind and assume no responsibility for errors or omissions. No liability is assumed for incidental or consequential damages in connection with or arising out of the use of the information or programs contained herein.

The publisher offers discounts on this book when ordered in quantity for bulk purchases and special sales. For more information, please contact:

U.S. Corporate and Government Sales
(800) 382-3419
corpsales@pearsontechgroup.com

For sales outside of the U.S., please contact:

International Sales
international@pearsontechgroup.com

Visit Addison-Wesley on the Web: www.awprofessional.com

Library of Congress Control Number: 2002117794

Copyright © 2003 by NVIDIA Corporation

Cover image © 2003 by NVIDIA Corporation

All rights reserved. No part of this publication may be reproduced, stored in a retrieval system, or transmitted, in any form, or by any means, electronic, mechanical, photocopying, recording, or otherwise, without the prior consent of the publisher. Printed in the United States of America. Published simultaneously in Canada.

For information on obtaining permission for use of material from this work, please submit a written request to:

Pearson Education, Inc.
Rights and Contracts Department
75 Arlington Street, Suite 300
Boston, MA 02116
Fax: (617) 848-7047

Text printed on recycled paper at RR Donnelley Crawfordsville in Crawfordsville, Indiana.

8 9 10111213 DOC 09 08 07
8th Printing, November 2007

Developer Site Homepage

Developer News Homepage



Developer Login

Become a
Registered Developer




Developer Tools

Documentation

DirectX

OpenGL

GPU Computing

Handheld

Events Calendar



Newsletter Sign-Up

Drivers

Jobs (1)

Contact

Legal Information



Site Feedback