Wednesday, September 16, 2026
No Result
View All Result
Future News 24
Advertisement
  • Home
  • AI Research
  • Platforms
  • Ethics
  • Developer AI
  • Industry
  • Data Science
  • Emerging Tech
  • Quantum
  • BioTech
  • Decentralized
  • Home
  • AI Research
  • Platforms
  • Ethics
  • Developer AI
  • Industry
  • Data Science
  • Emerging Tech
  • Quantum
  • BioTech
  • Decentralized
No Result
View All Result
Future News 24
No Result
View All Result
Home AI Platforms & Apps

Accelerating BEV Pooling on NVIDIA GPUs for Bodily AI Purposes

Future News 24 by Future News 24
June 25, 2026
in AI Platforms & Apps
0 0
0
Accelerating BEV Pooling on NVIDIA GPUs for Bodily AI Purposes
0
SHARES
0
VIEWS
Share on FacebookShare on Twitter


An more and more widespread design sample for autonomous autos (AVs), robotics, and spatial AI techniques is fowl’s-eye-view (BEV) notion. BEV fashions venture multicamera picture options right into a shared top-down grid, offering downstream notion and planning modules with a standard spatial format for reasoning about lanes, autos, pedestrians, and free house.

A key operation on this pipeline is BEV pooling, which gathers picture options, weights them with depth data, and scatter-reduces them into BEV grid cells. For builders, the sensible worth of BEV notion is that it converts many camera-specific views into one spatially constant illustration of the scene. As an alternative of reasoning individually over every digicam picture, downstream modules can function on a unified top-down function map aligned to the world across the automobile or robotic. BEV pooling is the step that makes this illustration usable in actual time: it turns depth-aware picture options right into a compact BEV tensor that may feed detection, occupancy, trajectory prediction, mapping, and planning workloads. 

Conceptually, that is easy. In deployment, nonetheless, BEV pooling can turn into a latency bottleneck as a result of it combines irregular reminiscence entry, repeated index reads, scatter-reduce conduct, and GPU-specific cache results.

This put up makes use of BEVPoolV3 as a case examine in optimizing BEV pooling and different gather- or scatter-heavy operators for NVIDIA GPUs. It walks by way of a sensible workflow you possibly can apply to your workloads: classify the reminiscence regime, take away redundant scatter visitors, map the kernel implementation to the goal GPU, and validate the lively bottleneck with NVIDIA Nsight Compute. The efficiency outcomes present why this workflow issues: the identical BEV pooling operator can require completely different optimization methods relying on whether or not the working set is DRAM-bound or largely L2-resident.

How does BEVPoolV3 cut back BEV pooling latency on NVIDIA RTX GPUs? 

Prior work has already made necessary progress. BEVPoolV2, known as V2 on this put up, launched an environment friendly deployment-oriented BEV pooling formulation for BEVDet-style fashions. CUDA-BEVFusion contains bevpool_half_pack10_kernel, referred to right here as V2+DO, which makes use of depth-outer traversal to take away a lot of the V2 repeated tile-outer index loading. 

BEVPoolV3 continues this optimization route with 4 further adjustments: lowered duplicate depth masses, a five-array INT32 scatter map, precomputed indices that take away runtime integer division, and interval-owned output writes.

This put up makes use of BEVPoolV3 as a case examine in the right way to optimize BEV pooling and different gather- or scatter-heavy operators for NVIDIA GPUs. You’ll learn to classify a BEV pooling workload by reminiscence regime, determine redundant scatter visitors, map the kernel implementation to the goal GPU, and validate the lively bottleneck with Nsight Compute. The efficiency outcomes on two NVIDIA RTX GPUs present why this workflow issues: the identical BEV pooling algorithm will be DRAM-bound on one GPU and largely L2-resident on one other, requiring completely different optimization selections. 

