|
| 1 | +nvidia-query-resource-opengl |
| 2 | +============================ |
| 3 | + |
| 4 | +About |
| 5 | +----- |
| 6 | + |
| 7 | +nvidia-query-resource-opengl queries the NVIDIA OpenGL driver to determine the |
| 8 | +OpenGL resource usage of an application. OpenGL applications may query their |
| 9 | +own resource usage using the GL\_NVX\_query\_resource extension, but the |
| 10 | +nvidia-query-resource-opengl tool allows users to perform resource queries |
| 11 | +externally, against unmodified OpenGL applications. |
| 12 | + |
| 13 | +Requirements |
| 14 | +------------ |
| 15 | + |
| 16 | +* A Windows, Linux, Solaris, or FreeBSD system with an NVIDIA GPU, running a |
| 17 | + version of the NVIDIA OpenGL driver supporting the GL\_NVX\_query\_resource |
| 18 | + extension. Support for this extension was introduced with the 355.xx driver |
| 19 | + release. **Note that this extension is still under development and subject to |
| 20 | + change, so applications developed against it, including this query resource |
| 21 | + tool, may need to be updated for compatibility with future driver versions.** |
| 22 | +* CMake 2.6 or later, and a suitable build system (e.g. Windows SDK and/or |
| 23 | + Microsoft Visual Studio on Windows; make and cc/gcc on Unix-like systems) |
| 24 | + that is supported by the CMake generators on the target platform. (Not needed |
| 25 | + when using precompiled executables on Windows.) |
| 26 | + |
| 27 | +Building |
| 28 | +-------- |
| 29 | + |
| 30 | +nvidia-query-resource-opengl uses [CMake](http://www.cmake.org) to support |
| 31 | +building on multiple platforms. In order to build nvidia-query-resource-opengl, |
| 32 | +you will need to first use the CMake graphical or command line interface to |
| 33 | +generate a build system that will work on your platform, then use the generated |
| 34 | +build system to build the project. For example, on a typical Unix-like system, |
| 35 | +the following commands run from within the top level directory of this source |
| 36 | +code repository will create a "build" directory and build within it: |
| 37 | + |
| 38 | + mkdir build |
| 39 | + cd build |
| 40 | + cmake .. |
| 41 | + make |
| 42 | + |
| 43 | +On Windows, run `nmake` instead of `make` from the Visual Studio command line |
| 44 | +when using the nmake build system generator with the Windows SDK, or choose a |
| 45 | +Visual Studio solution generator to create a solution that can be built within |
| 46 | +Microsoft Visual Studio. Windows users may also download precompiled executable |
| 47 | +files for convenience. |
| 48 | + |
| 49 | +A successful build will produce the following items: |
| 50 | + |
| 51 | +* The resource query tool, 'nvidia-query-resource-opengl' (on Windows, the .exe |
| 52 | + file extension is appended to the executable name.) |
| 53 | +* A static library, 'libnvidia-query-resource-opengl.a' on Unix-like systems, |
| 54 | + or 'nvidia-query-resource-opengl.lib' on Windows. This can be used together |
| 55 | + with the API defined in include/nvidia-query-resource-opengl.h to add OpenGL |
| 56 | + resource query functionality to your own monitoring tools. |
| 57 | +* On Unix-like systems only, the 'libnvidia-query-resource-preload.so' DSO, |
| 58 | + which must be preloaded into any OpenGL applications that will be the target |
| 59 | + of resource queries. (See "Usage" section below for more details.) |
| 60 | + |
| 61 | +Usage |
| 62 | +----- |
| 63 | + |
| 64 | +You can query an application's OpenGL resource usage by executing the command: |
| 65 | + |
| 66 | + nvidia-query-resource-opengl -p <pid> [-qt <query_type>] |
| 67 | + |
| 68 | +* pid: the process ID of the target OpenGL application of the query |
| 69 | +* query\_type: this may be 'summary' or 'detailed'. The default is 'summary'. |
| 70 | + + summary: reports a summary, per device, of allocated video and system |
| 71 | + memory, the total amount of memory in use by the the driver, and the |
| 72 | + total amount of allocated but unused memory. |
| 73 | + + detailed: includes the summary information, and additionally reports |
| 74 | + separate allocation amounts for various object types. The current set |
| 75 | + of reported object types includes: |
| 76 | + - SYSTEM RESERVED - driver allocated memory |
| 77 | + - TEXTURE - memory in use by 1D/2D/3D textures |
| 78 | + - RENDERBUFFER - render buffer memory |
| 79 | + - BUFFEROBJ_ARRAY - buffer object memory |
| 80 | + |
| 81 | +Resource queries are handled asynchronously to the OpenGL applications being |
| 82 | +queried. Due to this, and other factors, including object migration between |
| 83 | +video and system memory, it is possible for subsequent queries to yield |
| 84 | +different results. |
| 85 | + |
| 86 | +On Windows, nvidia-query-resource-opengl will communicate directly with any |
| 87 | +OpenGL application to perform resource queries; however, on Unix-like systems, |
| 88 | +the libnvidia-query-resource-preload.so DSO must be preloaded into the target |
| 89 | +application before a resource query can be performed. This is achieved by |
| 90 | +setting a relative or absolute path to the preload DSO in the LD\_PRELOAD |
| 91 | +variable of the target application's environment, e.g.: |
| 92 | + |
| 93 | + $ LD_PRELOAD=path/to/libnvidia-query-resource-opengl-preload.so app |
0 commit comments