Comment on Rust SIMD on the GPUparentComments−imtringued1moYour complaint is silly. Worst case the compiler copy pastes the code multiple times or adds a constant size for loop meaning the cost is negligible.In the better cases it figures out how to reorder the instructions and gains performance over the naive implementation.
Comments
Your complaint is silly. Worst case the compiler copy pastes the code multiple times or adds a constant size for loop meaning the cost is negligible.
In the better cases it figures out how to reorder the instructions and gains performance over the naive implementation.