The analysis compares two NVIDIA RTX GPUs that signify completely different reminiscence regimes: NVIDIA RTX A6000, an NVIDIA Ampere SM86 GPU with a 6 MB L2 cache and no native FP8 ISA, and NVIDIA RTX PRO 6000 Blackwell Max-Q Workstation Version, an NVIDIA Blackwell SM120 GPU with a 128 MB L2 cache and native FP8 help. The canonical config used right here is derived from actual nuScenes samples and accommodates about 209K scatter factors, 80 function channels, and a 49 MB BEV pooling working set. That working set exceeds RTX A6000 L2 cache however matches inside RTX PRO 6000 Blackwell Max-Q L2 cache, making RTX A6000 DRAM-bound and RTX PRO 6000 Blackwell Max-Q largely L2-resident after the preliminary fill.

Four-panel diagram titled "Converting multi-camera image features into a top-down representation for downstream perception and planning." Panel 1 shows six camera views (front, left, right, left rear, right rear, rear) around a vehicle, producing multi-camera image features. Panel 2 lifts those features into a 3D grid of depth-weighted points. Panel 3 scatters those points into a top-down BEV grid (the BEV pooling step). Panel 4 shows the resulting BEV feature map feeding three downstream tasks: detection, occupancy, and planning. A green callout reads "Why it matters: BEV pooling is a key deployment bottleneck in camera-based AV perception."Four-panel diagram titled "Converting multi-camera image features into a top-down representation for downstream perception and planning." Panel 1 shows six camera views (front, left, right, left rear, right rear, rear) around a vehicle, producing multi-camera image features. Panel 2 lifts those features into a 3D grid of depth-weighted points. Panel 3 scatters those points into a top-down BEV grid (the BEV pooling step). Panel 4 shows the resulting BEV feature map feeding three downstream tasks: detection, occupancy, and planning. A green callout reads "Why it matters: BEV pooling is a key deployment bottleneck in camera-based AV perception."
Determine 1. BEV pooling lifts multicamera picture options with depth data and scatter-reduces them right into a shared top-down illustration for detection, occupancy prediction, and planning

Within the canonical config, the V2-style NVIDIA TensorRT plugin path takes 274.0 µs on RTX PRO 6000 Blackwell Max-Q. BEVPoolV3 reduces that to 17.3 µs in FP16 and 16.4 µs in FP8. On RTX A6000, the DRAM-adapted BEVPoolV3 FP16 path reaches 90.0 µs. Past the speedup, this put up exhibits a repeatable workflow for optimizing scatter-reduce kernels: classify the working set, take away redundant reminiscence visitors, match the launch form to the goal GPU, and validate the outcome with Nsight Compute. 

Bar chart of speedup over V2 FP16 at the canonical config (TRT 100-iteration median). Bars left to right: V2 FP16 baseline at 1.00× (274.0 µs), RTX A6000 V3 FP16 at 19.31× (90.0 µs), RTX PRO 6000 Blackwell Max-QV2+DO FP16 at 7.25× (37.8 µs, shown in grey), RTX PRO 6000 Blackwell Max-Q V3 FP16 at 15.84×  (17.3 µs), and RTX PRO 6000 Blackwell Max-Q V3 FP8 at 16.71× (16.4 µs). The three V3 bars are green; the V2+DO baseline is grey. A dashed horizontal line marks the 1× baseline.
Bar chart of speedup over V2 FP16 at the canonical config (TRT 100-iteration median). Bars left to right: V2 FP16 baseline at 1.00× (274.0 µs), RTX A6000 V3 FP16 at 19.31× (90.0 µs), RTX PRO 6000 Blackwell Max-QV2+DO FP16 at 7.25× (37.8 µs, shown in grey), RTX PRO 6000 Blackwell Max-Q V3 FP16 at 15.84×  (17.3 µs), and RTX PRO 6000 Blackwell Max-Q V3 FP8 at 16.71× (16.4 µs). The three V3 bars are green; the V2+DO baseline is grey. A dashed horizontal line marks the 1× baseline.
Determine 2. Canonical TensorRT plugin path speedup over V2 FP16. On RTX A6000, V3 FP16 reaches 19.31x over V2. On RTX PRO 6000 Blackwell Max-Q, V3 FP16 reaches 15.84x over V2 and V3 FP8 reaches 16.71x over V2

Stipulations 

This put up discusses CUDA kernel conduct, TensorRT plugin integration, and GPU profiling within the context of BEV pooling. Useful conditions embody:

CUDA kernel ideas akin to warp scheduling, atomics, vectorized world masses, and DRAM/L2/L1 cache conduct

