Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/catboost/catboost
/ CeilDiv
Function
CeilDiv
util/generic/ymath.h:204–208 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
202
constexpr
203
#endif
204
CeilDiv(T x, T y) noexcept {
205
static_assert(std::is_integral<T>::value,
"Integral type required."
);
206
Y_ASSERT(y != 0);
207
return ::NUtilMathPrivate::TCeilDivImpl<std::is_signed<T>::value>::Do(x, y);
208
}
Callers
15
GenerateMedianBordersWithDefaultValue
Function · 0.85
TExecRangeParams
Class · 0.85
TEstimatedColumnsDataWriter
Method · 0.85
WorkaroundSplit
Function · 0.85
ComputePairwiseWeightSums
Function · 0.85
AppendBinaryFeatures
Function · 0.85
SortFoldByLeafIndex
Method · 0.85
UpdateIndicesInLeafwiseSortedFoldForSingleLeafImpl
Method · 0.85
SetPermutationBlockSizeAndCalcStatsRanges
Method · 0.85
AddLeafDersForQueries
Function · 0.85
CalcStatsPairwise
Function · 0.85
Next
Method · 0.85
Calls
1
Do
Function · 0.85
Tested by
1
TestCeilDiv
Method · 0.68