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

Crypto Cipherium
  • Home
  • News
    Focused by airstrikes, Ayatollah Khamenei has Iran in iron grip
    Business

    Focused by airstrikes, Ayatollah Khamenei has Iran in iron grip

    Focused by airstrikes, Ayatollah Khamenei has Iran in iron grip

    By Editor
    February 28, 2026
    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
    Kevin O’Leary throws resumes ‘in rubbish’ when dad and mom be part of interviews
    Business
    Kevin O’Leary throws resumes ‘in rubbish’ when dad and mom be part of interviews
    Israel shuts faculties, bans gatherings as Iran launches retaliatory missiles
    Business
    Israel shuts faculties, bans gatherings as Iran launches retaliatory missiles
    President Trump’s Nomination of Kevin Warsh as Fed Chair Could Come Again to Chew Wall Road
    Business
    President Trump’s Nomination of Kevin Warsh as Fed Chair Could Come Again to Chew Wall Road
  • Stock Market
    Stock MarketShow More
    Iran stay updates: U.S., Israel launch strikes
    Iran stay updates: U.S., Israel launch strikes
    February 28, 2026
    Shopping for Bitcoin? Maintain BTC for at Least Three Years to Keep away from Losses
    Shopping for Bitcoin? Maintain BTC for at Least Three Years to Keep away from Losses
    February 28, 2026
    Why personal fairness shares are getting wrecked at this time
    Why personal fairness shares are getting wrecked at this time
    February 28, 2026
    Enter Output Group Discloses Main Updates
    Enter Output Group Discloses Main Updates
    February 28, 2026
    A Repeat Of February? Watch Out For These Bitcoin Value Ranges In March
    A Repeat Of February? Watch Out For These Bitcoin Value Ranges In March
    February 28, 2026
  • Blockchain
    BlockchainShow More
    WIF Worth Prediction: Targets alt=
    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
    WIF Worth Prediction: Targets alt=
    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
    LTC Worth Prediction: Targets -65 Restoration by March Regardless of Present Weak spot
    LTC Worth Prediction: Targets $62-65 Restoration by March Regardless of Present Weak spot
    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
    Focused by airstrikes, Ayatollah Khamenei has Iran in iron grip
    February 28, 2026
    The Solely Medical Gadget Inventory I might Think about a Lifetime Maintain
    February 28, 2026
    Kevin O’Leary throws resumes ‘in rubbish’ when dad and mom be part of interviews
    February 28, 2026
    Israel shuts faculties, bans gatherings as Iran launches retaliatory missiles
    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


Telegram Introduces Stay Feedback, AI Enhancements, and Extra in Newest Replace
Ethereum Worth Jumps 7% On $81M SharpLink Gaming Purchase
Stablecoins Will Power Banks To Provide Higher Yields: Stripe CEO
Collectively AI Integrates FLUX.2 for Superior Multi-Reference Picture Technology
TokenWorks Provides Extra NFTs Into Its NFT Technique

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
Iran stay updates: U.S., Israel launch strikes
Iran stay updates: U.S., Israel launch strikes
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

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)$65,083.00-1.00%
  • ethereumEthereum(ETH)$1,904.96-1.27%
  • tetherTether(USDT)$1.000.02%
  • binancecoinBNB(BNB)$603.89-1.09%
  • rippleXRP(XRP)$1.33-1.90%
  • usd-coinUSDC(USDC)$1.000.00%
  • solanaSolana(SOL)$81.00-0.82%
  • tronTRON(TRX)$0.280339-0.85%
  • Figure HelocFigure Heloc(FIGR_HELOC)$1.04-0.13%
  • dogecoinDogecoin(DOGE)$0.090873-3.11%
Welcome Back!

Sign in to your account

Username or Email Address
Password

Lost your password?