TensorRT plugin integration, particularly the IPluginV3 interface

Nsight Compute profiling for validating reminiscence conduct, occupancy, and instruction-issue bottlenecks

The BEV-pooling kernel in CUDA-BEVFusion because the prior depth-outer reference implementation

For associated background data, see the CUDA C++ Programming Information, TensorRT plugin documentation, TensorRT samples, and Nsight Compute Profiling Information.

Classify the reminiscence regime

Step one is to categorise whether or not the BEV-pooling working set matches in L2. Within the canonical config, the principle arrays complete about 49 MB, dominated by function information and output. That single quantity determines the reminiscence regime: it’s bigger than the RTX A6000 6 MB L2 cache, however smaller than RTX PRO 6000 Blackwell Max-Q 128 MB L2 cache.

Two stacked horizontal bar charts comparing the ~49 MB canonical BEV-pooling working set against each GPU's L2 cache capacity. Top: RTX A6000 with 6 MB L2 — the working set (green bar) extends far past the cache capacity line, labeled "Does not fit → DRAM-bound path." Bottom: RTX PRO 6000 Blackwell Max-Q with 128 MB L2 — the working set fills only a small fraction of the bar, labeled "Fits → L2-resident path." Subtitle: "Derived from real nuScenes samples, C=80, ~209K scatter points."
Two stacked horizontal bar charts comparing the ~49 MB canonical BEV-pooling working set against each GPU's L2 cache capacity. Top: RTX A6000 with 6 MB L2 — the working set (green bar) extends far past the cache capacity line, labeled "Does not fit → DRAM-bound path." Bottom: RTX PRO 6000 Blackwell Max-Q with 128 MB L2 — the working set fills only a small fraction of the bar, labeled "Fits → L2-resident path." Subtitle: "Derived from real nuScenes samples, C=80, ~209K scatter points."
Determine 3. Classifying the canonical BEV-pooling working set by L2 capability. The canonical config derived from actual nuScenes samples has a working set of about 49 MB. This exceeds the 6 MB L2 cache on RTX A6000, so the kernel follows a DRAM-bound path. The identical working set matches contained in the 128 MB L2 cache on RTX PRO 6000 Blackwell Max-Q, so the kernel is basically L2-resident after the preliminary fill. Observe that the diagram is conceptual and never drawn to precise scale

This match/no-fit resolution adjustments the optimization goal. On RTX A6000, function gathers and output visitors spill past L2, so the small-L2 path prioritizes byte discount and cache-streaming output shops. On RTX PRO 6000 Blackwell Max-Q, the canonical working set matches in L2, so the large-L2 path shifts towards instruction effectivity, occupancy, precomputed indices, vectorized masses, and FP8 specialization.

Take away redundant scatter visitors

The BEV scatter-reduce will be summarized as:

out[ranks_bev[t], c] += depth[ranks_depth[t]] * feat[ranks_feat[t], c];

BEVPoolV2 iterates over channel tiles outdoors the scatter loop. For C=80 and an 8-channel tile, the identical scatter indices are loaded 10 instances. That produces roughly 25.1 MB of index visitors for indices that solely want 2.51 MB when learn as soon as. A depth-outer loop order fixes most of that drawback by iterating over every BEV interval first and accumulating all channels for that interval in a single move.

BEVPoolV3 extends the depth-outer optimization route utilized in CUDA-BEVFusion bevpool_half_pack10_kernel, referred to right here as V2+DO. V2+DO is a helpful baseline as a result of it already removes the repeated tile-outer index masses in BEVPoolV2 and demonstrates the worth of interval-based traversal. BEVPoolV3 retains that route and provides 4 implementation adjustments that enhance portability and efficiency throughout GPU reminiscence regimes: lowered duplicate depth masses inside every interval; a five-array INT32 scatter map µsing ranks_depth, ranks_feat, ranks_bev, interval_starts, and interval_lengths; precomputed specific indices that take away runtime integer division; and interval-owned output writes that keep away from atomics relative to the V2-style path.

