Skip to content

Fix minor typos #3186

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ Now, let's proceed to write the fused kernel using the `cubecl` compiler fronten
simple, we'll create a straightforward matmul kernel without employing any intricate techniques. We
won't delve into the details of the `cube` macro, but if you're interested to learn more, please see
[`cubecl` Book](https://github.com/tracel-ai/cubecl/tree/f5b63076a01a5c03ea9ed20799d3eeaf776b45da/cubecl-book).
the The actual matmul, add and relu computations are found at the end, after an extensive prelude
The actual matmul, add and relu computations are found at the end, after an extensive prelude
that serves to correctly map each compute unit to the data it is responsible for, with support for
batches.

Expand Down
6 changes: 3 additions & 3 deletions crates/burn-ir/src/operation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ use burn_tensor::{

use crate::TensorIr;

/// Custom operation in fusion stream, declaring it's inputs and outputs.
/// Custom operation in fusion stream, declaring its inputs and outputs.
#[derive(Clone, Debug, Hash, PartialEq, Serialize, Deserialize)]
pub struct CustomOpIr {
/// Unique identifier of the operation.
pub id: String,
/// Input tensors used in this the custom operation.
/// Input tensors used in the custom operation.
pub inputs: Vec<TensorIr>,
/// Output tensors used in this the custom operation.
/// Output tensors used in the custom operation.
pub outputs: Vec<TensorIr>,
}

Expand Down
Loading