Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
kernels-community
/
quantization
like
1
Follow
kernels-community
30
kernel
License:
apache-2.0
Model card
Files
Files and versions
Community
1
refs/pr/1
quantization
/
core
/
math.hpp
danieldk
HF staff
Sync with vLLM
0da5bf5
3 months ago
raw
Copy download link
history
blame
Safe
183 Bytes
#
include
<climits>
#
include
<iostream>
inline
uint32_t
next_pow_2
(
uint32_t
const
num)
{
if
(num <=
1
)
return
num;
return
1
<< (CHAR_BIT *
sizeof
(num) - __builtin_clz(num -
1
));
}