Stacked bar chart of analytical memory traffic in MB at the canonical config (N=209K,  C=80). Four bars left to right: V2 FP16 ≈77 MB (largest scatter-indices segment, plus depth, feat, and intervals+output), V2+DO FP16 ≈51 MB (scatter-indices collapse, feat dominates), V3 FP16 ≈50 MB (slightly smaller scatter-indices, feat still dominant), V3 FP8 ≈26 MB (feat and intervals+output both halve). Stack segments from bottom to top: scatter indices (darkest green), depth, feat, intervals plus output (lightest green).
Stacked bar chart of analytical memory traffic in MB at the canonical config (N=209K,  C=80). Four bars left to right: V2 FP16 ≈77 MB (largest scatter-indices segment, plus depth, feat, and intervals+output), V2+DO FP16 ≈51 MB (scatter-indices collapse, feat dominates), V3 FP16 ≈50 MB (slightly smaller scatter-indices, feat still dominant), V3 FP8 ≈26 MB (feat and intervals+output both halve). Stack segments from bottom to top: scatter indices (darkest green), depth, feat, intervals plus output (lightest green).
Determine 4. V2+DO removes most redundant index visitors. V3 FP16 additional reduces aligned scatter-map overhead and instruction strain. V3 FP8 halves function and output bytes, which helps most when the working set is L2-resident

The five-array scatter map is very necessary on large-L2 GPUs. Packing (ranks_depth, ranks_feat, ranks_bev) into an int3 array offers a 12-byte report. That format is inconvenient for aligned reminiscence transactions and doesn’t map cleanly to a 16-byte LDG.128 load. Separate INT32 arrays let adjoining threads merge aligned masses and keep away from area coupling. The whole logical bytes might look comparable, however the instruction stream is way cleaner.

Implement interval-owned scatter-reduce

In manufacturing, BEVPoolV3 makes use of a number of specialised kernels, however the core implementation concept is less complicated to grasp as a small logic sketch. The scatter map is ready forward of time, every BEV interval is assigned to 1 proprietor, the proprietor walks the factors in that interval, accumulates the related function channels, and writes the output as soon as.

This construction removes the inner-loop decoding work that seems when the scatter map is packed right into a single report. As an alternative of reconstructing indices at runtime, the kernel reads specific arrays akin to ranks_depth, ranks_feat, ranks_bev, interval_starts, and interval_lengths.

// 1. Use 5 precomputed scatter arrays.
// 2. Learn specific indices instantly, with no runtime index division.
// 3. Let one interval proprietor accumulate the output cell.
// 4. Load every depth worth as soon as per scatter level within the proprietor loop.

for every interval iv in parallel:
begin = interval_starts[iv]
size = interval_lengths[iv]
bev = ranks_bev[start]

acc[channel_tile] = 0

for offset in 0 .. size – 1:
t = begin + offset
d = depth[ranks_depth[t]]
feat_row = ranks_feat[t]

for c in channel_tile:
acc[c] += d * feat[feat_row, c]

out[bev, channel_tile] = acc

This code sketch captures the widespread BEVPoolV3 construction: the scatter map is specific, runtime index decoding is eliminated, depth is loaded within the interval proprietor loop, and every output cell is written as soon as after native accumulation.

The manufacturing kernels specialize this construction for the goal reminiscence regime. On small-L2 GPUs akin to RTX A6000, the implementation prioritizes byte discount, FP16 half2 accumulation, and cache-streaming output shops so the output tensor doesn’t evict helpful index information from L2. On large-L2 GPUs akin to RTX PRO 6000 Blackwell Max-Q, the implementation first matches a high-occupancy launch envelope, then reduces instruction overhead with precomputed indices, vectorized index masses, and FP8-specialized interior loops the place the working set is L2-resident.

The algorithmic invariant stays the identical: personal the interval, keep away from runtime index decoding, accumulate regionally, and write as soon as. The architecture-specific work adjustments how that invariant is carried out, not what the BEV-pooling operator computes.

