Skip to content

Commit 76445a0

Browse files
committed
docs: adjust comment
Signed-off-by: Alexander Droste <alexander.droste@protonmail.com>
1 parent 30e87e7 commit 76445a0

File tree

1 file changed

+1
-5
lines changed
  • vortex-cuda/src/dynamic_dispatch

1 file changed

+1
-5
lines changed

vortex-cuda/src/dynamic_dispatch/mod.rs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -108,18 +108,14 @@ pub struct ParsedStage {
108108

109109
/// A dispatch plan serialized as a packed byte buffer.
110110
///
111-
/// Layout (matching the C-side `PlanHeader` + `PackedStage` format in
112-
/// `dynamic_dispatch.h`):
111+
/// Matching the C-side `PlanHeader` + `PackedStage` ABI in `dynamic_dispatch.h`:
113112
///
114113
/// ```text
115114
/// [PlanHeader] — sizeof(PlanHeader) bytes
116115
/// [PackedStage 0][ScalarOp × N0] — variable
117116
/// [PackedStage 1][ScalarOp × N1] — variable
118117
/// ...
119118
/// ```
120-
///
121-
/// This is uploaded to the device and cooperatively copied into shared memory
122-
/// by the kernel.
123119
#[derive(Clone)]
124120
pub struct CudaDispatchPlan {
125121
buffer: ByteBuffer,

0 commit comments

Comments
 (0)