0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-10-01 05:08:59 +02:00

ircd::simd: Fix comment. [ci skip]

This commit is contained in:
Jason Volk 2020-09-10 13:23:37 -07:00
parent da56bb1a9d
commit 8ecb2d9653

View file

@ -136,10 +136,10 @@ noexcept
/// and can be any size. /// and can be any size.
/// ///
/// * variable-stride: progress for each iteration of the loop across the input /// * variable-stride: progress for each iteration of the loop across the input
/// and output buffers is not fixed; the transform function may advance the /// and buffer is not fixed; the transform function may advance the pointer
/// pointer one to sizeof(block_t) bytes each iteration. Due to these /// one to sizeof(block_t) bytes each iteration. Due to these characteristics,
/// characteristics, unaligned bytes may be redundantly loaded and non-temporal /// unaligned bytes may be redundantly loaded and non-temporal features are
/// features are not used to optimize the operation. /// not used to optimize the operation.
/// ///
/// u64x2 counter lanes = { available_to_user, input_length }; The argument /// u64x2 counter lanes = { available_to_user, input_length }; The argument
/// `max` gives the buffer size in that format. The return value is the /// `max` gives the buffer size in that format. The return value is the