Grouped bar chart of TRT-11 latency on RTX PRO 6000 Blackwell Max-Q in microseconds (log scale, 100-iteration median) across six configurations: small-100K, canonical-209K, large-500K, xlarge-1M, c128-209K, c256-209K. Each config has four bars: V2 FP16 (light grey, tallest, ranging from ~140 µs to ~1700 µs), V2+DO FP16 (dark grey), V3 FP16 (light green), and V3 FP8 (NVIDIA green, shortest in every config). V3 FP8 is fastest on every shape; the V2 vs V3 gap widens at larger N and wider channels.
Grouped bar chart of TRT-11 latency on RTX PRO 6000 Blackwell Max-Q in microseconds (log scale, 100-iteration median) across six configurations: small-100K, canonical-209K, large-500K, xlarge-1M, c128-209K, c256-209K. Each config has four bars: V2 FP16 (light grey, tallest, ranging from ~140 µs to ~1700 µs), V2+DO FP16 (dark grey), V3 FP16 (light green), and V3 FP8 (NVIDIA green, shortest in every config). V3 FP8 is fastest on every shape; the V2 vs V3 gap widens at larger N and wider channels.
Determine 5. RTX PRO 6000 Blackwell Max-Q TensorRT latency throughout six BEV pooling configurations. V3 FP8 is quickest on each configuration, with bigger positive aspects on wider channel counts

Absolutely the latency outcomes on RTX PRO 6000 Blackwell Max-Q present how the large-L2 path behaves throughout completely different level counts and channel widths. The identical optimization sample additionally holds on the RTX A6000 DRAM-bound path when measured as speedup over the V2 FP16 baseline. On RTX A6000, the DRAM-adapted V3 FP16 path reaches speedups of 11s to 22x over V2 throughout the examined configurations. On RTX PRO 6000 Blackwell Max-Q, V3 FP8 reaches speedups of 11x to 42x over V2, with the biggest positive aspects showing at bigger level counts and wider channel configurations.

Grouped bar chart of speedup over V2 FP16 across six configs (small, canonical, large, xlarge, wide-c128, wide-c256). Each group has four bars: RTX PRO 6000 Blackwell Max-Q V2+DO FP16/V2 (grey), RTX PRO 6000 Blackwell Max-Q V3 FP16/V2 (dark green), RTX PRO 6000 Blackwell Max-Q V3 FP8/V2 (light green), RTX A6000 V3 FP16/V2 (medium green). RTX PRO 6000 Blackwell Max-Q V3 FP8 reaches the highest speedup on every RTX PRO 6000 Blackwell Max-Q config, peaking at 42× on xlarge and 40× on wide-c256. RTX A6000 V3 FP16 peaks at the small/canonical end (~21×/19×) and declines on larger configs where it becomes DRAM-bound.Grouped bar chart of speedup over V2 FP16 across six configs (small, canonical, large, xlarge, wide-c128, wide-c256). Each group has four bars: RTX PRO 6000 Blackwell Max-Q V2+DO FP16/V2 (grey), RTX PRO 6000 Blackwell Max-Q V3 FP16/V2 (dark green), RTX PRO 6000 Blackwell Max-Q V3 FP8/V2 (light green), RTX A6000 V3 FP16/V2 (medium green). RTX PRO 6000 Blackwell Max-Q V3 FP8 reaches the highest speedup on every RTX PRO 6000 Blackwell Max-Q config, peaking at 42× on xlarge and 40× on wide-c256. RTX A6000 V3 FP16 peaks at the small/canonical end (~21×/19×) and declines on larger configs where it becomes DRAM-bound.
Determine 6. Cross-GPU speedup over V2 FP16. RTX A6000 V3 FP16 reaches 11–22× throughout the examined configurations, whereas RTX PRO 6000 Blackwell Max-Q V3 FP8 reaches 11–42× relying on level rely and channel width

Deploy and validate the TensorRT plugin

BEVPoolV3 is uncovered as a TensorRT IPluginV3 operator. The plugin accepts the five-array scatter map plus depth and feat, then dispatches the suitable kernel for the GPU class and dtype. The benchmark path used ONNX-to-TensorRT builds and CUDA Graph replay with trtexec.

For validation, evaluate in opposition to an FP64 reference or an current trusted V2 path. The RTX A6000 DRAM-adapted kernel handed all examined output parts throughout the six configurations at atol=1e-2, with most noticed error of 0.0065. On RTX PRO 6000 Blackwell Max-Q, V2 and V3 produced similar outputs for the examined configurations, indicating that the optimized scatter-map and launch adjustments preserved the numerical conduct of the reference path.

