File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed
vortex-cuda/src/dynamic_dispatch Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff 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 ) ]
124120pub struct CudaDispatchPlan {
125121 buffer : ByteBuffer ,
You can’t perform that action at this time.
0 commit comments