Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign up[FEA] Improve readability of thread id based branching #6241
Comments
|
Nope: last one is |
Thanks. Thus demonstrated that it wasn't so readable for me |
|
Also, isn't |
Note that using CG also generates the same code, but it actually gives you access to the special |
That's what I wrote. |


Improve readability of thread id based branches by giving them more descriptive names.
e.g.
and
cudf/cpp/src/io/statistics/column_stats.cu
Line 285 in 57ef769
Is actually a
lane_id == 0As demonstrated in #6241 (comment), prefer cooperative groups for this.
and
cudf/cpp/src/io/parquet/page_enc.cu
Line 1256 in 85cd56d
is actually
t < 32lane_id == 31. (I think this might be an oversight,ignore as it might be fixed in #6238 ).