We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30e87e7 commit 76445a0Copy full SHA for 76445a0
1 file changed
vortex-cuda/src/dynamic_dispatch/mod.rs
@@ -108,18 +108,14 @@ pub struct ParsedStage {
108
109
/// A dispatch plan serialized as a packed byte buffer.
110
///
111
-/// Layout (matching the C-side `PlanHeader` + `PackedStage` format in
112
-/// `dynamic_dispatch.h`):
+/// Matching the C-side `PlanHeader` + `PackedStage` ABI in `dynamic_dispatch.h`:
113
114
/// ```text
115
/// [PlanHeader] — sizeof(PlanHeader) bytes
116
/// [PackedStage 0][ScalarOp × N0] — variable
117
/// [PackedStage 1][ScalarOp × N1] — variable
118
/// ...
119
/// ```
120
-///
121
-/// This is uploaded to the device and cooperatively copied into shared memory
122
-/// by the kernel.
123
#[derive(Clone)]
124
pub struct CudaDispatchPlan {
125
buffer: ByteBuffer,
0 commit comments