diff options
author | hardlydearly <167623323+hardlydearly@users.noreply.github.com> | 2024-04-28 14:34:32 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-28 08:34:32 +0200 |
commit | c68ed8963fb6fc842f20d84baa07ff97b56aedb4 (patch) | |
tree | c8cd99fde31a1b6da9db95bfe4f2af24821a3919 /candle-book | |
parent | e5c8b88f90763073fc927ee232bda30fcbc05595 (diff) | |
download | candle-c68ed8963fb6fc842f20d84baa07ff97b56aedb4.tar.gz candle-c68ed8963fb6fc842f20d84baa07ff97b56aedb4.tar.bz2 candle-c68ed8963fb6fc842f20d84baa07ff97b56aedb4.zip |
chore: fix some typos in comments (#2121)
Signed-off-by: hardlydearly <799511800@qq.com>
Diffstat (limited to 'candle-book')
-rw-r--r-- | candle-book/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/candle-book/src/lib.rs b/candle-book/src/lib.rs index f8ca510d..faffd753 100644 --- a/candle-book/src/lib.rs +++ b/candle-book/src/lib.rs @@ -81,7 +81,7 @@ let mut tp_shape = view.shape().to_vec(); let size = tp_shape[0]; if size % world_size != 0 { - panic!("The dimension is not divisble by `world_size`"); + panic!("The dimension is not divisible by `world_size`"); } let block_size = size / world_size; let start = rank * block_size; |