Skip to content
Open
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 @@ -233,6 +233,9 @@ __global__ void pose_clip_kernel_fused(
result = matrix_vec_mul4x4(shared_bbox, result);

*transformed_matrix = result;

// Make sure all threads have read the shared memory before thread 0 writes to it in the next iteration
__syncthreads();
}
}

Expand Down