Map the algorithm onto the {hardware}

The 4 BEVPoolV3 algorithmic adjustments are moveable, however the manufacturing kernel should match the lively GPU bottleneck. The important thing resolution is whether or not the BEV-pooling working set matches in L2.

On RTX A6000, the canonical working set exceeds L2, so the kernel is restricted by random-gather DRAM visitors. The FP16 path subsequently prioritizes byte discount and cache preservation. Rising TILE_C from 8 to 16 cuts the C=80 tile passes from 10 to five, lowering loop overhead and repeated scalar work. Utilizing __half2 accumulation with __hfma2 avoids pointless FP16-to-FP32 widening and packing. Cache-streaming output shops forestall the 12.8 MB output tensor from evicting the smaller L2-resident index arrays. After these adjustments, the RTX A6000 path reaches 90.0 µs within the canonical config, in contrast with 1,738.0 µs for V2 FP16.

On RTX PRO 6000 Blackwell Max-Q, the canonical working set matches in L2, so the limiting components shift towards instruction subject, occupancy, and dependency latency. The manufacturing kernel first matches the high-occupancy V2+DO-style launch envelope, then removes inner-loop overhead with the five-array scatter map and precomputed indices. This avoids runtime integer division and reduces scatter-map load strain. Within the canonical config, V3 FP16 reaches 17.3 µs versus 37.8 µs for V2+DO FP16, a 2.18x speedup on the similar dtype.

The FP8 path additional specializes within the large-L2 case. As a result of function and output information are served from L2, lowering their dtype can translate into actual latency positive aspects. The manufacturing FP8 path makes use of per-channel-count entry factors, LDG.64 index packing for C=80, and wider function masses for C=128 and C=256. Extra aggressive combos, akin to including loop unrolling on high of the packed-index path, didn’t compose cleanly as a result of they elevated register strain and spill visitors.

The precision ladder has a sensible vacation spot, and our NVFP4 analysis helps make clear precisely the place every format shines: we examined an NVFP4 path that shops digicam options in E2M1 with per-16-element E4M3 microblock scales whereas conserving depth and output in FP8, and even with an aggressively optimized implementation that includes __half2 packed accumulators, fused scale–depth coefficients, and a half-precision LUT, the decode overhead causes it to run notably slower than the FP8 baseline. 

Profiling with Nsight Compute exhibits the kernel is totally resident in L2 cache, with low DRAM bandwidth utilization and smsp__issue_active hovering properly under peak throughput, whereas the ALU pipeline carries considerably extra directions than the FMA pipeline. 

This means that this scatter-reduce regime has already captured the out there byte-efficiency advantages at FP8, whereas the NVFP4 further per-element nibble extraction, worth decode, and per-microblock scale fold introduce inner-loop work that the FP8 path avoids by way of a single scalar FP8 to half conversion. The result’s a crisp workload-placement story: NVFP4 stays an extremely highly effective match for compute-bound matrix multiplication shapes flowing by way of Tensor Cores by way of MMA.type::nvfp4, whereas for L2-resident scatter-reduce workloads, FP8 is good on the dtype ladder.

The identical evaluation applies past BEV pooling. For sparse embeddings, voxelization, histograms, segmented reductions, and different gather- or scatter-heavy operators, first classify the reminiscence regime, then use Nsight Compute to find out whether or not the lively ceiling is bandwidth, instruction subject, or occupancy.

Desk 1 summarizes RTX PRO 6000 Blackwell Max-Q TensorRT plugin-path latency, reported as 100-iteration median latency.

ConfigC-DimensionV2 FP16V2+DO FP16V3 FP16V3 FP8V3 FP8 / V2small80137.8 µs31.5 µs12.7 µs12.6 µs10.94xcanonical80274.0 µs37.8 µs17.3 µs16.4 µs16.71xlarge80749.9 µs48.0 µs27.3 µs24.9 µs30.12xxlarge801,675.0 µs61.9 µs48.0 µs39.8 µs42.09xwide_c128128457.3 µs54.2 µs21.4 µs14.8 µs30.90xwide_c256256880.9 µs152.3 µs33.4 µs22.0 µs40.04x
Desk 1. TensorRT plugin-path latency on RTX PRO 6000 Blackwell Max-Q throughout a number of mannequin configurations. Values report 100-iteration median latency per benchmarked inference/plugin name in microseconds for V2 FP16, V2+DO FP16, V3 FP16, and V3 FP8. The ultimate column exhibits the speedup of V3 FP8 relative to V2 FP16, computed from latency discount

