-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
src: gpu: intel: jit: clarify the naming for kernel/thread grids #2792
base: main
Are you sure you want to change the base?
Conversation
25cd603
to
599ff32
Compare
fa46623
to
59cd4b6
Compare
pvar_tile_t inner; | ||
for (auto &d : conv_index_dims(cfg.prb().prop_kind())) { | ||
dim_t iter = cfg.iter_dim(d); | ||
dim_t tg = cfg.thread_group_dim(d); | ||
dim_t thr = cfg.thread_dim(d); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think tg = cfg.thread_dim(d);
still works (tg
- thread group size).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I still think it's thr
, but yes, П(thr) = tg_size
— whereas П(tg) = tg_count
.
2764315
to
a78420c
Compare
make test |
a78420c
to
edec79e
Compare
This PR resolves the kernel / threadgroup terminological mixup in the jit:ir generator.