chore: fix some typos in comments (#2121)

Signed-off-by: hardlydearly <799511800@qq.com>
This commit is contained in:
hardlydearly
2024-04-28 14:34:32 +08:00
committed by GitHub
parent e5c8b88f90
commit c68ed8963f
4 changed files with 5 additions and 5 deletions

View File

@ -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;