Concerns for edge-class platforms

The identical evaluation can prolong to edge-class NVIDIA platforms, together with NVIDIA DRIVE AGX Thor. In early edge-oriented experiments, the FP16 BEVPoolV3 path carries over properly as a result of the core enhancements—eradicating redundant scatter visitors, avoiding runtime index decoding, and utilizing interval-owned writes—are architecture-independent.

FP8 speedup, nonetheless, is just not automated. On edge-class targets, smaller drawback sizes, reminiscence hierarchy conduct, register strain, and FP8 conversion overhead can restrict or offset the theoretical dtype bandwidth profit. This makes FP8 a kernel- and architecture-specific optimization fairly than a assured drop-in alternative for FP16.

Get began with BEV pooling optimization

To use the BEVPoolV3 workflow to your personal BEV notion or collect/scatter-heavy workload, begin by profiling the operator in isolation. Measure the function, depth, scatter-index, and output tensor sizes, then evaluate the entire working set with the goal GPU L2 cache capability.

Use NVIDIA Nsight Compute to validate whether or not the lively bottleneck is reminiscence bandwidth, instruction subject, occupancy, or dependency latency. Then select the optimization technique that matches the reminiscence regime: byte discount and cache-preserving shops for DRAM-bound workloads, or occupancy, precomputed indices, vectorized masses, and dtype specialization for L2-resident workloads.

The identical strategy applies to sparse embeddings, voxelization, histograms, segmented reductions, and different irregular memory-bound kernels. Use the BEVPoolV3 outcomes as a information for profiling your personal operator, choosing the precise implementation technique for the goal GPU, and validating the outcome earlier than deploying by way of TensorRT. For associated assets, see the TensorRT documentation, CUDA C++ Programming Information, Nsight Compute documentation, and NVIDIA Developer Boards.



Source link

Tags: AcceleratingapplicationsBEVGPUsNVIDIAPhysicalPooling
Previous Post

Introducing laptop use in Gemini 3.5 Flash

Next Post

Considering to recall: How reasoning unlocks parametric information in LLMs

Next Post
Considering to recall: How reasoning unlocks parametric information in LLMs

Considering to recall: How reasoning unlocks parametric information in LLMs

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Fetching latest news…
FUTURENEWS24
Live Feed
All
AI
Dev
Industry
Frontier
Updates in 60s
FN24 AI & Tech
View All →
Future News 24

The world's leading source for AI research, emerging technology, and the people building the future. Independent, rigorous, and always ahead.

CATEGORIES

  • AI Platforms & Apps
  • AI Research & Breakthroughs
  • BioTechnology
  • Data Science & MLOps
  • Decentralized Technology
  • Developer AI & Open-Source Ecosystem
  • Emerging Technologies & Innovations
  • Ethics & Policy
  • Industry & Business
  • Quantum Computing
  • Uncategorized

LATEST

  • [2602.13312] PeroMAS: A Multi-agent System of Perovskite Materials Discovery
  • GPT-6 Astra overview: code overview good points, privateness, and value
  • GPT-6 Astra: Options, Benchmarks, Pricing, and What’s New
  • About Us
  • Advertise with Us
  • Disclaimer
  • Privacy Policy
  • DMCA 
  • Cookie Policy
  • Terms and Conditions
  • Contact us

© 2026 Future News 24. All rights reserved.

Welcome Back!

Login to your account below

Forgotten Password?

Retrieve your password

Please enter your username or email address to reset your password.

Log In
No Result
View All Result
  • Home
  • AI Research
  • Platforms
  • Ethics
  • Developer AI
  • Industry
  • Data Science
  • Emerging Tech
  • Quantum
  • BioTech
  • Decentralized

© 2026 Future News 24. All rights reserved.

Website security powered by MilesWeb