You are here: Developer Tools > Desktop Developer Tools > NVIDIA Nsight Visual Studio Edition > Memory Statistics - Texture

Overview

Texture memory is read-only device memory, and can be accessed using the device functions described in Texture Functions. Reading a texture using one of these functions is called a texture fetch. Texture memory traffic is routed through the texture cache (which is independent of the L1 data cache) and the L2 cache. The texture memory system is designed to be efficient for spatially-localized accesses in 2D arrays. The GPU's hardware support for texturing provides features beyond typical memory systems, such as customizable behavior when reading out-of-bounds, and filtered interpolation when reading from coordinates between array elements. Texture memory is designed for streaming fetches with a constant latency; a texture cache hit reduces device memory bandwidth usage, but not fetch latency.

Chart

Texture

Each time a warp executes a texture function to read from texture memory, this counts as a single fetch. The Texture chart shows the number of fetches and the fetch rate. A texture fetch is a memory request, which incurs transactions from the texture cache. Transactions from the texture cache are 32 byte units.

Note that this chart does not include global read only data accesses (using const __restrict__ or the __ldg() intrinsic), which also use the texture cache. For those, see Global Memory.

Analysis


of

NVIDIA GameWorks Documentation Rev. 1.0.150630 ©2015. NVIDIA Corporation. All Rights Reserved.