From 395d84ce71fcaf4b11b97c894b27b27504472466 Mon Sep 17 00:00:00 2001 From: nathaniel Date: Mon, 16 Sep 2024 09:10:34 -0400 Subject: [PATCH] Fix comments --- crates/burn-fusion/src/stream/base.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/burn-fusion/src/stream/base.rs b/crates/burn-fusion/src/stream/base.rs index 67fbfd2da..b6aca1ecb 100644 --- a/crates/burn-fusion/src/stream/base.rs +++ b/crates/burn-fusion/src/stream/base.rs @@ -5,13 +5,13 @@ use burn_tensor::repr::OperationDescription; /// A growing list of [tensor operation descriptions](OperationDescription). pub struct OperationQueue { /// List of operation descriptions. These contain the exact tensor IDs - /// and shapes so that kernels can be optimized correctly. + /// and shapes so that kernels can be run correctly. /// /// The length of this list is the same as the length of the `operations` list. pub(crate) global: Vec, /// List of operation descriptions. The tensor IDs and shapes are relative - /// because we don't need to know the exact values to determine which operations - /// can be fused. + /// because we don't need to know the exact values, but they are sufficient to + /// determine which operations can be fused. pub(crate) relative: Vec, pub(crate) converter: OperationConverter, pub(crate) operations: Vec>>,