FREE MEETING: KEY TRENDS AND RISKS IN NFT GAMES– REGISTER

Crypto Cipherium
  • Home
  • News
    Berkshire CEO Abel seeks to reassure shareholders after taking baton from Buffett
    Business

    Berkshire CEO Abel seeks to reassure shareholders after taking baton from Buffett

    Berkshire CEO Abel seeks to reassure shareholders after taking baton from Buffett

    By Editor
    February 28, 2026
    Omnicom Group Inc. (OMC): A Bull Case Concept
    Business
    Omnicom Group Inc. (OMC): A Bull Case Concept
    Burger King provides Whopper new bun and field after buyer suggestions
    Business
    Burger King provides Whopper new bun and field after buyer suggestions
    Focused by airstrikes, Ayatollah Khamenei has Iran in iron grip
    Business
    Focused by airstrikes, Ayatollah Khamenei has Iran in iron grip
    The Solely Medical Gadget Inventory I might Think about a Lifetime Maintain
    Business
    The Solely Medical Gadget Inventory I might Think about a Lifetime Maintain
  • Stock Market
    Stock MarketShow More
    World Liberty Introduces Actual-Time Reserve Verification for USD1
    World Liberty Introduces Actual-Time Reserve Verification for USD1
    February 28, 2026
    Bitcoin At A Crossroads: ,000 Fortress Vs. ,000 Ceiling
    Bitcoin At A Crossroads: $60,000 Fortress Vs. $70,000 Ceiling
    February 28, 2026
    Weak progress impulse and monetary dangers – Societe Generale
    Weak progress impulse and monetary dangers – Societe Generale
    February 28, 2026
    Anthropic’s Claude hits No. 2 on Apple’s prime free apps listing
    Anthropic’s Claude hits No. 2 on Apple’s prime free apps listing
    February 28, 2026
    Pundit On Why Ripple’s XRP, Stellar are Centralized and Ought to be Rejected by Crypto Neighborhood ⋆ ZyCrypto
    Pundit On Why Ripple’s XRP, Stellar are Centralized and Ought to be Rejected by Crypto Neighborhood ⋆ ZyCrypto
    February 28, 2026
  • Blockchain
    BlockchainShow More
    PEPE Value Prediction: Technical Indicators Level to Difficult March as PEPE Checks Assist
    PEPE Value Prediction: Technical Indicators Level to Difficult March as PEPE Checks Assist
    February 28, 2026
    PEPE Value Prediction: Technical Indicators Level to Difficult March as PEPE Checks Assist
    WIF Worth Prediction: Targets $0.21-$0.25 Restoration by March 2026
    February 28, 2026
    HBAR Worth Prediction: Targets alt=
    HBAR Worth Prediction: Targets $0.11 Resistance Check by March 2026
    February 28, 2026
    PEPE Value Prediction: Technical Indicators Level to Difficult March as PEPE Checks Assist
    LDO Worth Prediction: Essential Assist at $0.26 as Technical Indicators Sign Potential Reversal
    February 28, 2026
    Conflux (CFX) CFX Releases v3.0.3 Testnet with CIP-166 Opcode and Crucial Bug Fixes
    Conflux (CFX) CFX Releases v3.0.3 Testnet with CIP-166 Opcode and Crucial Bug Fixes
    February 28, 2026
  • Market Analysis
    Market Analysis
    Show More
    Top News
    La-Z-Boy (LZB) Q2 Earnings and Revenues Prime Estimates
    La-Z-Boy (LZB) Q2 Earnings and Revenues Prime Estimates
    November 19, 2025
    Gold opens at ,001 after China adjustments gold tax rebate
    Gold opens at $4,001 after China adjustments gold tax rebate
    November 4, 2025
    La-Z-Boy (LZB) Q2 Earnings and Revenues Prime Estimates
    Walmart (WMT) Q3 Earnings and Revenues Prime Estimates
    November 20, 2025
    Latest News
    Berkshire CEO Abel seeks to reassure shareholders after taking baton from Buffett
    February 28, 2026
    Omnicom Group Inc. (OMC): A Bull Case Concept
    February 28, 2026
    Burger King provides Whopper new bun and field after buyer suggestions
    February 28, 2026
    Focused by airstrikes, Ayatollah Khamenei has Iran in iron grip
    February 28, 2026
Reading: NVIDIA CUDA 13.1 Drops CUB Boilerplate with New Single-Name API
Share
Crypto CipheriumCrypto Cipherium
Font ResizerAa
Search
  • Home
  • News
    • NFT
    • Mining
  • Stock Market
    • Bitcoin
    • Ethereum
    • Forex
    • Tether
  • Blockchain
  • Market
    • Business
    • Money
Have an existing account? Sign In
Follow US
  • About Us
  • Contact Us
  • Privacy Policy
  • Terms of Service
2025 © Crypto Cipherium. All Rights Reserved.
Blockchain

NVIDIA CUDA 13.1 Drops CUB Boilerplate with New Single-Name API

Editor
Last updated: January 22, 2026 7:22 am
Editor
Published: January 22, 2026
Share
NVIDIA CUDA 13.1 Drops CUB Boilerplate with New Single-Name API


Contents
  • Zero Overhead, Much less Code
  • The Atmosphere Argument
  • Sensible Implications


Felix Pinkston
Jan 21, 2026 21:57

NVIDIA simplifies GPU growth with CUB single-call API in CUDA 13.1, eliminating repetitive two-phase reminiscence allocation code with out efficiency loss.





NVIDIA has shipped a major quality-of-life improve for GPU builders with CUDA 13.1, introducing a single-call API for the CUB template library that eliminates the clunky two-phase reminiscence allocation sample builders have labored round for years.

