Skip to content

Commit

Permalink
correct typo
Browse files Browse the repository at this point in the history
  • Loading branch information
maxtremblay committed Dec 2, 2024
1 parent 0336aa6 commit 61cac15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/cubecl-reduce/src/naive.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ pub trait ReduceNaiveInstruction<EI: Numeric>: Send + Sync + 'static {
/// This could be called many time during reduction. It is required
/// that reducing the initial accumulator any number of times do not change the outcome
/// of the reduction. For example, adding 0s in a sum do not change the outcome.
fn init_accumulator(#[comptime] ine_size: u32) -> Self::Accumulator;
fn init_accumulator(#[comptime] line_size: u32) -> Self::Accumulator;

/// Reduce `current_value` into `accumulator`.
fn accumulate(accumulator: &mut Self::Accumulator, item: Line<EI>, coordinate: u32);
Expand Down

0 comments on commit 61cac15

Please sign in to comment.