summaryrefslogtreecommitdiff
path: root/candle-core/src/quantized/cuda.rs
diff options
context:
space:
mode:
authorLaurent Mazare <laurent.mazare@gmail.com>2024-11-29 09:01:34 +0100
committerGitHub <noreply@github.com>2024-11-29 09:01:34 +0100
commitb52c2c60508325431df5e05eca9801060fdbcc1c (patch)
tree3c4abef254a33030977bed923fa2ac9e560eebec /candle-core/src/quantized/cuda.rs
parent4f59ed38b08b84ed9c52e53f2692a2fc1888f30b (diff)
downloadcandle-b52c2c60508325431df5e05eca9801060fdbcc1c.tar.gz
candle-b52c2c60508325431df5e05eca9801060fdbcc1c.tar.bz2
candle-b52c2c60508325431df5e05eca9801060fdbcc1c.zip
Clippy fixes for the cuda feature. (#2650)
Diffstat (limited to 'candle-core/src/quantized/cuda.rs')
-rw-r--r--candle-core/src/quantized/cuda.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/candle-core/src/quantized/cuda.rs b/candle-core/src/quantized/cuda.rs
index 3c24c0e5..1a3d72c0 100644
--- a/candle-core/src/quantized/cuda.rs
+++ b/candle-core/src/quantized/cuda.rs
@@ -36,7 +36,7 @@ pub const CUDA_DEQUANTIZE_BLOCK_SIZE: usize = 256;
pub const MATRIX_ROW_PADDING: usize = 512;
fn ceil_div(p: usize, q: usize) -> usize {
- (p + q - 1) / q
+ p.div_ceil(q)
}
fn pad(p: usize, q: usize) -> usize {