The change addresses a long-standing ache level. CUB—the C++ template library powering high-performance GPU primitives like scans, types, and histograms—beforehand required builders to name every perform twice: as soon as to calculate required reminiscence, then once more to really run the algorithm. This meant each CUB operation appeared one thing like this verbose dance of reminiscence estimation, allocation, and execution.

PyTorch’s codebase tells the story. The framework wraps CUB calls in macros particularly to cover this two-step invocation, a workaround widespread throughout manufacturing codebases. Macros obscure management stream and complicate debugging—a trade-off groups accepted as a result of the choice was worse.

Zero Overhead, Much less Code

The brand new API cuts straight to the purpose. What beforehand required express reminiscence allocation now suits in a single line, with CUB dealing with momentary storage internally. NVIDIA’s benchmarks present the streamlined interface introduces zero efficiency overhead in comparison with the handbook method—reminiscence allocation nonetheless occurs, slightly below the hood through asynchronous allocation embedded inside system primitives.

Critically, the previous two-phase API stays obtainable. Builders who want fine-grained management over reminiscence—reusing allocations throughout a number of operations or sharing between algorithms—can proceed utilizing the present sample. However for almost all of use circumstances, the single-call method ought to turn into the default.

The Atmosphere Argument

Past simplifying fundamental calls, CUDA 13.1 introduces an extensible “env” argument that consolidates execution configuration. Builders can now mix customized CUDA streams, reminiscence sources, deterministic necessities, and tuning insurance policies by a single type-safe object relatively than juggling a number of perform parameters.

Reminiscence sources—a brand new utility for allocation and deallocation—might be handed by this setting argument. NVIDIA gives default sources, however builders can substitute their very own customized implementations or use CCCL-provided options like system reminiscence swimming pools.

At the moment, the setting interface helps core algorithms together with DeviceReduce operations (Scale back, Sum, Min, Max, ArgMin, ArgMax) and DeviceScan operations (ExclusiveSum, ExclusiveScan). NVIDIA is monitoring further algorithm assist through their CCCL GitHub repository.

Sensible Implications

For groups sustaining GPU-accelerated functions, this replace means much less wrapper code and cleaner integration. The CUB library already serves as a foundational element of NVIDIA’s CUDA Core Compute Libraries, and simplifying its API reduces friction for builders constructing customized CUDA kernels.

The timing aligns with broader trade motion towards extra accessible GPU programming. As AI workloads drive demand for optimized GPU code, decreasing limitations to utilizing high-performance primitives issues.

CUDA 13.1 is out there now by NVIDIA’s developer portal. Groups at the moment utilizing macro wrappers round CUB calls ought to consider migrating to the native single-call API—it delivers the identical abstraction with out the debugging complications.

Picture supply: Shutterstock


Canaan Inc. Unveils Gasoline-to-Computing Initiative in Canada with Aurora AZ Power
XLM Value Prediction: Stellar Targets $0.30 Breakout Inside 30 Days Regardless of Present Bearish Momentum
AVAX Value Prediction: Focusing on $15.50 Restoration Inside 4 Weeks Regardless of Present Weak spot
NVIDIA and Dassault Systèmes Launch Industrial AI Platform for Digital Twins
MARA Holdings Secures 64% Stake in French HPC Agency Exaion

Sign Up For Daily Newsletter

Be keep up! Get the latest breaking news delivered straight to your inbox.
[mc4wp_form]
By signing up, you agree to our Terms of Use and acknowledge the data practices in our Privacy Policy. You may unsubscribe at any time.
Share This Article
Facebook Email Copy Link Print
Previous Article Nikkei 225, CSI 300, Kospi Nikkei 225, CSI 300, Kospi
Next Article BitGo (BTGO) Costs IPO at , Elevating Over 2M at .1B Valuation BitGo (BTGO) Costs IPO at $18, Elevating Over $212M at $2.1B Valuation
Leave a Comment

Leave a Reply Cancel reply

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

Follow US

Find US on Socials
FacebookLike
XFollow
YoutubeSubscribe
TelegramFollow
Popular News
Success Story: Charles Tyler’s Studying Journey with 101 Blockchains
Success Story: Charles Tyler’s Studying Journey with 101 Blockchains
Key Advantages, Use Circumstances, And Developments
Key Advantages, Use Circumstances, And Developments
The Innovation Hub Playbook: Constructing a Digital Ecosystem for the Recent Meals Chain
The Innovation Hub Playbook: Constructing a Digital Ecosystem for the Recent Meals Chain

Follow Us on Socials

We use social media to react to breaking news, update supporters and share information

Facebook X-twitter Youtube
Crypto Cipherium

We influence 20 million users and is the number one business blockchain and crypto news network on the planet.

Topics

  • About Us
  • Contact Us
  • Privacy Policy
  • Terms of Service
Reading: NVIDIA CUDA 13.1 Drops CUB Boilerplate with New Single-Name API
Share
2025 © Crypto Cipherium. All Rights Reserved.
  • bitcoinBitcoin(BTC)$66,411.001.73%
  • ethereumEthereum(ETH)$1,947.241.54%
  • tetherTether(USDT)$1.000.03%
  • binancecoinBNB(BNB)$613.450.72%
  • rippleXRP(XRP)$1.350.31%
  • usd-coinUSDC(USDC)$1.000.00%
  • solanaSolana(SOL)$82.220.98%
  • tronTRON(TRX)$0.2819430.00%
  • Figure HelocFigure Heloc(FIGR_HELOC)$1.04-0.47%
  • dogecoinDogecoin(DOGE)$0.092846-0.10%
Welcome Back!

Sign in to your account

Username or Email Address
Password

Lost your password?